@import url(root.css);
@import url(stepper.css);
@import url(dropzone.css);
html, body{
    height: 100%;
}
body {
    margin: 0;
    font-size: var(--base-font-size);
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-text);
    background-color: var(--body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-family: var(--font-family-regular), sans-serif;
}
@font-face {
    font-family: "Lexend-Light";
    src: url("../fonts/Lexend-Light.ttf") format("truetype");
    font-stretch: normal;
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Lexend-Regular";
    src: url("../fonts/Lexend-Regular.ttf") format("truetype");
    font-stretch: normal;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Lexend-SemiBold";
    src: url("../fonts/Lexend-SemiBold.ttf") format("truetype");
    font-stretch: normal;
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Lexend-Medium";
    src: url("../fonts/Lexend-Medium.ttf") format("truetype");
    font-stretch: normal;
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Lexend-Bold";
    src: url("../fonts/Lexend-Bold.ttf") format("truetype");
    font-stretch: normal;
    font-weight: 700;
    font-style: normal;
}
a{
    text-decoration: none;;
}
p{
    line-height: calc(var(--base-font-size) + 6px);

}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: var(--primary-text);
}
.primary-text{
    color: var(--primary-text);
}
.primary-text-light{
    color: var(--primary-text-light);
}
.fw-bold{
    font-family: var(--font-family-bold);
}
.btn{
    border-radius: var(--input-radius);
    padding: 15px;
    font-size: var(--base-font-size);
    line-height: 1.2;
}
.btn-primary{
    background-color: var(--primary-btn-color);
}
.btn-primary:hover,
.btn-primary:focus{
    background-color: var(--primary-btn-color-hover) !important;
    border-color: var(--primary-btn-color-hover) !important;
}
.btn-outline-primary{
    border-color: var(--primary-btn-color);
    color: var(--primary-color);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus{
    background-color: var(--primary-btn-color) !important;
    border-color: var(--primary-btn-color) !important;
}

.linking{
    color: var(--primary-color);
}
a[href^="mailto:"]:hover,
a[href^="tel:"]:hover{ 
  color: var(--primary-color) !important;
}
.navbar>.container-fluid{
    padding-left: 30px;
    padding-right: 30px;
}
.auth-screen{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.auth-card{
    max-width: calc(395px + 30px);
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}
.auth-card .card{
    border-radius: 15px;
    border: 0;
    box-shadow: 0 20px 50px #3B4B7629;
}
.auth-card .card .card-body{
    padding: 30px;
}
.auth-logo{
    margin-bottom: 30px;
    text-align: center;
}
.auth-logo img{
    max-width: 160px;
    margin: 0 auto;
}
.form-group{
    margin-bottom: 20px;
}
.form-control{
    border-radius: var(--input-radius);
    border-color: var(--input-border-color);
    color: var(--primary-text);
    padding: 15px;
    font-size: var(--base-font-size);
    line-height: 1.2;
}
.form-control:focus{
   border-color: var(--primary-color);
   outline: none;
   box-shadow: none;
}
.form-control::-moz-placeholder{
    color:var(--placeholder-color);
}
.form-control::placeholder{
    color:var(--placeholder-color);
}
.prepend-input-icon{
    position: relative;
}
.prepend-input-icon .form-control{
    padding-right: calc(15px + 25px);
}
.icon{
    position: absolute;
    right: 12px;
    top: 12px;
}
.icon i{
    font-size: 24px;
}

.body-wrapper{
    background-color: var(--body-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.header{
    background-color: var(--bs-white);
    /* padding: 15px 0; */
}

.company-logo{
    max-width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    border-radius: 100%;
}
.company-logo img{
    max-width: 100%;
    max-height: 100%;
}
.profile-box{
    border-radius: var(--radius-10);
    border: 1px solid #EBEBEB;
    padding: 6px 10px;
}
.user-img{
    width: 30px;
    height: 30px;
    background-color: #eee;
    padding: 5px;
}
.user-img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.user-name{
    margin-left: 10px;
}
.logout{
    margin-left: 10px;
}
.logout .btn-danger{
    background-color: var(--btn-logout-bg);
    border-color: var(--btn-logout-border);
    border-radius: var(--radius-10);
    min-height: 43px;
    padding: 12px;
}

.logout .btn-danger img{
    max-width: 15px;
}
.logout .btn-danger:hover, .logout .btn-danger:focus {
    background-color: var(--bs-btn-active-bg);
}
.logout .btn-danger:hover img, .logout .btn-danger:focus img{
   filter: grayscale(100%) brightness(100);
}

.custom-container{
    max-width: calc(var(--container-custom) + calc(var(--bs-gutter-x) * .5) + calc(var(--bs-gutter-x) * .5));
}
.body-content{
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    position: relative;
    padding-top: 45px;
}
.height-full{
   height: calc(100vh - 45px); 
}
.card{
    border-radius: var(--card-radius);
    border-color: var(--border-color);
}
.card-body{
    padding: var(--card-py) var(--card-px);
    
}
.stepper-content{
    margin-top: 30px;
}
.stepper-heading{
    font-size: 1.063rem;
    margin-bottom: 30px;
}


.file-row>[class*="col-"]{
    padding-right: 15px;
    padding-left: 15px;
}
.or-text{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 30px;
    display: flex;
    padding-top: 23px;
    justify-content: center;
    align-items: center;
}

/* .file-upload{
    height: 326px;
} */
.resize{
    resize: none;
}

 .summary-list:not(:last-child){
    margin-bottom: 30px;
 }
 .summary-heading{
    font-family: var(--font-family-bold);
    margin-bottom: 10px;
    font-size: var(--base-font-size);
 }
 .summary-sub-heading{
    font-family: var(--font-family-semiBold);
    margin-bottom: 5px;
    font-size: var(--base-font-size);
 }
 .summary-list ul{
    padding-left: 20px;
 }
 .summary-list ul li{
    background: url(../images/arrow-right.svg) no-repeat left 4px;
    background-size: 7px auto;
    padding-left: 17px
 }
 .summary-list ul li:not(:last-child){
    margin-bottom: 15px;
 }
 .analysing .list-group-item{
    border-color: var(--input-border-color);
    padding: 15px 20px;
 }
 .analysing .list-group-item:first-child{
    border-top: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
 }
 .list-inner:not(:last-child){
    margin-bottom: 10px;
 }
 .mb-30{
    margin-bottom: 30px;
 }
 .h-texarea{
    height: 328px;
 }
 .tab-pane{
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
    border-radius: var(--bs-list-group-border-radius);
    border-top: none;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
 }

 .tab-pane .stepper-heading{
    margin: 10px 0px;
 }
 .auth-screen{
    background: url(../images/login-bg.jpg) no-repeat right;
 }
 .swal2-styled.swal2-confirm, .swal2-styled.swal2-confirm:focus{
    background-color: var(--primary-color) !important;
    border: var(--primary-btn-color-hover) !important;
 }
 @media print{
    ul li{
        font-size: 11px;
    }
 }