﻿body,
.hk-pg-wrapper {
    /* background-color: #f3f3f9; */
    background: #f2f2f2;
    /* background: #f3f6f4;  */
    color: #1a1549;
}

/* Shared authentication pages: login, registration and forgot password */
html:has(.auth-page),
body:has(.auth-page) {
    margin: 0;
    background: #fff;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html:has(.auth-page)::-webkit-scrollbar,
body:has(.auth-page)::-webkit-scrollbar {
    display: none;
}

.auth-page {
    --auth-navy: #1a1549;
    --auth-burgundy: #99103b;
    --auth-muted: #6f7285;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: grid;
    place-items: center;
    padding: 16px;
    box-sizing: border-box;
    background: #fff;
    overflow: hidden;
}

.auth-card {
    width: min(100%, 1080px);
    height: min(640px, calc(100dvh - 32px));
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(330px, .9fr) minmax(420px, 1.1fr);
    overflow: hidden;
    border: 1px solid rgba(26, 21, 73, .08);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(26, 21, 73, .2);
}

/* .auth-page--register .auth-card {
    width: min(100%, 1180px);
    grid-template-columns: minmax(300px, .75fr) minmax(620px, 1.25fr);
} */

.auth-brand-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 88%, rgba(153, 16, 59, .85), transparent 38%),
        radial-gradient(circle at 100% 0%, rgba(116, 94, 230, .3), transparent 42%),
        linear-gradient(145deg, #1a1549, #231c5b);
}

.auth-brand-panel::before {
    content: "";
    width: 320px;
    height: 320px;
    position: absolute;
    right: -180px;
    top: -160px;
    border: 55px solid rgba(255, 255, 255, .045);
    border-radius: 50%;
}

.auth-portal-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 77px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.auth-portal-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4f87;
    box-shadow: 0 0 0 5px rgba(255, 79, 135, .12);
}

.auth-brand-panel h2 {
    max-width: 360px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.auth-brand-panel p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.7;
}

.auth-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.auth-benefits span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.auth-brand-footer {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    letter-spacing: .1em;
}

.auth-form-panel {
    padding: 24px clamp(38px, 5vw, 68px);
    display: flex;
    align-items: flex-start;
}

.auth-page--register .auth-form-panel {
    padding-inline: clamp(34px, 4vw, 56px);
}

.auth-form-inner {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.auth-page--register .auth-form-inner {
    max-width: 620px;
}

.auth-logo {
    width: min(100%, 250px);
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.auth-heading {
    margin-bottom: 20px;
}

.auth-heading h1 {
    margin: 0 0 7px;
    color: var(--auth-navy);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.auth-heading p {
    margin: 0;
    color: var(--auth-muted);
    font-size: 14px;
    line-height: 1.5;
}

.auth-form .form-group {
    position: relative;
    margin-bottom: 14px;
}

.auth-form .field-label {
    display: block;
    margin-bottom: 7px;
    color: var(--auth-navy);
    font-size: 14px;
    font-weight: 600;
}

.auth-form .form-control {
    width: 100%;
    height: 52px;
    padding: 12px 44px 12px 15px;
    border: 1px solid #e0e1e8;
    border-radius: 12px;
    background: #f9f9fc;
    color: var(--auth-navy);
    font-size: 14px;
    box-shadow: none;
}

.auth-form .form-control:focus {
    border-color: var(--auth-navy);
    box-shadow: 0 0 0 3px rgba(26, 21, 73, .1);
}

.auth-form .form-group > i {
    position: absolute;
    right: 15px;
    top: 43px;
    color: #8f92a1;
    font-size: 17px;
    line-height: 1;
}

.auth-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
}

.auth-fields-grid .auth-field-full {
    grid-column: 1 / -1;
}

.auth-form textarea.form-control {
    height: 90px;
    min-height: 90px;
    padding-top: 12px;
    resize: vertical;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 2px 0 16px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--auth-muted);
    font-size: 13px;
}

.auth-remember input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--auth-burgundy);
}

.auth-link {
    color: var(--auth-navy);
    font-size: 13px;
    font-weight: 600;
}

.auth-link:hover {
    color: var(--auth-burgundy);
}

.auth-submit {
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #99103b, #b91750);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(153, 16, 59, .2);
}

.auth-submit:hover,
.auth-submit:focus {
    color: #fff;
    background: #7f0d31;
}

.auth-separator {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    color: #9b9eaa;
    font-size: 11px;
    text-transform: uppercase;
}

.auth-separator::before,
.auth-separator::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #e2e3e9;
}

.auth-switch {
    margin: 0;
    color: var(--auth-muted);
    font-size: 13px;
    text-align: center;
}

.auth-switch a {
    color: var(--auth-navy);
    font-weight: 700;
}

.auth-page .alert {
    margin-bottom: 14px;
    border-radius: 10px;
}

@media (max-width: 720px) {
    .auth-page {
        padding: 12px;
    }

    .auth-card,
    .auth-page--register .auth-card {
        width: min(100%, 540px);
        height: calc(100dvh - 24px);
        grid-template-columns: 1fr;
    }

    .auth-page--register .auth-card {
        overflow-y: auto;
        scrollbar-width: none;
    }

    .auth-page--register .auth-card::-webkit-scrollbar {
        display: none;
    }

    .auth-brand-panel {
        display: none;
    }

    .auth-form-panel,
    .auth-page--register .auth-form-panel {
        padding: 20px 30px;
    }

    .auth-fields-grid {
        gap: 0 10px;
    }
}

@media (max-width: 480px) {
    .auth-page {
        display: block;
        padding: 0;
    }

    .auth-card,
    .auth-page--register .auth-card {
        width: 100%;
        height: 100dvh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .auth-form-panel,
    .auth-page--register .auth-form-panel {
        padding: 18px 22px;
    }

    .auth-logo {
        width: 190px;
        margin-bottom: 16px;
    }

    .auth-heading h1 {
        font-size: 22px;
    }
}

@media (max-height: 600px) {
    .auth-logo {
        width: 150px;
        margin-bottom: 10px;
    }

    .auth-heading {
        margin-bottom: 12px;
    }

    .auth-heading h1 {
        font-size: 21px;
    }

    .auth-heading p {
        font-size: 12px;
    }

    .auth-form .form-group {
        margin-bottom: 8px;
    }

    .auth-form .field-label {
        margin-bottom: 4px;
        font-size: 14px;
    }

    .auth-form .form-control {
        height: 42px;
        padding-block: 7px;
        font-size: 13px;
    }

    .auth-form .form-group > i {
        top: 34px;
        font-size: 14px;
    }

    .auth-options {
        margin-bottom: 8px;
    }

    .auth-submit {
        height: 40px;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .auth-separator {
        margin-bottom: 6px;
    }
}

.custom-bg {
    background: url(../img/login-bg.svg) top left repeat;
    background-size: cover;
    top: 0;
    width: 100%;
    text-align: center;
    bottom: 0;
    opacity: 1;
    z-index: 999;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.custom-bg .form-inner {
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 50px 75px;
    background: #fff;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 35px rgb(0 0 0 / 10%);
}

.primary-heading h1 {
    color: #1A1549;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;

}

.divider {
    background-color: #1A1549;
    height: 3px;
    border-radius: 18px;
    width: 100%;
    max-width: 79px;
    margin: 0 auto;
}

.mb-27 {
    margin-bottom: 27px;
}

.mb-36 {
    margin-bottom: 36px;
}

.loginforms .form-group input {
    border: 0;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 18px 0;
    font-size: 18px;
    line-height: 20px;
    height: auto;
    padding-right: 36px;
}

.loginforms .form-group {
    position: relative;
    margin-bottom: 25px;
}

.loginforms .form-group i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ADA9A9;
}

.toggle-password {
    cursor: pointer;
}

.form-group.custom-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.keep-me-logged .custom-control-label {
    font-size: 18px;
    line-height: 24px;
    color: #ADA9A9;
    padding-left: 9px;
}

.option-sep {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 18px;
    color: #ADA9A9;
}

.or-divider {
    background: #ADA9A9;
    height: 1px;
    width: 100%;
}

.forgetpass p a {
    font-size: 18px;
    text-decoration: underline;
    color: #1A1549;
    line-height: 40px;
    display: block;

}

.keep-me-logged input {
    width: 20px;
    height: 20px !important;
}

.keep-me-logged .custom-control-label::before,
.keep-me-logged .custom-control-label::after {
    width: 20px;
    height: 20px !important;
    border-radius: 0;

    background-size: 70% 68%;
}

.theme-cus-btns {
    height: 44px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 28px;
}

.dontaccount p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 28px;
    color: #ADA9A9;
}

.dontaccount p a {
    font-weight: 600;
    color: #1A1549;
}

.dontaccount p a:hover,
.forgetpass p a:hover {
    color: #99103b;
}

.form-inner .form-control.is-invalid,
.form-inner .was-validated .form-control:invalid,
.form-inner .form-control.is-valid,
.form-inner .form-control.is-valid,
.was-validated .form-control:valid {
    background-position: right calc(.375em + 1.0875rem) center !important;
}

.loginforms .is-invalid+i {

    top: 29%;
}

button.theme-cus-btns:disabled {
    background: #ccc;
    border: 2px solid #ccc;
    cursor: no-drop;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {

    border-color: #1a1549;
}

.text-para {
    color: #1a1549;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.2px;
    font-weight: 500;
}


.custm-top-left-bar li form.newSerch-form {
    position: inherit;
    transform: none;
    transition: none;
    width: 388px;
}

.custm-top-left-bar {
    margin-right: auto;
    margin-left: 0 !important;
    gap: 20px;
}

.custm-top-left-bar li a.nav-cus-bar {
    line-height: normal !important;
    display: flex;
    align-items: center;
    margin-right: 0 !important;
}

.custm-top-left-bar .newSerch-form input {
    background: #F5F6FA;
    color: #1a1549;
    height: 38px;
    border-radius: 50px;
    border: 1px solid #D5D5D5;
    font-size: 14px;
    padding-right: 30px;
}

.customgap {
    gap: 36px;
    padding: 7px 14px !important;
    border-bottom: 1px solid #ddd;
}

.desktop-hide {
    display: none;
}

.hk-wrapper .hk-navbar .navbar-nav .nav-item.dropdown.dropdown-authentication .nav-link .media .media-img-wrap .avatar.cus-picture {
    width: 44px;
    height: 44px;
}

.hk-wrapper .hk-navbar .navbar-nav .nav-item.dropdown.dropdown-authentication .nav-link .media .media-body>span {
    color: #1A1549;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    gap: 8px;
}

.circle-arrow {
    border: 1px solid #5C5C5C;
    border-radius: 100%;
    display: flex;
    height: 18px;
    width: 18px;
    align-items: center;
    justify-content: center;
}

.user-profile-pic {
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #ddd;
    width: 100%;
}

.hk-wrapper .hk-navbar.navbar-light .navbar-brand {
    color: #1a1549;
}

.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    /* margin: 0 14px; */
    /* background: #ddd; */
    margin-bottom: 10px;
    border-radius: 6px;
    position: relative;
    padding: 12.5px;
}

.hk-wrapper.hk-vertical-nav .hk-nav .navbar-nav li .nav-link::before {
    content: "";
    position: absolute;
    left: -14px;
    background: #1a1549;
    width: 4px;
    height: 100%;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.hk-footer-wrap {
    border-top: 1px solid #ddd;
    background: #fff;
    text-align: center;

}

.wrapperthemes {
    margin-bottom: 130px;
}

.hk-wrapper.hk-vertical-nav .hk-nav .navbar-nav li {
    padding: 0 14px;
    box-sizing: border-box;
}

.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .navbar-nav .nav-item.active>.nav-link {
    color: #1a1549;
}

.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .nav-header {
    color: #1a1549;
}

.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .navbar-nav .nav-item.active>.nav-link {
    background: #231d5e;
    color: #fff;
}

.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark {
    background: #1a1549;
    box-shadow: none;
    border-right: 1px solid #ddd;
}

.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .navbar-nav .nav-item .nav-link:hover {
    background: #231d5e;
    color: #fff;
}

.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .navbar-nav .nav-item .nav-link:hover:before,
.hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .navbar-nav .nav-item.active>.nav-link::before {
    background: #ffffff;
}


/*Services Sections*/
.maine-service-item {
    border: 1px solid #D5D5D5;
    background: #FBFCFF;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.maine-service-item label {
    font-size: 16px;
    font-weight: 600;
    color: #1A1549;
    line-height: 20px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

/* 
.maine-service-item input:checked+label::before {
    background-color: #1A1549;
    border-color: #1A1549;
}

.maine-service-item label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #FBFCFF;
    border: 1px solid #D5D5D5;
    border-radius: 100%;
    padding: 11.5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 24px;
}
.maine-service-item .subServicesWraper label:before{
    border-radius: 6px;
}
.maine-service-item input {
    display: none;
}

.maine-service-item .subServicesWraper input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 32px;
    left: 34px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.maine-service-item input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 32px;
    left: 34px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.maine-service-item input:checked+label::before{
    background-color: #fff;
}
.maine-service-item input:checked+label:after{
    top: 32px;
    left: 29px;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    background: #1A1549;
    border: 2px solid #1A1549;
}
.maine-service-item .subServicesWraper input:checked+label:after{
border-radius: 0;
}
.maine-service-item .subServicesWraper input:checked+label::before {
    background-color: #1A1549;
}
.maine-service-item .subServicesWraper input:checked+label:after{
    top: 21px;
} */


/* RADIO BUTTON STYLING */
.maine-service-item input[type="radio"] {
    display: none;
}

.maine-service-item input[type="radio"]+label::before {
    content: '';
    background-color: #FBFCFF;
    border: 1px solid #D5D5D5;
    border-radius: 100%;
    padding: 11.5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 24px;
}

.maine-service-item input[type="radio"]:checked+label::before {
    background-color: #fff;
    border-color: #1A1549;
}

.maine-service-item input[type="radio"]:checked+label::after {
    content: '';
    display: block;
    position: absolute;
    top: 32px;
    left: 29px;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    background: #1A1549;
    border: 2px solid #1A1549;
}

/* CHECKBOX STYLING */
.maine-service-item input[type="checkbox"] {
    display: none;
}

.maine-service-item input[type="checkbox"]+label::before {
    content: '';
    background-color: #FBFCFF;
    border: 1px solid #D5D5D5;
    border-radius: 6px;
    padding: 11.5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 24px;
}

.maine-service-item input[type="checkbox"]:checked+label::before {
    background-color: #1A1549;
}

.maine-service-item input[type="checkbox"]:checked+label::after {
    content: '';
    display: block;
    position: absolute;
    top: 31px;
    left: 34px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 0;
}

.maine-service-item .subServices-item input[type="checkbox"]:checked+label::after {
    top: 21px;
}

.service-label {
    display: block;
    padding: 28px 25px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subServicesWraper .subServices-item label.service-labels {
    display: block;
    padding: 17px 25px;
    width: 95%;
    cursor: pointer;
    border-bottom: 1px solid #D5D5D5;
    background: #FBFCFF;
    border-radius: 0px;
    margin-bottom: 5px;
    margin-left: 4%;
}

.subServicesWraper .subServices-item:last-child label {
    border-bottom: none;
}

.btm-fixed-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    padding: 10px 0;
    position: fixed;
    bottom: 79px;
    z-index: 1;
    width: 100%;
    padding-left: 320px;
    right: 0;
    left: auto;
    padding-right: 15px;
    border-top: 1px solid #ddd;

}

.btm-fixed-btn .btn-items button {
    font-size: 14px;
    line-height: 27px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 125px;
    justify-content: center;
    background-color: #1A1549;
    margin-right: 13px;
}

.btm-fixed-btn .btn-items button:hover {
    background-color: #99103b;
}

.hk-wrapper.hk-vertical-nav.hk-nav-toggle .hk-nav {
    width: 65px;
}

.btm-fixed-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    padding: 10px 0;
    width: 100%;


}

.progress {
    background-color: #d3d3d3;
}

.maine-service-wrapper .step label small.form-text {
    margin-top: 0;
    color: #1a1549;
    font-style: italic;
    font-size: x-small;
}

.form-text {
    color: #1a1549;
    font-style: italic;
    font-size: x-small;
}

.btm-fixed-btns .btn-items button {
    font-size: 14px;
    line-height: 27px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 125px;
    justify-content: center;
    background-color: #1A1549;
}

.btm-fixed-btns .btn-items button:hover {
    background-color: #99103b;
}

.seperater {
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
    padding-top: 15px;
}

.hk-pg-wrapper .hk-pg-header .hk-pg-title {
    color: #1A1549;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1549;
    transition: color 0.3s ease;
}

.hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon i,
.hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-text {
    font-weight: 700;
    font-size: 30px;
}

.dropdown-menu .dropdown-item i {
    color: #adb3b6;
    padding-right: 8px;
}

.buttoncustomize .btn {
    font-size: 13px;
    font-weight: 500;
}

.dark #logout .modal-content {
    background: #334155;
    color: #fff;
}

.dark #logout .modal-content .modal-header .modal-title,
.dark #logout .modal-content .modal-body h5 {
    color: #fff;
}

.actionbtnsizes {
    min-height: 52px;
    height: 100%;
}

.alert.page-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: row-reverse; */
    padding: 13px 15px !important;
    box-sizing: border-box;
}

.dark .btn-close {
    filter: invert(1);
}

.dark .alert-danger .btn-close {
    filter: invert(0);
}

.alert.page-alert .btn-close {
    padding: 0px !important;
    height: 100%;
    padding-right: 40px !important;
}

.dt-info {
    font-weight: 600;
    color: #475569;
    padding-top: 20px;
}

/* Credit Account Summary */
h2.mainheadsummury {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px !important;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    line-height: 45px;
    background: #1a1549;
    color: #fff;
    padding-left: 12px;
}

.headingsvgicon {
    width: 30px;
    height: 30px;
    border-radius: 0.5rem;
    background: #99103b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headingsvgicon svg {
    width: 20px;
}

.headingsvgicon svg path {
    color: #fff;
}

.headingsvgicon i {
    color: #fff !important;
}

.association-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: block;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.association-original-name {
    max-width: 150px;
}

.association-card {
    cursor: pointer;
    display: grid;
    grid-template-columns: 40% 5% 55%;
}

.association-name {
    color: #0f172a;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 14px;
}

.association-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.association-type-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #1d4ed8;
    background: #eff6ff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #dbeafe;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.association-arrow-line {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.association-arrow-line-sep {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 1px;
    background: #e2e8f0;
}

.association-arrow-icon {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0 6px;
}

.association-card-divider {
    display: none;
}

.association-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
    .association-card-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
        justify-content: space-between;
    }
}

.association-card-left>div:first-child,
.association-card-left>.association-connector,
.association-card-left>.association-associated-name {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .association-card-left>div:first-child {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-bottom: 0;
    }

    .association-card-left>.association-connector {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-bottom: 0;
        padding: 0 10px;
    }

    .association-card-left>.association-associated-name {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-bottom: 0;
        text-align: right;
    }
}

/* Vertical divider between left and right sections */
.association-card-divider {
    display: none;
}

@media (min-width: 768px) {
    .association-card-divider {
        display: block;
        width: 1px;
        min-height: 60px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background: #f1f5f9;
        margin: 0 20px;
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }
}

/* Right section: uses Bootstrap 3 .row and .col-sm-* */
.association-card-right {
    -webkit-box-flex: 3;
    -ms-flex: 3 1 auto;
    flex: 3 1 auto;
    font-size: 14px;
}

@media (min-width: 768px) {
    .association-card-right {
        margin-top: 0;
    }
}

.association-card-right .row {
    margin-left: -15px;
    margin-right: -15px;
}

.association-card-right .association-address-col {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .association-card-right .association-address-col {
        margin-bottom: 0;
    }
}

.association-card-right .row {
    margin-left: -15px;
    margin-right: -15px;
}

.association-address {
    color: #475569;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.association-value {
    color: #334155;
    font-weight: 500;
    margin: 0;
    font-size: 14px;
}

.association-source-wrap {
    margin-top: 8px;
}

.association-source-badge {
    display: inline-block;
    font-size: 12px;
    color: #64748b;
    background: #f8fafc;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.association-noc {
    color: #94a3b8;
    font-style: italic;
    font-size: 12px;
    margin: 0;
}

/* End Credit Account Summary */
/* Address History */
.subheadingaddhistory {
    background-color: #fff;
    padding: 14px 10px;
    box-sizing: border-box;
    border-radius: 0.5rem;
    border: 1px solid #bcd5e6;
    margin-bottom: 15px;
}

.addresshistory-cards-container .association-value {
    font-size: 8px;
    align-items: center;
    gap: 3px;
    justify-content: flex-end;
    background: #1a1549;
    display: inline-flex;
    border: 1px;
    padding-top: 0.4rem;
    color: #ffff;
    border-radius: 9999px;
    text-transform: uppercase;
    line-height: 10px;
    vertical-align: middle;
    padding-bottom: 0.3rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    font-weight: 600;
}

.checkcircle {
    color: #4ade80;
    font-size: 12px;
}

.fromaddress-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.addresshistory-cards-container .association-connector {
    text-align: center;
}

.fromaddress-wrap .association-type-badge {
    margin-bottom: 0;
}

.border-seperates {
    display: block;
    width: 1px;
    min-height: 36px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #bcd5e6;
    margin: 0 20px;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    padding: 1px;
}

.addreshistory {
    display: flex;
    align-items: center;
    gap: 10px;
}

.addreshistoryicon {
    width: 35px;
    background: #1a1549;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
}

.addreshistorycontent h2 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #1a1549;
    letter-spacing: 0.03em;
}

.addreshistorycontent>div {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 0;
    color: #1a1549;
}

/* End Address History */
.experian-empty-state {
    padding: 40px 20px;
    text-align: center;
    animation: experianFadeUp .55s ease both;
}

.experian-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f0f4ff;
    margin-bottom: 14px;
    animation: experianFloat 3s ease-in-out infinite;
}

.experian-empty-icon .fa {
    font-size: 28px;
    color: #7b8fc4;
}

.experian-empty-title {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin: 0 0 6px;
    animation: experianFadeUp .65s ease .08s both;
}

.experian-empty-sub {
    font-size: 13px;
    color: #888;
    margin: 0 0 10px;
    animation: experianFadeUp .65s ease .16s both;
}

.experian-empty-debug {
    font-size: 11px;
    color: #bbb;
    margin: 0;
    animation: experianFadeUp .65s ease .24s both;
}

.experian-empty-debug code {
    color: #999;
    background: #f5f5f5;
    padding: 1px 4px;
    border-radius: 3px;
}

@keyframes experianFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes experianFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ── Address Links Legend ─────────────────────────────────── */
.al-legend {
    background: #f8faff;
    border: 1px solid #dde3f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.al-legend-head {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 8px;
}

.al-legend-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.al-legend-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #374151;
}

/* ── Location-type badges ─────────────────────────────────── */
.al-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
    cursor: help;
    position: relative;
}

.al-badge-c {
    background: #1a3060;
}

.al-badge-p {
    background: #7c3aed;
}

.al-badge-f {
    background: #374151;
}

.al-badge-u {
    background: #94a3b8;
}

.al-badge-num {
    background: #d946a8;
}

/* ── Rich hover tooltip ───────────────────────────────────── */
.al-has-tt {
    overflow: visible;
}

.al-tt {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background: #1e293b;
    color: #f1f5f9;
    border-radius: 8px;
    padding: 10px 13px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    z-index: 9999;
    pointer-events: none;
    text-align: left;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal;
}

/* arrow pointing down */
.al-tt::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1e293b;
}

.al-tt-head {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.al-tt-head .fa {
    font-size: 13px;
    color: #93c5fd;
}

.al-tt-body {
    color: #cbd5e1;
    font-size: 11.5px;
    line-height: 1.55;
}

.al-has-tt:hover .al-tt,
.al-has-tt:focus .al-tt {
    display: block;
}

/* keep tooltip inside the viewport on edge badges */
.al-cell-to .al-has-tt .al-tt {
    left: auto;
    right: 0;
    transform: none;
}

.al-cell-to .al-has-tt .al-tt::after {
    left: auto;
    right: 10px;
    transform: none;
}

/* ──Table wrapper ────────────────────────────────────────── */
.al-table {
    border: 1px solid #dde3f0;
    border-radius: 8px;
    overflow: hidden;
}

/* ── Header row ─────────────────────────────────────────── */
.al-head {
    display: flex;
    align-items: center;
    background: #1a3060;
    padding: 10px 18px;
}

.al-head .al-cell {
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: .6px;
    border-bottom: none;
}

.card-footers.gap-12 {
    display: flex;
    gap: 12px;
    justify-content: end;
}

input[readonly="readonly"] {
    background: #e4e4e4;
    cursor: not-allowed;
}

input[readonly="readonly"]:focus {
    background: #e4e4e4;
    border-color: #e4e4e4 !important;
    outline: none !important;
    box-shadow: none;
}

.fieldsref {
    padding: 11px 12px !important;
}

.dark .hk-breadcrumb .breadcrumb .breadcrumb-item a,
.dark .hk-breadcrumb .breadcrumb .breadcrumb-item,
.dark .hk-breadcrumb .breadcrumb {
    color: #fff !important;
}

/* ── Data rows ─────────────────────────────────────────── */
.al-row {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    background: #fff;
    border-top: 1px solid #eef0f6;
    gap: 0;
    transition: background .12s;
    animation: experianFadeUp .35s ease both;
}

.al-row:hover {
    background: #f5f8ff;
}

/* ── Shared cell base ─────────────────────────────────────── */
.al-cell {
    padding-right: 16px;
    box-sizing: border-box;
}

.al-cell-date {
    flex: 0 0 130px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.al-cell-from {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.al-cell-addr {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.al-cell-to {
    flex: 0 0 60px;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
}

/* ── Arrow between badges ─────────────────────────────────── */
.al-arrow {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1;
}

/* ── Address text ─────────────────────────────────────────── */
.al-addr-text {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    word-break: break-word;
    flex: 1;
}

/* ── Forward pill ─────────────────────────────────────────── */
.al-fwd-pill {
    display: inline-block;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* ── Super-search green tick ──────────────────────────────── */
.al-tick {
    color: #16a34a;
    font-size: 17px;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Caption (small italic note) ─────────────────────────── */
.al-caption {
    display: block;
    width: 100%;
    font-size: 11px;
    color: #94a3b8;
    font-style: italic;
    margin-top: 1px;
}

/* ── Applicant / Associate section header ─────────────────── */
.al-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eef2fb;
    border-top: 2px solid #1a3060;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #1a3060;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.al-section-header:first-of-type {
    border-top: none;
}

.al-section-name {
    font-weight: 600;
    text-transform: none;
    font-size: 13px;
    color: #334155;
    margin-left: 4px;
}

.heightscrollbar {
    background: #edeff0;
    border-bottom-left-radius: 8px;
    height: auto;
    overflow-y: visible;
    border-bottom-right-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
}

.experian-table-wrap table tr td,
.er-cat-header {
    padding: 7px;
    box-sizing: border-box;
    font-size: 12px;
}

.experian-table-wrap table tr th {
    padding: 7px;
    box-sizing: border-box;
    font-size: 14px;
}

.er-category {
    margin-bottom: 10px;
    box-shadow: 2px 2px 4px #ddd;
    border-left: 4px solid #64748b;
}

.er-cat-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.er-cat-address {
    font-size: 11px;
    font-weight: 600;
    color: #1a154a;
}

.creditaccountdetailswrappers {
    margin-bottom: 20px;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .hk-pg-wrapper .hk-pg-header .hk-pg-title {
        color: #ffffff;
    }

    .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon {
        color: #ffffff;
    }
}

.dark .user-status-sbtn {
    background: rgb(16 185 129 / 29%) !important;
}

.dark .user-status-sbtn:hover {
    background: rgb(16 185 129 / 49%) !important;
}

.dark .btn-warning.user-status-wbtn {
    background: #f59e0b4f !important;
    color: #fff !important;
    border-color: #f59e0b4f !important;
}

table .btn.user-status-sbtn,
.btn-warning.user-status-wbtn {
    line-height: 12px;
    height: auto;
    min-height: auto !important;
    padding: 6px 10px !important;
    border: 0;
}

/* Manual dark theme class support */
.dark .formWraper_section h5 {
    color: #fff;
}

.dark-mode .hk-pg-wrapper .hk-pg-header .hk-pg-title,
[data-theme="dark"] .hk-pg-wrapper .hk-pg-header .hk-pg-title {
    color: #ffffff;
}

.dark-mode .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon,
[data-theme="dark"] .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon {
    color: #ffffff;
}

.maine-service-wrapper .step-container {
    position: relative;
    text-align: center;
    transform: translateY(-53%);
    padding-bottom: 20px;
    border-radius: 2px;
}

.maine-service-wrapper .step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #EFF0F6;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
    /* Added cursor pointer */
}

.maine-service-wrapper .step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: red;
    z-index: -1;
}

.maine-service-wrapper #multi-step-form {
    overflow-x: hidden;
}

.maine-service-wrapper .step-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #EFF0F6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
    color: #6F6C90;
    transition: all 0.2s ease;
    pointer-events: none;
}

.maine-service-wrapper .step-circle.active {
    background-color: #1a1549;
    color: white;
}

.maine-service-wrapper .step {
    display: none;
}

h3.formTopHead span {
    font-weight: 500;
}

.maine-service-wrapper .step h3 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
    align-items: center;
    color: #1A1549;
    line-height: 28px;
}

.avatar-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #dff0fa;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: var(--vz-font-weight-medium);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
}

.bg-warning-subtle {
    background-color: #fef4e4 !important;
}

.bg-warning-subtle i {
    color: #f7b84b !important;

}

.bg-primary-subtle {
    background-color: #e2e5ed !important;
}

.bg-primary-subtle i {
    color: #405189 !important;
}

.avatar-title i {
    color: #299cdb;
    font-size: 25px;
}

.talesHeader {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e2e2;
}

.hk-sec-wrappers {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 0px 18px rgba(0, 0, 0, 0.1);
    margin-bottom: 14px;
    overflow: hidden;
}

.dark .profiledark .card-body {
    background-color: #1e293b !important;
    border-color: #ffffff0d !important;
    color: #fff !important;
}

.dark .profiledark .title-heading span,
.dark .profiledark p,
.dark .profiledark h3 {
    color: #fff !important;

}

.d-flex-iconsTbale.actionbtnsizes a {
    width: 40px !important;
    height: 40px;
    min-width: 40px !important;
    color: #fff !important;
    font-size: 15px;
    border-radius: 4px;
}

.table-wrap-new {
    padding: 15px;
    box-sizing: border-box;
}

.talesHeader {
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #e2e2e2;
}

.maine-service-wrapper .numbr {
    color: #99103b;
    font-weight: 800;
}

.strike-sign {
    color: #f00;
}

.maine-service-wrapper .step label {
    color: #1a1549;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.maine-service-wrapper .step input,
.maine-service-wrapper .step textarea {
    border-color: #D5D5D5;
    border-radius: 4px;
    padding: 7px 12px;
    /* background: #F5F6FA; */
    background: #fff;
    border-width: 1px;
}

.step select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8.84px 10.2px;
    height: auto;
    border-radius: 4px;
    background-image: url(../img/down-arrow.svg);
    background-size: 6% 80%;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    border-width: 1px;
}

.maine-service-wrapper .step textarea {
    height: auto;
}

.step select:focus {
    outline: none;
    border-color: #D5D5D5;
}

.step [type="radio"]:checked,
.step [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.step [type="radio"]:checked+label,
.step [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.step [type="radio"]:checked+label:before,
.step [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #1a1549;
    border-radius: 100%;
    background: #fff;
}

.step [type="radio"]:checked+label:after,
.step [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #1a1549;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.step .d-custflex {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    padding: 13px 0px 13px 11px;
    background: #fff;
}

.step .d-custflex label {
    margin-bottom: 0;
}

.step [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.step [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}






ul.custom-list-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

ul.custom-list-group li:before {
    content: "\f046";
    position: absolute;
    font-family: 'FontAwesome';
    left: 0;
}

ul.custom-list-group li {
    padding-left: 22px;
}

.step .input-box {
    position: relative;
    width: 100%;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    padding: 12px 0px 12px 11px;
    background: #fff;

}

.step .input-box .button {
    position: absolute;
    top: 50%;
    right: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    transform: translateY(-50%);
}

.step .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border: none;
    padding: 0 230px 0 0px;
    background-color: transparent;
}

.step .input-box .button {
    right: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border: none;
    padding: 11px 30px;
    border-radius: 6px;
    background-color: #1a1549;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step .input-box .button:active {
    transform: translateY(-50%) scale(0.98);
}

.formSetheader {
    display: none;
}

.formSetheader.hello-div {
    display: block;
}


.card-animate {
    -webkit-transition: all .4s;
    transition: all .4s;
}

.card-animate:hover {
    -webkit-transform: translateY(-0.225rem);
    transform: translateY(-0.225rem);
    -webkit-box-shadow: 0 5px 10px rgba(30, 32, 37, .12);
    box-shadow: 0 5px 10px rgba(30, 32, 37, .12);

    -webkit-transition: all .4s;
    transition: all .4s;

}

form#multi-step-form input[type="file"] {
    line-height: 19px;
    font-size: 12px;
    padding-top: 11px;
    padding-bottom: 35px;
}

.box-forms {
    width: 100%;
    max-width: 350px;
    margin-bottom: 36px;
}

/*  Select Form Auto ya Manual*/
.about-boxarea .box1 {

    border-width: 2px;
    border-style: solid;
    border-color: rgba(5, 83, 70, 0.1);
    border-image: initial;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 2px 3px #ddd;

}

.about-boxarea .box1:hover .box-title {
    color: #fff;
}

.about-boxarea .box1 .box-title {
    color: #1a1549;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    display: inline-block;
    transition: 0.4s;
}

.uploadbtns {
    width: auto !important;
}

.about-boxarea .box1 .icons {
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 60px;
    display: inline-block;
    transition: 0.4s;
    border-radius: 60px;
    background: rgba(5, 83, 70, 0.1);
}

.space16 {
    height: 16px;
}

.about-boxarea .box1 a {
    color: #1a1549;

    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    display: inline-block;
    transition: 0.4s;
}

.about-boxarea .box1:hover {
    background: #1a1549;
    transition: 0.4s;

}

.about-boxarea .box1:hover a {
    color: #fff;
    transition: 0.4s;
}

.about-boxarea .box1:hover .icons {
    /* transform: rotateY(-180deg);
    border-color: #fff; */
    transition: 0.4s;
}

/* .about-boxarea .box1 .icons{
    border: 1px solid #D5D5D5;
} */
.about-boxarea .box1 .icons img {
    width: 100%;
    padding: 20px;
}

.about-boxarea .box1:hover .icons img {
    filter: invert(1);
}

/* End Select Form Auto ya Manual*/




.bg-info-subtle {
    background-color: #dff0fa !important;
}

.text-info {

    color: #299cdb !important;
}

.bg-danger-subtle {
    background-color: #fde8e4 !important;
}

.text-danger {
    color: #99103b !important;
}

.bg-warning-subtle {
    background-color: #fef4e4 !important;
}

.text-warning {
    color: #f7b84b !important;
}

.bg-secondary-subtle {
    background-color: #e1ebfd !important;
}

.text-secondary {
    color: #3577f1 !important;
}

.bg-success-subtle {
    background-color: #daf4f0 !important;
}

.text-success {
    color: #0ab39c !important;
}

.badge {
    font-weight: 700;
}

.or-line {
    font-size: 16px;
    font-weight: 800;
    position: relative;
}

.max-width-350 {
    max-width: 350px;
    width: 100%;
}

.box-forms {
    width: 100%;
    max-width: 350px;
}

#activeTable_wrapper .row:first-child,
#publishedTable_wrapper .row:first-child {
    align-items: end;
}

.new-toggle-wrap .media-body span {
    color: #3577f1;
    padding: 5px 10px;
    border-radius: 3px;
    background: #e1ebfd;
}

.thead-tables tr th {
    font-weight: 700 !important;
    background: #1a1549;
    color: #fff;
    padding: 12px !important;
    font-size: 14px;
    padding-right: 21px !important;
    word-wrap: break-word;
    white-space: nowrap;
}

.full-height-video {
    height: calc(100vh - 293px);
    width: 100%;
    object-fit: cover;
    display: block;
}

.new-toggle-wrap+.dropdown-menu a span {
    font-size: 14px;
    color: #000;
}

.new-toggle-wrap+.dropdown-menu a i {
    font-size: 14px !important;
}

.new-toggle-wrap+.dropdown-menu .dropdown-item {

    border-bottom: 1px solid #dddddd70;
}

.new-toggle-wrap+.dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}

.avtaarImgWrap {
    display: flex;
    align-items: center;
    gap: 29px;
}

.avtaarImgs img {
    width: 160px;
    object-fit: cover;
    vertical-align: middle;
    height: 160px;
}

.avtaarImgs {
    border: 2px solid #1A1549;
    border-radius: 100%;
}








.title-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
}


.editOption a {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}

.custom-table-classes tr td {
    font-size: 12px !important;
    line-height: 28px;
}

.custom-table-classes tr th {
    font-weight: 700;
    font-size: 14px !important;
    line-height: 28px;
    width: 210px;
}

.innerbody .list-unstyled li {
    padding-bottom: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.icontxt {
    display: flex;
    align-items: center;
    gap: 9px;
}

.icontxt i {
    font-size: 18px;
}

.thumb-xl i {
    font-size: 20px;
    color: #1a1549;
}

.thumb-xl {
    width: 60px;
    height: 60px;
}

span.editOption a {
    font-size: 14px;
    color: #1a1549 !important;
}

.chngpsw input {
    border: 1px solid #1a1549;
    border-radius: 4px;
}

table a:hover,
.table a:hover {
    color: #fff !important;
}

.dark .input-box.dark-input-box {
    background-color: #334155 !important;
}

.dark .input-box.dark-input-box input {
    background: #334155 !important;
}

.dark .dark-mode-popup .modal-content {
    background: #1a242f;
    border: 1px solid #fff !important;
}

.dark .dark-mode-popup .modal-content .modal-header h5 {
    color: #fff !important;
}

.dark .dark-mode-popup .modal-content .modal-body input {
    background: #32414e;
    border: 1px solid #3c4b58 !important;
    border-radius: 3px;
    color: #fff;
}

.dark .upload_document .card-header {
    background: #1e293b;
    border-bottom: 1px solid #fff;
}

.dark .upload_document .card-header h5 {
    color: #fff;
}

.dark .upload_document .card-footer {
    background: #1e293b;
}

.formWraper_section {
    margin-bottom: 120px !important;
}

.draftnumbers label {
    padding-top: 10px;
}

.dark .draftnumbers label {
    color: #fff;
}

.upload_document .formWraper_section {
    margin-bottom: 0 !important;
}

.formWraper_section .card-footers {
    bottom: 75px;
}

.dark .formWraper_section .card-footers {
    background: #0f172a !important;
    border-top-color: #475569 !important;
}

.dark .chngpsw input {
    border: 1px solid #1a1549;
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

.profile-colored-themes,
.profile-colored-themes table tr td,
.profile-colored-themes table tr th {
    color: #1a1549 !important;
}

.fw-semibold {
    font-weight: 800;
    font-size: 18px;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #99103b !important;
}

.paragrgh-format p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

ul.ullited-list li {
    position: relative;
    padding-left: 20px;
    line-height: 25px;
}

.ullited-list {
    /* padding-left: 20px; */
    margin-bottom: 20px;
}

ul.ullited-list li:before {
    content: "\f10c";
    position: absolute;
    left: 0;
    font-family: fontawesome;
    font-size: 10px;
}

.avtaarImgWrap .avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 10px 0 auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #1a1549;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #ffffff;
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 140px;
    height: 140px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    margin-top: 10px;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.max-width-500 {
    max-width: 500px;
    margin: 0 auto;
}

.news-img-box {
    border: 1px solid #d5d5d5;
    height: 100%;
    border-radius: 4px;
    text-align: center;
    /* font-size: 9px; */
    font-size: 6.8px;
    padding: 8px;
    background: #f5f6fa;
}

.news-img-box h6,
.news-img-box p {
    opacity: 0.5;
    cursor: no-drop;
}

.maine-service-item .subServicesWraper input[type="radio"]:checked+label::after {
    top: 21px;
}

.nostepper h3.formTopHead {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
    align-items: center;
    color: #1A1549;
    line-height: 22px;
}

.nostepper .d-block label {
    color: #1a1549;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nostepper .d-custflex {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    padding: 13px 0px 13px 11px;
    background: #fff;
}

.nostepper [type="radio"]:checked+label,
.nostepper [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.nostepper [type="radio"]:checked+label:before,
.nostepper [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #1a1549;
    border-radius: 100%;
    background: #fff;
}

.nostepper [type="radio"]:checked+label:after,
.nostepper [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #1a1549;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.nostepper [type="radio"]:checked,
.nostepper [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.nostepper [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.nostepper .d-custflex label {
    margin-bottom: 0;
}

.news-img-box h6 {
    font-size: 11px;
}

.nostepper input {
    border-color: #D5D5D5;
    border-radius: 4px;
    padding: 23px;
    background: #fff;
    border-width: 1px;
}

/*.forms-sub-heading {
    padding-left: 25px;
}
 .forms-sub-heading:before{
        content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    background: #1a1549;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
} */


.checkboxlist ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 10px;
}

.search-reason-check {
    display: flex;
    align-items: self-start;
    gap: 10px;
}

.search-reason-check input[type="checkbox"]+label::before {
    content: '';
    background-color: #FBFCFF;
    border: 1px solid #D5D5D5;
    border-radius: 6px;
    padding: 11.5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.search-reason-check input[type="checkbox"]:checked+label::after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 10px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 0;
}

.search-reason-check label {
    position: relative;
}

.search-reason-check input[type="checkbox"]:checked+label::before {
    background-color: #1A1549;
}

.search-reason-check input[type="checkbox"] {
    display: none;
}

.error {
    border-color: #f00 !important;
}

.headingData {
    font-weight: 700 !important;
    font-size: 16px;
    background-color: #ddd;
}

.customTabledata tr td:nth-child(2) {
    font-weight: 700;
    width: 50%;
}

.maine-service-wrapper .terms-conditions label.form-check-label {
    font-size: 15px !important;
    line-height: 22px;
}

.maine-service-wrapper .terms-conditions label.form-check-label a {
    color: #99103b;
}

.table.table-bordered.customTabledata,
.table-responsive>.table-bordered.customTabledata {
    border: 1px solid #ddd !important;
}

.news-img-box p {
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 0;
}

span#downloadforms,
#printFormBtn {
    position: absolute;
    right: 12px;
    top: 0px;
    cursor: pointer;
}

.maine-service-wrapper form {
    margin-bottom: 90px;
}

.formWraper_section .card-footers button {
    padding: 4px 11px;
}

.formWraper_section {
    background: #f8fafc;
    padding: 30px;
    margin-bottom: 65px;
    border: 1px solid #e6e9ed;
}

.formWraper_section .fileuploadset input[type="file"] {
    padding-bottom: 14px;
    padding-top: 14px;
}

.dark header .dropdown-menu {
    background: #1e293b;
    border-color: #475569;
}

.dark header .dropdown-menu a {
    color: #fff;
}

.dark header .dropdown-menu a:hover {
    background: #334155 !important;
    color: #fff !important;
}

.dark .newpaymentbtn {
    color: #fff !important;
    background: #1ebccd70 !important;
}

.dark .formWraper_section {

    border-color: #475569 !important;
}

.dt-container .dt-length select {
    background-size: 15px 15px;
}

.formWraper_section input.form-control,
.formWraper_section textarea.form-control {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #1a1549;
    color: #1a1549;
}

.formWraper_section .form-group label {
    font-size: 16px;
    font-weight: 600;
}

.formWraper_section input.form-control+small.text-primary {
    font-size: 10px;
    font-weight: 600;
    /* color: #7e7e7e !important; */
}

.formWraper_section .icheck-primary input {
    vertical-align: middle;
}

.formWraper_section .form-group button.btn.btn-primary {
    font-size: 13.56px;
}

.formWraper_section .hk-row {
    margin-bottom: 9px;
}

/* Hide default radio */
.formWraper_section .icheck-primary input[type="radio"] {
    display: none;
}

/* Custom radio style */
.formWraper_section .icheck-primary label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

h6.text-bold.text-success+hr {
    margin-bottom: 10px;
}

h6.text-bold.text-success {
    padding: 10px 0;
    box-sizing: border-box;
}

.standard-advert-wording p {
    margin-bottom: 10px;
    font-size: 14px;
}

.draftnumbers+.col-4 {
    margin-bottom: 10px !important;
}

.draftnumbers+.col-4 input#order_num {
    border-radius: 3px;
}

/* Custom circle */
.formWraper_section .icheck-primary label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #1a1549;
    /* border color */
    border-radius: 50%;
    background-color: #fff;
}

/* Inner circle when checked */
.formWraper_section .icheck-primary input[type="radio"]:checked+label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1a1549;
    /* fill color */
}



/* Override the default footer positioning to fix centering issue */
.hk-wrapper .hk-footer-wrap {
    position: fixed !important;
    left: 117px;
    right: 0;
    bottom: 0;
    z-index: 9;
    text-align: center;
}

/* When sidebar is collapsed (hk-nav-toggle class is active) */
.hk-wrapper.hk-vertical-nav.hk-nav-toggle .hk-footer-wrap {
    left: 65px !important;
}

.order-timeline .trackWrapper .track .step {
    display: block !important;
}

.max-width-160 {
    max-width: 160px;
    margin: 0 auto;
}

.tableBgColor {
    background: #1a1549 !important;
}

table.dataTable thead .sorting {
    background-image: url(../img/sort_both.png) !important;
}

table.dataTable thead .sorting_desc {
    background-image: url(../img/sort_both.png) !important;
}

table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after {
    font-size: 0 !important;
}

.pdfIconsSpace a {
    display: inline-block;
    align-items: center;
    padding: 2px 8px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
    margin-top: 4px;
    color: #99103b;
    border-color: #a4a2b1;
}

.positionAbsolutes {
    position: absolute;
    right: 0;
    top: 0;
}

.pdfIconsSpace a:hover {
    background: #99103b;
    color: #fff;
}

.border-radius-12 {
    border-radius: 12px !important;
}

.border-radius-0 {
    border-radius: 0px !important;
}

.gap-02 {
    gap: 5px;
}

.reportwrappers p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    text-align: justify;
}

.reportwrappers h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    line-height: 51px;
}


/* read more and read less functionality CSS */
.datacollapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 120px;
    transition: max-height 0.4s ease-in-out;
}

.dataexpanded {
    display: block;
    max-height: none;
    overflow: visible;
    transition: max-height 0.4s ease-in-out;
}

.reportsPartSection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.reportsPartSection .hk-sec-wrapper {
    margin-bottom: 0;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.reportsPartSection .hk-sec-wrapper .hk-sec-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1549;
}

.reportsPartSection .hk-sec-wrapper hr {
    margin-top: 10px;
    margin-bottom: 15px;
    border-top: 1px solid #e2e2e2;
}

.reportsPartSection .textContent {
    font-size: 15px;
    line-height: 23px;
    word-wrap: break-word;
    padding: 10px 0;
}

.togglebtn {
    border: 0;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    margin-top: 15px;
    color: #1a1549;
    cursor: pointer;
    outline: 0 !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5px;
    position: relative;
    z-index: 0;
}

.togglebtn::before,
.togglebtn::after {
    content: "";
    height: 1px;
    width: 44%;
    background: #b7b7b7;
    position: absolute;
    z-index: -7;
    left: 0;
}

.togglebtn::before {
    top: 17px;
    /* or wherever you want the first line */
}

.togglebtn::after {
    top: 17px;
    /* or wherever you want the second line */
    right: 0;
    left: auto;
}

.togglebtn:hover {
    color: #99103b;
}

.togglebtn i {
    font-size: 18px;
    vertical-align: bottom;
}

/* End read more and read less functionality CSS */
.dt-search .datatable-search-input {
    padding: 20px 40px !important;
}

.dt-container .dt-paging {
    padding-bottom: 20px !important;
}

#sidebar_header.border-bottom {
    border-color: #585858 !important;
}

#activeTable .btn,
#activeTable .btn-icon,
#activeTable td:last-child a,
#activeTable td:last-child button {
    /* min-width: 40px !important;
                    min-height: 40px !important;
                    width: 40px !important;
                    height: 40px !important; */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px 8px !important;
    margin: 0 4px !important;
    background: transparent;
    color: #fff;
    /* text-decoration: underline;
                    text-underline-offset: 4px; */
}

.d-flexing_tbs a.btn-primary.btn-sm {
    background: #99103b !important;
}

.d-flexing_tbs a.btn-success {
    background: transparent !important;
    color: #475569 !important;
}

.dark .d-flexing_tbs a.btn-success {
    background: rgb(16 185 129 / 29%) !important;
    color: #fff !important;
}

a.loayes {
    color: #475569 !important;
}

a.loayes:hover {
    color: #99103b !important;
}

.dark a.loayes {
    color: #f472b6 !important;
}

.d-flexing_tbs a.btn-success,
#activeTable td:last-child a:hover {
    text-decoration: none;
    background-color: rgb(58 193 94) !important;
    color: #fff !important;
}

.dark .d-flexing_tbs a.btn-success:hover,
.dark #activeTable td:last-child a:hover {
    text-decoration: none;
    background-color: rgb(16 185 129 / 49%) !important;
    color: #34d399 !important;
}

.dark .bg-whites ul.nav .nav-item a:hover {
    color: #fff;
}

.dark .d-flexing_tbs a.btn-primary.btn-sm {
    background: rgb(153 16 59 / 0.4) !important;
    color: #fff !important;
}

.d-flexing_tbs a {
    padding: 2px 8px !important;
}

.d-flexing_tbs a.btn-success,
.d-flexing_tbs a.btn-primary {
    /* text-decoration: underline;
                text-underline-offset: 4px; */
    color: #fff;

}

.d-flexing_tbs a.btn-success:hover,
.d-flexing_tbs a.btn-primary:hover {
    text-decoration: none;
}

#activeTable .btn:hover,
#activeTable .btn-icon:hover,
#activeTable td:last-child a:hover,
#activeTable td:last-child button:hover {
    text-decoration: none;
    background-color: rgb(16 185 129 / 0.1);
    color: #ffffff !important;
}

.dark #activeTable .btn:hover,
.dark #activeTable .btn-icon:hover,
.dark #activeTable td:last-child a:hover,
.dark #activeTable td:last-child button:hover {
    text-decoration: none;
    background-color: rgb(16 185 129 / 0.1);
    color: #fff !important;
}

#activeTable .d-flexing_tbs a.btn-primary.btn-sm:hover,
.d-flexing_tbs a.btn-primary.btn-sm:hover {
    background-color: rgb(153 16 59) !important;
    color: #fff !important;
}

header.h-20 {
    z-index: 9999;
}

.dark .drnclass {
    color: #fff;
}

input#new_order_id {
    border-radius: 3px;
}

/* DataTable search clear button (×) styling */
.dt-container .dt-search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 16px;
    width: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: 16px 16px;
    cursor: pointer;
}

/* Dark mode clear button - white color */
.dark .dt-container .dt-search input[type="search"]::-webkit-search-cancel-button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.logoutIocns {
    text-align: center;
}

.logoutIocns span {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background: #1a2352;
    color: #fff;
}

/* Password Policy Css */
span#validErrorPasswordDetail {
    background: rgb(243 239 239);
    padding: 20px 14px;
    border-top: 4px solid #1a1549;
    position: absolute;
    top: 80px;
    box-shadow: 0 0 3px 1px #ccc;
    z-index: 1;
    border-radius: 0px 0px 25px 25px;
}

ul.pass_digits li {
    font-size: 10px;
    line-height: 20px;
    color: #1a1549;
    position: relative;
    padding-left: 17px;
}

ul.pass_digits li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
}

ul.pass_digits:before {
    height: 0px;
    content: "";
    position: absolute;
    width: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #1a1549;
    top: -15px;
}

/* End Password Policy Css */
/* For mobile responsiveness */
@media (max-width: 1300px) {
    .custom-scrollbar {
        padding: 15px !important;
    }

    .d-flexing_tbs a {
        display: flex;
        justify-content: center;
        /* min-width: 25px !important;
    min-height: 25px !important;
    width: 25px !important;
    height: 25px !important; */
        padding: 5px !important;
    }

    .d-flexing_tbs a img {
        width: 18px !important;
    }

    #sidebar_header+nav.flex-1.custom-scrollbar a {
        padding: 10px !important;
    }

    .hk-pg-header.my-4.pt-1 {
        margin-top: 0px !important;
    }

    div#user_info_card {
        padding: 10px !important;
    }

    div#user_info_card .text-\[14px\] {
        font-size: 12px !important;
    }

    div#user_info_card .text-\[12px\] {
        font-size: 11px !important;
    }

    #sidebar_header.h-20,
    header.h-20 {
        height: 60px;
    }

    .talesHeader {
        padding: 0.8rem 1.5rem;
    }

    .btm-fixed-btn,
    .formWraper_section .card-footers {
        bottom: 43px !important;
    }

    .custom-scrollbar .container-fluid {
        padding-left: 0px;
        padding-right: 0px;
    }

    .wrapperthemes .text-3xl {
        font-size: 18px;
        line-height: 18px;
    }

    .footer .text-lg {
        font-size: 14px;
        line-height: 14px;
        padding: 14px !important;
    }

    .d-flexing_tbs a {
        height: 25px !important;
    }

    .wrapperthemes .p-6.overflow-hidden {
        padding: 14px;
        box-sizing: border-box;
    }

    .wrapperthemes .mb-6 {
        margin-bottom: 10px;
    }

    #activeTable .btn,
    #activeTable .btn-icon,
    #activeTable td:last-child a,
    #activeTable td:last-child button {
        /* min-width: 25px !important;
    min-height: 25px !important;
    width: 25px !important;
    height: 25px !important; */
        padding: 5px !important;

    }

    .d-flexing_tbs a img {
        width: 18px !important;
    }
}

@media (max-width: 1199px) {
    .hk-wrapper.hk-vertical-nav.hk-nav-toggle .hk-footer-wrap {
        left: 238px !important;
    }
}

footer.footer {
    position: relative;
    width: 100%;
}

.card-footers {
    position: fixed;
    background: #ffff;
    left: 0;
    bottom: 61px;
    z-index: 1;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #dddddd6e;
}

.btm-fixed-btn .btn-items button {
    font-size: 12px;
    line-height: 22px;
    width: 120px;
    padding: 5px;
}


label {
    color: #1a1549;
}

.goodsVehicleForm input[type="file"] {
    line-height: 19px;
    font-size: 12px;
    padding-top: 11px;
    padding-bottom: 35px;
}

.goodsVehicleForm select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10.2px;
    height: auto;
    border-radius: 4px;
    background-image: url(../img/down-arrow.svg);
    background-size: 6% 80%;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    border: 1px solid #1a1549;
    padding-right: 40px;
}

.goodsVehicleForm .formWraper_section {
    background: transparent;
}

.permissionLicenceForms input[type="file"] {
    line-height: 19px;
    font-size: 12px;
    padding-top: 11px;
    padding-bottom: 35px;
}

.permissionLicenceForms .formWraper_section {
    background: transparent;
}

.customModalText .modal-content h5 {
    color: #1A1549;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.d_flexing_btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px 0;
}

.d_flexing_btn button {
    font-size: 12px;
}

.spacing_div {
    padding-top: 50px;
    padding-bottom: 20px;
}

.max-width-355 {
    max-width: 350px;
}

.customModalText .modal-body {
    padding: 20px;
}

.uploadDocTitle {
    color: #1A1549;
    font-size: 18px;
    font-weight: 700;
}

.uploadDocbody h5 {
    font-size: 14px;
}

/* .table-wrap-new table td {
    font-size: 12px;
} */

.d-flex-iconsTbale {
    display: flex;
    gap: 3px;
    align-items: center;
}

.d-flexing_tbs a {
    display: flex;
    align-items: center;
    height: 29px;
    border-radius: 3px;
}

.d-flexing_tbs a {
    border-radius: 3px;
}

.d-flexing_tbs {
    display: flex;
    align-items: center;
    gap: 5px;
}

.d-flex-iconsTbale a {
    height: 30px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btm-fixed-btn.justify-content-between.printableBtns .btn-items:last-child a {
    margin-right: 13px;
}

.btm-fixed-btn.justify-content-between.printableBtns .btn-items:first-child a {
    background: transparent;
    border-color: transparent;
    color: #1A1549;
    /* text-decoration: underline; */
}

.btm-fixed-btn.justify-content-between.printableBtns .btn-items:first-child a span {
    border-bottom: 2px solid #1A1549;
}

.btm-fixed-btn.justify-content-between.printableBtns .btn-items:last-child a {
    margin-right: 13px;
    padding: 6px 30px;
}

input#getPostCode {
    border: 1px solid #1A1549;
}

a#printButton {
    background: #99103b;
    border-color: #99103b;
}

.no-print .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.formWraper_section select {
    border: 1px solid #1a1549;
}

.formWraper_section input[type="file"] {
    line-height: 19px;
    font-size: 12px;
    padding-top: 11px;
    padding-bottom: 35px;
}



.TitleWrappers .hk-pg-title {

    margin-bottom: 0;
}

.TitleWrappers p {
    color: #1A1549;
}

.titleIconwrap {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.position-wrappers-html #activeTable_wrapper .row:first-child {
    position: absolute;
    top: -70px;
    right: 0;
}

.position-wrappers-html .newsearchAdded #activeTable_wrapper .row:first-child {
    position: relative;
    right: 0;
    top: 0;
}

.position-wrappers-html .newsearchAdded #activeTable_wrapper .row:first-child #activeTable_filter label {
    font-size: 0;
}

.badge.badge-warning,
.badge.badge-yellow {

    color: #a15928;
}


#activeTable_filter {
    position: relative;
}

#activeTable_filter .datatable-search-input {
    padding-left: 30px;
}

#activeTable_filter::before {
    /* content: "\f002"; */
    font-family: "FontAwesome";
    /* Font Awesome font */
    position: absolute;
    top: 56%;
    left: 10px;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

span.feather-icons i {
    font-size: 17px;
    vertical-align: middle;
}

span.feather-icons {
    min-width: 32px;
    line-height: 25px;

}

.fw-600 {
    font-weight: 600 !important;
}

.secondary-theme-text-color {
    color: #99103b !important;
}

.dark .iconcolored i {
    color: #fff;
}

::selection {
    background: #4c6ef5 !important;
    color: #ffffff !important;
}

::-moz-selection {
    background: #4c6ef5 !important;
    color: #ffffff !important;
}

.dt-container .dt-length select,
#activeTable_filter .datatable-search-input {
    border: 1px solid #ddd;
}

.cardUpdates {
    box-shadow: 0 0px 18px rgb(0 0 0 / 20%);
    border-radius: 12px;
}

.formWraper_section .form-group {
    margin-bottom: 20px;
}

.formWraper_section h5.text-bold {
    padding: 10px;
    box-sizing: border-box;
}

.formWraper_section .form-group.clearfix,
.formWraper_section label[for='instructions'] {
    margin-top: 20px;
}

.d-flexing_tbs {
    display: flex;
    align-items: center;
    gap: 5px;
}

.d-flexing_tbs a {
    display: flex;
    align-items: center;
    /* height: 33px;
    width: 33px; */
    justify-content: center;
}

span.pg-title-text {
    font-size: 19px;
    font-weight: 700;
}

h4.hk-pg-title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 19px;
    font-weight: 700;
}

.dark section.hk-sec-wrappers {
    background: #1e293b;
}

.dark table.dataTable tbody tr {
    background-color: #9f9f9f;
}

.dark h4.hk-pg-title {
    color: #fff;
}

img.avatar-img.rounded-circles {
    width: 22px;
    filter: invert(1);
}

.user-profile-pic i {
    font-size: 18px;
    line-height: 18px;
}

.user-profile-pic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.addDisbaleHover span {
    display: flex !important;
}

.btm-fixed-btn.justify-content-between .btn-items.addDisbaleHover a {
    margin-left: auto;
}

.reportsPartSection .textContent>ul {
    padding-left: 25px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.reportsPartSection .textContent h2+p {
    margin-left: 0;
}

.reportsPartSection .textContent h3,
.reportsPartSection .textContent h2 {
    font-size: 20px;
    font-weight: 700;
}

.dark .reportsPartSection .textContent h3,
.dark .reportsPartSection .textContent h2 {
    color: #fff;
}

.dark .reportsPartSection .togglebtn {
    background: #1e293b !important;
    border: 0 !important;
}

.reportsPartSection .textContent>p {
    margin-left: 20px;
}

.reportsPartSection .textContent h2 {
    margin-bottom: 20px;
}

.reportsPartSection .textContent ul li p {
    margin-bottom: 0;
}


.dark .badge.badge-warning,
.badge.badge-yellow {
    background-color: rgb(245 158 11 / 0.1);
}

.dark .badge.badge-warning,
.dark .badge.badge-yellow {
    color: #fbbf24;
}

.dark .badge.badge-success,
.dark .badge.badge-green {
    background-color: rgb(16 185 129 / 0.1);
    color: #34d399;
}

.dark .badge.badge-info,
.dark .badge.badge-cyan {
    background-color: rgb(139 233 253 / 0.1);
    color: #9de9fd;
}

/* Responsive Styles */
@media (max-width:1366px) {
    .card.card-sm.cardUpdates .card-body {
        padding: 15px;
    }

    .d-flex-iconsTbale.actionbtnsizes a {
        width: 25px !important;
        height: 25px;
        min-width: 25px !important;
        color: #fff !important;
        font-size: 15px;
        border-radius: 4px;
        min-height: 25px !important;
    }

    .d-flex-iconsTbale.actionbtnsizes a i {
        font-size: 12px;
    }

    .formWraper_section .form-group label,
    .formWraper_section textarea.form-control {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .formWraper_section input.form-control {
        padding: 8px;
        height: auto;
        line-height: 19px;
    }

}

@media (max-width:1280px) {
    .nostepper input {
        padding: 12px;
    }

    .btm-fixed-btn.justify-content-between .btn-items a {
        margin-left: 255px;
    }

    .news-img-box p {
        font-size: 10px !important;
        line-height: 12px !important;
        margin-bottom: 0 !important;
    }

    .nostepper .d-custflex {
        padding: 8.5px 0px 4.5px 11px !important;
    }

    .nostepper .d-custflex label,
    .nostepper .d-block label {
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 15px;
    }

    .nostepper [type="radio"]:checked+label:after,
    .nostepper [type="radio"]:not(:checked)+label:after {
        width: 12px;
        height: 12px;
    }

    .nostepper [type="radio"]:checked+label:before,
    .nostepper [type="radio"]:not(:checked)+label:before {
        width: 20px;
        height: 20px;
    }

    .paragrgh-format p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    /* .btm-fixed-btn .btn-items .next-step {
    margin-right: 30px;
} */

    .maine-service-wrapper .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .maine-service-wrapper .step-container {
        padding-bottom: 5px;
        border-bottom: 0px solid #d3d3d3;
        transform: translateY(-67%);
    }

    #multi-step-form .mb-30 {
        margin-bottom: 15px !important;
    }

    .btm-fixed-btn .btn-items button.next-step,
    .btm-fixed-btn .btn-items button.prev-step {
        font-size: 12px;
        line-height: 22px;
        width: 120px;
        padding: 5px;
    }

    .btm-fixed-btn .btn-items button.prev-step {
        margin-left: 255px;
    }

    .step .d-custflex {
        padding: 9.1px 0px 9.1px 11px;
    }

    .step .input-box {
        padding: 0px 0px 0px 11px;
    }

    .step .input-box .button {
        padding: 8px 30px;
    }

    form#multi-step-form input[type="file"] {
        line-height: 17px;
        font-size: 11px;
        padding-top: 8px;
        padding-bottom: 30px;
    }

    .step .input-box input {
        font-size: 14px;
        padding: 10.66px;
    }

    .btm-fixed-btn {
        padding: 5px 0;
    }

    .step .notice-seeking-forms .d-custflex {
        padding: 8.5px 0px 4.5px 11px !important;
    }

    .step [type="radio"]:checked+label:before,
    .step [type="radio"]:not(:checked)+label:before {
        width: 20px;
        height: 20px;
    }

    .step [type="radio"]:checked+label:after,
    .step [type="radio"]:not(:checked)+label:after {
        width: 12px;
        height: 12px;
    }

    .maine-service-wrapper .step label {
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 15px;
    }

    .maine-service-wrapper .step h3 {
        font-size: 14px;
        line-height: 22px;
    }

    ul.ullited-list li {
        font-size: 12px;
        line-height: 20px;
    }

    .form-control {
        font-size: 14px;
    }

    .news-img-box {
        font-size: 4.5px;
    }

    .maine-service-item .subServicesWraper input[type="radio"]:checked+label::after {
        top: 21.5px;
        left: 27px;
        width: 14px;
        height: 14px;
    }

    .custom-bg .form-inner {
        max-width: 470px;
        padding: 17px 30px;
    }

    .primary-heading h1 {
        font-size: 19px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .auth-brand {
        margin-bottom: 10px !important;
    }

    .loginforms .form-group {
        margin-bottom: 15px;
    }

    .theme-cus-btns,
    .option-sep {
        margin-bottom: 15px !important;
    }

    .loginforms .form-group input {
        padding: 15px 0;
    }

    .cus-logo {
        width: 70%;
    }

    .hk-pg-wrapper .hk-pg-header .hk-pg-title {
        font-size: 20px;
        line-height: 28px;
    }

    .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-text {
        font-size: 22px;
    }

    .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon i,
    .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon svg {
        width: 22px;
        height: 22px;
    }

    .card-animate .font-15 {
        font-size: 12px !important;
        line-height: 15px;
    }

    .card-animate .font-14 {
        font-size: 12px !important;
        line-height: 18px;
    }

    .card-animate .display-5 {
        font-size: 1.5rem;
    }

    .card-animate .avatar-title {
        height: 2.5rem;
        width: 2.5rem;
        border-radius: 100% !important;
        display: flex;
        align-items: center;
    }

    .card-animate .avatar-title i {
        font-size: 16px;
    }

    .hk-row.dashboard-row.mb-4 {
        margin-bottom: 10px !important;
    }

    .hk-pg-wrapper .hk-pg-header {
        margin-bottom: 10px !important;
        margin-top: 10px !important;
    }

    .mt-xl-50 {
        margin-top: 14px !important;
    }

    .table.table-bordered th {
        width: auto !important;
    }

    .hk-sec-wrappers .table-wrap-new {
        padding-top: 5px;
    }

    .hk-wrapper.hk-vertical-nav .hk-nav.hk-nav-dark .navbar-nav .nav-item .nav-link {
        margin-bottom: 6px;
        padding: 9.5px;
        font-size: 12px;
    }

    .hk-wrapper .hk-navbar a.navbar-brand {
        font-size: 19px;
    }

    .custm-top-left-bar .newSerch-form input {
        height: 34px;
    }

    .hk-wrapper .hk-navbar .navbar-nav .nav-item.dropdown.dropdown-authentication .nav-link .media .media-img-wrap .avatar.cus-picture {
        width: 34px;
        height: 34px;
    }

    .hk-wrapper .hk-navbar .navbar-nav .nav-item.dropdown.dropdown-authentication .nav-link .media .media-body>span {
        font-size: 12px;
        line-height: 19px;
    }

    .hk-wrapper.hk-vertical-nav .hk-nav {
        top: 31px;
    }

    .service-label {
        padding: 16px 25px;
    }

    .maine-service-item label {
        font-size: 14px;
    }

    .maine-service-item input[type="radio"]+label::before {
        padding: 8.5px;
    }

    .maine-service-item input[type="checkbox"]+label::before {
        padding: 8.5px;
    }

    .maine-service-item input[type="checkbox"]:checked+label::after {
        height: 11px;
        left: 31px;
    }

    .maine-service-item input[type="radio"]:checked+label::after {
        top: 20px;
        left: 27.24px;
        width: 14.5px;
        height: 14.5px;
    }

    .chooseformtypes .maine-service-item input[type="checkbox"]:checked+label::after {
        top: 20px;
    }

    .about-boxarea .box1 .icons {
        height: 70px;
        width: 70px;
    }

    .about-boxarea .box1 {
        min-height: 190px;
    }

    .box-forms,
    .max-width-350 {
        max-width: 300px;
        margin-bottom: 0px;
    }

    .option-sep {
        font-size: 15px;
    }

    .form-mode .option-sep {
        margin-block: 15px !important;
    }

    .about-boxarea .box1 .box-title {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width:1199px) {
    .hk-wrapper.hk-vertical-nav.hk-nav-toggle .hk-nav {
        width: 238px;
    }

    .hk-wrapper.hk-vertical-nav .hk-nav .hk-nav-close .feather-icon>svg {
        stroke: #1a1549;
    }
}

@media (max-width:991px) {
    .btm-fixed-btn {
        padding-left: 15px;
    }

}

@media (max-width:767px) {
    .custm-top-left-bar li form.newSerch-form {
        width: auto;
    }

    .hk-wrapper .hk-navbar.navbar-light .navbar-brand {
        font-size: 20px;
    }

    .forgetpass p a,
    .keep-me-logged .custom-control-label {
        line-height: 22px;
        font-size: 16px;
    }

    .hk-wrapper.hk-vertical-nav.hk-nav-toggle .hk-nav {
        width: 238px;
    }

    .hk-wrapper.hk-vertical-nav .hk-nav .hk-nav-close .feather-icon>svg {
        stroke: #1a1549;
    }

}

@media (max-width:575px) {


    .maine-service-item label {
        height: 62px;
    }

    .box-forms,
    .max-width-350 {

        max-width: 300px;
    }

    .maine-service-item label {
        padding: 15px 12px;
        font-size: 12px;
        line-height: 16px;
        display: flex;
        align-items: center;
    }

    .maine-service-item label:before {
        margin-right: 10px;
        width: 23px !important;
        height: 20px;
        padding: 10.5px;
    }

    .btm-fixed-btn .btn-items button {
        width: auto;
        font-size: 12px;
        line-height: 16px;
    }

    .btm-fixed-btn {
        padding-left: 15px;
    }

    .maine-service-item input:checked+label:after {
        top: 20px;
        left: 22px;
        width: 4px;
        height: 10px;
    }

    .maine-service-item input[type="radio"]:checked+label::after {
        top: 23px;
        left: 16px;
    }

    .maine-service-item .subServicesWraper input:checked+label:after {
        top: 22px;
        left: 35px;
    }

    .loginforms .is-invalid+i {

        top: 22%;
    }

    .step .input-box input {

        border-radius: 4px;
        padding: 13px !important;
        background: #F5F6FA;
        border: 1px solid #D5D5D5;
        margin-bottom: 10px;
    }

    .step .input-box {
        background: transparent;
        border: 0;
        padding: 0;
    }

    .hk-footer-wrap .footer {
        padding: 10px;
    }

    .hk-footer-wrap .footer p {
        font-size: 12px;
        line-height: 21px;
    }

    .step .input-box .button {
        position: inherit;
        top: auto;
        right: auto !important;
        border-radius: 4px !important;
        transform: none;
        width: 100%;
        justify-content: center;
    }

    .maine-service-wrapper .step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .maine-service-wrapper .step h3 {
        flex-direction: column;
        font-size: 14px;
    }

    .maine-service-wrapper .step label {
        font-size: 12px;
    }

    .form-label.alias-cus {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .btm-fixed-btns .btn-items button {
        width: auto;
        font-size: 12px;
        line-height: 16px;
    }

    .step .d-custflex {
        padding: 10px 0px 10px 11px;
    }

    .maine-service-wrapper .step-container {
        border-bottom: 0px solid #D9DBE9;
        margin-bottom: 0 !important;
    }

    .maine-service-wrapper .step input,
    .maine-service-wrapper .step textarea {
        padding: 20px;
    }

    .mb-30 {
        margin-bottom: 15px !important;
    }

    .hk-pg-wrapper .hk-pg-header .hk-pg-title {
        font-size: 20px;
    }

    .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-text {
        font-size: 20px;
    }

    .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon i,
    .hk-pg-wrapper .hk-pg-header .hk-pg-title .pg-title-icon svg {
        width: 20px;
        height: 20px;
    }

    .hk-wrapper .hk-navbar .navbar-nav .nav-item .nav-link {
        line-height: 37px;

    }

    .hk-wrapper .hk-navbar.navbar-light .navbar-brand {
        font-size: 22px;
    }

    .desktop-hide {
        display: block;
    }

    .custm-top-left-bar li form.newSerch-form {
        display: none;
    }

    .customgap {
        gap: 20px;
    }

    .loginforms .form-group input+i {
        font-size: 16px;

    }

    .custom-bg .form-inner {
        padding: 30px;
    }

    .keep-me-logged .custom-control-label {
        padding-left: 0;
    }

    .forgetpass p a,
    .keep-me-logged .custom-control-label {
        line-height: 18px;
        font-size: 14px;
        text-align: left;
    }

    .keep-me-logged .custom-control-label::before,
    .keep-me-logged .custom-control-label::after {
        width: 15px;
        height: 15px !important;
    }

    .primary-heading h1 {
        font-size: 16px;
    }

    .loginforms .form-group input {
        font-size: 14px;
        padding: 10px 0;
    }

    .loginforms .form-group {
        margin-bottom: 26px;
    }

    .forgetpass p a {
        text-align: right;
    }

    .theme-cus-btns {
        font-size: 16px;
        line-height: 24px;
        height: auto;
    }

    .mb-36 {
        margin-bottom: 26px;
    }

    .dontaccount p {
        line-height: 18px;
        font-size: 14px;
    }
}


.disable-select {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;

}

/* Modern Dashboard Styles - Mobile Menu */
@media (max-width: 768px) {
    aside {
        position: fixed;
        left: -100%;
        transition: left 0.3s ease;
        z-index: 50;
    }

    aside.mobile-open {
        left: 0;
    }

    #hk_nav_backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 40;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    #hk_nav_backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

/* DataTables compatibility */
#activeTable_wrapper {
    padding: 0;
}

#activeTable_wrapper .dt-search {
    margin-bottom: 1rem;
}

#activeTable_wrapper .dt-search input {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem !important;
    padding-left: 40px !important;
}

div#alSurveyModal {
    z-index: 9999;
}

#activeTable_wrapper .dt-length {
    margin-bottom: 0px;
}

.step .input-box input[name="newspapername"] {
    height: auto;
}

.dt-length label {
    display: flex;
    align-items: center;

}

table td>a {

    padding: .25rem .5rem;
    border-radius: 3px;
}

.dark .dt-length label {
    color: #e2e8f0;
}

#activeTable_wrapper .dt-length select,
.dt-container .dt-length select {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.5rem;
    padding-bottom: 0.3rem;
    min-width: 80px;
}

.dt-length {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
}

#activeTable_wrapper .dt-paging {
    margin-top: 1rem;
}

#activeTable_wrapper .dt-paging .dt-paging-button {
    padding: 0px;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    /* padding: 6px 12px; */
    margin: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px;
    background: white !important;
    color: #64748b !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    transition: all 0.15s ease;
    cursor: pointer;
}

.dt-paging nav {
    margin: 0;
    display: flex;
    gap: 4px;
    align-items: center;
}

#activeTable_wrapper .dt-paging .dt-paging-button.current {
    background: #1A1549 !important;
    color: white !important;
    border-color: #1A1549 !important;
}

#activeTable_wrapper .dt-info {
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Fix dropdown positioning in sidebar footer */
#sidebar_footer .dropdown {
    position: relative;
}

#sidebar_footer .dropdown-menu {
    position: absolute !important;
    bottom: 100% !important;
    top: auto !important;
    right: 0 !important;
    left: auto !important;
    margin-bottom: 0.5rem !important;
    transform: none !important;
    will-change: auto !important;
    inset: auto 0 100% auto !important;
}

/* Ensure dropdown stays in place during animations */
#sidebar_footer .dropdown-menu.show {
    position: absolute !important;
    bottom: 100% !important;
    top: auto !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    inset: auto 0 100% auto !important;
}

/* Override any inline styles */
#sidebar_footer .dropdown-menu[style] {
    position: absolute !important;
    bottom: 100% !important;
    top: auto !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
}

div.dt-container div.dt-layout-row {
    margin: 0px !important;
}

/* ===== Global Pagination Dark Mode Styles ===== */

/* DataTables Pagination - Dark Mode */
.dark .dt-container .dt-paging .dt-paging-button {
    background: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

.dark .dt-container .dt-paging .dt-paging-button:hover:not(.disabled):not(.current) {
    background: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark .dt-container .dt-paging .dt-paging-button.current {
    background: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark .dt-container .dt-paging .dt-paging-button.disabled {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #64748b !important;
    opacity: 0.5;
}

.dt-container .dt-paging .dt-paging-button {
    border: 0px !important;
}

.pagination .dt-paging-button a {
    border: 1px solid #ddd;
    color: #686868 !important;
    padding: 9px 14px;
    box-sizing: border-box;
    border-radius: 0.5rem;
}

.pagination .page-item.disabled .page-link {
    background: transparent !important;
}

.pagination .dt-paging-button.active a {
    color: #fff !important;
}

/* Bootstrap Pagination - Dark Mode */
.dark .pagination .page-item .page-link {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
    border: 0;
}

.dark .pagination .page-item .page-link:hover:not(.disabled) {
    background-color: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark #activeTable_wrapper .dt-paging .dt-paging-button.active {
    background: #99103b !important;
}

.dark #activeTable_wrapper .dt-paging .dt-paging-button {
    overflow: hidden !important;
}

.dark .pagination .page-item.active .page-link {
    background-color: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark .pagination .page-item.disabled .page-link {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #64748b !important;
    opacity: 0.5;
}

/* Custom Pagination - Dark Mode */
.dark .pagination-wrap .page-link {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

.dark .pagination-wrap .page-link:hover,
.dark .pagination-wrap .page-link:focus {
    background-color: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark .pagination-wrap .page-item.active .page-link {
    background-color: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

/* Specific fix for activeTable pagination on dashboard */
.dark #activeTable_wrapper .dt-paging .dt-paging-button {
    background: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

.dark #activeTable_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current) {
    background: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark #activeTable_wrapper .dt-paging .dt-paging-button.current {
    background: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark #activeTable_wrapper .dt-paging .dt-paging-button.disabled {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #64748b !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}

/* Pagination text info dark mode */
.dark .dt-info {
    color: #cbd5e1 !important;
}

/* ===== Dark Theme for Service Selection (Choose Services) ===== */

/* Main service item cards */
.dark .maine-service-item {
    background: #1e293b !important;
    border-color: #475569 !important;
}

.dark .maine-service-item label {
    color: #e2e8f0 !important;
}

/* Active/Checked service item with gradient background */
/* .dark .maine-service-item input[type="radio"]:checked + label,
.dark .maine-service-item input[type="checkbox"]:checked + label {
    background: #99103b!important;
} */

/* .dark .maine-service-item input[type="radio"]:checked ~ .service-label,
.dark .maine-service-item:has(input[type="radio"]:checked) {
    background: linear-gradient(90deg, rgba(153, 16, 59, 0.6) 0%, rgba(153, 16, 59, 0.3) 50%, rgba(30, 41, 59, 0.1) 100%) !important;
} */

/* Radio button styling for dark theme */
.dark .maine-service-item input[type="radio"]+label::before {
    background-color: #334155 !important;
    border-color: #475569 !important;
}

.dark .maine-service-item input[type="radio"]:checked+label::before {
    background-color: #1e293b !important;
    border-color: #99103b !important;
}

.dark .maine-service-item input[type="radio"]:checked+label::after {
    background: #99103b !important;
    border-color: #99103b !important;
}

/* Checkbox styling for dark theme */
.dark .maine-service-item input[type="checkbox"]+label::before {
    background-color: #334155 !important;
    border-color: #475569 !important;
}

.dark .maine-service-item input[type="checkbox"]:checked+label::before {
    background-color: #99103b !important;
    border-color: #99103b !important;
}

/* Sub-services wrapper */
.dark .subServicesWraper .subServices-item label.service-labels {
    background: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

/* Service label hover effect */
.dark .service-label:hover {
    background-color: rgba(51, 65, 85, 0.5) !important;
}

/* Page title styling for dark theme */
.dark .hk-pg-title {
    color: #f1f5f9 !important;
}

.dark .hk-pg-title .pg-title-text {
    color: #f1f5f9 !important;
}

/* ===== Dark Theme for Next/Previous Buttons ===== */

/* Bottom fixed button container */
.dark .btm-fixed-btn {
    background: #0f172a !important;
    border-top-color: #475569 !important;
}

.dark .btm-fixed-btns {
    background: #0f172a !important;
    border-top-color: #475569 !important;
}

/* Next and Previous buttons */
.dark .btm-fixed-btn .btn-items button,
.dark .btm-fixed-btns .btn-items button {
    background-color: #99103b !important;
    color: #ffffff !important;
    border: none !important;
}

.dark .btm-fixed-btn .btn-items button:hover,
.dark .btm-fixed-btns .btn-items button:hover {
    background-color: #7a0c2e !important;
}

/* Previous button (if it has different styling) */
.dark .btm-fixed-btn .btn-items button.prev-step,
.dark .btm-fixed-btns .btn-items button.prev-step {
    background-color: #334155 !important;
    color: #e2e8f0 !important;
}

.dark .btm-fixed-btn .btn-items button.prev-step:hover,
.dark .btm-fixed-btns .btn-items button.prev-step:hover {
    background-color: #475569 !important;
}

/* Ensure buttons are visible with proper z-index */
.dark .btm-fixed-btn,
.dark .btm-fixed-btns {
    z-index: 1 !important;
    position: fixed !important;
}

/* Primary buttons in forms */
.dark .btn-primary {
    background-color: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark .btn-primary:hover {
    background-color: #7a0c2e !important;
    border-color: #7a0c2e !important;
}

/* ===== Dark Theme for Form Fields (Wills Probate & All Forms) ===== */

/* Form step headings */
.dark .maine-service-wrapper .step h3,
.dark .maine-service-wrapper .step h3.formTopHead {
    color: #f1f5f9 !important;
}

/* Form labels */
.dark .maine-service-wrapper .step label,
.dark .maine-service-wrapper .step .form-label,
.dark .formWraper_section .form-group label {
    color: #e2e8f0 !important;
}

/* Form inputs, textareas, and selects */
.dark .maine-service-wrapper .step input,
.dark .maine-service-wrapper .step textarea,
.dark .maine-service-wrapper .step select,
.dark .step input.form-control,
.dark .step textarea.form-control,
.dark .step select.form-control,
.dark .formWraper_section input.form-control,
.dark .formWraper_section textarea.form-control,
.dark .formWraper_section select.form-control {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

form#multi-step-form input[type="file"] {
    padding-bottom: 10.8px;
    padding-left: 18px;
    padding-top: 10.8px;
}

/* Form control focus state */
.dark .maine-service-wrapper .step input:focus,
.dark .maine-service-wrapper .step textarea:focus,
.dark .maine-service-wrapper .step select:focus,
.dark .step .form-control:focus,
.dark .formWraper_section .form-control:focus {
    background-color: #475569 !important;
    border-color: #99103b !important;
    color: #f1f5f9 !important;
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(153, 16, 59, 0.25) !important;
}

/* Placeholder text */
.dark .maine-service-wrapper .step input::placeholder,
.dark .maine-service-wrapper .step textarea::placeholder,
.dark .step .form-control::placeholder,
.dark .formWraper_section .form-control::placeholder {
    color: #94a3b8 !important;
}

/* Timeline accordion */
.timeline-accordion-section .timeline-accordion-content {
    display: none;
    overflow: hidden;
}

.timeline-accordion-section.accordion-open .timeline-accordion-content {
    display: block;
}

.timeline-accordion-section .summaryTitles {
    cursor: pointer;
    user-select: none;
}

.timeline-accordion-section .arrowdown i {
    transition: transform 0.2s ease;
}

.timeline-accordion-section.accordion-open .arrowdown i {
    transform: rotate(180deg);
}

.summaryTitles {
    padding: 14px 16px;
    border-bottom: 1px solid #475569;
    box-sizing: border-box;
}

/* Select dropdown arrow for dark theme */
.dark .step select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e2e8f0' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-size: 32px 14px;
}

/* Radio and checkbox labels in forms */
.dark .step [type="radio"]:not(:checked)+label,
.dark .step [type="radio"]:checked+label,
.dark .step [type="checkbox"]:not(:checked)+label,
.dark .step [type="checkbox"]:checked+label {
    color: #e2e8f0 !important;
}

/* Radio button styling in forms */
.dark .step [type="radio"]:not(:checked)+label:before,
.dark .step [type="checkbox"]:not(:checked)+label:before {
    background-color: #334155 !important;
    border-color: #475569 !important;
}

.dark .step [type="radio"]:checked+label:before {
    background-color: #334155 !important;
    border-color: #99103b !important;
}

.dark .step [type="radio"]:checked+label:after {
    background-color: #99103b !important;
}

.dark .step [type="checkbox"]:checked+label:before {
    background-color: #99103b !important;
    border-color: #99103b !important;
}

/* Form text helpers */
.dark .maine-service-wrapper .step label small.form-text,
.dark .form-text,
.dark .text-muted,
.dark small {
    color: #94a3b8 !important;
}

/* Error messages remain red */
.dark .error-msg {
    color: #f87171 !important;
}

/* Strike sign (required asterisk) */
.dark .strike-sign {
    color: #f87171 !important;
}

/* Progress bar */
.dark .progress {
    background-color: #475569 !important;
}

.dark .progress-bar {
    background-color: #99103b !important;
}

/* Step circles */
.dark .maine-service-wrapper .step-circle {
    background-color: #334155 !important;
    color: #94a3b8 !important;
}

.dark .maine-service-wrapper .step-circle.active {
    background-color: #99103b !important;
    color: #ffffff !important;
}

/* Step container border */
.dark .maine-service-wrapper .step-container {
    border-bottom-color: #475569 !important;
}

/* Disabled inputs */
.dark .form-control:disabled,
.dark .form-control[readonly] {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #64748b !important;
}

/* Form wrapper section */
.dark .formWraper_section {
    background-color: #1e293b !important;
}

/* Custom flex backgrounds */
.dark .d-custflex {
    background-color: transparent !important;
}

/* Table styling in forms */
.dark .maine-service-wrapper table,
.dark .table {
    color: #e2e8f0 !important;
}

.dark .maine-service-wrapper table th,
.dark .table th {
    background-color: #334155 !important;
    color: #f1f5f9 !important;
    border-color: #475569 !important;
}

.dark .maine-service-wrapper table td,
.dark .table td {
    background-color: #1e293b !important;
    border-color: #475569 !important;
}

/* Form paragraphs and text */
.dark .maine-service-wrapper p,
.dark .step p {
    color: #cbd5e1 !important;
}

/* Notice sections */
/* .dark .notice-seeking-forms,
.dark .step .notice-seeking-forms {
    background-color: #1e293b !important;
    border-color: #475569 !important;
} */
.dark .step .notice-seeking-forms .d-custflex {
    background-color: #1e293b !important;
    border-color: #475569 !important;
}

.step .notice-seeking-forms .d-custflex {
    background-color: #ffffff !important;
    border: 1px solid #D5D5D5 !important;
}

/* Input groups */
.dark .input-group-text {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

/* ===========================================================================================
   UNIFIED TABLE STYLES FOR ENTIRE PROJECT - Light & Dark Theme
   All tables across the project will use these consistent styles
   ========================================================================================== */

/* ===== BASE TABLE STYLES (Light Theme) ===== */

/* All tables - base styling */
table,
.table,
table.dataTable,
.table-responsive table,
.customTabledata {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    color: #324148;
}

/* Table headers */
table thead th,
.table thead th,
table.dataTable thead th,
.customTabledata thead th,
.thead-tables tr th,
thead.bg-primary th {
    background-color: #1A1549 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;

    border: 1px solid #1A1549 !important;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

/* Table body cells */
table tbody td,
.table tbody td,
table.dataTable tbody td,
.customTabledata tbody td {

    border: 1px solid #e2e8f0 !important;
    background-color: #ffffff !important;
    color: #475569 !important;
    vertical-align: middle;
    font-size: 12px !important;
}

/* Table rows */
table tbody tr,
.table tbody tr,
table.dataTable tbody tr,
.customTabledata tbody tr {
    transition: all 0.2s ease;
    border: none !important;
}

/* Table row hover effect - Light theme */
table tbody tr:hover,
.table tbody tr:hover,
table.dataTable tbody tr:hover,
.customTabledata tbody tr:hover {
    background-color: #f8fafc !important;
}

table tbody tr:hover td,
.table tbody tr:hover td,
table.dataTable tbody tr:hover td,
.customTabledata tbody tr:hover td {
    background-color: #f8fafc !important;
}

/* Striped tables */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8fafc !important;
}

.table-striped tbody tr:nth-of-type(odd) td {
    background-color: #f8fafc !important;
}

/* Bordered tables */
.table-bordered,
.table-bordered th,
.table-bordered td {
    border: 1px solid #e2e8f0 !important;
}

/* Table responsive wrapper */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Table wraps */
.table-wrap-new {
    padding: 15px;
    box-sizing: border-box;
}

/* 
.table-wrap-new table td {
    font-size: 12px;
} */

/* DataTables specific styling */
table.dataTable {
    border-collapse: separate !important;
    border-spacing: 0;
    border: none !important;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}

/* ===== DARK THEME TABLE STYLES ===== */

/* Dark theme - Table headers */
.dark table thead th,
.dark .table thead th,
.dark table.dataTable thead th,
.dark .customTabledata thead th,
.dark .thead-tables tr th,
.dark thead.bg-primary th,
.dark #activeTable thead th {
    background-color: #1A1549 !important;
    color: #ffffff !important;
    border: 1px solid #1A1549 !important;
}

/* Dark theme - Table body cells */
.dark table tbody td,
.dark .table tbody td,
.dark table.dataTable tbody td,
.dark .customTabledata tbody td,
.dark #activeTable tbody td {
    background-color: #1e293b !important;
    border: 1px solid #475569 !important;
    color: #cbd5e1 !important;
}

/* Dark theme - Table rows */
.dark table tbody tr,
.dark .table tbody tr,
.dark table.dataTable tbody tr,
.dark .customTabledata tbody tr,
.dark #activeTable tbody tr {
    background-color: #1e293b !important;
}

/* Dark theme - Table row hover effect */
.dark table tbody tr:hover,
.dark .table tbody tr:hover,
.dark table.dataTable tbody tr:hover,
.dark .customTabledata tbody tr:hover,
.dark #activeTable tbody tr:hover {
    background-color: #334155 !important;
}

.dark table tbody tr:hover td,
.dark .table tbody tr:hover td,
.dark table.dataTable tbody tr:hover td,
.dark .customTabledata tbody tr:hover td,
.dark #activeTable tbody tr:hover td {
    background-color: #334155 !important;
}

/* Dark theme - Striped tables */
.dark .table-striped tbody tr:nth-of-type(odd) {
    background-color: #334155 !important;
}

.dark .table-striped tbody tr:nth-of-type(odd) td {
    background-color: #334155 !important;
}

/* Dark theme - Bordered tables */
.dark .table-bordered,
.dark .table-bordered th,
.dark .table-bordered td {
    border-color: #475569 !important;
}

/* Dark theme - Table containers */
.dark .table-responsive,
.dark .table-wrap-new,
.dark .hk-sec-wrappers {
    background-color: #1e293b !important;
}

/* Dark theme - DataTables wrapper */
.dark .dt-container {
    background-color: transparent !important;
}

/* Dark theme - Table backgrounds for specific classes */
.dark .tableBgColor {
    background-color: #1A1549 !important;
}

.dark .thead-primary,
.dark .bg-primary {
    background-color: #1A1549 !important;
}

/* ===== TABLE SPECIAL STYLES ===== */

/* Tables in forms */
.maine-service-wrapper table,
.formWraper_section table {
    margin-bottom: 1rem;
}

.dark .maine-service-wrapper table,
.dark .formWraper_section table {
    color: #e2e8f0 !important;
}

/* Action buttons in tables */
/* table .btn,
table .btn-icon,
table td a.btn,
table td button {
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 8px !important;
    margin: 0 4px !important;
} */

.dark .dt-container .dt-length select {
    background-color: #334155 !important;
    border-color: #ffffff0d;
    color: #cbd5e1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cbd5e1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.dt-container .dt-length select:hover {
    border-color: #cbd5e1;
}

.dark .dt-container .dt-length select:hover {
    border-color: #475569;
}

/* Pagination styling - match screenshot exactly */
.dt-container .dt-paging {
    padding-top: 20px;
    margin-top: 0 !important;
    float: right;
}

.dt-container .dt-paging .pagination {
    margin: 0;
    display: flex;
    gap: 4px;
    align-items: center;
}

.dt-container .dt-paging .dt-paging-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    /* padding: 6px 12px; */
    margin: 0 !important;
    /* border: 1px solid #e2e8f0 !important; */
    border-radius: 4px;
    background: white !important;
    color: #64748b !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    transition: all 0.15s ease;
    cursor: pointer;
}

.dark .dt-container .dt-paging .dt-paging-button {
    background: transparent !important;
    border-color: #ffffff0d !important;
    color: #cbd5e1 !important;
}

.dt-container .dt-paging .dt-paging-button:hover:not(.disabled):not(.current) {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
}

.dark .dt-container .dt-paging .dt-paging-button:hover:not(.disabled):not(.current) {
    background: transparent !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

div#datable_1_length label {
    display: flex;
    align-items: center;
}

.dark div#datable_1_length label {
    color: #cbd5e1 !important;
}

.hk-sec-wrapper .dt-container .dt-paging .dt-paging-button.current,
.dt-container .dt-paging .dt-paging-button.current {
    background: #1A1549 !important;
    color: white !important;
    border-color: #1A1549 !important;
    font-weight: 500;
    cursor: default;
}

.dark .dt-container .dt-paging .dt-paging-button.current {
    background: #99103b !important;
    border-color: #99103b !important;
}

.dt-container .dt-paging .dt-paging-button.disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
    background: white !important;
    border-color: #e2e8f0 !important;
    color: #cbd5e1 !important;
    pointer-events: none;
}

.dark .dt-container .dt-paging .dt-paging-button.disabled {
    background: #334155 !important;
    border-color: #ffffff0d !important;
    color: #64748b !important;
}

.dt-container .dt-paging .dt-paging-button.previous,
.dt-container .dt-paging .dt-paging-button.next {
    /* padding: 6px 10px; */
    font-size: 16px;
}

.dark .bg-whites {
    background-color: #1e293b !important;
    border: 1px solid #959595;
}

.dark .bg-whites ul.nav .nav-item a {
    color: #959595;
}

.dt-container .dt-search {

    min-width: 232px;
}

.dt-container .dt-search input {
    width: 100%;
}

.dark .dt-container .dt-search input {
    background: #334155;
}

.dark .dt-container .dt-search input {
    background-color: #334155 !important;
    border-color: #ffffff0d;
    color: #cbd5e1;
    /* background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E"); */
}

.dt-container .dt-search input {
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.5rem;
}

/* .dark #allOrdersTable_wrapper.dt-container .dt-search input {
    border: 1px solid #e2e8f0 !important;
  
} */
.dark .bg-whites ul.nav .nav-item a.nav-link.active {
    color: #fff;
    font-weight: 500;
}

.dark .bg-whites ul.nav .nav-item a {
    border-bottom: 5px solid transparent;
}

.dark .bg-whites ul.nav .nav-item a.nav-link.active {
    border-color: #fff;
}

.dt-container .dt-paging .ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0;
    margin: 0 !important;
    color: #94a3b8 !important;
    border: none !important;
    background: transparent !important;
    cursor: default;
    font-weight: 400;
}

/* Links in tables */
table a,
.table a {
    color: #fff;
    text-decoration: none;
}

table a:hover,
.table a:hover {
    color: #7a0c2e;
    text-decoration: underline;
}

.dark table a,
.dark .table a {
    color: #f472b6;
}

.dark table a:hover,
.dark .table a:hover {
    color: #ec4899;
}

/* Table text alignment helpers */
.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.tablefirstcolumn tbody td:first-child {
    text-align: center !important;
}

/* Responsive table adjustments — keep th 14 / td 12 consistent */
@media (max-width: 991px) {

    table thead th,
    .table thead th {
        padding: 12px 15px !important;
        font-size: 14px !important;
    }

    table tbody td,
    .table tbody td {
        padding: 12px 15px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 767px) {

    table thead th,
    .table thead th {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }

    table tbody td,
    .table tbody td {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }

    .table-wrap-new {
        padding: 10px;
    }
}

/* End of Unified Table Styles */

/* ===== Header Icon Hover Fix for Dark Theme ===== */

/* Header icon buttons - ensure visibility on hover in both themes */
header button.text-slate-500:hover .material-symbols-outlined,
header button.dark\:text-slate-400:hover .material-symbols-outlined {
    color: #99103b !important;
}

/* Dark theme specific hover for header icons */
.dark header button:hover .material-symbols-outlined {
    color: #f472b6 !important;
}

/* Ensure notification and settings icons remain visible */
.dark header button.text-slate-500,
.dark header button {
    color: #cbd5e1 !important;
}

.dark header button:hover {
    color: #f472b6 !important;
}

/* Make sure Material Icons inherit proper color */
.dark header .material-symbols-outlined {
    color: inherit !important;
}

/* Theme toggle button specific styling */
.dark header #theme-toggle:hover {
    color: #f472b6 !important;
}

.dark header #theme-toggle:hover .material-symbols-outlined {
    color: #f472b6 !important;
}

/* ===== Order Summary Page Dark Theme Support ===== */

/* Invoice container */
.dark .invoice {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}

/* All white background elements in dark theme */
.dark .bg-white {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}

/* Alert box in order summary */
.dark .alert-success {
    background-color: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #a7f3d0 !important;
}

.dark .alert-success h5,
.dark .alert-success p,
.dark .alert-success strong {
    color: #a7f3d0 !important;
}

.dark .alert-success .text-primary {
    color: #f472b6 !important;
}

.dark .alert-success hr {
    border-top-color: rgba(16, 185, 129, 0.3) !important;
}

/* Table headings and data in order summary */
.dark .customTabledata thead th {
    background-color: #1A1549 !important;
    color: #ffffff !important;
}

.dark .customTabledata tbody td,
.dark .customTabledata tbody th {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
    border-color: #475569 !important;
}

.dark .customTabledata {
    border-color: #475569 !important;
}

/* Heading data rows */
.dark .headingData {
    background-color: #1A1549 !important;
    color: #ffffff !important;
}

.dark .tableBgColor {
    background-color: #1A1549 !important;
}

.dark .text-white {
    color: #ffffff !important;
}

/* Links in tables */
.dark .customTabledata a {
    color: #f472b6 !important;
}

.dark .customTabledata a:hover {
    color: #ec4899 !important;
}

/* Buttons in order summary */
.dark .btn-primary {
    background-color: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark .btn-primary:hover {
    background-color: #7a0c2e !important;
    border-color: #7a0c2e !important;
}

.dark .btn-warning {
    background-color: #f59e0b !important;
    border-color: #f59e0b !important;
    color: #1e293b !important;
}

.dark .btn-warning:hover {
    background-color: #d97706 !important;
    border-color: #d97706 !important;
}

/* Icon headers in order summary */
.dark .invoice h4 {
    color: #f1f5f9 !important;
}

/* Ensure all text in invoice is visible */
.dark .invoice p,
.dark .invoice span,
.dark .invoice td,
.dark .invoice th {
    color: #cbd5e1 !important;
}

/* Section backgrounds */
.dark .hk-sec-wrapper {
    background-color: #1e293b !important;
    border-color: #475569 !important;
}

/* Well and shadow elements */
.dark .well {
    background-color: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

/* Print area styling for dark theme */
.dark .printableArea {
    background-color: #1e293b !important;
}

/* List styling in order summary */
.dark .customTabledata ul,
.dark .customTabledata ol {
    color: #cbd5e1 !important;
}

.dark .customTabledata ul li,
.dark .customTabledata ol li {
    color: #cbd5e1 !important;
}

/* ===== Order Timeline Page Dark Theme Support ===== */

/* Timeline card backgrounds */
.dark .order-timeline .card {
    background-color: #1e293b !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}

.dark .order-timeline .card-header {
    background-color: #1e293b !important;
    border-bottom-color: #475569 !important;
    color: #e2e8f0 !important;
}

.dark .order-timeline .card-body {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
}

/* Timeline track styling */
.dark .order-timeline .track {
    background-color: #475569 !important;
}

.dark .order-timeline .track .step.active:before {
    background: #8b7ee8 !important;
}

.dark .order-timeline .track .step.active .icon {
    background: #8b7ee8 !important;
    color: #ffffff !important;
}

.dark .order-timeline .track .icon {
    background: #475569 !important;
    color: #94a3b8 !important;
}

.dark .order-timeline .track .step.active .text {
    font-weight: 600 !important;
    color: #f1f5f9 !important;
}

.dark .order-timeline .track .text {
    color: #94a3b8 !important;
}

/* Timeline item styling */
.dark .order-timeline .itemside .title {
    color: #f1f5f9 !important;
}

.dark .order-timeline .itemside .info {
    color: #cbd5e1 !important;
}

/* Statistics cards */
.dark .order-timeline .cardUpdates {
    background-color: #1e293b !important;
    border-color: #475569 !important;
    overflow: hidden;
}

.dark .order-timeline .cardUpdates .card-body {
    background-color: #1e293b !important;
}

.dark .order-timeline .text-dark {
    color: #f1f5f9 !important;
}

.dark .order-timeline .text-gray {
    color: #94a3b8 !important;
}

/* Article card in timeline */
.dark .order-timeline article.card {
    background-color: #1e293b !important;
    border-color: #475569 !important;
}

.dark .order-timeline article.card .card-body {
    color: #cbd5e1 !important;
}

.dark .order-timeline article.card strong {
    color: #f1f5f9 !important;
}

/* Section wrappers */
.dark .order-timeline .hk-sec-wrapper {
    background-color: #1e293b !important;
    border-color: #475569 !important;
}

.dark .order-timeline .hk-sec-title {
    color: #f1f5f9 !important;
}

/* Avatar icons in statistics */
.dark .order-timeline .avatar-title {
    opacity: 0.9;
}

.dark .order-timeline .bg-info-subtle {
    background-color: rgba(41, 156, 219, 0.15) !important;
}

.dark .order-timeline .bg-warning-subtle {
    background-color: rgba(247, 184, 75, 0.15) !important;
}

.dark .order-timeline .bg-primary-subtle {
    background-color: rgba(139, 126, 232, 0.15) !important;
}

/* Report sections */
.dark .reportsPartSection .hk-sec-wrapper {
    background-color: #1e293b !important;
    border-color: #475569 !important;
}

.dark .reportsPartSection .hk-sec-title {
    color: #f1f5f9 !important;
}

.dark .reportsPartSection .textContent {
    color: #cbd5e1 !important;
}

.dark .reportsPartSection hr {
    border-top-color: #475569 !important;
}

/* Toggle buttons for read more/less */
.dark .togglebtn {
    background-color: #334155 !important;
    color: #e2e8f0 !important;
    border: 1px solid #475569 !important;
}

.dark .togglebtn:hover {
    background-color: #475569 !important;
    color: #f1f5f9 !important;
}

/* Counter display */
.dark .order-timeline .display-5 {
    color: #f1f5f9 !important;
}

.dark .order-timeline .counter-count {
    color: #f1f5f9 !important;
}

/* Small text styling */
.dark .order-timeline small {
    color: #94a3b8 !important;
}

/* Timeline wrapper */
.dark .order-timeline .trackWrapper {
    background-color: transparent !important;
}

/* Horizontal rule styling */
.dark .order-timeline hr {
    border-top-color: #475569 !important;
}

/* Pull right text */
.dark .order-timeline .pull-right,
.dark .order-timeline .float-right {
    color: #cbd5e1 !important;
}

/* Buttons in timeline */
.dark .order-timeline .btn-primary {
    background-color: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark .order-timeline .btn-primary:hover {
    background-color: #7a0c2e !important;
    border-color: #7a0c2e !important;
}

/* DataTable in timeline page */
.dark .order-timeline table.dataTable {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
}

.dark .order-timeline table.dataTable thead th {
    background-color: #1A1549 !important;
    color: #ffffff !important;
    border-color: #475569 !important;
}

.dark .order-timeline table.dataTable tbody td {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
    border-color: #475569 !important;
}

.dark .order-timeline table.dataTable tbody tr:hover {
    background-color: #334155 !important;
}

.dark .order-timeline table.dataTable tbody tr:hover td {
    background-color: #334155 !important;
}

/* Font awesome icons in timeline */
.dark .order-timeline .fa {
    color: inherit !important;
}

/* Container fluid in timeline */
.dark .container-fluid.order-timeline {
    color: #e2e8f0 !important;
}

/* ── Experian address autocomplete ── */
.address-suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    transition: background-color 0.1s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-suggestion-item::before {
    content: '\f041';
    font-family: FontAwesome;
    color: #99103b;
    font-size: 13px;
    flex-shrink: 0;
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

.address-suggestion-item.hovered,
.address-suggestion-item.keyboard-active {
    background-color: #f0effe;
    color: #1a1549;
}

.address-suggestions-dropdown {
    border-radius: 0 0 6px 6px;
}

.address-suggestions-dropdown.flip-up {
    border-radius: 6px 6px 0 0;
    border-top: 1px solid #ced4da;
    border-bottom: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12) !important;
}

/* ===== Order Tables: Fully Visible, No Horizontal Scroll ===== */
#allOrdersTable.dataTable,
#activeTable.dataTable,
#publishedTable.dataTable {
    width: 100% !important;
}

#allOrdersTable thead th,
#activeTable thead th,
#publishedTable thead th {
    /* white-space: normal !important; */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    font-size: 14px !important;
    padding: 8px 20px 8px 8px !important;
    line-height: 1.4 !important;
    vertical-align: middle !important;
}

#allOrdersTable tbody td,
#activeTable tbody td,
#publishedTable tbody td {
    font-size: 12px !important;
    padding: 6px 8px !important;
    overflow-wrap: break-word !important;
    vertical-align: middle !important;
}

#allOrdersTable tbody td .badge,
#activeTable tbody td .badge,
#publishedTable tbody td .badge {
    white-space: normal !important;
    display: inline-block;
    line-height: 1.4;
    text-align: center;
}

#allOrdersTable .d-flexing_tbs,
#activeTable .d-flexing_tbs,
#publishedTable .d-flexing_tbs {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

#allOrdersTable .d-flexing_tbs a,
#activeTable .d-flexing_tbs a,
#publishedTable .d-flexing_tbs a {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    font-size: 11px !important;
    padding: 2px 6px !important;
}

.dark #allOrdersTable thead th,
.dark #activeTable thead th,
.dark #publishedTable thead th {
    background-color: #1A1549 !important;
    color: #ffffff !important;
    border: 1px solid #1A1549 !important;
}

.dark #allOrdersTable tbody td,
.dark #activeTable tbody td,
.dark #publishedTable tbody td {
    background-color: #1e293b !important;
    border: 1px solid #475569 !important;
    color: #cbd5e1 !important;
}

/* ===== Dashboard-style DataTables search/pagination (orders + drafts) ===== */
#datable_1_wrapper .dt-search,
#allOrdersTable_wrapper .dt-search,
#publishedTable_wrapper .dt-search,
.hk-sec-wrappers #activeTable_wrapper .dt-search,
#datable_1_wrapper .dataTables_filter,
#allOrdersTable_wrapper .dataTables_filter,
#publishedTable_wrapper .dataTables_filter,
.hk-sec-wrappers #activeTable_wrapper .dataTables_filter {
    margin-bottom: 15px;
    margin-top: 10px;
}

#datable_1_wrapper .dt-search label,
#allOrdersTable_wrapper .dt-search label,
#publishedTable_wrapper .dt-search label,
.hk-sec-wrappers #activeTable_wrapper .dt-search label,
#datable_1_wrapper .dataTables_filter label,
#allOrdersTable_wrapper .dataTables_filter label,
#publishedTable_wrapper .dataTables_filter label,
.hk-sec-wrappers #activeTable_wrapper .dataTables_filter label {
    color: transparent;
    font-size: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

#datable_1_wrapper .dt-search input,
#allOrdersTable_wrapper .dt-search input,
#publishedTable_wrapper .dt-search input,
.hk-sec-wrappers #activeTable_wrapper .dt-search input,
#datable_1_wrapper .dataTables_filter input,
#allOrdersTable_wrapper .dataTables_filter input,
#publishedTable_wrapper .dataTables_filter input,
.hk-sec-wrappers #activeTable_wrapper .dataTables_filter input {
    margin-left: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 20px 12px 45px !important;
    font-size: 14px;
    background-color: #f8fafc !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 18px;
    transition: all 0.2s ease;
    color: #1e293b;
    font-weight: 400;
}

#datable_1_wrapper .dt-search input::placeholder,
#allOrdersTable_wrapper .dt-search input::placeholder,
#publishedTable_wrapper .dt-search input::placeholder,
.hk-sec-wrappers #activeTable_wrapper .dt-search input::placeholder,
#datable_1_wrapper .dataTables_filter input::placeholder,
#allOrdersTable_wrapper .dataTables_filter input::placeholder,
#publishedTable_wrapper .dataTables_filter input::placeholder,
.hk-sec-wrappers #activeTable_wrapper .dataTables_filter input::placeholder {
    color: #94a3b8;
}

#datable_1_wrapper .dt-search input:hover,
#allOrdersTable_wrapper .dt-search input:hover,
#publishedTable_wrapper .dt-search input:hover,
.hk-sec-wrappers #activeTable_wrapper .dt-search input:hover,
#datable_1_wrapper .dataTables_filter input:hover,
#allOrdersTable_wrapper .dataTables_filter input:hover,
#publishedTable_wrapper .dataTables_filter input:hover,
.hk-sec-wrappers #activeTable_wrapper .dataTables_filter input:hover {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

#datable_1_wrapper .dt-search input:focus,
#allOrdersTable_wrapper .dt-search input:focus,
#publishedTable_wrapper .dt-search input:focus,
.hk-sec-wrappers #activeTable_wrapper .dt-search input:focus,
#datable_1_wrapper .dataTables_filter input:focus,
#allOrdersTable_wrapper .dataTables_filter input:focus,
#publishedTable_wrapper .dataTables_filter input:focus,
.hk-sec-wrappers #activeTable_wrapper .dataTables_filter input:focus {
    outline: none;
    background-color: white !important;
    border-color: #1A1549 !important;
    box-shadow: 0 0 0 3px rgba(26, 21, 73, 0.1);
}

.dark #datable_1_wrapper .dt-search input,
.dark #allOrdersTable_wrapper .dt-search input,
.dark #publishedTable_wrapper .dt-search input,
.dark .hk-sec-wrappers #activeTable_wrapper .dt-search input,
.dark #datable_1_wrapper .dataTables_filter input,
.dark #allOrdersTable_wrapper .dataTables_filter input,
.dark #publishedTable_wrapper .dataTables_filter input,
.dark .hk-sec-wrappers #activeTable_wrapper .dataTables_filter input {
    background-color: #334155 !important;
    border-color: #ffffff0d !important;
    color: #cbd5e1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 18px;
}

.dark #datable_1_wrapper .dt-search input:hover,
.dark #allOrdersTable_wrapper .dt-search input:hover,
.dark #publishedTable_wrapper .dt-search input:hover,
.dark .hk-sec-wrappers #activeTable_wrapper .dt-search input:hover,
.dark #datable_1_wrapper .dataTables_filter input:hover,
.dark #allOrdersTable_wrapper .dataTables_filter input:hover,
.dark #publishedTable_wrapper .dataTables_filter input:hover,
.dark .hk-sec-wrappers #activeTable_wrapper .dataTables_filter input:hover {
    background-color: #475569 !important;
    border-color: #475569 !important;
}

.dark #datable_1_wrapper .dt-search input:focus,
.dark #allOrdersTable_wrapper .dt-search input:focus,
.dark #publishedTable_wrapper .dt-search input:focus,
.dark .hk-sec-wrappers #activeTable_wrapper .dt-search input:focus,
.dark #datable_1_wrapper .dataTables_filter input:focus,
.dark #allOrdersTable_wrapper .dataTables_filter input:focus,
.dark #publishedTable_wrapper .dataTables_filter input:focus,
.dark .hk-sec-wrappers #activeTable_wrapper .dataTables_filter input:focus {
    background-color: #475569 !important;
    border-color: #8b7ee8 !important;
    box-shadow: 0 0 0 3px rgba(139, 126, 232, 0.15);
}

#datable_1_wrapper .dt-info,
#allOrdersTable_wrapper .dt-info,
#publishedTable_wrapper .dt-info,
.hk-sec-wrappers #activeTable_wrapper .dt-info,
#datable_1_wrapper .dataTables_info,
#allOrdersTable_wrapper .dataTables_info,
#publishedTable_wrapper .dataTables_info,
.hk-sec-wrappers #activeTable_wrapper .dataTables_info {
    font-weight: 600;
    color: #475569;
    padding-top: 20px;
}

.dark #datable_1_wrapper .dt-info,
.dark #allOrdersTable_wrapper .dt-info,
.dark #publishedTable_wrapper .dt-info,
.dark .hk-sec-wrappers #activeTable_wrapper .dt-info,
.dark #datable_1_wrapper .dataTables_info,
.dark #allOrdersTable_wrapper .dataTables_info,
.dark #publishedTable_wrapper .dataTables_info,
.dark .hk-sec-wrappers #activeTable_wrapper .dataTables_info {
    color: #cbd5e1 !important;
}

#datable_1_wrapper .dt-paging,
#allOrdersTable_wrapper .dt-paging,
#publishedTable_wrapper .dt-paging,
.hk-sec-wrappers #activeTable_wrapper .dt-paging {
    margin-top: 1rem;
    padding-top: 20px;
}

#datable_1_wrapper .dt-paging .dt-paging-button,
#allOrdersTable_wrapper .dt-paging .dt-paging-button,
#publishedTable_wrapper .dt-paging .dt-paging-button,
.hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button,
#datable_1_wrapper .pagination .page-link,
#allOrdersTable_wrapper .pagination .page-link,
#publishedTable_wrapper .pagination .page-link,
.hk-sec-wrappers #activeTable_wrapper .pagination .page-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 4px !important;
    background: white !important;
    color: #64748b !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    transition: all 0.15s ease;
    cursor: pointer;
}

#datable_1_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
#allOrdersTable_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
#publishedTable_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
.hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
#datable_1_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover,
#allOrdersTable_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover,
#publishedTable_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover,
.hk-sec-wrappers #activeTable_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
}

#datable_1_wrapper .dt-paging .dt-paging-button.current,
#allOrdersTable_wrapper .dt-paging .dt-paging-button.current,
#publishedTable_wrapper .dt-paging .dt-paging-button.current,
.hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button.current,
#datable_1_wrapper .pagination .page-item.active .page-link,
#allOrdersTable_wrapper .pagination .page-item.active .page-link,
#publishedTable_wrapper .pagination .page-item.active .page-link,
.hk-sec-wrappers #activeTable_wrapper .pagination .page-item.active .page-link {
    background: #1A1549 !important;
    color: white !important;
    border-color: #1A1549 !important;
    font-weight: 500 !important;
}

#datable_1_wrapper .dt-paging .dt-paging-button.disabled,
#allOrdersTable_wrapper .dt-paging .dt-paging-button.disabled,
#publishedTable_wrapper .dt-paging .dt-paging-button.disabled,
.hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button.disabled,
#datable_1_wrapper .pagination .page-item.disabled .page-link,
#allOrdersTable_wrapper .pagination .page-item.disabled .page-link,
#publishedTable_wrapper .pagination .page-item.disabled .page-link,
.hk-sec-wrappers #activeTable_wrapper .pagination .page-item.disabled .page-link {
    opacity: 1;
    cursor: not-allowed !important;
    background: white !important;
    border-color: #e2e8f0 !important;
    color: #cbd5e1 !important;
    pointer-events: none;
}

.dark #datable_1_wrapper .dt-paging .dt-paging-button,
.dark #allOrdersTable_wrapper .dt-paging .dt-paging-button,
.dark #publishedTable_wrapper .dt-paging .dt-paging-button,
.dark .hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button,
.dark #datable_1_wrapper .pagination .page-link,
.dark #allOrdersTable_wrapper .pagination .page-link,
.dark #publishedTable_wrapper .pagination .page-link,
.dark .hk-sec-wrappers #activeTable_wrapper .pagination .page-link {
    background: #334155 !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
    overflow: hidden !important;
}

.dark #datable_1_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
.dark #allOrdersTable_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
.dark #publishedTable_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
.dark .hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button:hover:not(.disabled):not(.current),
.dark #datable_1_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover,
.dark #allOrdersTable_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover,
.dark #publishedTable_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover,
.dark .hk-sec-wrappers #activeTable_wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    background: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark #datable_1_wrapper .dt-paging .dt-paging-button.current,
.dark #allOrdersTable_wrapper .dt-paging .dt-paging-button.current,
.dark #publishedTable_wrapper .dt-paging .dt-paging-button.current,
.dark .hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button.current,
.dark #datable_1_wrapper .pagination .page-item.active .page-link,
.dark #allOrdersTable_wrapper .pagination .page-item.active .page-link,
.dark #publishedTable_wrapper .pagination .page-item.active .page-link,
.dark .hk-sec-wrappers #activeTable_wrapper .pagination .page-item.active .page-link {
    background: #99103b !important;
    border-color: #99103b !important;
    color: #ffffff !important;
}

.dark #datable_1_wrapper .dt-paging .dt-paging-button.disabled,
.dark #allOrdersTable_wrapper .dt-paging .dt-paging-button.disabled,
.dark #publishedTable_wrapper .dt-paging .dt-paging-button.disabled,
.dark .hk-sec-wrappers #activeTable_wrapper .dt-paging .dt-paging-button.disabled,
.dark #datable_1_wrapper .pagination .page-item.disabled .page-link,
.dark #allOrdersTable_wrapper .pagination .page-item.disabled .page-link,
.dark #publishedTable_wrapper .pagination .page-item.disabled .page-link,
.dark .hk-sec-wrappers #activeTable_wrapper .pagination .page-item.disabled .page-link {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #64748b !important;
    opacity: 0.5;
}

.saveAsDraftBtn {
    margin-right: 0 !important;
}

/* Breadcrumb: replace broken dripicons "V" with a clear slash separator */
.hk-breadcrumb .breadcrumb {
    padding: 10px 0 6px;
    margin-bottom: 0.35rem;
    border-bottom: none;
    background: transparent !important;
}

.hk-breadcrumb .breadcrumb .breadcrumb-item {
    font-size: 13px;
}

.hk-breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.hk-breadcrumb .breadcrumb-item+.breadcrumb-item::before,
.hk-breadcrumb .breadcrumb-item+.breadcrumb-item:before {
    font-family: inherit !important;
    content: "/" !important;
    font-size: 13px;
    font-weight: 400;
    padding-right: 0.5rem;
    position: relative;
    top: 0;
    color: rgba(50, 65, 72, 0.4);
    float: none;
}

.dark .hk-breadcrumb .breadcrumb-item+.breadcrumb-item::before,
.dark .hk-breadcrumb .breadcrumb-item+.breadcrumb-item:before {
    color: #fff !important;
}

.hk-breadcrumb .breadcrumb.breadcrumb-light .breadcrumb-item>a {
    color: rgba(50, 65, 72, 0.65);
    text-decoration: none;
}

.hk-breadcrumb .breadcrumb.breadcrumb-light .breadcrumb-item>a:hover,
.hk-breadcrumb .breadcrumb.breadcrumb-light .breadcrumb-item>a:focus {
    color: #1A1549;
}

.hk-breadcrumb .breadcrumb.breadcrumb-light .breadcrumb-item.active {
    color: #1A1549;
    font-weight: 500;
}
main.auth-page.auth-page--register .auth-portal-badge{
    margin-bottom: 40px;
}
/* Extra space below page title on edit-draft (and similar) screens */
.hk-pg-wrapper .container-fluid>.hk-pg-header {
    margin-bottom: 1.25rem;
}

.disabled-service {
    opacity: 0.5;
    cursor: not-allowed;
}

.disabled-service label {
    color: #999;
    cursor: not-allowed;
}

.disabled-service input {
    cursor: not-allowed;
}

/* Keep shared auth controls ahead of legacy login form rules above. */
.auth-page .auth-form .form-group {
    margin-bottom: 14px;
}

.auth-page .auth-form .form-control {
    height: 52px;
    padding: 12px 44px 12px 15px;
    border: 1px solid #e0e1e8;
    border-radius: 12px;
    background: #f9f9fc;
    font-size: 14px;
}

.auth-page .auth-form .form-group > i {
    top: 43px;
    right: 15px;
    transform: none;
    line-height: 1;
}

.auth-page .auth-form .toggle-password {
    z-index: 2;
    padding: 8px;
    margin: -8px;
    cursor: pointer;
    pointer-events: auto;
}

.auth-page .auth-form .toggle-password:focus {
    border-radius: 4px;
    outline: 2px solid rgba(26, 21, 73, .35);
    outline-offset: 2px;
}

@media (max-height: 600px) {
    .auth-form-panel {
        padding-block: 8px;
    }

    .auth-logo {
        margin-bottom: 2px;
    }

    .auth-page .auth-form .form-group {
        margin-bottom: 8px;
    }

    .auth-page .auth-form .form-control {
        height: 42px;
        padding: 7px 44px 7px 15px;
        font-size: 13px;
    }

    .auth-page .auth-form .form-group > i {
        top: 34px;
        font-size: 14px;
    }

    .auth-options {
        margin-bottom: 4px;
    }

    .auth-submit {
        margin-bottom: 4px;
    }

    /* .auth-page--register .auth-form-panel {
        padding: 8px 28px;
    } */

    .auth-page--register .auth-heading p {
        display: none;
    }

    .auth-page--register .auth-logo {
        display: block;
        width: 150px;
        margin-bottom: 10px;
    }

    .auth-page--register .auth-heading {
        margin-bottom: 5px;
    }

    .auth-page--register .auth-heading h1 {
        font-size: 18px;
    }

    .auth-page--register .auth-form .form-group {
        margin-bottom: 8px;
    }

    .auth-page--register .auth-form .field-label {
        margin-bottom: 4px;
        font-size: 12px;
        font-family: inherit;
        font-weight: 600;
        color: var(--auth-navy);
        line-height: normal;
    }

    .auth-page--register .auth-form .form-control {
        height: 50px;
        padding: 11px 44px 11px 15px;
        font-family: inherit;
        font-size: 14px;
    }

    .auth-page--register .auth-form .form-group > i {
        top: 39px;
        right: 15px;
        font-size: 15px;
    }

    .auth-page--register .auth-submit {
        height: 40px;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .auth-page--register .auth-separator {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .auth-page--register .auth-switch {
        font-size: 13px;
        line-height: normal;
    }
}

.auth-page .auth-form textarea.form-control {
    height: 90px;
    min-height: 90px;
    padding-top: 12px;
    resize: vertical;
}

@media (max-height: 600px) and (min-width: 721px) {
    .auth-form-panel {
        padding-top: 40px;
    }

    .auth-page--register .auth-form-panel {
        padding-top: 40px;
    }

    .auth-logo {
        width: 180px;
        margin-bottom: 18px;
    }

    .auth-page--register .auth-fields-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .auth-page--register .auth-logo {
        width: 190px;
        margin-bottom: 25px;
    }

    .auth-page--register .auth-form textarea.form-control {
        height: 57px;
        min-height: 57px;
    }
}

@media (min-width: 721px) {
    .auth-page--forgot .auth-form-panel,
    .auth-page--login .auth-form-panel {
        padding: 48px;
    }

    .auth-page--forgot .auth-form-inner,
    .auth-page--login .auth-form-inner {
        max-width: none;
    }

    .auth-page--login .auth-logo {
        width: 220px;
        margin-bottom: 38px;
    }

    .auth-page--forgot .auth-logo {
        width: 220px;
        margin-bottom: 48px;
    }
}

@media (min-width: 721px) and (max-height: 600px) {
    .auth-page--forgot .auth-form .form-group,
    .auth-page--login .auth-form .form-group {
        margin-bottom: 14px;
    }

    .auth-page--forgot .auth-form .form-control,
    .auth-page--login .auth-form .form-control {
        height: 50px;
        padding-block: 11px;
        font-size: 14px;
    }

    .auth-page--forgot .auth-form .form-group > i,
    .auth-page--login .auth-form .form-group > i {
        top: 42px;
        font-size: 15px;
    }

    .auth-page--login .auth-options {
        margin-bottom: 12px;
    }

    .auth-page--login .auth-submit {
        height: 48px;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .auth-page--login .auth-separator {
        margin-bottom: 10px;
    }

    .auth-page--forgot .auth-heading {
        margin-bottom: 24px;
    }

    .auth-page--forgot .auth-submit {
        height: 48px;
        margin: 10px 0 18px;
        font-size: 15px;
    }

    .auth-page--forgot .auth-separator {
        margin-bottom: 14px;
    }
}