:root {
    scroll-behavior: smooth;
}
body {
    font-family: "Open Sans", sans-serif;
    background: #ffff;
    color: #333333;
}
a {
    color: #4154f1;
    text-decoration: none;
}
a:hover {
    color: #717ff5;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    margin-bottom: 0;
}
p {
    margin-bottom: 0;
}
.form-group {
    position: relative;
}
.form-group input:focus,
.form-group input:hover {
    outline: 0;
}
.form-control:focus {
    box-shadow: none !important;
    border-color: #D44145;
}
.form-group input:-internal-autofill-selected {
    background-color: #fff !important;
}
.btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus {
    box-shadow: none;
}
.btn-close:focus {
    box-shadow: none;
}
.btn:focus-visible {
    box-shadow: none;
}
/* header css */
.header_topfixed {
    height: 60px;
}
.header {
    transition: all 0.5s;
    z-index: 997;
    background-color: #f6f6f8;
    padding: 0 15px;
    height: 60px;
    border-bottom: 1px solid #DFDFDF;
}
.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    cursor: pointer;
    color: #363636;
}
.toggle-sidebar #main,
.toggle-sidebar #footer {
    margin-left: 0;
}
.toggle-sidebar .sidebar {
    left: -230px;
}
.header-nav {
    margin-left: auto;
}
.header-nav ul {
    list-style: none;
}
.header-nav>ul {
    margin: 0;
    padding: 0;
}
.header-nav .dropdown-menu li {
    border-bottom: 1px solid #DFDFDF;
}
.header-nav .dropdown-menu li:last-child {
    border-bottom: none;
}
.header-nav .nav-icon {
    font-size: 20px;
    color: #363636;
}
.header-nav .nav-link {
    padding: 0.5rem 1rem;
}
.header-nav .nav-profile {
    color: #363636;
}
.header-nav .nav-profile img {
    max-height: 36px;
}
.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}
.header-nav .badge-number {
    position: absolute;
    inset: 4px 6px auto auto;
    font-weight: normal;
    font-size: 11px;
    padding: 3px 6px;
}
.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.header-nav .notifications .notification-item i {
    margin-right: 15px;
    font-size: 24px;
}
.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.header-nav .notifications .notification-item p {
    font-size: 12px;
    margin-bottom: 3px;
    color: #404040;
}
.header-nav .notifications {
    min-width: 300px;
    max-height: 500px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
}
.header-nav .notifications::-webkit-scrollbar {
    width: 10px;
    height: 8px;
    background-color: #fff;
}
.header-nav .notifications::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}
.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
}
.header-nav .profile .dropdown-header h6 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}
.header-nav .profile .dropdown-header span {
    font-size: 12px;
}
.header-nav .profile .dropdown-item {
    font-size: 13px;
    padding: 9px 15px;
    transition: 0.3s;
}
.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 16px;
    line-height: 0;
}
.header-nav .profile .dropdown-item:hover {
    background-color: #f6f9ff;
}
.dropdown-menu {
    border-radius: 4px;
    padding: 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: left;
    font-size: 14px;
    padding: 7px 20px 10px;
}

.dropdown-menu .dropdown-footer a {
    color: #444444;
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f6f9ff;
}
.dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
}
@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    0% {
        opacity: 0;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    0% {
        opacity: 0;
    }
}
/* body css */
#main {
    padding: 15px;
    transition: all 0.3s;
    position: relative;
}
#main,
#footer {
    margin-left: 230px;
}
.breadcrumb {
    font-size: 12px;
    font-family: "Nunito", sans-serif;
    color: #899bbd;
    font-weight: 600;
}

.breadcrumb a {
    color: #899bbd;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
    color: #899bbd;
}

.breadcrumb .active {
    color: #51678f;
    font-weight: 600;
}
.pagetitle h1 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    color: #363636;
    text-transform: uppercase;
}
/* login page css */
.login_container {
    background-color: #f5f7f9;
    height: 100vh;
    position: relative;
}
.login_container .login_form_div {
    height: auto;
    width: 430px;
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    padding: 30px;
    border-radius: 10px;
}
.login_form_div .cmpy_logo {
    text-align: center;
    margin-bottom: 25px;
}
.login_form_div .cmpy_logo img {
    max-width: 100%;
}
.login_input_Form .input-group-append {
    width: 60px;
    background-color: #daa32d;
    margin-left: 0;
    border-radius: 5px 0 0 5px;
}
.login_input_Form .input-group-append .input-group-text {
    border: none;
    background: linear-gradient(to right, #DF4979 0%, #E36B31 100%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
    height: 100%;
}
.login_input_Form .input-group-append .input-group-text .bi {
    color: #fff;
    font-size: 26px;
}
.login_input_Form .form-group {
    margin-bottom: 30px;
}
.login_input_Form .form-control {
    color: #09141a;
    font-size: 16px;
    font-weight: 500;
    border-left: 0;
    border-color: #D44145;
    border-radius: 0 5px 5px 0;
    height: 56px;
    font-family: sans-serif;
    background-color: #f5f7f9;
}
.login_input_Form .form-control:focus {
    border-color: #D44145 !important;
}
.form-control[type='text']::-webkit-input-placeholder {
    color: #767676;
}
.login-submit-btn .submit-btn {
    height: 56px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    background-color: #253237;
    color: #fff;
    text-transform: uppercase;
    border: none;
    width: 100%;
    border-radius: 5px;
    transition: all 0.4s ease-in-out 0s;
}
.login-submit-btn .submit-btn:hover {
    background-color: #D44145;
}
.login_input_Form .form-group.text-end {
    margin-bottom: 0;
}
.form-group .btn-resend-otp {
    border: none;
    background-color: #fff;
    margin-top: 10px;
    text-decoration: underline;
    color: #4154f1;
}
/* login page css end */
/* index page css */
.card {
    margin-bottom: 24px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 0 5px rgb(0 0 0 / 40%);
    overflow: hidden;
}
.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}
.card-title {
    padding: 20px 0 5px 0;
    font-size: 16px;
    font-weight: 500;
    color: #012970;
    font-family: "Poppins", sans-serif;
}
.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}
.card-body {
    padding: 0 20px 20px 20px;
}
/* sidebar css */
.logo {
    line-height: 1;
}
.logo {
    width: 255px;
    height: 50px;
}
.logo img {
    max-height: 100%;
    max-width: 100%;
}
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 230px;
    z-index: 996;
    transition: all 0.3s;
    padding: 0px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 10px rgba(1, 41, 112, 0.1);
    background-color: #f6f6f8;
}
.sidebar::-webkit-scrollbar {
    width: 10px;
    height: 8px;
    background-color: #fff;
}
.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}
.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar-nav .nav-item {
    border-bottom: 1px solid #DFDFDF;
}
.sidebar-nav .nav-item:last-child {
    border-bottom: none;
}
.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #79155B;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}
.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #535766;
    background: transparent;
    padding: 10px;
    border-radius: 0px;
}
.sidebar-nav .nav-item .nav-link.active {
    color: #253237;
    font-weight: 600;
}
.sidebar-nav .nav-link i {
    font-size: 12px;
    margin-right: 10px;
    color: #535766;
}
.sidebar-nav .nav-link.collapsed {
    color: #787f87;
    background: transparent;
}
.sidebar-nav .nav-link.collapsed i {
    color: #787f87;
}
.sidebar-nav .nav-link.active i {
    color: #253237;
}
.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
}
.sidebar-nav .nav-link .bi-chevron-up {
    margin-right: 0;
}
.sidebar-nav .nav-content {
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav-item.menu ul {
    display: none;
}
.sidebar-nav .nav-content .multilevel_menu {
    padding: 0px 0px 0px 20px;
}
.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #535766;
    padding: 7px 10px 7px 20px;
    transition: 0.3s;
    cursor: pointer;
}
.sidebar-nav .nav-content a i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
}
.sidebar-nav .nav-content a .badge-number {
    margin-left: auto;
    font-size: 10px;
    font-weight: 600;
}
.sidebar-nav .nav-content a.active {
    color: #253237;
    font-weight: 600;
}
/* footer css */
.footer_fixed {
    height: 50px;
}
.footer {
    padding: 15px 0;
    font-size: 13px;
    transition: all 0.3s;
    border-top: 1px solid #DFDFDF;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #f6f6f8;
    height: 50px;
}
.footer .copyright {
    text-align: center;
    color: #012970;
}
/* new css start */
.section {
    background-color: #fff;
}
.section .section-title {
    font-size: 15px;
    font-weight: 500;
    color: #79155B;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
    padding-bottom: 2px;
}
.section .section-title .bi {
    margin-right: 5px;
    font-size: 18px;
}
.section .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #79155B;
    opacity: 0.5;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
.Admin_Input_Form .form-group .form-label {
    font-size: 13px;
    margin-bottom: 3px;
    color: #181818;
    font-weight: 600;
}
.Admin_Input_Form .form-group .form-label span {
    color: #fa1d05;
}
.form-check-input[type=checkbox] {
    border-radius: 3px;
}
.Admin_Input_Form .form-group {
    margin-bottom: 15px;
}
#inlineform .Admin_Input_Form .form-group {
    margin-bottom: 0;
}
.Admin_Input_Form .form-group .form-control {
    font-size: 13px;
    color: #535766;
    font-weight: 600;
    height: 42px;
    border-radius: 3px;
    line-height: 30px;
    border: 1px solid #DFDFDF;
}
.Admin_Input_Form .form-group .form-control:focus {
    border-color: #D44145;
}
.Admin_Input_Form .form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 9px;
    width: 100%;
}
.Admin_Input_Form .form-submit-btn .upload_btn {
    min-width: 145px;
    font-size: 15px;
    font-weight: 600;
    height: 42px;
    line-height: 18px;
    width: 100%;
    background-color: #253237;
    border: none;
    border-radius: 3px;
    transition: all 500ms ease;
    color: #fff;
}
.Admin_Input_Form .form-submit-btn .btn-success {
    background-color: #198754;
    margin-right: 15px;
}
.Admin_Input_Form .form-submit-btn .btn-danger {
    background-color: #b02a37;
}
.Admin_Input_Form .form-submit-btn .upload_btn:hover {
    background-color: #D44145;
    transition: all 500ms ease;
}
.Admin_Input_Form .form-group .form_img_DIV {
    height: 50px;
    width: 100px;
    margin-top: 5px;
    display: block;
}
.Admin_Input_Form .form-group .form_img_DIV img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 3px;
}
.Admin_Input_Form .input_file {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.Admin_Input_Form .form-group .updateimg_input {
    opacity: 0;
    position: absolute;
    padding: 0;
    border: 0;
}
.Admin_Input_Form .choose_file_btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    background-color: #800080;
    color: white;
    font-size: 13px;
    -webkit-transition: 500ms all;
    -moz-transition: 500ms all;
    transition: 500ms all;
    height: 42px;
    font-weight: 600;
    border-radius: 3px 0 0 3px;
}
.Admin_Input_Form .image_path {
    width: calc(100% - 90px);
    border: 1px solid #ced4da;
    border-left: none;
    border-radius: 0 3px 3px 0;
    font-size: 13px;
    height: 42px;
    padding: 5px;
    color: #444444;
    font-weight: 600;
}
#inlineform form .row .col-sm-12:last-child {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
#inlineform .Admin_Input_Form .form-submit-btn .upload_btn {
    min-width: 100%;
}
/* details css start */
.section .details_container {
    border: 1px solid #DFDFDF;
    border-radius: 3px;
    margin-bottom: 24px;
}
.section .row .col-sm-12 .details_container {
    margin-bottom: 24px;
}
.section .row .col-sm-12:last-child .details_container {
    margin-bottom: 0;
}
.section .details_container:last-child {
    margin-bottom: 0;
}
.details_container .details_header {
    background-color: #f4f6f9;
    border-radius: 3px 3px 0 0;
    padding: 12px;
    border-bottom: 1px solid #DFDFDF;
}
.section .details_header .section-title {
    margin-bottom: 0;
}
.details_card_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFDFDF;
}
.details_body .details_card_flex:last-child {
    border-bottom: none;
}
.details_card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    width: 50%;
}
.section .row .col-xl-6 .details_card {
    width: 100%;
}
.details_card label {
    font-size: 14px;
    margin-bottom: 0;
    width: 220px;
    color: #777;
    display: flex;
    align-items: center;
}
.details_card label span {
    background-color: #C23373;
    color: #fff;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 15px;
}
.details_card h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    width: calc(100% - 230px);
    word-break: break-all;
    color: #363636;
}
.details_card h5 .badge {
    font-size: 14px;
    border-radius: 3px;
}
.details_card .form-control {
    width: calc(100% - 230px);
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    height: 34px;
    border-radius: 3px;
}
.details_card.flexx_carrd {
    justify-content: center;
}
.details_card.flexx_carrd .document_img {
    display: block;
    height: 130px;
    width: 150px;
    border: 1px solid #e5e5e5;
    margin-right: 15px;
    border-radius: 3px;
    text-align: center;
}
.details_card.flexx_carrd .document_img.height_80 {
    height: 80px;
}
.details_card.flexx_carrd .document_img:last-child {
    margin-right: 0;
}
.details_card.flexx_carrd .document_img img {
    max-width: 100%;
    height: 100%;
    border-radius: 3px;
}
.admin_profilepic {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 100%;
}
.admin_profilepic img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
}
.admin_profile_update {
    background-color: #fff;
    padding: 15px;
}
.admin_profile_update .row .col-sm-12 {
    margin-left: 0;
    margin-right: 0;
    padding: 0 12px;
}
.admin_profile_update .form-group .paasword-icon {
    position: absolute;
    right: 5px;
    top: 52%;
    width: 18px;
    cursor: pointer;
    z-index: 999;
}
/* webp progress bar */
.progress_result {
    margin-top: 20px;
    display: none;
}
.progress_result .progress {
    border-radius: 3px;
    height: 15px;
}
#uploadStatus {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 600;
}
.imgdownload_bttn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgdownload_link {
    background: linear-gradient(to right, #DF4979 0%, #E36B31 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 200px;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 30px;
    border-radius: 3px;
}
.imgdownload_link:hover {
    color: #fff;
}
.imgdownload_link .bi {
    margin-right: 3px;
}
/* media query start */
@media screen and (max-width: 1200px) {
    #main {
        margin-left: 0;
    }
    #footer {
        margin-left: 0;
    }
    .sidebar {
        left: -230px;
    }
    .toggle-sidebar .sidebar {
        left: 0;
    }
}
@media screen and (max-width: 992px) {
    .discount_flex .form-group {
        width: 30%;
    }
    .header .toggle-sidebar-btn {
        padding-left: 0;
    }
    .header-nav {
        margin-left: 0;
    }
    .logo_container {
        justify-content: space-between;
    }
    .logo {
        width: auto;
    }
}
@media screen and (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    .header {
        padding-left: 10px;
    }
    .details_card_flex {
        display: block;
    }
    .details_card {
        width: 100%;
        border-bottom: 1px solid #DFDFDF;
    }
    .details_card_flex .details_card:last-child {
        border-bottom: none;
    }
    .footer {
        height: auto;
    }
}
@media screen and (max-width: 576px) {
    .details_card label {
        font-size: 13px;
        width: 200px;
    }
    .details_card {
        padding: 10px;
    }
    .details_card h5 {
        font-size: 13px;
        width: calc(100% - 200px);
    }
}
@media screen and (max-width: 480px) {
    .login_container .login_form_div {
        width: 400px;
        padding: 15px;
    }
    .dropdown-menu {
        width: 100vw !important;
    }
}
@media screen and (max-width: 400px) {
    .login_container .login_form_div {
        width: 380px;
        padding: 15px;
    }
}