.bundle {
    --item-mt: 70px
}

@media only screen and (max-width: 991px) {
    .bundle {
        --item-mt: 50px
    }
}

.bundle .-mt {
    margin-top: calc(var(--item-mt) * -1)
}

.bundle-list {
    padding: 44px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    margin-top: var(--item-mt);
    background-color: var(--system_secendory_color)
}

@media only screen and (min-width: 1280px)and (max-width: 1439px) {
    .bundle-list {
        padding: 34px;
        padding-top: 60px
    }
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list {
        padding: 30px;
        padding-top: 50px
    }
}

@media only screen and (max-width: 991px) {
    .bundle-list {
        padding: 20px;
        padding-top: 40px
    }
}

.bundle-list:hover .img {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.bundle-list .badge {
    position: absolute;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    font-family: "Eudoxus Sans", system-ui, sans-serif;
    padding: 10px 32px;
    top: -23px;
    background-color: #181d26;
    color: #f64153;
    border-radius: 2px
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list .badge {
        font-size: 22px
    }
}

@media only screen and (max-width: 991px) {
    .bundle-list .badge {
        font-size: 20px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list .badge {
        padding: 7px 22px;
        top: -22px
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list .badge {
        font-size: 18px;
        padding: 6px 18px;
        top: -19px
    }
}

.bundle-list .img {
    --img-width: 306px;
    display: block;
    width: var(--img-width);
    height: 191px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-153px, -50%);
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 12px 16px 28px 5px rgba(0, 0, 0, .25);
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

@media only screen and (min-width: 1440px)and (max-width: 1580px) {
    .bundle-list .img {
        transform: translate(-55px, -50%)
    }
}

@media only screen and (min-width: 1280px)and (max-width: 1439px) {
    .bundle-list .img {
        transform: translate(-65px, -50%)
    }
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list .img {
        --img-width: 255px;
        height: 149px;
        transform: translate(-25px, -50%)
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list .img {
        --img-width: 255px;
        height: 149px;
        transform: translate(-25px, -50%)
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list .img {
        --img-width: 200px;
        height: 129px;
        transform: translate(-10px, -50%)
    }
}

.bundle-list .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.bundle-list h3 {
    font-size: 40px;
    line-height: 1.5;
    font-weight: 700;
    line-height: 1.3;
    color: var(--system_primery_color);
    margin-bottom: 32px;
    margin-top: 10px
}

@media only screen and (min-width: 1280px)and (max-width: 1439px) {
    .bundle-list h3 {
        font-size: 36px
    }
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list h3 {
        font-size: 32px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list h3 {
        font-size: 28px
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list h3 {
        font-size: 26px
    }
}

@media only screen and (min-width: 1280px)and (max-width: 1439px) {
    .bundle-list h3 {
        margin-bottom: 20px
    }
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list h3 {
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 991px) {
    .bundle-list h3 {
        margin-top: 0;
        margin-bottom: 20px
    }
}

.bundle-list ul {
    max-height: 302px;
    min-height: 302px;
    overflow: auto
}

.bundle-list ul::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

.bundle-list ul::-webkit-scrollbar-track {
    background: rgba(23, 29, 39, .2);
    border-radius: 100px
}

.bundle-list ul::-webkit-scrollbar-thumb {
    background: rgba(23, 29, 39, .6);
    border-radius: 100px
}

.bundle-list ul li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--system_primery_color);
    border-radius: 2px;
    background-color: #fff;
    padding: 22px 23px;
    cursor: pointer;
    list-style: none;
    transition: all .4s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08)
}

.bundle-list ul li:hover {
    background-color: var(--system_primery_color);
    color: #fff
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list ul li {
        font-size: 16px;
        padding: 18px 18px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list ul li {
        padding: 18px 20px
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list ul li {
        padding: 16px 18px
    }
}

.bundle-list ul li:not(:last-child) {
    margin-bottom: 10px
}

.bundle-list ul li span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.bundle-list ul li:hover span:first-child {
    text-decoration: underline
}

.bundle-list-actions {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    background-color: #181d26;
    border-radius: 2px;
    padding: 26px 34px;
    margin-top: 46px;
    align-items: center
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list-actions {
        padding: 20px 28px;
        margin-top: 30px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list-actions {
        padding: 16px 22px;
        margin-top: 36px
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list-actions {
        padding: 12px 18px;
        border-radius: 12px;
        margin-top: 30px
    }
}

.bundle-list-actions .theme-btn {
    --btn-padding-y: 15px
}

@media only screen and (max-width: 767px) {
    .bundle-list-actions .theme-btn {
        --btn-padding-y: 12px
    }
}

.bundle-list-actions .price {
    grid-column: span 1/span 1;
    font-weight: 700
}

.bundle-list-actions .price del {
    font-size: 36px;
    line-height: 1.5277777778;
    opacity: .54
}

@media only screen and (min-width: 1280px)and (max-width: 1439px) {
    .bundle-list-actions .price del {
        font-size: 32px
    }
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list-actions .price del {
        font-size: 30px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list-actions .price del {
        font-size: 28px
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list-actions .price del {
        font-size: 24px
    }
}

.bundle-list-actions .price strong {
    font-size: 40px;
    line-height: 1.5;
    line-height: 1
}

@media only screen and (min-width: 1280px)and (max-width: 1439px) {
    .bundle-list-actions .price strong {
        font-size: 36px
    }
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list-actions .price strong {
        font-size: 32px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list-actions .price strong {
        font-size: 28px
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list-actions .price strong {
        font-size: 26px
    }
}

@media only screen and (max-width: 767px) {
    .bundle-list-actions .price strong {
        font-size: 30px
    }
}

.bundle-list-actions .action-btn {
    grid-column: span 2/span 2;
    padding-left: 25%
}

.bundle-list-actions .action-btn a {
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .1);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    text-align: center;
    color: #fff;
    transition: all .4s ease-in-out
}

@media only screen and (min-width: 992px)and (max-width: 1279px) {
    .bundle-list-actions .action-btn a {
        font-size: 18px
    }
}

@media only screen and (max-width: 991px) {
    .bundle-list-actions .action-btn a {
        font-size: 18px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .bundle-list-actions .action-btn a {
        font-size: 16px
    }
}

.bundle-list-actions .action-btn a:hover {
    background-color: var(--system_secendory_color);
    color: var(--system_primery_color)
}

/* Centered breadcrumb (bundle subscription pages) */
.breadcrumb_area--center .breadcam_wrap--center {
    width: 100%;
    max-width: 960px;
    text-align: center;
}

.breadcrumb_area--center .breadcam_wrap--center h3 {
    margin-bottom: 0;
}

/* Shorter hero on bundle subscription listing only */
.bundle-subscription-list-page .breadcrumb_area.bradcam_bg_2 {
    height: 240px;
    align-items: center;
}

@media (max-width: 767.98px) {
    .bundle-subscription-list-page .breadcrumb_area.bradcam_bg_2 {
        height: 180px;
    }
}

.bundle-subscription-list-page .breadcrumb_area .breadcam_wrap--center h3 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .bundle-subscription-list-page .breadcrumb_area .breadcam_wrap--center h3 {
        font-size: 28px;
    }
}

/* Bundle subscription listing — subscription plan cards */
.pricing_area.bundle-subscription-list {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.pricing_area.bundle-subscription-list .subscription-plan-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
    padding: 1.75rem 1.5rem 1.5rem;
    margin-top: 0;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing_area.bundle-subscription-list .subscription-plan-card--featured {
    border: 2px solid var(--system_primery_color);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.pricing_area.bundle-subscription-list .subscription-plan-card__label {
    align-self: stretch;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--system_primery_color);
    background: linear-gradient(180deg, #ffffff 0%, #f0f3f8 100%);
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    margin-bottom: 1.35rem;
    max-width: 100%;
    line-height: 1.3;
    border: 2px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.pricing_area.bundle-subscription-list .subscription-plan-card__price-panel {
    border-radius: 14px;
    padding: 0.85rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

@supports (background: color-mix(in srgb, white, var(--system_primery_color))) {
    .pricing_area.bundle-subscription-list .subscription-plan-card__price-panel {
        background: color-mix(in srgb, var(--system_secendory_color) 88%, white);
    }
}

.pricing_area.bundle-subscription-list .subscription-plan-card__price-box {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__price {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--system_primery_color);
    letter-spacing: -0.02em;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__duration {
    margin: 0.65rem 0 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.55);
}

.pricing_area.bundle-subscription-list .subscription-plan-card__cta {
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: var(--system_primery_color);
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: filter 0.2s ease, transform 0.15s ease;
    border: none;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__cta:hover {
    filter: brightness(1.06);
    color: #fff !important;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__body {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.pricing_area.bundle-subscription-list .subscription-plan-card__body-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.75);
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses-title {
    font-size: 1.0625rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.01em;
    color: var(--system_primery_color);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0.25rem 0.35rem 0;
    max-height: 260px;
    overflow-y: auto;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses::-webkit-scrollbar {
    width: 6px;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.06);
    border-radius: 100px;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.25);
    border-radius: 100px;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(15, 23, 42, 0.88);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses li:last-child {
    border-bottom: none;
}

.pricing_area.bundle-subscription-list .subscription-plan-card__courses li::before {
    content: "";
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background-color: var(--system_primery_color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M10.28 3.28L4.5 9.06 1.72 6.28.66 7.34l3.84 3.84 6.62-6.62z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

@media only screen and (max-width: 767px) {
    .pricing_area.bundle-subscription-list .subscription-plan-card__courses {
        max-height: 200px;
    }
}

/*# sourceMappingURL=bundle.css.map */
