		.betting-operators-gallery {
			display: flex;
			width: 100%;
		}

		.betting-operators-gallery.vertical > div {
			flex-direction: column;
			grid-gap: 20px;
			margin-bottom: 20px;
			width: 100%;
		}


	.betting-operators {
        display: flex;
        scroll-behavior: smooth;
        scroll-snap-type: mandatory;
        overflow-x: auto;
        position: relative;
		margin-top: 20px;
    }
    
    .betting-operators {
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }
    
    .betting-operators::-webkit-scrollbar {
        background: transparent;
        /* Chrome/Safari/Webkit */
        width: 0px;
    }

	.betting-operators figure {
		cursor: pointer;
		margin: 0;
	}   
    
    .betting-operator {
        background-color: white;
        margin: 0;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: calc(25vw - 20px);
        margin-right: 20px;
        height: 100%;
        scroll-snap-align: start;
    }

    .betting-operators.1col {
        grid-template-columns: 1fr;
    }

	.betting-operators.two-col .betting-operator {
        width: calc(50vw - 25px);
    }
    
	.betting-operators.three-col .betting-operator {
        width: calc(33vw - 24px);
    }
    
	.betting-operators.four-col .betting-operator {
        width: calc(25vw - 25px);
    }
    
	.betting-operators.five-col .betting-operator {
        width: calc(20vw - 25px);
    }

	.betting-operators-gallery.vertical .betting-operator {
			width: 100%;
	}
    
    .betting-operators>a:last-child {
        margin-right: 0;
    }
    
    .betting-operator_logo {
        background: #0e2664;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    .betting-operator_logo img {
        max-width: 120px;
    }
    
    button {
        width: 50px;
        height: 50px;
        background: red;
    }
    
    .container-fluid {
        width: 100%;
    }
    
    .betting-operator_content {
        padding-bottom: 12px;
        background: #424242;
        font-size: 18px;
        color: white;
		font-weight:600;
		font-family:"Montserrat", sans-serif;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 8px;
    }
    
    .rating-star {
        font-size: 1.1rem;
        width: 1.1rem;
        height: 2rem;
        position: relative;
        display: block;
        float: left;
    }
    
    .full-star:before {
        color: #37b5ff;
        content: "\2605";
        position: absolute;
        left: 0;
        overflow: hidden;
    }
    
    .empty-star:before {
        opacity: .2;
        content: "\2605";
        position: absolute;
        left: 0;
        overflow: hidden;
    }
    
    .btnCarouselOperators {
        position: absolute;
        margin-top: 20px;
        height: 78px;
        width: 30px;
		opacity: 1;
        border-radius: 2px;
        background-color: white;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        z-index: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		box-shadow:	0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%);
		transition: all 0.3s ease 0s;
		cursor: pointer;
    }

	.btnCarouselOperators:hover {
		background: #007236;
	    border-color: #007236;
	}

	.btnCarouselOperators:hover path {
		fill: white;
	}
    
    .btnCarouselOperators.opacity {
        background-color: red;
    }
    
    span.btnCarouselOperators.next {
        right: 10px;
    }
    
    span.btnCarouselOperators.prev {
        left: 10px;
    }
    
    span.btnCarouselOperators.hidden {
        opacity: 0;
    }

    @media only screen and (max-width: 1024px) {
		
 		.betting-operators-gallery.horizontal .betting-operators.two-col .betting-operator,
		.betting-operators-gallery.horizontal .betting-operators.three-col .betting-operator,
		.betting-operators-gallery.horizontal .betting-operators.four-col .betting-operator,
		.betting-operators-gallery.horizontal .betting-operators.five-col .betting-operator {
            width: calc(90vw - 40px);
        }
		
		.betting-operators-gallery.vertical .betting-operators .betting-operator {
			width: 100%;
		}
		.container-fluid.betting-operators-container {
			padding: 0;
		}
		
		.betting-operators {
			width: 100%;
		}
		
		.betting-operator {
			grid-template-columns: 1fr;
			grid-template-rows: 1fr 1fr;
		}
		
		.betting-operators figure {
			margin: 0;
			margin-bottom: 15px;
		}
		
		.betting-operators-gallery.horizontal .betting-operators figure:first-child {
			margin-left: 15px;
		}
		
		.betting-operators-gallery.horizontal .betting-operators figure:last-child {
			margin-right: 15px;
		}		
		
		.betting-operators-gallery.vertical .betting-operators figure {
			margin:0;
		}
		
		.betting-operators-gallery.vertical > div {
			margin-top: 12px;
			margin-bottom: 12px;
		}
		
		.btnCarouselOperators {
			margin-top: 20px;
			height: 78px;
			background: white;
			position: relative;
			width: 5vw;
			transform: none;
			display: none;
		}
		
		span.btnCarouselOperators.next {
    	    right: 0;
  		  }
    
 	   span.btnCarouselOperators.prev {
  	      left: 0;
  		  }
		
		span.btnCarouselOperators {
			display: none;
		}
    }



.betting-operators-admin-block {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	grid-gap: 20px;
}

.betting-operators-admin-block:last-child {
	margin-bottom: 0;
}

.betting-operators-admin-block-title {
	width: 100px;
}