.slotGamesSwiper {
    overflow: hidden;
}

.slotGamesWrapper {
    position: relative;
}

.slotGamesSwiper .swiper-slide {
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 330px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.37);
    color: white;
    border-radius: 6px;
    margin: 20px 10px;
}

.slotGamesSwiper .swiper-slide .logo {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.slotGamesSwiper .swiper-slide .logo img {
    width: 100%;
}

.slotGamesSwiper .swiper-slide .infos {
    height: 80px;
    background-color: #2d313b;
    position: relative;
}

.slotGamesSwiper .swiper-slide .infos .wrapper {
    z-index: 10;
    position: relative;
    padding: 0px 20px;                
}

.slotGamesSwiper .swiper-slide .infos .wrapper .bottomInfo {
    display: flex;
    justify-content: space-around;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.644);
}

.slotGamesSwiper .swiper-slide .infos .wrapper .bottomInfo .val {
    color: rgba(255, 255, 255, 0.842);
    font-size: 14px;
}

.slotGamesSwiper .swiper-slide .infos .wrapper .gameName {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.slotGamesSwiper .swiper-slide .infos::after {
    content: "";
    width: 100%;
    height: 50px;
    background-color: #2d313b;
    position: absolute;
    top: -30px;
    left: 0;
    transform: skewY(-4deg);
    box-shadow: 0px -13px 10px rgba(0, 0, 0, 0.479);
}

.slotGamesWrapper .swiper-button-next {
    position: absolute;
    top: 50%;
    right: -50px;
    color: rgba(255, 255, 255, 0.795);
}

.slotGamesWrapper .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: -50px;
    color: rgba(255, 255, 255, 0.795);
}

@media (max-width: 1100px) {
    .slotGamesWrapper .swiper-button-next {
        display: none;
    }

    .slotGamesWrapper .swiper-button-prev {
        display: none;
    }
}