.bonuses__modal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    position: relative;
    min-height: 20rem;
}

.bonuses__modal-image {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    -webkit-user-drag: none;
    user-select: none;
}

.bonuses__modal-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(0deg, var(--card) 26%, transparent);
    bottom: 0;
    pointer-events: none;
    z-index: 1
}

.bonuses__modal-image:after {
    content: '';
    position: absolute;
    width: 15rem;
    height: 15rem;
    background-color: var(--money);
    border-radius: var(--br-50);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    opacity: .1;
}

.bonuses__modal-image img {
    width: 20rem;
    height: 20rem;
    -webkit-user-drag: none;
    user-select: none;
}

.bonuses__modal-h3 {
    z-index: 1;
    margin-bottom: .5rem;
    font-size: var(--font-size-4xl);
    background-color: var(--transparent-3-w);
    padding: .3rem 1rem;
    backdrop-filter: blur(14px);
    border-radius: var(--br-10);
    width: 100%;
    text-align: center;
    font-weight: var(--font-weight-7);
    border: 1px solid var(--transparent-5-w);
    text-shadow: 0px 1px 2px rgb(0 0 0 / 50%);
}

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

.bonuses__modal-buttons button:first-child {
    background-color: rgb(100 206 130 / 15%);
    color: var(--green);
    font-weight: var(--font-weight-7);
}

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