.listGame {
    position: relative;
    background-color: #f6f7fb;
}

.listGame>.separator-img {
    padding-bottom: 0px;
    width: 100%
}

.listGame .section-title {
    text-align: center;
    padding: 20px 0 10px 0
}

.listGame .section-title span {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    display: inline-block;
    border-bottom: 2px solid #54b046
}

.listGame__card {
    min-height: 372px;
    /* min-height: 238px; */
    height: 100%;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    text-align: center;
    display: flex;
    flex-direction: column;
    border-bottom: 5px solid #54b243;
    z-index: 2;
    margin-bottom: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
}


.listGame__card__video {
    height: 50%;
    position: relative;
    background-size: cover !important;
}

.playYoutube {
    content: '';
    background-image: url(../../../../assets/images/icon-playbutton-64x64.png);
    background-size: 100% 100%;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play_button {
    transition: none;
    background-image: url(../../assets/images/btn_play_nor.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    color: transparent;
    border: none;
    border-radius: unset;

}

.play_button:hover {
    transition: none;
    background-image: url(../../assets/images/btn_play_hov.png);
    background-size: cover;
    z-index: 1;
    color: transparent;
    border: none;
    border-radius: unset;
}

.listGame__card__video img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.listGame__card__name {
    white-space: pre;
    z-index: 1;
    font-weight: 700;
    border: 1px solid #54b046;
    display: flex;
    justify-content: center;
    width: 83%;
    font-size: var(--medium_title);
    margin: 0 auto;
    padding: 8px;
    border-radius: 20px;
    background-color: #fff;
    text-transform: uppercase;
    margin-top: -18px
}


.listGame__card__name a {
    color: #000;
    text-decoration: unset
}

.listGame__card__name:hover {
    cursor: pointer;
    background-color: #54b046
}

.listGame__card__name:hover a {
    color: #fff
}

.listGame__card__extra {
    height: 10%;
    padding: 5px 0;
    color: gray;
    display: flex;
    align-items: center;
    justify-content: center
}

.listGame__card__extra * {
    padding-right: 3px
}

.listGame__card__extra img {
    width: 18px
}

.listGame__card__slogan {
    height: 20%;
    color: gray;
    min-height: 15%;
    line-height: 1.5
}

.listGame__card__slogan,
.listGame__card__extra {
    font-size: 12px;
}

.listGame__card__navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 15%;
}

.listGame__card__navigation img {
    width: 32px
}

@media only screen and (max-width:1400px) {
    .listGame__card__navigation {

        padding: 0 10px;
    }

}


@media only screen and (max-width:1366px) {
    .listGame__card__name {
        font-size: 12px !important
    }

    .listGame__card__navigation {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

@media only screen and (min-width:768px) and (max-width:998px) {
    .listGame__card {
        min-height: 238px;
    }

    .listGame__card__extra img {
        width: 12px;
    }

    .listGame__card__slogan,
    .listGame__card__extra {
        font-size: 9px;
    }

    .listGame__card__navigation img {
        width: 25px;
    }

    .listGame__card__navigation {
        padding: 0 5px;
    }

    .listGame__button__playnow {
        min-width: 80px;
        font-size: 10px;
        min-height: unset;
    }

}

@media only screen and (max-width:480px) {
    .listGame__card {
        min-height: 238px;
    }

    .listGame__card__name {
        width: 92%;
    }

    .listGame__card__extra {
        font-size: var(--tiny_text)
    }

    .listGame__card__slogan {
        font-size: var(--small_text)
    }

    .listGame__card__navigation {
        padding: 0 4%
    }

    .listGame__card__navigation {
        padding: 0 5px
    }

    .listGame__card__navigation img {
        width: 26px
    }

    .listGame>.separator-img {
        padding-bottom: 0
    }
}

@media only screen and (max-width:320px) {

    .listGame__card__name {
        font-size: 10px !important;
    }

    .listGame__card__extra {
        font-size: 7px;
    }

    .listGame__card__extra img {
        width: 16px;
    }

    .listGame__card__slogan {
        font-size: 9px;
    }

    .listGame__card__navigation img {
        width: 20px;
    }

}