.answer-row {
    border: solid 1px #2b7eff4f;
    padding: 10px;
    border-radius: 10px;
}

.question-block {
    background-color: #f9f9f9;
    border-radius: 10px;
}

.lessoraudioplayer {
    padding: 60px 0px;
}

.lessoraudioplayer .audio-player {
    text-align: center;
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
}

.lessoraudioplayer .audio-player h2 {
    font-size: 25px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.lessoraudioplayer .progress-container {
    position: relative;
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
}

.lessoraudioplayer .progress {
    position: absolute;
    height: 10px;
    background: #ec2f58;
    border-radius: 5px;
    top: 0;
    left: 0;
    width: 0%;
}

.lessoraudioplayer .progress-thumb {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -35%);
    pointer-events: none;
}

.lessoraudioplayer .time {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-top: 30px;
}

.lessoraudioplayer .controls {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.lessoraudioplayer .controls button img {
    margin-left: 13px;
}

.lessoraudioplayer .controls button {
    background: rgba(16, 21, 102, 1);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    box-shadow: 10.87px 10.87px 16.3px 0px rgba(255, 255, 255, 0.2) inset;
    margin: 0px;
    box-shadow: 0px 5.43px 10.87px 0px rgba(55, 46, 152, 0.65);
}

.btnwraplssply {
    box-shadow: -10.87px -10.87px 21.74px 0px rgba(255, 255, 255, 1) inset;
    box-shadow: 10.87px 10.87px 10.87px 0px rgba(0, 0, 0, 0.05);
    box-shadow: -10.87px -10.87px 16.3px 0px rgba(255, 255, 255, 1);
    box-shadow: 10.87px 10.87px 10.87px 0px rgba(0, 0, 0, 0.05) inset;
    padding: 15px;
    border-radius: 50%;
}

.lessoraudioplayer .controls button.pause {
    width: 80px;
    height: 80px;
    font-size: 40px;
}

.lessoraudioplayer .controls button:focus {
    outline: none;
}

.lessoraudioplayer audio {
    display: none;
}

/* Topic detail: hero + glass player + sidebar (matches course topic layout) */
.topic-detail-page {
    font-family: "Inter", system-ui, sans-serif;
}

.topic-detail-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 1.5rem;
    align-items: stretch;
}

.topic-detail-hero {
    position: relative;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #0d2137;
    background-image: linear-gradient(135deg, #1e3a5f 0%, #4a1942 55%, #0d2137 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.topic-detail-hero__title {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    right: 1.5rem;
    margin: 0;
    z-index: 2;
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);


    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    padding: 10px 20px;
    border-radius: 8px;

}

.topic-detail-hero__player {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: auto;
}

.topic-detail-page .topic-detail-hero__lessons.lessoraudioplayer {
    padding: 0;
}

.topic-detail-page .topic-detail-hero__audio.audio-player {
    text-align: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    max-width: none;
}

.topic-detail-hero__glass {
    margin: 0 1rem 1.1rem;
    padding: 0.85rem 1.1rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.topic-detail-page .topic-detail-hero__glass .progress-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    cursor: pointer;
}

.topic-detail-page .topic-detail-hero__glass .progress {
    height: 6px;
    background: #fff;
    border-radius: 999px;
}

.topic-detail-page .topic-detail-hero__glass .progress-thumb {
    transform: translate(-50%, -50%);
    top: 50%;
}

.topic-detail-page .topic-detail-hero__glass .progress-thumb img {
    display: none;
}

.topic-detail-page .topic-detail-hero__glass .progress-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.topic-detail-page .topic-detail-hero__glass .time {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
}

.topic-detail-page .topic-detail-hero__glass .controls {
    margin-top: 0.75rem;
    gap: 1.25rem;
}

.topic-detail-page .topic-detail-hero__glass .btnwraplssply {
    padding: 0;
    border-radius: 50%;
    box-shadow: none;
    background: transparent;
}

.topic-detail-page .topic-detail-hero__glass .controls button {
    background: rgba(255, 255, 255, 0.32);
    box-shadow: none;
    width: 48px;
    height: 48px;
    color: #fff;
}

.topic-detail-page .topic-detail-hero__glass .controls button.pause {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.4);
}

.topic-detail-page .topic-detail-hero__glass .controls button img {
    margin: 0;
    margin-left: 15px;
    width: 18px;
    height: auto;
    filter: brightness(0) invert(1);
}

.topic-detail-page__sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.1rem;
    border-radius: 18px;
    background: #f3f4f6;
    align-self: stretch;
}

.topic-detail-sidebar__btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: #e83355;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.12s ease;
    text-align: left;
    line-height: 1.25;
}

.topic-detail-sidebar__btn:hover {
    background: #621a24;
    color: #fff !important;
}

.topic-detail-sidebar__btn:active {
    transform: scale(0.99);
}

.topic-detail-sidebar__icon {
    flex-shrink: 0;
    font-size: 1.05rem;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .topic-detail-page__grid {
        grid-template-columns: 1fr;
    }

    .topic-detail-page__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .topic-detail-sidebar__btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 200px;
    }
}

@media (max-width: 575px) {
    .topic-detail-hero {
        min-height: 360px;
    }

    .topic-detail-sidebar__btn {
        flex: 1 1 100%;
    }
}

.lessonsinglebtntodownload {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin-bottom: 80px;
}

.lessontakequizsection {
    background-color: #070c28;
    background-image: url(https://chemistryunlocked.co.uk/wp-content/uploads/2025/03/Mask-group.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}

.single-dtlms_quizzes .pre-loader {
    display: none;
}

.option-active {
    background: #e6ffe2;
}

.kt-hover-card {
    transition:
        transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    will-change: transform;
}

.kt-hover-card:hover {
    background-color: #e83455;
    cursor: pointer;
}

.kt-hover-card:hover i,
.kt-hover-card:hover p,
.kt-hover-card:hover a {
    color: #fff !important;
}


.kt-hover-card:hover button
 {
    background-color: #fff !important;
    color: #e83455 !important;
}

.signup-sel {
    background-color: #e83455;
}

.signup-sel p,
.signup-sel span,
.signup-sel a,
.signup-sel i {
    color: #fff !important;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-slideUp {
    animation: slideUp 0.25s ease-out;
}

@keyframes slideDownFade {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.animate-slideDownFade {
    animation: slideDownFade 0.25s ease-in forwards;
}

/* ================================
   TOP STICKY STRIP (METRONIC 9)
   ================================ */

/* Sticky strip container */
#kt_sticky_strip {
    position: sticky;
    top: 0;
    width: 90%;
    z-index: 1055; /* Higher than header/navbar */
    /* background-color: color-mix(
        in oklab,
        var(--primary) 5%,
        transparent
    );  */
        color: #000;
    font-size: 15px;
    /* border-bottom: solid 1px #ccc;
    border-right: solid 1px #ccc;
    border-color: color-mix(in oklab, var(--primary) 10%, transparent); */
    line-height: 1.6;
}

/* Inner content */
#kt_sticky_strip .container,
#kt_sticky_strip .container-fluid {
    display: flex;
    align-items: center;

    min-height: 40px;
    padding: 6px 12px;
}

/* Text */
#kt_sticky_strip .strip-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Close button */
#kt_sticky_strip .strip-close {
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}

#kt_sticky_strip .strip-close:hover {
    opacity: 1;
}

/* ==================================
   HEADER OFFSET FIX (IMPORTANT)
   ================================== */

/* When Metronic header is sticky */
body.has-sticky-strip .app-header,
body.has-sticky-strip .header,
body.has-sticky-strip .header-fixed {
    top: 40px; /* Same height as strip */
}

/* Sidebar layout fix (if used) */
body.has-sticky-strip .app-wrapper {
    padding-top: 40px;
}

/* ==================================
   RESPONSIVE
   ================================== */

@media (max-width: 991.98px) {
    #kt_sticky_strip {
        font-size: 13px;
    }

    #kt_sticky_strip .container,
    #kt_sticky_strip .container-fluid {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

/* ==================================
   OPTIONAL: HIDE ON PRINT
   ================================== */

@media print {
    #kt_sticky_strip {
        display: none !important;
    }
}

#text_modal .kt-modal-title {
    display: none; /* hide only the title */
}

#text_modal .kt-modal-content {
    padding-top: 0; /* remove extra top padding */
}

.pdf-controls {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid #ddd;
    z-index: 50;
}

/* Modified css 2-11-2026 */

/* ===== Sidebar facelift (no markup changes) ===== */

/* Sidebar container */
.kt-sidebar {
    width: 280px;
    background: color-mix(in oklch, var(--background) 92%, var(--primary) 8%);
    border-right: 1px solid
        color-mix(in oklch, var(--border) 80%, var(--primary) 20%);
    box-shadow: 0 10px 30px
        color-mix(in oklch, var(--foreground) 8%, transparent);
}

/* Header area spacing */
.kt-sidebar-header {
    height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in oklch, var(--border) 75%, transparent);
    /* background: color-mix(in oklch, var(--background) 96%, var(--primary) 4%); */
}

/* Toggle button polish (no functional change) */
#sidebar_toggle {
    border-color: color-mix(in oklch, var(--border) 60%, transparent);
    background: color-mix(in oklch, var(--background) 92%, var(--primary) 8%);
    box-shadow: 0 6px 16px
        color-mix(in oklch, var(--foreground) 10%, transparent);
}
#sidebar_toggle:hover {
    background: color-mix(in oklch, var(--background) 86%, var(--primary) 14%);
}

/* Menu spacing */
#sidebar_menu {
    /* gap: 6px; */
}

/* Section headings (Modules/System) */
.kt-menu-heading {
    letter-spacing: 0.08em;
    opacity: 0.85;
}

/* Menu links (the clickable row) */
.kt-menu-link {
    border-radius: 12px;
    /* padding: 10px 12px !important;  */
    transition:
        background-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

/* Hover state */
.kt-menu-link:hover {
    /* background: color-mix(in oklch, var(--accent) 65%, var(--primary) 10%);
    transform: translateX(2px); */
}

/* Icon styling */
.kt-menu-icon {
    display: grid;
    place-items: center;
    width: 34px !important;
    height: 34px;
    border-radius: 10px;
    background: color-mix(in oklch, var(--accent) 75%, transparent);
    color: color-mix(in oklch, var(--foreground) 65%, transparent);
}

/* On hover, icon gets a touch of brand */
.kt-menu-link:hover .kt-menu-icon {
    background: color-mix(in oklch, var(--primary) 14%, var(--accent) 86%);
    color: var(--primary);
}

/* Active item styling (works with your existing kt-menu-item-active:* classes) */
.kt-menu-item[class*="kt-menu-item-active"] .kt-menu-link,
.kt-menu-item.kt-menu-item-active .kt-menu-link {
    /* background: color-mix(in oklch, var(--primary) 16%, var(--background) 84%);
    box-shadow: 0 8px 18px color-mix(in oklch, var(--primary) 14%, transparent); */
}

/* Active text + icon */
.kt-menu-item[class*="kt-menu-item-active"] .kt-menu-title,
.kt-menu-item.kt-menu-item-active .kt-menu-title {
    color: var(--primary);
    font-weight: 650;
}
.kt-menu-item[class*="kt-menu-item-active"] .kt-menu-icon,
.kt-menu-item.kt-menu-item-active .kt-menu-icon {
    background: color-mix(in oklch, var(--primary) 18%, var(--accent) 82%);
    color: var(--primary);
}

/* Scroll area: give a little breathing room */
#sidebar_scrollable {
    padding-bottom: 12px;
}
/* when you add a class like .is-loading to the button */
#login-form-btn.is-loading .btn-text {
    opacity: 0.7;
}
#login-form-btn.is-loading {
    pointer-events: none;
}

.kt-sidebar .kt-menu-link .kt-menu-icon {
    background-color: #e83355;
    color: #fff;
}

textarea {
    padding-top: 4px;
}

.option-error {
    background: #ffe2e2;
}

.option-success {
    background: #e6ffe2;
}

/* Trial topics page */
.trial-topics-page {
    position: relative;
}

.trial-topics-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 24rem;
    /* background: linear-gradient(
        to bottom,
        rgba(215, 50, 82, 0.25) 0%,
        rgba(244, 250, 255, 0.9) 60%,
        #ffffff 100%
    ); */
    pointer-events: none;
    z-index: 0;
}

.trial-topics-page > * {
    position: relative;
    z-index: 1;
}

.trial-topics-hero {
    align-items: flex-start;
}

.trial-topics-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.trial-topics-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.trial-topics-hero__button {
    min-width: 10rem;
}

.trial-topic-list {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 2rem;
}

.trial-topic-card {
    padding: 1.35rem;
    border: 1px solid rgb(226 232 240 / 0.9);
    border-radius: 1.75rem;
    background: linear-gradient(
        135deg,
        rgb(255 255 255) 0%,
        rgb(248 250 252) 100%
    );
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.trial-topic-card:hover {
    transform: translateY(-3px);
    border-color: rgb(125 211 252 / 0.9);
    box-shadow: 0 24px 55px rgb(14 165 233 / 0.14);
}

.trial-topic-card__main {
    display: grid;
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.trial-topic-card__media {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.trial-topic-card__image {
    width: 10rem;
    height: 7rem;
    object-fit: cover;
    border-radius: 1.15rem;
    border: 1px solid rgb(226 232 240);
    background: rgb(241 245 249);
    box-shadow: 0 10px 24px rgb(15 23 42 / 0.08);
}

.trial-topic-card__body {
    min-width: 0;
}

.trial-topic-card__meta {
    color: rgb(14 116 144);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trial-topic-card__title {
    display: inline-block;
    margin-top: 0.45rem;
    color: #e83355;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    transition: color 160ms ease;
}

.trial-topic-card__title:hover {
    color: rgb(2 132 199);
}

.trial-topic-card__copy {
    margin-top: 0.75rem;
    max-width: 40rem;
    color: rgb(71 85 105);
    font-size: 0.98rem;
    line-height: 1.75;
}

.trial-topic-card__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.trial-topic-card__progress-table td {
    padding: 0.2rem 0;
}

.trial-topic-card__progress-table .kt-progress {
    overflow: hidden;
    border-radius: 999px;
    background: rgb(226 232 240);
}

.trial-topic-card__actions {
    display: flex;
    justify-content: flex-end;
}

.trial-topic-card__button {
    min-width: 9rem;
    border-radius: 999px;
    padding-block: 0.95rem;
    padding-inline: 1.1rem;
    box-shadow: 0 12px 24px rgb(37 99 235 / 0.16);
}

.trial-topic-card__sort {
    border-radius: 999px;
    background: rgb(255 255 255 / 0.78) !important;
    box-shadow: 0 10px 24px rgb(15 23 42 / 0.08);
}

@media (max-width: 1024px) {
    .trial-topics-hero__actions {
        width: 100%;
        align-items: flex-start;
    }

    .trial-topics-hero__buttons {
        justify-content: flex-start;
    }

    .trial-topic-card__main {
        grid-template-columns: 1fr;
    }

    .trial-topic-card__side,
    .trial-topic-card__actions {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .trial-topics-page::before {
        height: 20rem;
    }

    .trial-topic-card {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .trial-topic-card__media {
        flex-direction: column;
        align-items: flex-start;
    }

    .trial-topic-card__image {
        width: 100%;
        height: auto;
        max-height: 13rem;
    }

    .trial-topic-card__title {
        font-size: 1.2rem;
    }

    .trial-topic-card__button,
    .trial-topics-hero__button {
        width: 100%;
        justify-content: center;
    }

    .trial-topics-hero__buttons {
        width: 100%;
    }
}

/* Student dashboard */
.student-dashboard-page {
    position: relative;
}

.student-dashboard-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    /* height: 26rem; */
    /* background: linear-gradient(
        to bottom,
        rgba(215, 50, 82, 0.22) 0%,
        rgba(244, 250, 255, 0.92) 58%,
        #ffffff 100%
    ); */
    pointer-events: none;
    z-index: 0;
}

.student-dashboard-page > * {
    position: relative;
    z-index: 1;
}

.student-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.8fr);
    gap: 1.5rem;
    align-items: stretch;
    padding-bottom: 2rem;
}

.student-dashboard-hero__copy {
    padding: 1rem 0;
}

.student-dashboard-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgb(215 50 82 / 0.16);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.76);
    color: rgb(159 18 57);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.student-dashboard-hero__title {
    margin-top: 1rem;
    color: rgb(15 23 42);
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.student-dashboard-hero__text {
    margin-top: 1rem;
    max-width: 42rem;
    color: rgb(71 85 105);
    font-size: 1rem;
    line-height: 1.8;
}

.student-dashboard-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.student-dashboard-hero__button {
    min-width: 10.5rem;
    border-radius: 999px;
    padding-block: 0.95rem;
    padding-inline: 1.2rem;
}

.student-dashboard-hero__panel {
    display: flex;
    align-items: stretch;
}

.student-dashboard-focus-card {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgb(255 255 255 / 0.7);
    border-radius: 1.8rem;
    background: linear-gradient(
        180deg,
        rgb(255 255 255 / 0.96),
        rgb(248 250 252 / 0.92)
    );
    box-shadow: 0 20px 48px rgb(15 23 42 / 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.student-dashboard-focus-card__label {
    color: rgb(159 18 57);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-dashboard-focus-card__title {
    margin-top: 1rem;
    color: rgb(15 23 42);
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.student-dashboard-focus-card__meta {
    margin-top: 1rem;
    color: rgb(71 85 105);
    font-size: 0.95rem;
    line-height: 1.7;
}

.student-dashboard-grid {
    display: grid;
    gap: 1.5rem;
}

.student-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.student-dashboard-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgb(226 232 240 / 0.9);
    border-radius: 1.6rem;
    background: linear-gradient(
        135deg,
        rgb(255 255 255) 0%,
        rgb(248 250 252) 100%
    );
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
}

.student-dashboard-stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 1.15rem;
    background: rgb(215 50 82 / 0.1);
    color: var(--primary);
    font-size: 1.25rem;
}

.student-dashboard-stat-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
}

.student-dashboard-stat-card__value {
    color: rgb(15 23 42);
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.student-dashboard-stat-card__label {
    color: rgb(71 85 105);
    font-size: 0.95rem;
    font-weight: 600;
}

.student-dashboard-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.student-dashboard-feature {
    padding: 1.5rem;
    border: 1px solid rgb(226 232 240 / 0.9);
    border-radius: 1.8rem;
    background: linear-gradient(
        135deg,
        rgb(255 255 255) 0%,
        rgb(248 250 252) 100%
    );
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
}

.student-dashboard-feature--wide {
    grid-column: 1 / -1;
}

.student-dashboard-feature__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.student-dashboard-feature__eyebrow {
    color: rgb(159 18 57);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-dashboard-feature__title {
    margin-top: 0.55rem;
    color: rgb(15 23 42);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.student-dashboard-feature__badge {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.82);
    color: rgb(71 85 105);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgb(15 23 42 / 0.06);
}

.student-dashboard-feature__text {
    margin-top: 1rem;
    color: rgb(71 85 105);
    font-size: 0.98rem;
    line-height: 1.8;
    max-width: 40rem;
}

.student-dashboard-feature__footer {
    margin-top: 1.5rem;
}

.student-dashboard-feature__button {
    min-width: 10rem;
    border-radius: 999px;
    padding-block: 0.95rem;
    padding-inline: 1.2rem;
}

@media (max-width: 1024px) {
    .student-dashboard-hero {
        grid-template-columns: 1fr;
    }

    .student-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .student-dashboard-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .student-dashboard-page::before {
        height: 22rem;
    }

    .student-dashboard-hero__actions {
        flex-direction: column;
    }

    .student-dashboard-hero__button,
    .student-dashboard-feature__button {
        width: 100%;
        justify-content: center;
    }

    .student-dashboard-stat-card,
    .student-dashboard-feature,
    .student-dashboard-focus-card {
        padding: 1.1rem;
        border-radius: 1.35rem;
    }

    .student-dashboard-hero {
        padding-bottom: 1.5rem;
    }
}

/* Student progress page */
.student-progress-page {
    position: relative;
}

.student-progress-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 26rem;
    /* background: linear-gradient(
        to bottom,
        rgba(215, 50, 82, 0.18) 0%,
        rgba(244, 250, 255, 0.92) 58%,
        #ffffff 100%
    ); */
    pointer-events: none;
    z-index: 0;
}

.student-progress-page > * {
    position: relative;
    z-index: 1;
}

.student-progress-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.75fr);
    gap: 1.5rem;
    align-items: stretch;
    padding-bottom: 2rem;
}

.student-progress-hero__copy {
    padding: 1rem 0;
}

.student-progress-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgb(215 50 82 / 0.16);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.76);
    color: rgb(159 18 57);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.student-progress-hero__title {
    margin-top: 1rem;
    color: rgb(15 23 42);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.student-progress-hero__text {
    margin-top: 1rem;
    max-width: 42rem;
    color: rgb(71 85 105);
    font-size: 1rem;
    line-height: 1.8;
}

.student-progress-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.student-progress-hero__button {
    min-width: 10.5rem;
    border-radius: 999px;
    padding-block: 0.95rem;
    padding-inline: 1.2rem;
}

.student-progress-hero__panel {
    display: flex;
    align-items: stretch;
}

.student-progress-focus-card {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgb(255 255 255 / 0.7);
    border-radius: 1.8rem;
    background: linear-gradient(
        180deg,
        rgb(255 255 255 / 0.96),
        rgb(248 250 252 / 0.92)
    );
    box-shadow: 0 20px 48px rgb(15 23 42 / 0.08);
}

.student-progress-focus-card__label {
    color: rgb(159 18 57);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-progress-focus-card__value {
    margin-top: 0.9rem;
    color: rgb(15 23 42);
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.student-progress-focus-card__meta {
    margin-top: 0.9rem;
    color: rgb(71 85 105);
    font-size: 0.95rem;
    line-height: 1.7;
}

.student-progress-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.student-progress-summary-card {
    padding: 1.4rem;
    border: 1px solid rgb(226 232 240 / 0.9);
    border-radius: 1.7rem;
    background: linear-gradient(
        135deg,
        rgb(255 255 255) 0%,
        rgb(248 250 252) 100%
    );
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
}

.student-progress-summary-card__eyebrow {
    color: rgb(159 18 57);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-progress-summary-card__title {
    margin-top: 0.55rem;
    color: rgb(15 23 42);
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.student-progress-summary-card__metrics {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.student-progress-metric__label {
    display: inline-block;
    color: rgb(100 116 139);
    font-size: 0.82rem;
    font-weight: 600;
}

.student-progress-metric__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.45rem;
}

.student-progress-metric__value {
    min-width: 3.5rem;
    color: rgb(15 23 42);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
}

.student-progress-table-card {
    border: 1px solid rgb(226 232 240 / 0.9);
    border-radius: 1.8rem;
    background: linear-gradient(
        135deg,
        rgb(255 255 255) 0%,
        rgb(248 250 252) 100%
    );
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
}

.student-progress-table-card__header {
    padding: 1.5rem 1.5rem 1rem;
}

.student-progress-table-card__eyebrow {
    color: rgb(159 18 57);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-progress-table-card__title {
    margin-top: 0.55rem;
    color: rgb(15 23 42);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.student-progress-table-card__body {
    padding: 0 1.5rem 1.5rem;
}

.student-progress-table {
    border-collapse: separate;
    border-spacing: 0;
}

.student-progress-table thead th {
    padding: 0.95rem 1rem;
    color: rgb(100 116 139);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.student-progress-table tbody td {
    padding: 1rem;
    border-top: 1px solid rgb(226 232 240);
    vertical-align: middle;
}

.student-progress-table__course {
    color: rgb(15 23 42);
    font-weight: 700;
}

.student-progress-table__metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.student-progress-table__bar {
    width: 8rem;
    height: 0.45rem;
    border-radius: 999px;
    overflow: hidden;
    background: #e6e6e6;
}

.student-progress-table__value {
    color: rgb(15 23 42);
    font-size: 0.92rem;
    font-weight: 700;
}

.student-progress-table__empty {
    color: rgb(148 163 184);
    font-size: 0.92rem;
}

.student-progress-table__blank {
    padding: 2rem 1rem !important;
    color: rgb(100 116 139);
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .student-progress-hero {
        grid-template-columns: 1fr;
    }

    .student-progress-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .student-progress-page::before {
        height: 22rem;
    }

    .student-progress-hero__actions {
        flex-direction: column;
    }

    .student-progress-hero__button {
        width: 100%;
        justify-content: center;
    }

    .student-progress-summary-card,
    .student-progress-focus-card,
    .student-progress-table-card__header,
    .student-progress-table-card__body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .student-progress-summary-card,
    .student-progress-focus-card,
    .student-progress-table-card {
        border-radius: 1.35rem;
    }
}

/* Student course detail page */
.student-course-detail-page {
    position: relative;
}

.student-course-detail-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 24rem;
    /* background: linear-gradient(
        to bottom,
        rgba(215, 50, 82, 0.22) 0%,
        rgba(244, 250, 255, 0.92) 58%,
        #ffffff 100%
    ); */
    pointer-events: none;
    z-index: 0;
}

.student-course-detail-page > * {
    position: relative;
    z-index: 1;
}

.student-course-detail-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
}

.student-course-detail-hero__content {
    max-width: 44rem;
}

.student-course-detail-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: rgb(71 85 105);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 160ms ease;
}

.student-course-detail-hero__back:hover {
    color: rgb(15 23 42);
}

.student-course-detail-hero__title {
    margin-top: 1rem;
    color: rgb(15 23 42);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.student-course-detail-hero__text {
    margin-top: 1rem;
    max-width: 38rem;
    color: rgb(71 85 105);
    font-size: 1rem;
    line-height: 1.8;
}

.student-course-detail-hero__panel {
    display: flex;
    justify-content: flex-end;
}

.student-course-topic-list {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 2rem;
}

.student-course-topic-card {
    padding: 1.35rem;
    border: 1px solid rgb(226 232 240 / 0.9);
    border-radius: 1.75rem;
    background: linear-gradient(
        135deg,
        rgb(255 255 255) 0%,
        rgb(248 250 252) 100%
    );
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.student-course-topic-card:hover {
    transform: translateY(-3px);
    border-color: rgb(125 211 252 / 0.9);
    box-shadow: 0 24px 55px rgb(14 165 233 / 0.14);
}

.student-course-topic-card__main {
    display: grid;
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.student-course-topic-card__media {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.student-course-topic-card__image {
    width: 10rem;
    height: 7rem;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid rgb(226 232 240);
    background: rgb(241 245 249);
    box-shadow: 0 10px 24px rgb(15 23 42 / 0.08);
}

.student-course-topic-card__body {
    min-width: 0;
}

.student-course-topic-card__title {
    display: inline-block;
    color: rgb(15 23 42);
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    transition: color 160ms ease;
}

.student-course-topic-card__title:hover {
    color: rgb(2 132 199);
}

.student-course-topic-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    margin-top: 0.9rem;
}

.student-course-topic-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(71 85 105);
    font-size: 0.92rem;
    font-weight: 600;
}

.student-course-topic-card__meta-item i {
    color: var(--primary);
}

.student-course-topic-card__copy {
    margin-top: 0.85rem;
    max-width: 40rem;
    color: rgb(71 85 105);
    font-size: 0.98rem;
    line-height: 1.75;
}

.student-course-topic-card__actions {
    display: flex;
    justify-content: flex-end;
}

.student-course-topic-card__button {
    min-width: 9rem;
    border-radius: 999px;
    padding-block: 0.95rem;
    padding-inline: 1.15rem;
    box-shadow: 0 12px 24px rgb(37 99 235 / 0.16);
}

@media (max-width: 1024px) {
    .student-course-detail-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .student-course-detail-hero__panel {
        width: 100%;
        justify-content: flex-start;
    }

    .student-course-topic-card__main {
        grid-template-columns: 1fr;
    }

    .student-course-topic-card__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .student-course-detail-page::before {
        height: 20rem;
    }

    .student-course-topic-card {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .student-course-topic-card__media {
        flex-direction: column;
        align-items: flex-start;
    }

    .student-course-topic-card__image {
        width: 100%;
        height: auto;
        max-height: 13rem;
    }

    .student-course-topic-card__title {
        font-size: 1.2rem;
    }

    .student-course-topic-card__button {
        width: 100%;
        justify-content: center;
    }
}

/* Student portal course page */
.student-courses-page {
    position: relative;
}

.student-courses-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 24rem;
    /* background: linear-gradient(
        to bottom,
        rgba(215, 50, 82, 0.25) 0%,
        /* top darker tint */ rgba(244, 250, 255, 0.9) 60%, */
        /* smooth transition */ #ffffff 100% /* white bottom */
    );

    pointer-events: none;
    z-index: 0;

    pointer-events: none;
    z-index: 0;
}

.student-courses-page > * {
    position: relative;
    z-index: 1;
}

.student-courses-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0 2rem;
}

.student-courses-hero__content {
    max-width: 42rem;
}

.student-courses-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgb(14 165 233 / 0.16);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.72);
    color: rgb(3 105 161);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.student-courses-hero__title {
    margin-top: 1rem;
    color: rgb(15 23 42);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.student-courses-hero__copy {
    margin-top: 1rem;
    max-width: 36rem;
    color: rgb(71 85 105);
    font-size: 1rem;
    line-height: 1.75;
}

.student-courses-hero__stats {
    display: flex;
    justify-content: flex-end;
    min-width: 13rem;
}

.student-courses-stat {
    min-width: 12rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgb(148 163 184 / 0.18);
    border-radius: 1.4rem;
    background: rgb(255 255 255 / 0.78);
    box-shadow: 0 16px 40px rgb(15 23 42 / 0.08);
    backdrop-filter: blur(16px);
}

.student-courses-stat__value {
    display: block;
    color: rgb(15 23 42);
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.student-courses-stat__label {
    display: block;
    margin-top: 0.5rem;
    color: rgb(71 85 105);
    font-size: 0.95rem;
    font-weight: 600;
}

.student-course-list {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 2rem;
}

.student-course-card {
    display: grid;
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.35rem;
    border: 1px solid rgb(226 232 240 / 0.9);
    border-radius: 1.75rem;
    background: linear-gradient(
        135deg,
        rgb(255 255 255) 0%,
        rgb(248 250 252) 100%
    );
    box-shadow: 0 18px 45px rgb(15 23 42 / 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.student-course-card:hover {
    transform: translateY(-3px);
    border-color: rgb(125 211 252 / 0.9);
    box-shadow: 0 24px 55px rgb(14 165 233 / 0.14);
}

.student-course-card__media {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.student-course-card__index {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 4.75rem;
    aspect-ratio: 1;
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgb(15 23 42), rgb(30 41 59));
    color: rgb(241 245 249);
    text-align: center;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.student-course-card__index-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.72;
}

.student-course-card__index-value {
    margin-top: 0.3rem;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
}

.student-course-card__image {
    width: 10rem;
    height: 7rem;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid rgb(226 232 240);
    background: rgb(241 245 249);
    box-shadow: 0 10px 24px rgb(15 23 42 / 0.08);
}

.student-course-card__body {
    min-width: 0;
}

.student-course-card__meta {
    color: rgb(14 116 144);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-course-card__title {
    display: inline-block;
    margin-top: 0.45rem;
    color: #e83355;
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    transition: color 160ms ease;
}

.student-course-card__title:hover {
    color: rgb(2 132 199);
}

.student-course-card__copy {
    margin-top: 0.75rem;
    max-width: 42rem;
    color: rgb(71 85 105);
    font-size: 0.98rem;
    line-height: 1.75;
}

.student-course-card__actions {
    display: flex;
    justify-content: flex-end;
}

.student-course-card__button {
    min-width: 10.5rem;
    border-radius: 999px;
    padding-block: 0.95rem;
    padding-inline: 1.1rem;
    box-shadow: 0 12px 24px rgb(37 99 235 / 0.16);
}

.student-course-card__button span {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .student-courses-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .student-courses-hero__stats {
        width: 100%;
        justify-content: flex-start;
    }

    .student-course-card {
        grid-template-columns: 1fr;
    }

    .student-course-card__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .student-courses-page::before {
        height: 20rem;
    }

    .student-courses-hero {
        padding: 1rem 0 1.5rem;
    }

    .student-course-card {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .student-course-card__media {
        flex-direction: column;
        align-items: flex-start;
    }

    .student-course-card__image {
        width: 100%;
        height: auto;
        max-height: 13rem;
    }

    .student-course-card__title {
        font-size: 1.2rem;
    }

    .student-course-card__button {
        width: 100%;
        justify-content: center;
    }
}

/* Sidebar facelift */
/* .demo1 .kt-sidebar {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--primary) 92%, #ffffff 8%) 0%,
        var(--primary) 52%,
        color-mix(in srgb, var(--primary) 84%, #081226 16%) 100%
    );
    border-inline-end: 0;
    box-shadow: 18px 0 48px rgb(15 23 42 / 0.16);
} */

.demo1 .kt-sidebar {
    background-color: #161f32;
}

/* .demo1 .kt-sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgb(255 255 255 / 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom right,
            rgb(255 255 255 / 0.1),
            transparent 28%
        );
    pointer-events: none;
} */

.demo1 .kt-sidebar > * {
    position: relative;
    z-index: 1;
}

.demo1 .kt-sidebar .kt-sidebar-header {
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.demo1 .kt-sidebar .kt-menu-heading {
    color: rgb(255 255 255 / 0.62) !important;
    letter-spacing: 0.14em;
}

.demo1 .kt-sidebar .kt-menu-item > .kt-menu-link {
    min-height: 3.25rem;
    border-radius: 1rem;
    padding-inline: 0.9rem;
    transition:
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.demo1 .kt-sidebar .kt-menu-item > .kt-menu-link .kt-menu-title {
    color: rgb(255 255 255) !important;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.demo1 .kt-sidebar .kt-menu-item > .kt-menu-link .kt-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.9rem;
    background: rgb(255 255 255);
    color: var(--primary) !important;
    box-shadow: 0 10px 22px rgb(15 23 42 / 0.12);
}

.demo1 .kt-sidebar .kt-menu-item > .kt-menu-link .kt-menu-icon i {
    color: var(--primary) !important;
}

.demo1 .kt-sidebar .kt-menu-item > .kt-menu-link:hover {
    background: rgb(255 255 255 / 0.14);
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.08);
    transform: translateX(2px);
}

.demo1 .kt-sidebar .kt-menu-item.active > .kt-menu-link,
.demo1 .kt-sidebar .kt-menu-item.here > .kt-menu-link,
.demo1 .kt-sidebar .kt-menu-item.show > .kt-menu-link {
    background: rgb(255 255 255 / 0.18);
    box-shadow:
        inset 0 0 0 1px rgb(255 255 255 / 0.1),
        0 12px 24px rgb(15 23 42 / 0.14);
}

.demo1 .kt-sidebar .kt-menu-item.active > .kt-menu-link .kt-menu-title,
.demo1 .kt-sidebar .kt-menu-item.here > .kt-menu-link .kt-menu-title,
.demo1 .kt-sidebar .kt-menu-item.show > .kt-menu-link .kt-menu-title {
    color: rgb(255 255 255) !important;
    font-weight: 700;
}

.demo1 .kt-sidebar .kt-menu-item.active > .kt-menu-link .kt-menu-icon,
.demo1 .kt-sidebar .kt-menu-item.here > .kt-menu-link .kt-menu-icon,
.demo1 .kt-sidebar .kt-menu-item.show > .kt-menu-link .kt-menu-icon {
    background: rgb(255 255 255);
}

.demo1 .kt-sidebar #sidebar_toggle {
    border-color: rgb(255 255 255 / 0.18);
    background: rgb(255 255 255);
    color: var(--primary);
    box-shadow: 0 10px 24px rgb(15 23 42 / 0.12);
}

.demo1 .kt-sidebar #sidebar_toggle i {
    color: var(--primary);
}

.demo1 .kt-sidebar .kt-scrollable-y-hover {
    scrollbar-color: rgb(255 255 255 / 0.26) transparent;
}

.demo1 .kt-sidebar .kt-scrollable-y-hover::-webkit-scrollbar-thumb {
    background-color: rgb(255 255 255 / 0.26);
}

.kt-header {
    background: #fcf4f6 !important;
}


.flatpickr-input[readonly]{
    color: #000;
}