.game-provider-slider {
    background-color: #0f0f0f;
    margin-top: 5px;
    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% / 4);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border: 5px solid #46a30b;
    /* margin: 5px; */
}

.game-provider-slider .game-providers a:hover {
    background: #878b3a;
}

.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: rgb(159 10 159);
}

.game-provider-slider > button:hover {
    background-color: #878b3a;
}

@media (max-width: 992px) {
    .game-provider-slider .game-providers a {
        flex-basis: calc(100% / 4);
    }
}