
.page__roulette {
    background: #ffffff8a;
    padding: 1px 20px 20px;
    border-radius: 10px;
}

.page__roulette p {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.wrap__roulette {
    width: 80rem;
    max-width: 100%;
    overflow: hidden;
    height: calc(80rem / 5);
    position: relative;
    border-radius: 10px;
}

.roulette {
    position: absolute;
    width: max-content;
    left: -4rem;
}
.roulette-item {
    width: calc(80rem / 5);
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
    position: relative;
}
.roulette-item img {
    max-width: 100%;
    background: gainsboro;
    border-radius: 10px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 236px;
    object-fit: cover;
}
.roulette-item span {
    text-align: center;
    display: block;
    position: absolute;
    left: 10px;
    width: calc(100% - 20px);
    bottom: 0px;
    font-weight: bold;
    color: #000000;
    background: #ffffffa6;
    padding: 10px 5px;
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
    line-height: 110%;
}

.roulette__start {
    text-align: center;
    margin-top: 0rem;
}


.wrap-gift__list {
    width: 80rem;
    max-width: 100%;
}

.gift__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.gift__list-item {
    width: calc(100% / 5 - 16px);
}
.gift__list-item .image {
    padding-top: 100%;
    position: relative;
}
.gift__list-item .image img {
    width: 100%;
    background: gainsboro;
    border-radius: 10px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.gift__list-item span { 
    display: block;
    padding: 5px 0;
    font-weight: bold;
}

.dayz-message-gift {
    margin: 20px auto;
    line-height: 130%;
    background-color: #edf6ff;
    padding: 20px;
    box-shadow: 0 8px 10px #00000069;
}

.dayz-message-gift:empty {
    display: none;
}


@media (orientation: portrait) { 
    .page__roulette {
        border-radius: unset;
        margin-top: -20px;
    }

    .wrap-gift__list {
        width: 100%;
    }

    .gift__list {
        gap: 10px;
    }
    .gift__list-item {
        width: calc(100% / 3 - 7px);
    }

    .gift__list-item span {
        display: none;
    }

    .wrap__roulette {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        max-width: unset;
        border-radius: unset;
    }
    .roulette {
        left: calc(-80rem / 2 + 50vw);
    }

}