.game-provider-slider {
    background: linear-gradient(
        180deg,
        #00cfff 0%,
        #008cff 50%,
        #003cff 100%
    );
    margin-top: 25px;
    display: flex;

    border-top: 2px solid #7de8ff;
    border-bottom: 2px solid #7de8ff;

    box-shadow:
        0 0 15px rgba(0,191,255,.5),
        0 0 30px rgba(0,102,255,.3);
}

.game-provider-slider .game-providers {
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.game-provider-slider .game-providers a {
    color: #fff;

    background: linear-gradient(
        180deg,
        #042b7a 0%,
        #052a9c 50%,
        #03154d 100%
    );

    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 #7de8ff;

    box-shadow:
        inset 0 0 10px rgba(0,234,255,.15);
}

.game-provider-slider .game-providers a:hover {
    background: linear-gradient(
        180deg,
        #00eaff 0%,
        #009dff 50%,
        #0066ff 100%
    );

    box-shadow:
        0 0 15px rgba(0,234,255,.8),
        0 0 30px rgba(0,140,255,.6);

    transform: translateY(-2px);
}

.game-provider-slider .game-providers a h5 {
    color: #ffffff;
    font-size: 13px;
    margin: 10px 0 0;
    text-align: center;

    text-shadow:
        0 0 8px rgba(125,232,255,.5);
}

.game-provider-slider > button {
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 15px;

    background: rgba(0,191,255,.15);

    border: none;
    outline: none;

    transition: .3s;
}

.game-provider-slider > button:hover {
    background: rgba(0,234,255,.3);

    box-shadow:
        0 0 15px rgba(0,234,255,.6);
}

@media (max-width: 992px) {
    .game-provider-slider .game-providers a {
        flex-basis: calc(100% / 3);
    }
}