body {
    background-color: rgb(44, 44, 44);

}

.componentContainer {
    position: relative;
}

.gamesCardContainer {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.gameContainer {
    width: 120px;
}

.gameCard {
    height: auto;
    width: 120px;
    background-color: #262626;
    border-radius: 10px;
    position: relative;
}

.gameCardHead {
    width: 120px;
    height: auto;

}

.providerText {
    color: rgb(199, 199, 199);
    font-family: sans-serif;
    font-size: 12px;
    text-align: left;
    margin: 0;
    padding: 5px 0px 5px 5px;
}

.gameCardBody {
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(#262626d2, #262626, #262626);
    width: 120px;
}

.gameImage {
    width: 120px;
    height: inherit;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.playButton {
    cursor: pointer;
    padding: 10px 5px 10px 5px;
    border-radius: 5px;
    border: none;
    background-color: #ee3945;
    color: white;
    font-family: sans-serif;
    margin: 0 5px 5px 5px;
    float: left;
}

#scrollBtnLeft,
#scrollBtnRight {
    background-color: #26262673;
    border: none;
    padding: 10px;
    border-radius: 100%;
    cursor: pointer;
    margin-top: 200px;

}

#scrollBtnLeft {
    float: left;
}

#scrollBtnRight {
    float: right;
}

#scrollBtnLeft>svg {
    color: red;
}

#scrollBtnRight>svg {
    color: red;
}

.btnT10 {
    display: none;
}

@media screen and (max-width: 768px) {


    .btnT10 {
        display: block;
        width: auto;
        height: 30px;
        border: none;
        opacity: 0px;
        margin: auto;
        margin-top: 5px;
        border-radius: 5px;
        background: #E73344;
        color: white;
        cursor: pointer;


    }

    .gameImage,
    .gameCard,
    .gameCardHead {
        width: 132px;
    }


    .gamesCardContainer {
        max-height: 365px;
        margin: auto;
        align-items: center;
        justify-content: center;
        transition-duration: .3s;
    }

    .gameCardBody {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 99999999;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.397),
                black 90%);
        width: 132px;
        padding: 0px;

    }

    .scrollBtnContainer {
        display: none;
    }

    .gamesCardContainer {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
        padding: 0;
        overflow: hidden;

    }

    .providerText {
        color: white;

    }

}