.bonuses__modal {
    display: flex;
    flex-direction: column;
    z-index: 1;
    align-items: center;
}

.bonuses__modal-h3 {
    z-index: 1;
    margin-bottom: .5rem;
    font-size: var(--font-size-xxl);
    background-color: var(--transparent-3-w);
    padding: 1rem;
    backdrop-filter: blur(3px);
    border-radius: var(--br-10);
    width: 100%;
    text-align: center;
    font-weight: var(--font-weight-7);
    border: 1px solid var(--transparent-3-w);
    font-family: var(--font-family-1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonuses__modal-buttons {
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    gap: .5rem;
}

.bonuses__modal-sub {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bonuses__decor {
    position: relative;
    overflow: hidden;
}

.bonuses__decor:before {
    content: "";
    position: absolute;
    top: -6rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/lines.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: -1;
}

.bonuses__decor:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, var(--span), transparent);
    z-index: -1;
    opacity: .15;
}

.bonuses__modal-text {
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-6);
    max-width: 24rem;
    text-align: center;
    margin-block: 2rem;
    color: var(--text-custom);
}

.bonuses__modal-amount {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-block: 1rem;
    font-family: var(--font-family-2);
}

.bonuses__modal-amount div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline: 2rem;
}

.bonuses__modal-amount span {
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-6);
    color: var(--text-custom);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bonuses__modal-amount span svg {
    fill:  currentColor;
}

.bonuses__modal-amount b {
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-7);
    color: var(--money);
}