.game-provider-slider {
    background-color: #0f0f0f;
    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: 5px solid rgb(247 217 1 / 25%);
    border-radius: 40px;
    /* margin: 5px; */
}

.game-provider-slider .game-providers a:hover {
    background: #644c1c;
}

.game-provider-slider .game-providers a h5 {
    color: #fff;
    font-size: 13px;
    margin: 10px 0 0;
    text-align: center;
}

.game-provider-slider > button {
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: none;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.game-provider-slider > button:hover {
    background-color: #4b4b4b;
}

@media (max-width: 992px) {
    .game-provider-slider .game-providers a {
        flex-basis: calc(100% / 3);
    }
}
