/* ============================================================
   Hero Section
   ============================================================ */

.courses-hero {
    display: flex;
    align-items: center;
    gap: 48px;
    background: white;
    border-radius: 20px;
    padding: 52px 48px 44px;
    margin: 20px 0 32px;
    border: 1.5px solid #e8f0fe;
    position: relative;
    overflow: hidden;
}

.courses-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    pointer-events: none;
    display: none;
}

/* left column */
.courses-hero-left {
    flex: 1;
    min-width: 0;
}

/* badge */
.courses-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
    letter-spacing: 0.1px;
}

/* heading */
.courses-hero-heading {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 18px;
    letter-spacing: -1px;
}

@media (max-width: 900px) {
    .courses-hero-heading {
        font-size: 36px;
    }
}

/* description */
.courses-hero-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}

/* CTA buttons */
.courses-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.hero-btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    text-decoration: none;
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1e293b;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid #e2e8f0;
    transition: background 0.2s, border-color 0.2s;
}

.hero-btn-ghost:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
    text-decoration: none;
}

.hero-btn-ghost .play-icon {
    font-size: 18px;
    line-height: 1;
    color: #2563eb;
}

/* stats */
.courses-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 3px;
}

.hero-stat span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
}

/* right column — image */
.courses-hero-right {
    flex: 0 0 500px;
    max-width: 500px;
}

.courses-hero-img-wrap {
    position: relative;
}

.courses-hero-img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
    border-radius: 18px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); */
}

/* floating card */
@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.courses-hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    min-width: 170px;
    z-index: 10;
}

.courses-hero-float-card.card-1 {
    bottom: 30px;
    left: -40px;
    animation: floatCard1 4.5s ease-in-out infinite;
}

.courses-hero-float-card.card-2 {
    top: 40px;
    right: -30px;
    animation: floatCard2 5.5s ease-in-out infinite;
}

.hero-float-icon {
    font-size: 28px;
    width: 44px;
    height: 44px;
    background: #f0fdf4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-icon.icon-orange {
    background: #fff7ed;
}

.hero-float-icon.icon-blue {
    background: #eff6ff;
}

.hero-float-text {
    display: flex;
    flex-direction: column;
}

.hero-float-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.hero-float-text span {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .courses-hero {
        flex-direction: column;
        padding: 36px 24px 32px;
    }

    .courses-hero-right {
        display: none;
    }

    .courses-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ============================================================
   Courses Page — Modern Premium UI
   ============================================================ */



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Reset & base ---------- */
.course-main-container-fluid * {
    box-sizing: border-box;
}

.course-main-container-fluid {
    font-family: 'Inter', 'Noto Sans Sinhala', system-ui, sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 60px;
    color: #1e293b;
}

/* ---------- Page header / hero strip ---------- */
.courses-page-header {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 60%, #3b82f6 100%);
    border-radius: 16px;
    padding: 36px 40px;
    margin: 20px 0 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
}

.courses-page-header .header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.courses-page-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.2;
}

.courses-page-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

/* ---------- Search bar ---------- */
.courses-search-wrap {
    margin-bottom: 24px;
}

.courses-search-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
    max-width: 600px;
}

.courses-search-inner:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.courses-search-inner .search-icon {
    padding: 0 14px;
    color: #94a3b8;
    font-size: 16px;
    flex-shrink: 0;
}

.courses-search-inner input[type="text"] {
    border: none;
    outline: none;
    padding: 13px 0;
    font-size: 14px;
    flex: 1;
    background: transparent;
    color: #1e293b;
    font-family: inherit;
}

.courses-search-inner input[type="text"]::placeholder {
    color: #94a3b8;
}

.courses-search-inner button[type="submit"] {
    background: #2563eb;
    border: none;
    color: #fff;
    padding: 12px 22px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 0 10px 10px 0;
    transition: background 0.2s;
    white-space: nowrap;
}

.courses-search-inner button[type="submit"]:hover {
    background: #1d4ed8;
}

/* ---------- Quick Filters ---------- */
.courses-controls-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
    background: #ffffff;
    border: 1.5px solid #e8f0fe;
    border-radius: 18px;
    padding: 24px 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

@media (max-width: 900px) {
    .courses-controls-section {
        padding: 20px;
    }
}

.courses-search-wrap {
    margin-bottom: 0px;
}

.courses-quick-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1.5px dashed #f1f5f9;
}

.filter-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.filter-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    /* for scrollbar */
    scrollbar-width: none;
    /* Firefox */
}

.filter-chips::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.filter-chip {
    padding: 8px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
}

.filter-chip:hover {
    background: #e2e8f0;
    color: #1e293b;
    text-decoration: none;
}

.filter-chip.active {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

/* ---------- Section labels ---------- */
.courses-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0 16px;
}

.courses-section-label h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.courses-section-label h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: #2563eb;
    border-radius: 3px;
}

.courses-section-label .course-count-badge {
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 99px;
    border: 1px solid #bfdbfe;
}

/* ---------- Grid ---------- */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ---------- Carousel ---------- */
.courses-carousel-wrap {
    margin: 16px 0 20px;
}

.carousel-nav-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.carousel-nav-btn:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #2563eb;
}

.courses-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    scroll-snap-type: x mandatory;
}

.courses-carousel::-webkit-scrollbar {
    height: 8px;
}

.courses-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.courses-carousel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.courses-carousel::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.carousel-item-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    display: flex;
}

.carousel-item-card>* {
    width: 100%;
}

@media (max-width: 1100px) {
    .carousel-item-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 800px) {
    .carousel-item-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 500px) {
    .courses-carousel {
        gap: 12px;
    }

    .carousel-item-card {
        flex: 0 0 calc(45% - 8px);
    }
}

/* ---------- Course Card ---------- */
.modern-course-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.modern-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.13);
    border-color: #93c5fd;
}

/* thumb */
.mcc-thumb {
    position: relative;
    overflow: hidden;
    height: 160px;
    background: #f1f5f9;
    flex-shrink: 0;
}

.mcc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-course-card:hover .mcc-thumb img {
    transform: scale(1.05);
}

/* badges on thumb */
.mcc-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    z-index: 2;
}

.mcc-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
}

.mcc-badge-sinhala {
    background: rgba(16, 185, 129, 0.92);
    color: #fff;
}

.mcc-badge-english {
    background: rgba(59, 130, 246, 0.92);
    color: #fff;
}

.mcc-badge-grade {
    background: rgba(30, 41, 59, 0.82);
    color: #fff;
}

.mcc-badge-free {
    background: rgba(16, 185, 129, 0.92);
    color: #fff;
}

.mcc-badge-private {
    background: rgba(245, 158, 11, 0.92);
    color: #fff;
}

/* discount ribbon */
.mcc-discount {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
}

/* access ribbon (My Courses) */
.mcc-access-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* body */
.mcc-body {
    padding: 14px 14px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mcc-subject {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mcc-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s;
    min-height: 40px;
}

.mcc-title:hover {
    color: #2563eb;
}

.modern-course-card:hover .mcc-title {
    color: #2563eb;
}

.mcc-instructor {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mcc-instructor i {
    color: #94a3b8;
    font-size: 11px;
}

/* meta row */
.mcc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    padding: 8px 0;
    flex-wrap: wrap;
}

.mcc-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mcc-meta-item i {
    font-size: 10px;
}

.mcc-rating {
    color: #f59e0b;
    font-weight: 600;
}

/* footer */
.mcc-footer {
    padding: 10px 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.mcc-price {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.mcc-price-free {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
}

.mcc-price-sub {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 400;
}

.mcc-enroll-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}

.mcc-enroll-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: scale(1.03);
    text-decoration: none;
}

.mcc-enroll-btn-access {
    background: #10b981;
}

.mcc-enroll-btn-access:hover {
    background: #059669;
}

@media (max-width: 600px) {
    .mcc-thumb {
        height: 110px;
    }

    .mcc-body {
        padding: 10px 10px 0;
    }

    .mcc-subject {
        font-size: 9px;
        margin-bottom: 3px;
    }

    .mcc-title {
        font-size: 12px;
        margin-bottom: 4px;
        min-height: 34px;
        line-height: 1.35;
    }

    .mcc-instructor {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .mcc-meta {
        padding: 6px 0;
        gap: 8px;
        font-size: 9px;
    }

    .mcc-footer {
        padding: 8px 10px 10px;
    }

    .mcc-price {
        font-size: 13px;
    }

    .mcc-enroll-btn {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    .mcc-badge {
        padding: 2px 5px;
        font-size: 9px;
    }
}

/* ---------- My Courses section strip ---------- */
.my-courses-strip {
    background: linear-gradient(90deg, #f0fdf4, #dcfce7);
    border: 1.5px solid #bbf7d0;
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #15803d;
}

.my-courses-strip i {
    font-size: 18px;
}

/* ---------- No results ---------- */
.no-results-wrap {
    text-align: center;
    padding: 60px 20px;
}

.no-results-wrap img {
    width: 180px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.no-results-wrap h3 {
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.no-results-wrap p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.no-results-wrap .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1e293b;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.no-results-wrap .btn-back:hover {
    background: #2563eb;
    color: #fff;
}

/* ---------- Pagination ---------- */
.courses-pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 32px 0 8px;
}

.courses-pagination-wrap .pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.courses-pagination-wrap .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s;
    font-family: inherit;
}

.courses-pagination-wrap .page-item .page-link:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #2563eb;
}

.courses-pagination-wrap .page-item.disabled .page-link,
.courses-pagination-wrap .page-item.disabled .page-link:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    cursor: default;
    transform: none;
}

/* ---------- Divider ---------- */
.courses-divider {
    border: none;
    border-top: 1.5px solid #f1f5f9;
    margin: 28px 0;
}

/* ---- legacy styles still needed for video pages ---- */
.content-image {
    width: 100%;
    height: 155px;
    background-color: #02172b17;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #003261;
    background-size: cover;
    background-repeat: no-repeat;
}

.content-title {
    font-size: 14px;
    text-align: center;
}

.in-course-image {
    height: 198px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
}

.course-price {
    background-color: #20eaea;
    padding: 5px 20px;
    color: #0d2d4c;
    font-weight: bold;
}

.course-card-container {
    position: relative;
}

.course-card-container span a[href]::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.course-card-title {
    font-size: 14px;
    min-height: 65px;
}

.course-card-title span {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
}

.course-card-author {
    font-size: 13px;
}

.course-card-access {
    font-size: 12px;
}

.course-card-price {
    font-size: 12px;
    min-height: 41px;
}

.private-course-price {
    background-color: #ffb102;
    color: #0d2d4c;
}

.course-lesson {
    padding-left: 25px;
}

.course-lesson-units {
    padding-left: 15px;
}

.course-lesson-units li {
    margin-top: 10px;
    height: 50px;
}

.course-lesson li a {
    color: #000;
    text-align: left;
    position: relative;
    text-decoration: none;
    font-size: 13px;
}

.side-lessons {
    height: calc(100vh - 91px);
    overflow: hidden;
}

.unit:hover>a {
    color: #000;
}

.side-lessons .accordion:hover,
.side-lessons .active {
    color: #000;
    font-weight: bold;
}

.hide {
    display: none;
}

li .unit {
    font-size: 12px;
}

#zoom_link_form_description {
    margin-bottom: 15px;
}

.add-new-unit,
.add-new-unit a {
    color: #fff !important;
    display: block;
    border-bottom: 1px solid #042d3a;
    margin: 0;
}

.completed:last-child {
    border-bottom: 1px solid #042d3a;
}

.side-lessons .accordion {
    cursor: pointer;
    padding: 12px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: all 0.5s;
    padding-left: 0;
    align-items: center;
    border: 1px solid #042d3a;
    border-bottom: 0;
}

.side-lessons .accordion::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f107";
    font-size: 15px;
    float: right;
    margin-left: auto;
    padding: 0;
    margin-top: -5px;
    margin-bottom: -6px;
}

.side-lessons .active::after {
    content: "\f106";
}

.side-lessons .panel {
    max-height: 0;
    transition: max-height 0.5s;
    overflow: hidden;
    border-right: 1px solid #042d3a;
    border-left: 1px solid #042d3a;
    border-bottom: 0;
}

.bg-dark-transparent {
    background-color: unset !important;
}

.unit {
    padding: 15px 0px;
    margin-left: 33px;
}

.side-lessons:hover {
    overflow: auto;
}

.unit a span {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    font-family: monospace;
    width: 120px;
    opacity: 0.6;
}

.unit a .video-label {
    padding-left: 10px;
}

.unit a .duration-label {
    padding-left: 55px;
}

.units-end {
    padding-bottom: 20px;
}

.side-lessons::-webkit-scrollbar {
    width: 10px;
    background: #c7c7c7;
}

.side-lessons::-webkit-scrollbar-track {
    background: #c7c7c7;
    border-radius: 7px;
}

.side-lessons::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 7px;
}

.side-lessons::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
    border-radius: 7px;
}

.edit-lesson {
    float: right;
    margin-bottom: -41px;
    margin-top: 16px;
    margin-right: 40px;
    display: none;
    transition: 0.2s;
}

.completed:hover>.edit-lesson {
    display: block !important;
    transition: 0.2s;
    position: relative;
    z-index: 10001 !important;
    background-color: #f0f0f0;
    padding-left: 5px;
    padding-right: 5px;
}

.course-lesson li.active a,
.course-lesson li.actives a span,
.active-side-item,
.active-side-item .text-success {
    color: #2875e7 !important;
    font-weight: bold;
}

.form-control-light-blue,
.form-control-light-blue:focus {
    background-color: #2177801a;
    border: 1px solid #07323f;
}

form label {
    margin: 0;
}

.input-group-addon {
    background-color: #07323f;
}

.completed:hover .accordion::after {
    display: none !important;
}

.pay-lessons .video-label,
.pay-lessons .duration-label {
    font-size: 11px;
}

.pay-lessons .accordion li span {
    font-weight: bold;
}

.pay-lessons {
    background-color: #bdf4ff;
}

.pay-lessons .pay-online-button {
    color: white !important;
}

.pay-lessons,
.pay-lessons a,
.pay-lessons>active-side-item.a,
.pay-lessons a span {
    color: #ff00d2 !important;
    opacity: 1;
}

.course-lesson li.active a,
.course-lesson li.active span,
.pay-lessons li.active::marker {
    color: blue !important;
    opacity: 1;
}