.game-provider-slider {
    background-color: #393939;
    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;
    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: 2px solid #fbaa25;
    /* margin: 5px; */
}

.game-provider-slider .game-providers a:hover {
    background: #777777;
}

.game-provider-slider .game-providers a h5 {
    color: #fff;
    font-size: 13px;
    margin: 10px 0 0;
    text-align: center;
}

.game-provider-slider > button {
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: none;
    border: none;
    outline: none;
    background-color: #fbaa25;
}

.game-provider-slider > button:hover {
    background-color: #fec458;
}

@media (max-width: 992px) {
    .game-provider-slider .game-providers a {
        flex-basis: calc(100% / 3);
    }
}
