.game-provider-slider {
    background-color: #151515;
    margin-top: 25px;
    display: flex
}

.game-provider-slider .game-providers {
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth
}

.game-provider-slider .game-providers a {
    color: #fff;
    background: #f4b224b6;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(100%/6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border: 6px solid rgb(21, 21, 21)
}

.game-provider-slider .game-providers a:hover {
    background: #f4b324
}

.game-provider-slider .game-providers a h5 {
    color: rgb(0, 0, 0);
    font-size: 15px;
    margin: 10px 0 0;
    text-align: center
}

.game-provider-slider>button {
    color: #f4b324;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: 0 0;
    border: none;
    outline: none
}

.game-provider-slider>button:hover {
    background-color: #3a3a3a
}

@media(max-width:500px) {
    .game-provider-slider .game-providers a {
        flex-basis: calc(100%/3)
    }
}