/* <<< --- Abonnements --- >>> */


#abonnements .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    height: auto;
}

#abonnements .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    height: auto;
}

#abonnements .menu .btn {
    font-weight: 600;
    color: var(--black);
    background-color: var(--white-1);
    cursor: pointer;
}

#abonnements .menu .btn.-active {
    color: var(--white);
    cursor: default;
    pointer-events: none;
}

#abonnements .menu .btn.-active::after {
    transform: translateX(0);
}

#abonnements-menu-btn1::after {
    background-color: var(--black);
    transform: translateX(calc(100% + 10px));
}
#abonnements-menu-btn2::after {
    background-color: var(--black);
    transform: translateX(calc(-100% - 10px));
}

#abonnements .card-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    height: auto;
    overflow: visible;
}

#abonnements .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 370px;
    height: auto;
    min-height: 500px;
    background-color: var(--white);
    outline-offset: -1px;
    border-radius: 5px;
    transition: .2s ease;
    overflow: visible;
}

#abonnement-classic {
    outline: 1px solid var(--white-2);
    transition-delay: .4s !important;
}
#abonnement-ultimate {
    outline: 1px solid var(--color);
}
#abonnement-access-plus {
    outline: 1px solid var(--black);
    transition-delay: .6s !important;
}
#abonnement-access-plus .card-content {
    min-height: 500px !important;
}

@media screen and (max-width: 1260px) {
    #abonnements .card-wrap {
        transform: none !important;
        opacity: 1 !important;
    }
    #abonnement-classic, #abonnement-access-plus {
        transition-delay: inherit !important;
    }
    #abonnement-classic .card-content, #abonnement-access-plus .card-content {
        min-height: 470px !important;
    }
}
@media screen and (max-width: 865px) {
    #abonnement-classic, #abonnement-access-plus {
        min-height: inherit !important;
    }
    #abonnement-classic .card-content {
        min-height: inherit !important;
        padding-bottom: 100px !important;
    }
    #abonnement-access-plus .card-content {
        min-height: inherit !important;
    }
}

#abonnements .card .tag {
    position: absolute;
    top: -10px;
    left: -5px;
    z-index: 50;
    width: auto;
    height: 28px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    text-wrap: nowrap;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--black);
    border-radius: 2px;
}

#abonnements .card .title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    border-radius: 5px 5px 0 0;
}

#abonnements .card .title span {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
    text-wrap: nowrap;
}

#abonnement-classic .title, #abonnement-classic .btn {
    background-color: var(--white-2);
}
#abonnement-ultimate .title, #abonnement-ultimate .btn {
    background-color: var(--color);
}
#abonnement-access-plus .title, #abonnement-access-plus .btn {
    background-color: var(--black);
}
#abonnements #abonnement-access-plus .title span, #abonnement-access-plus .btn {
    color: var(--white);
}

#abonnements .card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: auto;
    min-height: 420px;
    padding: 20px 20px 80px 20px;
}

#abonnements .card-content .wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

#abonnements .card-content .wrap * {
    text-transform: uppercase;
    text-wrap: nowrap;
    text-align: center;
    color: var(--black);
}

#abonnements .card-content .wrap .mount {
    display: none;
    font-family: 'rift';
    font-style: italic;
    font-weight: 700;
}
#abonnements .card-content .wrap .mount.-active {
    display: initial;
}

#abonnements .card .price, #abonnements .card .promo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
    font-weight: 600;
    line-height: 28px;
}

#abonnements .card .price {
    align-items: flex-end;
    gap: 10px;
    font-size: 18px;
    text-align: start;
    margin-bottom: 10px;
}

#abonnements .card .price .mount {
    font-size: 40px;
    line-height: 40px;
    text-align: end;
}

#abonnements .card .promo {
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

#abonnements .card .promo .mount {
    background-image: url(../imgs/bg-promo-mount.svg);
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    width: 40px;
    height: 100%;
    font-size: 24px;
}

#abonnements .card .membership, #abonnements .detail, #abonnements .card .resume-prev {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--grey);
    text-transform: uppercase;
}

#abonnements .detail {
    text-align: center;
}

#abonnements .card .membership {
    display: none;
}
#abonnements .card .membership.-active {
    display: initial;
}

#abonnements .card .resume-prev {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
}

#abonnements .card .resume-prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-image: url(../imgs/bg-resume-subscription.svg);
}

#abonnements .card #resume-access-plus {
    color: var(--white);
}
#resume-access-plus::before {
    filter: var(--filter-black);
}
#abonnements .card #resume-classic {
    color: var(--black);
}
#resume-classic::before {
    filter: var(--filter-white-2);
}

#abonnements .card .plus {
    width: auto;
    max-width: 14px;
    height: auto;
    max-height: 14px;
    filter: var(--filter-black);
}

#abonnements .card .list, #abonnements .card .list-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 0 15px;
}

#abonnements .card .list .element {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 0 15px;
    overflow: visible;
    transition: .2s ease;
}

#abonnements .card .list .element.-subtitle {
    margin-bottom: 15px;
}

#abonnements .card .list .element-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
}

#abonnements .card .list .element-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

#abonnements .card .list .element-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--black);
    text-align: start;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    height: 20px;
    overflow: hidden;
}

#abonnements .card .list .element-subtitle {
    position: absolute;
    top: 100%;
    left: 41px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: var(--grey);
    text-align: start;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    width: calc(100% - 56px);
    height: 15px;
    overflow: hidden;
}

#abonnements .card .list-wrap {
    margin-top: 5px;
    padding: 15px 0;
    background-color: var(--black);
    border-radius: 5px;
}

#abonnements .card .list-wrap .element-icon img {
    filter: var(--filter-color);
}
#abonnements .card .list-wrap .element-title {
    color: var(--white);
}

#abonnements .card .btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}

#abonnement-classic .btn::after, #abonnement-ultimate .btn::after {
    background-color: var(--black);
}

#abonnement-access-plus .btn::after {
    background-color: var(--color);
}

@media screen and (min-width: 980px) {
    #abonnements .menu .btn:hover {
        background-color: var(--white-2);
    }
    #abonnements .card .list .element:hover {
        transform: translateX(5px);
    }
    #abonnement-classic .btn:hover, #abonnement-ultimate .btn:hover {
        background-color: var(--black);
    }
    #abonnement-classic .btn:hover {
        color: var(--white);
    }
    #abonnement-ultimate .btn:hover {
        color: var(--color);
    }
    #abonnement-access-plus .btn:hover {
        background-color: var(--color);
    }
    #abonnement-access-plus .btn:hover {
        color: var(--black);
    }
}

@media screen and (max-width: 1260px) {
    #abonnement-ultimate {
        order: 3;
    }
    #abonnement-access-plus {
        order: 2;
    }
}

@media screen and (max-width: 470px) {
    #abonnements .section-content, #abonnements .content {
        overflow: visible;
    }
    #abonnements .card {
        width: 100%;
    }
    #abonnements .card .title {
        height: 70px;
    }
    #abonnements .card .title span {
        font-size: 24px;
    }
    #abonnements .card-content {
        gap: 15px;
        padding: 15px 20px 75px 20px;
        overflow: visible;
    }
    #abonnements .card:nth-child(1) .card-content {
        gap: 30px;
    }
    #abonnements .card .membership, #abonnements .detail, #abonnements .card .resume-prev {
        font-size: 12px;
        line-height: 15px;
    }
    #abonnements .card .price, #abonnements .card .wrap {
        margin-bottom: 0;
    }
    #abonnements .card .list {
        padding: 0;
        max-width: 280px;
    }
    #abonnements .card:nth-child(2) .list {
        overflow: visible;
    }
    #abonnements .card .list-wrap {
        width: calc(100% + 20px);
        padding: 10px;
        overflow: visible;
        margin-top: 0;
    }
    #abonnements .card .list .element {
        padding: 0;
    }
    #abonnements .card .list .element-subtitle {
        left: 26px;
        width: calc(100% - 26px);
    }
    #abonnements .card .promo {
        font-size: 14px;
        flex-wrap: wrap;
    }
}