.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)
}

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