#ev-roulette {
    margin: 0 auto;
    height: 290px;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
}

#ev-weapons {
    height: 290px;
    white-space: nowrap;
    position: relative;
    left: 0;
}

.ev-weapon {
    display: inline-block;
    width: 240px;
    height: 290px;
    border-radius: 20px;
    overflow: hidden;
    margin:0 10px;

}

.ev-weapon:after {
    content: '';
    background: #FFFFFF00;
    background: -webkit-linear-gradient(top, #FFFFFF00, #18181d);
    background: -moz-linear-gradient(top, #FFFFFF00, #18181d);
    background: linear-gradient(to bottom, #FFFFFF00, #18181d);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
}

.ev-weapon-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ev-weapon-inner img {
    width: 100%;
    max-height: 290px;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.ev-weapon-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    width: 90%;
    text-align: center;
    white-space: normal;
}