.exclusives__wrapper-inner {
    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;
    position: relative;
}

.exclusives__text {
    margin-bottom: 40px;

}

.exclusives__title-inner {
    margin-bottom: 20px;
    text-transform: capitalize;
}

.exclusives__text-inner {
    margin-bottom: 20px;
    text-align: center;
}

.exclusives__items {
    display: flex;
}

.exclusives__item {
    display: flex;
    position: relative;
    z-index: 3;
}

.exclusives__item-code {
    font-weight: 700;
    color: #5BFBBD;
    border: 2px dashed #5BFBBD;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.exclusives__image {
    position: absolute;
    bottom: 76px;
    right: 28px;
}

.exclusives__image img{
    max-height: 560px;
    width: auto;
}

.exclusives__btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}


@media screen and (min-width: 992px) {
    .exclusives__items {
        flex-direction: column;
        gap: 10px;
    }

    .exclusives__item {
        align-items: center;
        gap: 16px;
    }

    .exclusives__item-code {
        padding: 10px 11px;
        border-radius: 4px;
        flex-basis: 160px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 991.98px) {
    .exclusives__items {
        gap: 8px;
        flex-wrap: wrap;
    }

    .exclusives__item {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        flex-basis: calc((100% - 8px) / 2);
        justify-content: center;
        background: #FFFFFF0D;
        padding: 16px 8px;
        border-radius: 16px;
    }

    .exclusives__items .exclusives__item:first-child {
        flex-basis: 100%;
    }

    .exclusives__item-code {
        padding: 8px;
        border-radius: 3px;
    }

    .exclusives__image {
        position: relative;
        bottom: unset;
        right: unset;
        margin-top: 20px;
    }

    .exclusives__item-text {
        text-align: center;
        font-size: 14px;
    }


}


@media screen and (max-width: 600px) {
    .exclusives__item-code {
        font-size: 11px;
    }
}