.auth-main .auth-wrapper.v1 .auth-form {
    background-image: url(../../images/loginback.png);
}

/* Login page */
.login-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f3f5f7;
    color: #1d2630;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.login-shell {
    height: 100%;
    min-height: 100%;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    overflow: hidden;
}

.login-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 2.5rem 2rem;
    height: 100%;
    min-height: 0;
}

.login-hero-bg {
    position: absolute;
    inset: 0;
    background: url(../../images/main_bg.jpg) left 30% / cover no-repeat, linear-gradient(0, #59bb93, #3568c5);
    background-size: 100%;
}

.login-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
}

.login-hero-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
    color: #fff;
    text-align: center;
}

.login-hero-logo {
    max-width: 160px;
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.login-hero-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.login-hero-text {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    opacity: 0.92;
}

.login-features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

.login-feature-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(232, 237, 243, 0.95);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(29, 38, 48, 0.1);
    padding: 0.95rem 1rem;
}

.login-feature-icon {
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2f6fed;
    color: #fff;
    font-size: 1.15rem;
}

.login-feature-body {
    min-width: 0;
}

.login-feature-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a2f55;
    margin: 0.1rem 0 0.2rem;
    line-height: 1.25;
}

.login-feature-text {
    font-size: 0.78rem;
    line-height: 1.45;
    color: #6d7c93;
    margin: 0;
}

.login-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #eef2f7 100%);
    -webkit-overflow-scrolling: touch;
}

.login-card {
    width: 100%;
    max-width: 540px;
    margin-top: auto;
    margin-bottom: auto;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(29, 38, 48, 0.08);
    padding: 2.25rem 2rem 1.5rem;
    flex-shrink: 0;
}

.login-card-logo {
    max-width: 120px;
    margin-bottom: 1.25rem;
}

.login-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #1d2630;
}

.login-card-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.login-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3e4853;
    margin-bottom: 0.4rem;
}

.login-input-group {
    border-radius: 10px;
    overflow: hidden;
}

.login-input-group .login-input-addon {
    background: #fff;
    border: 1px solid #d8e0ea;
    color: #8a97a8;
    padding: 0 0.9rem;
    font-size: 1.05rem;
    line-height: 1;
}

.login-input-group > .input-group-text.login-input-addon {
    border-right: 0;
    border-radius: 10px 0 0 10px;
}

.login-input-group > .form-control {
    border: 1px solid #d8e0ea !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    padding: 0.7rem 0.85rem !important;
    font-size: 0.95rem;
    background: #fff !important;
    box-shadow: none !important;
}

.login-input-group > .form-control:last-child {
    border-right: 1px solid #d8e0ea !important;
    border-radius: 0 10px 10px 0 !important;
}

.login-input-group > .form-control::placeholder {
    color: #adb5bd;
}

.login-input-group > .btn.login-password-toggle {
    border-left: 0;
    border-radius: 0 10px 10px 0;
}

.login-input-group > .btn.login-password-toggle:hover,
.login-input-group > .btn.login-password-toggle:focus {
    color: #3498db;
    background: #fff;
    box-shadow: none;
}

.login-input-group:focus-within .login-input-addon,
.login-input-group:focus-within > .form-control {
    border-color: #3498db !important;
}

.login-input-group:focus-within {
    box-shadow: 0 0 0 3px rgba(70, 128, 255, 0.15);
}

.login-submit {
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px !important;
    background: #3498db !important;
    border-color: #3498db !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: background 0.15s ease, transform 0.1s ease;
}

.login-submit:hover {
    background: #2980b9 !important;
    border-color: #2980b9 !important;
}

.login-submit:active {
    transform: scale(0.99);
}

.login-footer {
    margin: 1.5rem 0 0;
    font-size: 0.8rem;
    color: #8a97a8;
}

.login-form .validation-summary-valid {
    display: none;
}

/* Role selection (post-login) */
.role-select-card .login-card-subtitle strong {
    color: #1d2630;
    font-weight: 600;
}

.role-select-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.role-select-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    margin: 0;
    padding: 0.95rem 1rem;
    border: 1.5px solid #e3e8ef;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.role-select-option:hover {
    border-color: #b8d4f0;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}

.role-select-option.is-selected {
    border-color: #3498db;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    box-shadow: 0 10px 28px rgba(52, 152, 219, 0.14);
}

.role-select-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.role-select-icon {
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef4fb;
    color: #3498db;
    font-size: 1.25rem;
}

.role-select-option.is-selected .role-select-icon {
    background: #3498db;
    color: #fff;
}

.role-select-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1 1 auto;
    text-align: left;
}

.role-select-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1d2630;
    line-height: 1.3;
}

.role-select-description {
    font-size: 0.82rem;
    color: #6c757d;
    line-height: 1.45;
}

.role-select-check {
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1.5px solid #d7dee8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.role-select-option.is-selected .role-select-check {
    border-color: #3498db;
    background: #3498db;
    color: #fff;
}

@media (max-width: 992px) {
    .login-page {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .login-shell {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .login-hero {
        min-height: 220px;
        height: auto;
        padding: 2rem 1.5rem;
    }

    .login-features {
        display: none;
    }

    .login-hero-logo {
        max-width: 100px;
        margin-bottom: 1rem;
    }

    .login-hero-title {
        font-size: 1.5rem;
    }

    .login-hero-text {
        font-size: 0.95rem;
    }

    .login-panel {
        height: auto;
        overflow: visible;
        padding: 1.5rem 1rem 2rem;
        align-items: stretch;
    }

    .login-card {
        margin-top: 0;
        margin-bottom: 0;
        max-width: none;
        padding: 1.75rem 1.25rem 1.25rem;
    }

    .login-hero-bg {
        background-position-y: bottom 48%;
    }
}

.noteParagraph {
    font-size: 11px;
}

.redText {
    color: red;
}

.accordion__body--text {
    padding: 1.875rem 1.25rem !important;
}

.studentInfoTable {
    margin-top: 8%;
}

    .studentInfoTable thead th {
        font-size: 11px;
    }

.form-group {
    margin-bottom: 1.3rem;
}

table.dataTable thead th {
    font-size: 14px;
}

.nav-header .logo-abbr {
    max-width: 100% !important;
    width: 100% !important;
}

.login {
    height: 100vh !important;
}

.remember-check-label {
    padding-top: 3px;
}

.paginate_button i {
    color: white !important;
}

.dt-container > div {
    align-items: center;
}

.btn {
    border-radius: 10px;
}

.multiselect-custom {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .multiselect-custom .btn-group {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .multiselect-custom .btn-group > button {
        border: 1px solid #bec8d0;
        padding: .63rem 2.25rem .63rem .75rem;
        font-size: .875rem;
        line-height: 1.5;
        color: #131920;
        border-radius: 8px !important;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        width: 100%;
        max-width: 100%;
        display: block;
        text-align: start;
        overflow: hidden;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") right .75rem center/18px 25px no-repeat #fff;
        font-weight: 400;
    }

        .multiselect-custom .btn-group > button > span {
            width: 100%;
            max-width: 100%;
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

.multiselect-container {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    overflow-y: scroll;
}

    .multiselect-container > li > a > label {
        padding: 3px 20px 3px 10px;
    }

.multiselect-container > li.multiselect-item.filter {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
}

.multiselect-container .multiselect-search {
    min-width: 0;
}

#addDataModal .select2-container {
    width: 100% !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: 400;
    line-height: 1.5;
    color: #131920;
}

#addDataModal .select2-container--default .select2-selection--multiple {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-height: calc(1.5em + 1.2rem + 2px);
    height: calc(1.5em + 1.2rem + 2px);
    border: 1px solid #bec8d0;
    border-radius: 8px;
    padding: .6rem 2rem .6rem .75rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%235b6b79' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") right .75rem center/18px 18px no-repeat #fff;
    cursor: pointer;
    overflow: hidden;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
}

#addDataModal .select2-container--default.select2-container--focus .select2-selection--multiple,
#addDataModal .select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    outline: 0;
}

#addDataModal .select2-container--default .select2-selection--multiple::before {
    content: attr(data-summary);
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: #5b6b79;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

#addDataModal .select2-container--default .select2-selection--multiple.has-selection::before {
    color: #131920;
}

#addDataModal .select2-container--default .select2-selection--multiple .select2-selection__rendered,
#addDataModal .select2-container--default .select2-selection--multiple .select2-selection__choice,
#addDataModal .select2-container--default .select2-selection--multiple .select2-search--inline {
    display: none !important;
}

.select2-container--open .select2-dropdown.meal-combo-item-select2-dropdown,
.meal-combo-item-select2-dropdown {
    z-index: 2000;
    border: 1px solid #bec8d0;
    border-radius: 8px;
    font-family: inherit;
    font-size: inherit;
    color: #131920;
}

.meal-combo-item-select2-dropdown > .meal-combo-item-search {
    padding: 0;
    border-bottom: 1px solid #bec8d0;
}

.meal-combo-item-select2-dropdown > .meal-combo-item-search .meal-combo-item-search-input {
    display: block;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 8px 8px 0 0;
    padding: .6rem .75rem;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: #131920;
    background: #fff;
    box-shadow: none;
    outline: 0;
}

.meal-combo-item-select2-dropdown > .meal-combo-item-search .meal-combo-item-search-input::placeholder {
    color: #5b6b79;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    opacity: 1;
}

.meal-combo-item-select2-dropdown .select2-results__option {
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    padding: .4rem .75rem;
}

.meal-combo-item-select2-dropdown .select2-results__option--selected {
    background-color: transparent;
    color: #131920;
}

.meal-combo-item-select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: transparent;
    color: #131920;
}

.meal-combo-item-select2-dropdown .select2-results__option--selectable:hover {
    background-color: #f3f5f7;
}

.meal-combo-option {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.meal-combo-check {
    flex: 0 0 1.05rem;
    width: 1.05rem;
    height: 1.05rem;
    border: 1px solid #bec8d0;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    pointer-events: none;
}

.meal-combo-item-select2-dropdown .select2-results__option--selected .meal-combo-check {
    background-color: #4680ff;
    border-color: #4680ff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.meal-combo-option-text {
    min-width: 0;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
}

.meal-combo-item-select2-dropdown .select2-search--dropdown .select2-search__field {
    font-family: inherit;
    font-size: .875rem;
    border: 1px solid #bec8d0;
    border-radius: 8px;
    padding: .45rem .75rem;
}

#addDataModal .student-guardian-select-wrap .select2-container {
    width: 100% !important;
    display: block;
}

#addDataModal .student-guardian-select-wrap .select2-container--default .select2-selection--single {
    position: relative;
    display: block;
    width: 100%;
    padding: .6rem 2rem .6rem .75rem !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: #131920;
    border: 1px solid #bec8d0 !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right .75rem center !important;
    background-size: 16px 12px !important;
    height: auto;
    min-height: calc(1.5em + 1.2rem + 2px);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#addDataModal .student-guardian-select-wrap .select2-container--default.select2-container--focus .select2-selection--single,
#addDataModal .student-guardian-select-wrap .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15) !important;
    outline: 0;
}

#addDataModal .student-guardian-select-wrap .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 0 !important;
    padding-right: 1.25rem !important;
    line-height: 1.5;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#addDataModal .student-guardian-select-wrap .select2-selection--single .select2-selection__placeholder {
    color: #5b6b79;
}

#addDataModal .student-guardian-select-wrap .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

#addDataModal .student-guardian-select-wrap .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 1.65rem;
    top: 50%;
    transform: translateY(-50%);
    float: none;
    margin: 0;
    padding: 0;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    font-size: .875rem;
    font-weight: 400;
    color: #5b6b79;
    background: transparent;
    border: 0;
    cursor: pointer;
}

#addDataModal .student-guardian-select-wrap .select2-selection--single .select2-selection__clear:hover {
    color: #131920;
}

.select2-container--open .select2-dropdown.student-parent-select2-dropdown,
.student-parent-select2-dropdown {
    z-index: 2000;
    border: 1px solid #bec8d0;
    border-radius: 8px;
    box-shadow: 0 0.25rem 0.75rem rgba(19, 25, 32, 0.12);
    font-family: inherit;
    font-size: inherit;
    color: #131920;
    overflow: hidden;
}

.student-parent-select2-dropdown .select2-search--dropdown {
    padding: 0;
    border-bottom: 1px solid #bec8d0;
}

.student-parent-select2-dropdown .select2-search--dropdown .select2-search__field {
    display: block;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 8px 8px 0 0;
    padding: .6rem .75rem;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: #131920;
    background: #fff;
    box-shadow: none;
    outline: 0;
}

.student-parent-select2-dropdown .select2-search--dropdown .select2-search__field::placeholder {
    color: #5b6b79;
}

.student-parent-select2-dropdown .select2-results__option {
    padding: .5rem .75rem;
    font-size: inherit;
    line-height: 1.5;
}

.student-parent-select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #4680ff;
    color: #fff;
}

.student-parent-select2-dropdown .select2-results__option--selected {
    background-color: #f3f5f7;
    color: #131920;
}

.student-consumption-select-wrap .select2-container {
    width: 100% !important;
    display: block;
}

.student-consumption-select-wrap .select2-container--default .select2-selection--single {
    position: relative;
    display: block;
    width: 100%;
    padding: .6rem 2rem .6rem .75rem !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: #131920;
    border: 1px solid #bec8d0 !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right .75rem center !important;
    background-size: 16px 12px !important;
    height: auto;
    min-height: calc(1.5em + 1.2rem + 2px);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.student-consumption-select-wrap .select2-container--default.select2-container--focus .select2-selection--single,
.student-consumption-select-wrap .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15) !important;
    outline: 0;
}

.student-consumption-select-wrap .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 0 !important;
    padding-right: 1.25rem !important;
    line-height: 1.5;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.student-consumption-select-wrap .select2-selection--single .select2-selection__placeholder {
    color: #5b6b79;
}

.student-consumption-select-wrap .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

.student-consumption-select-wrap .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 1.65rem;
    top: 50%;
    transform: translateY(-50%);
    float: none;
    margin: 0;
    padding: 0;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    font-size: .875rem;
    font-weight: 400;
    color: #5b6b79;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.student-consumption-select-wrap .select2-selection--single .select2-selection__clear:hover {
    color: #131920;
}

.select2-container--open .select2-dropdown.student-consumption-select2-dropdown,
.student-consumption-select2-dropdown {
    z-index: 2000;
    border: 1px solid #bec8d0;
    border-radius: 8px;
    box-shadow: 0 0.25rem 0.75rem rgba(19, 25, 32, 0.12);
    font-family: inherit;
    font-size: inherit;
    color: #131920;
    overflow: hidden;
}

.student-consumption-select2-dropdown .select2-search--dropdown {
    padding: 0;
    border-bottom: 1px solid #bec8d0;
}

.student-consumption-select2-dropdown .select2-search--dropdown .select2-search__field {
    display: block;
    width: 100%;
    padding: .6rem .75rem;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
    color: #131920;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
}

.student-consumption-select2-dropdown .select2-search--dropdown .select2-search__field::placeholder {
    color: #5b6b79;
}

.student-consumption-select2-dropdown .select2-results__option {
    padding: .5rem .75rem;
    font-size: inherit;
    line-height: 1.5;
}

.student-consumption-select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #4680ff;
    color: #fff;
}

.student-consumption-select2-dropdown .select2-results__option--selected {
    background-color: #f3f5f7;
    color: #131920;
}

#grid_table td.align-top {
    vertical-align: top;
}

.input-group > .form-control {
    border-radius: 8px !important;
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: .7rem .75rem;
}

.dt-type-numeric.text-left {
    text-align: left !important;
}

.password-with-button {
    border-radius: 10px 0px 0px 10px !important
}

.form-check-input {
    /*margin-top: -4px !important;*/
}

.admin-form-check-field {
    min-height: calc(1.5em + 0.75rem + 2px);
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.admin-form-check-field .form-check-input {
    margin-top: 0;
    float: none;
}

#toast-container > div:hover {
    box-shadow: none !important;
}

div.dt-length {
    display: none;
}

div.dt-search {
    display: none !important;
}

.admin-grid-search {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.admin-grid-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-grid-toolbar .admin-grid-search {
    margin-bottom: 0;
}

.admin-grid-toolbar .admin-grid-actions {
    margin-left: auto;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.admin-grid-school-filter {
    width: 100%;
    max-width: 320px;
}

.admin-grid-order-type-filter {
    width: 100%;
    max-width: 220px;
}

.admin-grid-week-filter {
    width: 100%;
    max-width: 180px;
}

.admin-grid-school-filter .form-select {
    border-radius: 8px;
}

.admin-grid-order-type-filter .form-select {
    border-radius: 8px;
}

.admin-grid-week-filter .form-select {
    border-radius: 8px;
}

.admin-grid-session-filter {
    width: 100%;
    max-width: 280px;
}

.admin-grid-session-filter .form-select {
    border-radius: 8px;
}

.admin-grid-search-field {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.admin-grid-search-field .ti-search {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    font-size: 1rem;
    z-index: 1;
}

.admin-grid-search-field input {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
    border-radius: 8px !important;
}

.admin-grid-search-clear {
    display: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

.admin-grid-search-clear:hover {
    color: #212529;
}

.table-fixed {
    table-layout: fixed;
    width: 100%;
}

.w-30 {
    width: 30%;
}

.w-7 {
    width: 7%;
}

.datatable-selector, .form-select {
    padding: .6rem 2rem .6rem .75rem !important;
}

.datatable-selector, .form-select-sm {
    padding-top: .375rem !important;
    padding-bottom: .375rem !important;
    padding-left: .7rem !important;
}

.form-control {
    padding: .6rem .75rem !important;
}

.login-page .login-input-group > .form-control {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    padding: 0.7rem 0.85rem !important;
}

.login-page .login-input-group > .form-control:last-child {
    border-right: 1px solid #d8e0ea !important;
    border-radius: 0 10px 10px 0 !important;
}

.login-page .login-input-group:focus-within > .form-control:last-child {
    border-right-color: #3498db !important;
}

.login-page .login-input-group > .input-group-text.login-input-addon {
    border-radius: 10px 0 0 10px !important;
}

.login-page .login-input-group > .btn.login-password-toggle {
    border-radius: 0 10px 10px 0 !important;
}

.m-h-auto {
    min-height: auto !important;
}

.custom-btn {
    height: 37px !important;
    padding: 0px 15px;
}

.spinner-hw{
    height: 20px;
    width: 20px;
}

#dashboard-summary-cards .fa {
    font-size: 20px;
}

.field-validation-error,
.validation-summary-errors {
    font-size: 0.875rem;
}

.input-validation-error,
.form-control.input-validation-error,
.form-select.input-validation-error {
    border-color: #dc3545;
}


.multiselect-container > li > a > label {
    padding-left:10px !important;
}

ul.multiselect-container {
    padding-top:5px !important;
    padding-bottom:5px !important;
}

/* Theme sets .modal to z-index 1081; SweetAlert2 defaults to 1060 */
.swal2-container {
    z-index: 9999 !important;
}

/*
 * Admin CRUD modals load partials where a <form> wraps header/body/footer.
 * Bootstrap scrollable modals expect those sections as direct .modal-content children.
 * Flex + overflow on the form restores a sticky header/footer with a scrollable body.
 */
.modal .modal-dialog {
    max-height: calc(100vh - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.modal .modal-dialog.modal-dialog-centered {
    align-items: flex-start;
    min-height: calc(100% - 2rem);
}

.modal .modal-dialog.modal-dialog-scrollable {
    height: auto;
    max-height: calc(100vh - 2rem);
}

.modal .modal-content {
    max-height: calc(100vh - 2rem);
    overflow: hidden;
}

.modal .modal-content > form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
}

.modal .modal-content > form > .modal-header,
.modal .modal-content > form > .modal-footer,
.modal .modal-content > .modal-header,
.modal .modal-content > .modal-footer {
    flex-shrink: 0;
}

.modal .modal-content > form > .modal-body,
.modal .modal-content > .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal .admin-modal-table-scroll {
    max-height: min(42vh, 360px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body .swal2-container {
    z-index: 9999 !important;
}

/* Shared SweetAlert chrome (matches Web portal) */
.etcs-swal.swal2-popup {
    width: min(420px, 92vw);
    padding: 1.5rem 1.35rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
    font-family: inherit;
}

.etcs-swal .etcs-swal-title,
.etcs-swal .swal2-title {
    margin: 0.35rem 0 0.5rem;
    padding: 0;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.etcs-swal .etcs-swal-content,
.etcs-swal .swal2-content {
    margin: 0;
    padding: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
}

.etcs-swal .etcs-swal-icon.swal2-icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0.15rem auto 0.35rem;
    border-width: 3px;
}

.etcs-swal .etcs-swal-icon.swal2-icon .swal2-icon-content {
    font-size: 1.75rem;
    font-weight: 700;
}

.etcs-swal .etcs-swal-icon.swal2-icon.swal2-warning {
    border-color: #f59e0b;
    color: #d97706;
}

.etcs-swal .etcs-swal-icon.swal2-icon.swal2-info {
    border-color: #38bdf8;
    color: #0284c7;
}

.etcs-swal .etcs-swal-icon.swal2-icon.swal2-success {
    border-color: #34d399;
    color: #059669;
}

.etcs-swal .etcs-swal-icon.swal2-icon.swal2-error {
    border-color: #f87171;
    color: #dc2626;
}

.etcs-swal .etcs-swal-actions {
    margin: 1.15rem 0 0;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
}

.etcs-swal .etcs-swal-confirm,
.etcs-swal .etcs-swal-cancel {
    margin: 0;
    border-radius: 10px;
    font-weight: 650;
    font-size: 0.9rem;
    padding: 0.65rem 1.1rem;
    min-width: 9.5rem;
    border: 1px solid transparent;
    box-shadow: none !important;
    outline: none !important;
}

.etcs-swal .etcs-swal-confirm {
    background: #3498db;
    color: #fff;
}

.etcs-swal .etcs-swal-confirm:hover,
.etcs-swal .etcs-swal-confirm:focus {
    background: #2980b9;
    color: #fff;
}

.etcs-swal .etcs-swal-confirm:focus {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.28) !important;
}

.etcs-swal .etcs-swal-cancel {
    background: #f1f5f9;
    color: #334155;
    border-color: #e2e8f0;
}

.etcs-swal .etcs-swal-cancel:hover,
.etcs-swal .etcs-swal-cancel:focus {
    background: #e2e8f0;
    color: #0f172a;
}

.etcs-swal .etcs-swal-cancel:focus {
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.35) !important;
}

@media (max-width: 480px) {
    .etcs-swal .etcs-swal-actions {
        flex-direction: column-reverse;
        width: 100%;
    }

    .etcs-swal .etcs-swal-confirm,
    .etcs-swal .etcs-swal-cancel {
        width: 100%;
        min-width: 0;
    }
}

/* DataTable action kebab menu */
table.dataTable tbody td.admin-action-cell {
    overflow: visible;
    white-space: nowrap;
}

/* Only the open row elevates — giving every action cell a z-index
   makes later-row kebab icons paint over the menu (looks "transparent"). */
table.dataTable tbody tr:has(.admin-table-action.show) {
    position: relative;
    z-index: 30;
}

table.dataTable tbody tr:has(.admin-table-action.show) td.admin-action-cell {
    position: relative;
    z-index: 31;
}

.admin-table-action {
    display: inline-block;
}

.admin-table-action .admin-action-toggle {
    border: 0;
    background: transparent;
    color: #5b6b79;
    padding: 0.2rem 0.45rem;
    line-height: 1;
    box-shadow: none;
    border-radius: 6px;
}

.admin-table-action .admin-action-toggle:hover,
.admin-table-action .admin-action-toggle:focus,
.admin-table-action.show .admin-action-toggle {
    background: #f3f5f7;
    color: #1d2630;
    box-shadow: none;
}

.admin-table-action .admin-action-toggle .ti {
    font-size: 1.15rem;
}

.admin-action-menu.dropdown-menu {
    min-width: 150px;
    padding: 0.4rem 0;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-top: 0.25rem !important;
    background-color: #fff !important;
    background-image: none !important;
    opacity: 1 !important;
    box-shadow: 0 8px 24px rgba(29, 38, 48, 0.12);
    z-index: 1085 !important;
}

.admin-action-menu .dropdown-item {
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    color: #3e4853;
    display: flex;
    align-items: center;
}

.admin-action-menu .dropdown-item .ti,
.admin-action-menu .dropdown-item .fa {
    font-size: 1rem;
    width: 1.1rem;
    text-align: center;
}

.admin-action-menu .dropdown-item:hover,
.admin-action-menu .dropdown-item:focus {
    background-color: #f3f5f7;
    color: #1d2630;
}

.admin-action-menu .dropdown-item.text-danger {
    color: #dc3545 !important;
}

.admin-action-menu .dropdown-item.text-danger:hover,
.admin-action-menu .dropdown-item.text-danger:focus {
    background-color: #fff5f5;
    color: #dc3545 !important;
}

/* Canteen transactions report */
.canteen-report-card .canteen-branch-select,
.canteen-report-card #ddlSchool {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.canteen-report-grid-wrap {
    position: relative;
    min-height: 120px;
}

.canteen-report-grid-wrap.is-loading {
    pointer-events: none;
}

.canteen-report-screen-loader {
    position: fixed;
    inset: 0;
    z-index: 1045;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(1px);
}

.canteen-report-screen-loader.d-none {
    display: none !important;
}

body.canteen-report-loading {
    overflow: hidden;
}

.canteen-report-loader-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.35rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(29, 38, 48, 0.12);
    color: #1d2630;
    font-size: 0.95rem;
    font-weight: 600;
}

.canteen-report-loader-card .spinner-border {
    width: 1.75rem;
    height: 1.75rem;
    border-width: 0.2em;
}

.canteen-report-table {
    width: 100%;
    min-width: 1280px;
    margin-bottom: 0;
    table-layout: auto;
}

.canteen-report-card .dt-scroll-body table,
.canteen-report-card .dt-scroll-headInner table,
.canteen-report-card .dt-scroll-head table {
    min-width: 1280px !important;
}

.canteen-report-card table.dataTable thead th {
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
}

.canteen-report-table thead th {
    white-space: nowrap;
    text-transform: none;
    letter-spacing: normal;
    padding: 0.7rem 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.25;
    vertical-align: middle;
    background-color: #f8f9fa;
}

.canteen-report-table tbody td {
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
}

.canteen-report-table .canteen-branch-cell {
    max-width: 220px;
}

.canteen-report-table .canteen-branch-text,
.canteen-report-table .canteen-cell-ellipsis {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.canteen-report-table .canteen-name-cell {
    max-width: 180px;
}

.canteen-report-table .canteen-item-cell {
    max-width: 200px;
}

.canteen-report-table-scroll {
    overflow-x: auto;
}

@media print {
    body.canteen-report-printing .pc-sidebar,
    body.canteen-report-printing .pc-header,
    body.canteen-report-printing .pc-footer,
    body.canteen-report-printing .card.mb-3,
    body.canteen-report-printing .canteen-report-screen-loader,
    body.canteen-report-printing #reportEmptyMessage,
    body.canteen-report-printing .dt-layout-row,
    body.canteen-report-printing .dataTables_info,
    body.canteen-report-printing .dataTables_paginate {
        display: none !important;
    }

    body.canteen-report-printing .pc-container,
    body.canteen-report-printing .pc-content,
    body.canteen-report-printing .card,
    body.canteen-report-printing .card-body {
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    body.canteen-report-printing .canteen-report-table {
        font-size: 11px;
    }
}

.admin-grid-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.card-body .dt-container {
    max-width: 100%;
}

.card-body .dt-layout-row:last-child {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-header {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pc-header.etcs-topbar .pc-head-link:hover,
.pc-header.etcs-topbar .pc-head-link:focus {
    color: var(--etcs-primary, #3498db) !important;
}

#grid_table_wrapper .dt-processing {
    z-index: 6;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(29, 38, 48, 0.08);
    padding: 0.75rem 1rem;
}

/* Operations dashboard */
.dashboard-page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.dashboard-filters {
    margin: 0 0 1.15rem;
    min-width: 0;
    max-width: 100%;
}

.dashboard-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.55rem 0.65rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 20px rgba(15, 23, 42, 0.03);
}

.dashboard-toolbar-spacer {
    flex: 1 1 auto;
    min-width: 0.5rem;
}

.dashboard-range-group {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    background: #f1f5f9;
    border-radius: 11px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.dashboard-range-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 0.8125rem;
    font-weight: 650;
    line-height: 1.2;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    min-width: 0;
}

.dashboard-range-btn:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
}

.dashboard-range-btn.active {
    background: var(--etcs-primary, #3498db);
    color: #fff;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.28);
}

.dashboard-range-btn:focus-visible {
    outline: 2px solid rgba(52, 152, 219, 0.35);
    outline-offset: 1px;
}

.dashboard-custom-dates {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.15rem 0.25rem;
}

.dashboard-custom-sep {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
}

.dashboard-custom-dates .form-control {
    width: 142px;
    min-height: 2.15rem;
    border-radius: 9px;
    border-color: #e2e8f0;
    font-size: 0.8125rem;
}

.dashboard-school-select {
    min-width: 180px;
    max-width: 260px;
    min-height: 2.15rem;
    border-radius: 9px;
    border-color: #e2e8f0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.dashboard-school-select:focus {
    border-color: var(--etcs-primary, #3498db);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

.dashboard-refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.15rem;
    padding: 0.35rem 0.9rem;
    border-radius: 9px;
    font-size: 0.8125rem;
    font-weight: 650;
    white-space: nowrap;
}

.dashboard-refresh-btn i {
    font-size: 1rem;
}

.dashboard-kpi-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(29, 38, 48, 0.04);
    height: 100%;
}

.dashboard-kpi-label {
    font-size: 0.8125rem;
    color: #5b6b79;
    font-weight: 500;
}

.dashboard-kpi-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1d2630;
}

.dashboard-kpi-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.dashboard-trend-pill {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.dashboard-trend-up {
    background: #e6f5ef;
    color: #2ca87f;
}

.dashboard-trend-down {
    background: #fdecec;
    color: #dc2626;
}

.dashboard-chart-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(29, 38, 48, 0.04);
}

.dashboard-chart-empty {
    text-align: center;
    color: #5b6b79;
    padding: 2rem 1rem;
    margin: 0;
}

.dashboard-quick-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: #fff;
    color: #1d2630;
    text-decoration: none;
    height: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.dashboard-quick-link:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.12);
    color: #3498db;
}

.dashboard-quick-link i {
    font-size: 1.25rem;
    color: #3498db;
}

.dashboard-quick-link span {
    font-size: 0.875rem;
    font-weight: 500;
}

.dashboard-recent-table thead th {
    font-size: 0.8125rem;
    white-space: nowrap;
}

.dashboard-recent-table tbody td {
    font-size: 0.8125rem;
    vertical-align: middle;
}

#dashboard-type-chart .apexcharts-donut-text,
#dashboard-type-chart .apexcharts-text.apexcharts-donut-label {
    font-size: 12px !important;
    font-weight: 600 !important;
}

#dashboard-type-chart .apexcharts-donut-text tspan:first-child {
    font-size: 11px !important;
    font-weight: 500 !important;
    fill: #5b6b79 !important;
}

#dashboard-trend-chart,
#dashboard-type-chart,
#dashboard-terminals-chart {
    min-height: 280px;
}

#dashboard-trend-chart:empty,
#dashboard-type-chart:empty,
#dashboard-terminals-chart:empty {
    min-height: 0;
}

@media (max-width: 991.98px) {
    .dashboard-toolbar {
        gap: 0.55rem;
    }

    .dashboard-toolbar-spacer {
        display: none;
    }

    .dashboard-range-group {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .dashboard-range-btn {
        width: 100%;
        text-align: center;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .dashboard-school-select {
        width: 100%;
        max-width: none;
        min-width: 0;
        flex: 1 1 100%;
    }

    .dashboard-refresh-btn {
        width: 100%;
        justify-content: center;
        flex: 1 1 100%;
    }

    .dashboard-custom-dates {
        width: 100%;
        flex: 1 1 100%;
        min-width: 0;
    }

    .dashboard-custom-dates .form-control {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .dashboard-range-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-range-btn {
        font-size: 0.8125rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.line-devider {
    border: none;
    border-bottom: 1px solid #bad8f5;
}

.form-control.form-control-radius-grp {
    border-radius: 0 8px 8px 0 !important;
    overflow: hidden;
}

.input-group > .input-group-text {
    padding: .6rem .75rem !important;
}

.pc-sidebar {
    width: 305px !important;
}

.pc-header {
    left: 300px !important;
}

.pc-container {
    margin-left: 300px !important;
}

.pc-footer {
    margin-left: 300px !important;
}

.pc-header .pc-head-link::before {
    background: transparent !important;
}