/* @font-face {
    font-family: 'open sans';
    src: url('../fonts/open-sans.bold-webfont.woff2') format('woff2'),
         url('../fonts/open-sans.bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'open sans';
    src: url('../fonts/open-sans.semibold-webfont.woff2') format('woff2'),
         url('../fonts/open-sans.semibold-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'open sans';
    src: url('../fonts/open-sans.regular-webfont.woff2') format('woff2'),
         url('../fonts/open-sans.regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
} */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
    --opensans: "Inter", sans-serif;
    --text-color: #333;
    --primary-color: #0787C5;
    --secondary-color: #ED5722;
    --secondary-color2: #055177;
    --bg-light: #F5F5F5;
    --white-color: #ffffff;
    --white-grey: #F6F6F6;
    --black-color: #000000;
    --dark-grey: #888888;
    --light-grey-color: #C6C6C6;
    --input-border: 1px solid #D4D4D4;
    --black-border: 1px solid #505050;
    --button-border: 2px solid 056633;
    --inputbox-shadow: -3px 1px 5px rgba(0 0 0 / 10%);
    --box-shadow: -3px 2px 10px 2px #E0F2E9;
    --danger-color: #B21E1E;
    --warning-color: #FFC90B;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-22: 22px;
    --fs-26: 26px;
    --fs-28: 28px;
    --fs-30: 30px;
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
}
* {padding: 0px;margin: 0px;}
body {font-family: var(--opensans);line-height: 1.2;}
p {font-size: 16px;line-height: 1.2;}
/* common css start */
#drpMode td {padding: 5px;}
#drpMode td label {
    margin-left: 7px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 4px;
}
img{max-width: 100%;}
html body label {font-weight: 500;}
.form-title {
    margin-bottom: 20px;
    font-size: var(--fs-30);
    color: var(--black-color);
}
.green-text {color: var(--secondary-color);}
select,.form-control,
.form-control:disabled, .form-control[readonly],
input[type="text"],input[type="email"],input[type="search"],
input[type="password"],input[type="date"],input[type="time"]{
    padding: 7px 6px;
    font-size: var(--fs-16);
    color: var(--black-color);
    background-color: var(--white-grey);
    box-shadow: var(--inputbox-shadow);
    border-radius: 6px;
    border: 1px solid #dbdbdb;
}
.form-control:disabled, .form-control[readonly]{opacity: 0.5;}
select.form-control{
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    height: 40px;
}
.input-group {
    border-radius: 10px;
    overflow: hidden;
    border: var(--input-border);
    box-shadow: var(--inputbox-shadow);
}
.input-group input {box-shadow: none;border: 0;}
#captcha input {
    background: url(../images/reset_icon1.png) no-repeat scroll 0 0 transparent;
    margin: 0px 5px -6px;
    padding: 0;
    border: medium none;
    cursor: pointer;
    width: 25px;
}
.input-group .input-group-text {border: none !important;}
.input-group:focus-within {border-color: var(--secondary-color);}
.input-group-text {background-color: var(--white-grey);}
.form-control:focus{
    box-shadow: var(--inputbox-shadow);
    border-color: var(--secondary-color);
}
#RadioLogin td {padding: 0px 7px 0px;width: 195px;}
#cust1 td {padding: 0px 7px 0px;width: 88px;}
.primary-btn,
.btn-primary,
.button-danger,
.secondary-btn{
    width: auto;
    border: 1px solid transparent;
    border-radius: 6px;
    box-shadow: var(--inputbox-shadow);
    transition: ease .5s all;  
    font-size: 16px;
    font-weight: 400;
    background-clip: padding-box;
}
/* .primary-btn{padding: 10px 10px;min-width: 120px;} */
.primary-btn {
    background: var(--secondary-color);
    color: var(--white-color);
}
.secondary-btn{
    background: var(--secondary-color2);
    color: var(--white-color);
}
.secondary-btn:hover{
    background: #c3461b;
    color: var(--white-color)
}

.primary-btn:hover,
.btn-primary:hover,
.btn-primary:focus{
    background: #c3461b;
    border-color: transparent;
    color: var(--white-color);
}
.button-danger{background-color: var(--danger-color);color: var(--white-color);}
.button-danger:hover{color: var(--white-color)}
.badge {
    display: inline-block;
    padding: 0.375em .625em;
    font-size: .875em;
    font-weight: 500;
    line-height: 1;
    color: var(--black-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: ease .3s all;
}
.bg-warning:hover {
    color: #855f08;
    background-color: #ffc107;
}
/** custom check box **/
input[type=checkbox] {position: relative;cursor: pointer;}
input[type=checkbox]:before {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: var(--white-color);
    content:'';
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
}
input[type=checkbox]:checked:before {background-color: var(--secondary-color);}
input[type=checkbox]:checked:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 7px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    position: absolute;
    top: 3px;
    left: 2px;
    border-color: var(--white-color);
}
/** custom radio css **/
input[type=radio] {position: relative;cursor: pointer;}
input[type=radio]:before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--white-color);
    display: inline-block;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    position: absolute;
    top: 0;
}
input[type=radio]:checked:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: inline-block;
    position: absolute;
    left: 4px;
    right: 0;
    top: 8px;
    transform: translateY(-50%);   
}
/* common css end */
/* main header css start*/
.main_header {
    padding: 6px 0;
    background-color: var(--white-color);
    box-shadow: var(--inputbox-shadow);
}
.main_header .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
.main_header .navbar-brand h1 {
    font-size: clamp(19px, 3vw, 30px);
    font-weight: bold;
    color: var(--primary-color);
}
.main_header .brand-title {
    display: inline-block;
    margin-left: 15px;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--primary-color);
    font-weight: var(--fw-700);
    letter-spacing: 0.03px;
}
.main_header .user-profile {
    padding: 6px;
    width: 208px;
    background-color: transparent;
    border: 1px solid var(--secondary-color2);
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}
.main_header .user-profile .user-img {
    width: 40px;
    height: 40px;
    box-shadow: var(--inputbox-shadow);
    background-color: var(--light-grey-color);
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    padding: 4px;
    overflow: hidden;
}
.main_header .user-profile .user-name {
    display: inline-block;
    font-weight: 500;
    margin-right: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.main_header .user-profile .navbar-toggler {padding: 0;}
.line {
    width: 24px;
    height: 3px;
    background-color: var(--secondary-color2);
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}
button[aria-expanded=true] .line:nth-child(2) {opacity: 0;}
button[aria-expanded=true] .line:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}
button[aria-expanded=true] .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}
.navbar{position: relative;}
.navbar .dropdowns {
    position: absolute;
    top: 50px;
    min-width: 250px;
    padding: 0px;
    background-color: rgb(255, 255, 255);
    box-shadow: var(--inputbox-shadow);
    border-radius: 6px;
    border: 1px solid  var(--light-grey-color);
    overflow: auto;
    z-index: 1020;
}
.navbar-nav .nav-item .nav-link {
    color: var(--black-color);
    font-size: 15px;
    padding: 8px;
    line-height: 1.2;
    transition: ease.3s all;
}
.navbar-nav .nav-item .nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.mainmenu .navbar-nav .nav-item .nav-link:hover i{color: var(--white-color);}
.main-content{width: 100%;}
/* slider caption css start */
.main-content.no-scroll .login-section { min-height: calc(100vh - 110px); }
.login-section .carousel .carousel-item {
    padding-top: 48.5%;
    height: 100vh;
    background-size: cover !important; /*changes done 07/08/2024*/
}
.login-section .carousel .carousel-item img {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: auto;
    margin-top: 0;
    margin-right: auto;
}
.carousel-caption .banner-heading{
    display: none;
    font-size: 60px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
}
.carousel-inner .carousel-caption {
    position: absolute;
    top: 50%;
    left: 5%;
    z-index: 5;
    width: max-content;
    max-width: 450px;
    text-align: left;
    bottom: initial;
    transform: translateY(-50%);
}
.carousel-caption .banner-heading {
    display: none !important;
    position: relative;
    font-size: 60px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}
.class2025 {
    text-transform: none;
}
.carousel-caption .banner-heading:after {
    content: '';
    margin-top: 20px;
    border-top: 20px solid var(--secondary-color);
    border-right: 20px solid transparent;
    border-radius: 20px 0px 0px 20px;
    display: block;
    width: 100%;
}
.carousel-caption .banner-btn:first-child{margin-right: 10px;}
.carousel-caption .banner-btn{text-transform: uppercase;}
.carousel-caption #paybyupi {
    padding: 10px 15px;
    width: auto;
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 6px;
    box-shadow: var(--inputbox-shadow);
    transition: ease .3s all;
    font-size: 16px;
    font-weight: 500;
    background-clip: padding-box;
    min-width: 120px;
    color: var(--black-color);
}
.carousel-caption #paybyupi:hover{
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}
/* slider caption css end */
/* login css start */
.login-section{position: relative;}
.login-section:before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(213 245 255 / 80%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.login-form {
    padding: 25px;
    width: 100%;
    max-width: 420px;
    height: auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 5;
    border: 2px solid var(--white-grey);
    background-color: rgba(255 255 255 / 75%);
    transform: translateY(-50%);
    border-radius: 30px;
    box-shadow: var( --inputbox-shadow);
}
.login-form .user-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--secondary-color);
    margin: 0 auto 30px;
    text-align: center;
    font-size: 42px;
    border-radius: 50%;
    color: var(--white-color);
    box-shadow: 0 0 10px rgba(0 0 0 / 40%);
}
.customerloginlink {
    color: var(--primary-color);
    transition: ease .3s all;
    font-size: 14px;
    font-weight: 500;
}
.customerloginlink:hover {color: var(--primary-color);}
/* login css end */
/* dashboard quick links css start */
.quick-links ul li a {
    display: block;
    padding: 10px 4px;
    color: var(--black-color);
    transition: ease .3s all;
}
.quick-links ul li {list-style: none;}
.quick-links ul li a > i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 10px;
}
.quick-links ul li:not(:last-child) {border-bottom: 1px solid #d4d4d4;}
.quick-links ul li a:hover {background: #f1f1f1;}
/* dashboard quick links css end */
/** custom radio box **/
.form-checked input[type=radio] {position: relative;cursor: pointer;}
.form-checked input[type=radio]:before {
    display: inline-block;
    width: 24rem;
    height: 24rem;
    background: var(--white-color);
    content: '';
    border: 2px solid var(--secondary-color);
    border-radius: 3px;
    position: absolute;
    top: -6px;
}
.form-checked input[type=radio]:checked:before {background-color: var(--secondary-color);}
.form-checked input[type=radio]:checked:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    position: absolute;
    top: -2px;
    left: 2px;
    border-color: var(--white-color);
}
/* survey form css end */
/* footer css start */
footer {position: relative;z-index: 1;}
footer .links > ul li {list-style: none;}
.copyright {background-color: #1377a9;padding: 10px 0px;}
.copyright p {
    font-size: 13px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: uppercase;
}
.copyright p a {color: var(--white-color); text-decoration: underline;}
/* footer css end */
/* media css start */
@media screen and (max-width: 1280px){
    .login-section .carousel .carousel-item {
        padding-top: 55.5%;
    }
}
@media screen and (max-width: 1024px){
    .login-section {padding: 0px 0px;min-height: calc(100vh - 156px);}
    #navbarSupportedContent{
        position: absolute;
        z-index: 10;
        top: 100%;
        right: 0px;
        background: var(--white-color);
    }
}
@media screen and (max-width: 991px){
    .login-section .carousel .carousel-item {padding-top: 100%; background-size: cover;}
}
@media screen and (max-width: 810px){
    .copyright p {text-align: center;}
    .main-container {
        min-height: calc(100vh - 51px);
        background: url(../images/mob-bg.png);
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
    }
    .app_header #navbarSupportedContent {
        left: 0px;
        min-width: 180;
    }
    .dash-box { background-color: #FAF6F4; border-color: #EFEFEF; }
    .dash-box a { color: #272727; }
}
@media screen and (max-width: 767px) {
    .login-section .carousel {height: 100vh;}
    .login-section .carousel .carousel-item {padding-top: initial; height: 100%;}
    .login-section .carousel .carousel-inner{height: 100%;}
    .carousel-inner .carousel-caption{padding-bottom: 0px; margin: auto; top: initial; transform: unset; right: 0; bottom: 30px; left: 0px}
    .login-section .login-form {max-width: 340px; margin: auto; top: 45%; right: 0; left: 0;}
    #cust1 td{width: 120px;}
    .customerloginlink{font-size: 12px;}
}
@media screen and (max-width: 575px){
    .main_header .navbar-brand img { width: 50px; }
    .main_header .user-profile{ font-size: 14px; }
    .login-section .carousel .carousel-item { padding-top: 80%; }
    .page-wrapper.chiller-theme.toggled nav #show-sidebar i { transform: rotate(0deg); }
    .page-wrapper.chiller-theme:not(.toggled) nav #show-sidebar i { transform: rotate(180deg); }
    html body label{font-size: 14px;}
    select, .form-control, .form-control:disabled, 
    .form-control[readonly], input[type="text"], input[type="email"], 
    input[type="search"], input[type="password"], input[type="date"], 
    input[type="time"]{ font-size: 14px; }
}