/* Slots Popular Borer Animation */
@-webkit-keyframes borderAnimation {
    0% {
        -webkit-transform: rotate(0turn);
        transform: rotate(0turn);
    }

    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes borderAnimation {
    0% {
        -webkit-transform: rotate(0turn);
        transform: rotate(0turn);
    }

    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }

}

.recommend-carousel {
    border-radius: 20px;
    display: inline-block;
    position: relative;
    padding: 6px;
    margin-right: 17px;
    height: 368px;
    width: 100%;
    max-width: 484px;
    overflow: hidden;
}
.recommend-carousel::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -135px;
    width: 1000px;
    height: 1000px;
    background: -webkit-linear-gradient(right bottom, left top, color-stop(0, #e5ac1b), color-stop(19%, #f1cc50), color-stop(35%, #ffffa7), color-stop(50%, #f1cc50), color-stop(62%, #e3ac23), color-stop(74%, #ffffa7), color-stop(87%, #f1cc50), color-stop(100%, #efc544));
    background: linear-gradient(to top, #e5ac1b, #f1cc50 19%, #ffffa7 35%, #f1cc50 50%, #e3ac23 62%, #ffffa7 74%, #f1cc50 87%, #efc544);
    -webkit-animation: borderAnimation 4s linear infinite;
    animation: borderAnimation 4s linear infinite;
}
.recommend-carousel-wrapper,
.recommend-wrapper,
.recommend-game-bg {
    height: 100%;
}
.recommend-carousel-list {
    width: 100%;
    background: #000000;
    border-radius: 20px;
}
.recommend-popular-text {
    display: block;
    position: absolute;
    z-index: 11;
    top: 15px;
    right: -35px;
    width: 155px;
    color: #f8f8f8;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.6);
    background: -webkit-linear-gradient(#c30b0b, #82181c);
    background: linear-gradient(#c30b0b, #82181c);
    text-align: center;
    transform: rotate(39deg);
    padding: 10px;
}
.recommend-wrapper a {
    display: block;
    font-size: 0;
    height: 100%;
    position: relative;
}
.recommend-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: absolute;
}
.recommend-logo {
    padding: 12px 13px 8px;
    border-bottom: 1px solid rgba(193, 193, 193, 0.16);
}
.recommend-logo img {
    max-height: 25px;
}
.recommend-center-img {
    text-align: center;
    padding-top: 13px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(193, 193, 193, 0.16);
}
.recommend-center-img img {
    height: 233px;
    width: 233px;
}
.recommend-text {
    color: #f8f8f8;
    font-family: "Thonburi", "PingFangTC", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.14;
    letter-spacing: 0.4px;
    text-align: center;
    height: 100%;
    padding: 10px 35px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.recommend-game-bg {
    border-radius: 20px;
}
/* button style */
.recommend-button-prev {
    position: absolute;
    top: 46%;
    left: 9px;
    z-index: 99;
    width: 24px;
    height: 28px;
    background-image: url(../img/index/arrow.svg);
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    cursor: pointer;
    opacity: .2;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.recommend-button-prev:hover {
    opacity: .4;
}
.recommend-button-next {
    position: absolute;
    top: 46%;
    right: 9px;
    z-index: 99;
    width: 24px;
    height: 28px;
    background-image: url(../img/index/arrow.svg);
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: .2;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.recommend-button-next:hover {
    opacity: .4;
}
/* button style end */