.game-provider-slider {
    background-color: #630000;
    margin-top: 25px;
    display: flex;
}

.game-provider-slider .game-providers {
    flex-grow: 1;
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
}

.game-provider-slider .game-providers a {
    color: #fff;
    background: #212629;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(100% / 6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5px;
    /* border: 6px solid #f79236; */
    margin: 7px 0px 7px 7px;
    border-radius: 10px;
}

.game-provider-slider .game-providers a img:hover {
    /* background: #764000; */
    transition: transform .2s;
    transform: scale(1.3);
}

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

.game-provider-slider>button {
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 0 9px;
    background: none;
    border: none;
    outline: none;
    background-color: #410000;
}

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

/*
 *  STYLE SCROOL BAR
 */

.game-providers::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
    border-radius: 10px;
}

.game-providers::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}

.game-providers::-webkit-scrollbar-thumb {
    border-radius: 10px;
	background-color: rgb(255, 0, 0);	
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}

/* END */

@media (max-width: 500px) {
    .game-provider-slider .game-providers a h5 {
        font-size: 10px;
    }
}

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