.bonuses__row {
    display: flex;
}

.bonuses__left {
    box-shadow: inset 0 0 17px 0 rgba(254, 0, 236, 0.8);
    background: linear-gradient(180deg, #3d124e 0%, #1c144d 100%);
    border-radius: 24px;
    padding: 20px;
}

.bonuses__right {
    box-shadow: inset 0 0 17px 0 rgba(254, 0, 236, 0.8);
    background: linear-gradient(180deg, #3d124e 0%, #1c144d 100%);
    border-radius: 24px;
    padding: 20px;
}

.bonuses__title {
    text-transform: capitalize;
    margin-bottom: 20px;
}

.bonuses__text {
    text-align: center;
    line-height: 150%;
    margin-bottom: 20px;
}

.bonuses__left .bonuses__items {
    max-width: 368px;
    margin-left: auto;
    margin-right: auto;
}

.bonuses__items {
    padding: 16px;
    border-radius: 24px;
    background: #FFFFFF0D;
    margin-bottom: 20px;
    display: flex;
}

.bonuses__item {
    display: flex;
}

.bonuses__item-code {
    font-weight: 700;
    color: #5BFBBD;
    border: 2px dashed #5BFBBD;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

.bonuses__item-text {
    font-weight: 700;
}

.bonuses__bottom-text {
    text-align: center;
    line-height: 150%;
}

.bonuses__left .bonuses__bottom-text {
    background: #FFFFFF0D;
    padding: 16px;
    border-radius: 24px;
}

.bonuses__btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}
@media screen and (min-width: 992px) {
    .bonuses__row {
        gap: 20px;
    }

    .bonuses__left {
        flex-basis: 708px;
    }

    .bonuses__right {
        flex-basis: 488px;
    }

    .bonuses__items {
        flex-direction: column;
        gap: 10px;
    }

    .bonuses__item {
        gap: 16px;
        align-items: center;
    }

    .bonuses__item-code {
        padding: 10px;
        flex-basis: 160px;
    }

    .bonuses__right .bonuses__item-text {
        flex-basis: 240px;
    }
}

@media screen and (max-width: 991.98px) {
    .bonuses__row {
        gap: 40px;
        flex-direction: column;
    }

    .bonuses__item {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .bonuses__item-code {
        padding: 8px;
        width: 100%;
    }

    .bonuses__items {
        flex-wrap: wrap;
        background: transparent;
        padding: 0;
        gap: 8px;
    }

    .bonuses__item {
        flex-basis: calc((100% - 8px) / 2);
        background: #FFFFFF0D;
        padding: 16px 8px;
        border-radius: 16px;
    }

    .bonuses__right .bonuses__items {
        flex-direction: column;
    }

    .bonuses__item-text {
        text-align: center;
    }

    .bonuses__right .bonuses__item-code {
        width: fit-content;
        min-width: 120px;
    }

    .bonuses__bottom-text {
        margin-bottom: 20px;
    }

    .bonuses__left .bonuses__bottom-text {
        background: transparent;
        padding: 0px;
        border-radius: 0px;
        margin-bottom: 0;
    }
}