@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

:root {
    --light-bg-color: #161e35;
    --dark-bg-color: #080b1d;
    --btn-color: #0dc89b;
    --font-color: #fff;
}

body {
    background-color: #f3fbfb;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #161e35;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2a3862;
    border-radius: 6px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #9f9f9f;
    border-radius: 6px;
}

[class*="sidebar-dark"] .brand-link,
[class*="sidebar-dark"] .brand-link .pushmenu,
[class*="sidebar-dark"] .brand-link:hover {
    color: rgb(255 255 255);
    font-weight: 800 !important;
}

[class*="sidebar-dark"] .user-panel {
    border-bottom: 1px solid #e7e7ff0d;
}

[class*="sidebar-dark-"] .sidebar a,
[class*="sidebar-dark-"] .sidebar a:hover {
    color: #e1e9e4;
    padding: 5px 2px;
    font-size: 15px !important;
}

[class*="sidebar-dark"] .brand-link {
    border-bottom: 2px solid #0dafc8;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
    background-color: #e57529;
    color: #fff;
    font-size: 14px !important;
}

.brand-link {
    display: flex;
    align-items: center;
}

.brand-link img {
    opacity: 1 !important;
    max-height: unset !important;
    height: 45px;
    object-fit: contain;
}

.brand-link .brand-text {
    white-space: break-spaces;
    line-height: 22px;
    font-size: 19px;
}

.content-wrapper {
    background-color: #ffffff !important;
}

.content-header h1 {
    font-size: 25px;
    margin: 0;
    margin-bottom: 0px;
    color: #233446;
    font-weight: 600;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

body {
    color: #313131;
    font-family: "Poppins", sans-serif;
    position: relative;
}

.loader {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #f1f1f1d1;
}

.loader-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.loader img {
    width: 70px;
}

.text-custom-dark {
    color: #3071e7 !important;
}

.form-control:focus {
    box-shadow: none;
    outline: #03a9f4;
    border-color: #03a9f4 !important;
}

.select2.select2-container {
    width: 100% !important;
}

a,
a:hover {
    text-decoration: none;
    color: #ff7b00;
}



.validation-error {
    font-weight: normal;
    font-size: 13px;
}

.hp_wrapper {
    position: relative;
    background: #f5f5f9;
}

.site_navbar {
    padding: 15px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #344d95;
}

.site_navbar_col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site_hp_logo,
.site_hp_logo:hover {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    font-family: "Oswald", sans-serif;
}

.site_hp_logo_image {
    width: 40px;
}

.hp_menu_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
}

.close_mobile_menu_btn {
    display: none;
}

.mobile_menu_btn {
    display: none;
}

.hp_menu_list li {
    margin: 0px 10px;
}

.hp_menu_list li .hp_menu_link {
    color: #fff;
    position: relative;
}

.hp_menu_list li .hp_menu_link:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0px;
    width: 100%;
    height: 4px;
    background-color: #3071e7;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.hp_menu_list li:hover > .hp_menu_link::before {
    opacity: 1;
    transform: scale(1);
}

.btn_hp_login,
.btn-custom {
    background-color: #00cdc7;
    color: white !important;
    padding: 8px 25px;
    border-radius: 6px;
    /* box-shadow: 0 0.125rem 0.25rem 0 rgb(105 108 255 / 40%); */
    border-color: #0dc89b;
}

.btn-custom-outline {
    background-color: transparent;
    color: #03a9f4 !important;
    padding: 8px 25px;
    border-radius: 6px;
    box-shadow: 0 0.125rem 0.25rem 0 rgb(105 108 255 / 40%);
    border: 2px solid #03a9f4;
}

.bg-custom-dark {
    background-color: #233446;
    color: white;
}
.bg-custom1-dark {
    background-color: #5a96e1;
    color: white;
}

.bg-custom {
    background-color: #03a9f4 !important;
}

.hp_banner {
    background-color: #f5f5f9;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0px 80px 0px;
    background-image: linear-gradient(to right, #25476ae8, #03a9f4e0, #25476aed),
        url(../../assets/images/background.jpg);
    background-attachment: fixed;
    background-size: 100% 100%;
    background-position: center;
}

.hp_banner_col {
    display: flex;
    align-items: center;
}

.hp_text_col {
    color: #080c25;
    padding-left: 30px;
    width: 50%;
}

.hp_text_col h1 {
    font-size: 60px;
    font-weight: bold;
}

.hp_text_col h4 {
    font-size: 30px;
}

.btn_hp_banner {
    min-width: 180px;
    font-weight: bold;
    padding: 10px 12px;
}

.hp_image_col {
    width: 50%;
}

.hp_image_col img {
    width: 100%;
}

.site_footer {
    background: #344d95;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 20px 15px;
    color: #fff;
}

.login_col {
    width: 400px;
    box-shadow: 0 1rem 1rem -0.75rem rgba(105, 96, 215, 0.175);
    padding: 30px 22px;
    margin: auto;
    border-radius: 12px;
    background: #ffffff;
}

.login_title {
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    color: #566c85;
}

.login_title .login-title-image {
    height: 70px;
    object-fit: contain;
}

.login-subtitle {
    color: #566a7f;
}

.auth_form .form-control {
    display: block;
    width: 100% !important;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
         -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
            transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    /* padding: 6px 39px; */
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
         -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
            transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  }
.survey_details_col {
    width: 100%;
    margin: auto;
}

.survey_details_col > .card {
    color: #010229 !important;
    font-size: 17px;
    background-color: #f5f5f9;
    overflow-x: auto;
    border: none;
}

.survey_details_col > .card > .card-body {
    padding: 80px 30px;
}

/* ==================================================================== */
table.dataTable tbody td {
   /*  word-break: break-word; */
    vertical-align: top;
    font-size: 14px;
    color: #4c5054;
}

td.dtfc-fixed-left {
    background-color: white;
}

th.dtfc-fixed-left {
    background-color: #233446;
}

.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-success .nav-sidebar > .nav-item > .nav-link.active {
    color: #eeeeee;
    background-color: rgb(3 169 244) !important;
    font-weight: 500;
    box-shadow: none;
    border-radius: 5px;
}

.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link:hover,
.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link:focus {
    background-color: rgba(67, 89, 113, 0.04);
    color: #697a8d;
    padding: 5px 2px;
}

[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link {
    color: #c2c7d0;
    padding: 5px 2px;
}

[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link:hover {
    background-color: rgba(67, 89, 113, 0.04);
    color: #697a8d;
    padding: 5px 2px;
}

[class*="sidebar-dark-"] .nav-sidebar > .nav-item.menu-open > .nav-link,
[class*="sidebar-dark-"] .nav-sidebar > .nav-item:hover > .nav-link,
[class*="sidebar-dark-"] .nav-sidebar > .nav-item > .nav-link:focus {
    background-color: #dffaec !important;
    font-weight: 500;
    color: #25476a !important;
    border-radius: 5px;
    font-size: 14px !important;
}

.main-sidebar {
    box-shadow: 0 0.125rem 0.375rem 0 rgb(161 172 184 / 12%) !important;
    background: #0b305e !important;
    overflow-y: auto !important;
    max-height: 100vh;
}

.main-header {
    background: #ffffff;
    border-radius: 0px;
    border: none;
}

.main-footer {
    background-color: #ffffff;
    border-top: 1px solid #f5f5f9;
    color: #4f4f4f !important;
    padding: 1rem;
    border-radius: 0;
    margin-left: 3px !important;
    margin-right: 17px !important;

    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    /* padding: 1rem; */
}

.info-box {
    border-radius: 10px;
    box-shadow: 0 1rem 1rem -0.75rem rgba(105, 96, 215, 0.175);
    height: 15px;
    background-color: #ffffff;

}
.doc-box {
    border-left: 5px #00625f solid !important;
    background-color: #cbfffd;
}
.para-box {
    border-left: 5px #090979 solid !important;
    background-color: #dadaff;

    /* border-left: 5px #020024 solid !important; */
}
.bed-box {
    border-left: 5px #140018 solid !important;
    background-color: #f6caff;
}
.cert-box {
    /* border-left: 5px rgb(157, 10, 231) solid !important; */
    border-left: 5px #6e0102 solid !important;
    background-color: #ffdadb;

}
.regis-box {
    border-left: 5px #090979 solid !important;
    height: 146px;
    background-color: #b9d1ff;
}
.regis-box-regd {
    border-left: 5px #090979 solid !important;
    height: 128px;
    background-color: #b9d1ff;
}
.regis-week {
    /* border-left: 5px rgb(235, 1, 1) solid !important; */
    border-left: 5px #090979 solid !important;
}

.info-box-icon {
    width: 60px !important;
    height: 60px !important;
    /* background-color: #0dc89b !important; */
    font-weight: 500;
    color: #f8fdff !important;
    border-radius: 50% !important;

}
.bg-info-1{
    background: rgb(2,0,36);
    background: linear-gradient(315deg, rgb(0 31 30) 0%, rgb(0 133 131) 80%, rgb(215 235 239) 100%);
}
.bg-info-2{
    /* background: rgb(2,0,36);
    background: linear-gradient(315deg, rgb(16 0 39) 0%, rgb(81 24 57) 80%, rgb(236 230 238) 100%); */
    background: rgb(2,0,36);
    background: linear-gradient(315deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 80%, rgba(0,212,255,1) 100%);

}
.bg-info-3{
    background: rgb(2,0,36);
    background: linear-gradient(315deg, rgb(20 0 24) 0%, rgb(50 0 80) 80%, rgb(203 185 217) 100%);
}
.bg-info-4{
    background: rgb(2,0,36);
    background: linear-gradient(315deg, rgb(89 0 0) 0%, rgb(204 10 16) 80%, rgb(228 196 196) 100%);
}
.bg-info-5{
    background: rgb(2,0,36);
    background: linear-gradient(315deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 80%, rgba(0,212,255,1) 100%);
}
.bg-info-6{
    background: rgb(2,0,36);
    background: linear-gradient(315deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 80%, rgba(0,212,255,1) 100%);
}
.bg-info-7{
    background: rgb(2,0,36);
    background: linear-gradient(315deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 80%, rgba(0,212,255,1) 100%);
}

.table thead {
    background: #0aa27e;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
    /* color: #ffffff; */
    font-size: 14px;
}

.card {
    box-shadow: 0 1rem 1rem -0.75rem rgba(105, 96, 215, 0.175);
    border-radius: 12px;
}

.card-title {
    font-weight: 600;
    color: #102031;
}

[class*="sidebar-light-"] .nav-treeview > .nav-item > .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}

.modal-header {
    border-bottom: none;
    position: relative;
    background-color: #03a9f4;
}

.modal-header .close {
    position: absolute;
    top: 15px !important;
    right: 15px !important;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
    color: #a1acb8;
    border: 0;
    background-color: #fff;
    border-radius: 0.5rem;
    opacity: 1;
    padding: 0.635rem;
    box-shadow: 0 0.125rem 0.25rem rgb(161 172 184 / 40%);
    transition: all 0.23s ease 0.1s;
}

.modal-title {
    position: relative;
    position: relative;
    font-weight: 600;
    font-size: 18px;
}

.modal-title::before {
    content: "";
    position: absolute;
    top: 110%;
    left: 0px;
    width: 80%;
    height: 2px;
    border-radius: 30%;
    background-color: #03a9f4;
}

.btn-rounded {
    border-radius: 50%;
}

[class*="sidebar-light-"] .nav-sidebar > .nav-item.menu-open > .nav-link,
[class*="sidebar-light-"] .nav-sidebar > .nav-item:hover > .nav-link,
[class*="sidebar-light-"] .nav-treeview > .nav-item > .nav-link:hover,
[class*="sidebar-light-"] .nav-treeview > .nav-item > .nav-link.active {
    border-radius: 30px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0aa27e;
    border-color: #0aa27e;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.menu-open {
    background-color: #1c2a38;
    border-radius: 10px;
}

.menu-open .nav-link.active {
    background-color: #03a9f4 !important;
    color: white !important;
}

.badge-warning {
    background-color: rgb(255, 145, 0) !important;
    color: white !important;
}

.btn {
    border-radius: 10px;
    font-size: 15px;
}

.btn-warning {
    color: #fff;
    background-color: #ffab00;
    border-color: #ffab00;
    box-shadow: 0 0.125rem 0.25rem 0 rgb(255 171 0 / 40%);
}

.btn-default,
.btn-default:hover {
    color: #121212;
    background-color: #c3ccd8;
    border-color: #c3ccd8;
    /* box-shadow: 0 0.125rem 0.25rem 0 rgb(133 146 163 / 40%); */
}

.btn-success,
.btn-success:hover {
    color: #fff;
    background-color: #9fcc2e;
    border-color: #9fcc2e;
    /* box-shadow: 0 0.125rem 0.25rem 0 rgb(113 221 55 / 40%); */
}

.btn-danger {
    color: #fff;
    background-color: #df5645;
    border-color: #df5645;
    /* box-shadow: 0 0.125rem 0.25rem 0 rgb(255 62 29 / 40%); */
}

@media (max-width: 992px) {
    .site_footer,
    .site_navbar {
        position: relative;
    }
    .hp_banner {
        padding: 30px 0px;
        min-height: calc(100vh - 130px);
    }
    .hp_banner_col {
        flex-direction: column;
    }
    .hp_text_col {
        width: 100%;
    }

    .hp_image_col {
        margin: 10px 0px 40px 0px;
        width: 80%;
    }

    .hp_text_col h1 {
        font-size: 40px;
    }
}

@media (max-width: 500px) {
    .login_col {
        width: 90%;
        margin: auto;
        padding: 40px 20px;
    }

    .mobile_menu_btn {
        display: block;
        cursor: pointer;
    }

    .hp_menu_list {
        position: relative;
        transition: all 0.5s ease-in-out;
        display: flex;
        position: fixed;
        top: -100%;
        left: 0;
        background: #161e35;
        width: 100%;
        flex-direction: column;
        height: 100%;
        justify-content: unset;
        z-index: 99 !important;
    }

    .hp_menu_list li {
        width: 100%;
        text-align: center;
        padding: 0px 10px;
    }

    .hp_menu_list li .hp_menu_link {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }

    .close_mobile_menu_btn {
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 18px;
        width: 35px;
        height: 35px;
        border: 4px solid white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .hp_text_col {
        padding: 10px;
    }

    .hp_text_col h1 {
        font-size: 32px;
    }

    .main-footer {
        font-size: small;
    }
}

.filter-col {
    padding: 10px 16px;
    background: #edf1f6;
    border-radius: 10px;
}

.fieldset {
    padding: 0px 10px;
    border: 1px solid lightgrey;
    border-radius: 2px;
    background-color: #f5f5f9 !important;
}

.legend {
    display: inline-block;
    width: auto;
    padding: 3px 10px;
    font-size: 16px;
    border: 1px solid #03a9f4;
    border-radius: 4px;
    background: #03a9f4;
    color: white;
}

/* =========================== */
/* DIVIDER */
.divider {
    display: block;
    text-align: center;
    margin: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.divider .divider-text {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;
    padding: 0rem 1rem;
}

.divider .divider-text:before,
.divider .divider-text:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    border-top: 1px solid rgba(67, 89, 113, 0.2);
}

.divider .divider-text:after {
    left: 100%;
}

.divider .divider-text:before {
    right: 100%;
}

.finish_hp_wrapper {
    position: relative;
    background: #f5f5f9;
}

.finish_hp_banner {
    background-color: #f5f5f9;
    background-image: linear-gradient(
        to right top,
        #464646,
        #3e3e3e,
        #363636,
        #2e2e2e,
        #262626
    );

    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0px 80px 0px;
}

.finish_hp_banner .survey_details_col {
    width: 100%;
    margin: auto;
}

.popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #03a9f4;
    border-bottom: 1px solid #03a9f4;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
    color: white;
}

.card-success-custom.card-outline {
    border-top: 3px solid #03a9f4;
}

/* -------------------------------------- */
.btn-secondary-custom {
    background-color: #e8fadf !important;
    color: #26a69a !important;
    padding: 8px 25px;
    border-radius: 6px;
    /* box-shadow: 0 0.125rem 0.25rem 0 rgb(105 108 255 / 40%); */
    border-color: #26a69a;
}

.bootstrap-filestyle .btn-secondary {
    color: #ffffff;
    background-color: #233446;
    border-color: #233446;
    box-shadow: none;
    font-weight: 300 !important;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0px 5px 5px 0px;
}

/* ================================== */
.home_header {
    /* background-image: linear-gradient(
        to bottom,
        #08bee0,
        #08c3e5,
        #09c7eb,
        #09ccf0,
        #09d1f6
    ); */
    /* color: white; */
    /* background: #0dc89b; */
}

.home_menu {
    background-color: #00cec8 !important;
}

.h_menu li a {
    padding: 15px 20px;
    display: block;
    color: white;
}

.h_img_col .h_img {
    filter: invert(1);
}

/* ================================== */

.login-content-wrapper {
    padding: 0px;
}

.login-content {
    /* box-shadow: 0px 0px 10px 0px grey; */
}

.login-logo-img {
    height: 50px;
    object-fit: contain;
}

.login-col {
    padding: 40px;
    background: #f8fffa;
    height: 100%;
}

.login-slider-col {
    width: 60%;
}

.login-form-col {
    width: 40%;
}

/* ================================ */
.owl-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 100;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.owl-prev {
    /* position: absolute;
    left: 30px; */
    color: #00cec8 !important;
    font-size: 50px !important;
    background-color: #ffffffe0 !important;
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 50% 50% 0px;
}

.owl-next {
    /* right: 30px; */
    /* position: absolute; */
    color: #00cec8 !important;
    font-size: 50px !important;
    background-color: #ffffffeb !important;
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 0% 0% 50%;
}

.text-custom {
    color: #00cec8 !important;
}
.required:after {
    content: "*";
    margin-left: 2px;
    color: red;
}
.login_as {
    margin-bottom: 0px;
    font-style: italic;
    background: #2e4da5;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 15px;
}

.login_as span {
    color: #ff9248;
    font-weight: 500;
}

.nav-sidebar .nav-item > .nav-link {
    position: relative;
    font-size: 14px !important;
}


td .reverted {
    background: #b81c1c;
    color: #fff;
    padding: 5px;
    border-radius: 6px;
}
td .forwarded {
    background: #04a41c;
    color: #fff;
    padding: 5px;
    border-radius: 6px;
}
