
/* Оплата */
.payment {
    padding: 140px 0 140px;
    background: #f8f8f8;
}

.payment__row {
    display: flex;
    justify-content: space-between;
}

.payment__content {
    width: 100%;
    max-width: 630px;
}

.payment__title {
    margin: 0 0 85px;
}

.payment__desc {
    font-family: "Involve", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #212121;
    margin: 0 0 20px;
}

.payment__list li {
    position: relative;
    font-family: "Involve", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #212121;
    padding-left: 35px;
    margin: 0 0 15px;
}

.payment__list li:before {
    position: absolute;
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    top: calc(50% - 24px / 2);
    left: 0;
    background: url("/wp-content/themes/reboot_child/assets/images/base-coaching/payment/mark.svg") no-repeat center/cover;
}

.payment__text {
    width: 100%;
    max-width: 300px;
}

.payment__tax {
    position: relative;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 20px 20px;
    box-sizing: border-box;
    cursor: pointer;
}

.payment__percent {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    top: -20px;
    right: 20px;
    border-radius: 16px;
    background-color: #fed3ab;
    box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(10deg);
    font-family: "Involve", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #e86f2a;
}

.payment__percent:before {
    position: absolute;
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    top: -20px;
    left: -20px;
    transform: rotate(80deg);
    background: url("/wp-content/themes/reboot_child/assets/images/base-coaching/payment/star.svg") no-repeat center/cover;
}

.payment__opportunity {
    position: relative;
    font-family: "Involve", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #202020;
    margin: auto 0 0;
}

.payment__img {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 460px;
}

.payment__info {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    max-width: 280px;
    top: -140px;
    left: -120px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    padding: 15px 15px;
    font-family: "Involve", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #000000;
    box-sizing: border-box;
    transition: 0.3s;
    z-index: 2;
}

.payment__info a {
    color: #e86f2a;
    display: inline;
}

.payment__info span {
    color: #534496;
}

.payment__badge {
    cursor: pointer;
}

.payment__tax:hover .payment__info {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .payment {
        padding: 60px 10px 60px;
    }

    .payment__content {
        margin: 0 auto 40px;
    }

    .payment__title {
        margin: 0 auto 10px 0;
    }

    .payment__desc {
        font-size: 15px;
        line-height: 120%;
        margin: 0 auto 20px;
    }

    .payment__row {
        flex-direction: column;
        align-items: center;
    }

    .payment__text {
        width: 100%;
        max-width: 360px;
        margin: 0 0 40px;
    }

    .payment__tax {
        width: 100%;
        max-width: 300px;
        height: 140px;
    }

    .payment__info {
        left: 0;
    }
}
