.vendors-horizontal-wrapper {
	position: relative;
	padding: 5px;
	margin-bottom: 10px;
}

.vendors-horizontal-list {
	list-style: none;
	overflow-x: auto;
	margin: 0;
	padding: 0;
	padding-bottom: 10px;

	display: grid;
	grid-template-columns: repeat(auto-fill, 25%);
	grid-auto-columns: 25%;
	grid-auto-flow: column;
	gap: 15px;

	/* display: flex;
	gap: 15px; */
}

.vendors-horizontal-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	background-image: linear-gradient(
		to left,
		#0f0f0f 20%,
		rgba(255, 255, 255, 0) 80%
	);
}

.vendors-horizontal-list li {
	/* min-width: 25%;
	flex-basis: 25%; */

	cursor: pointer;
}

.vendors-horizontal-list li img {
	width: 100%;
	height: 100%;
}

::-webkit-scrollbar {
	height: 5px;
	width: 5px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background-color: #babac0;
	background-clip: content-box;
}

/* swiper */
.swiper-pagination .swiper-pagination-bullet {
	height: 6px;
	width: 6px;
	border-radius: 3px;
	opacity: 1;
	transition: all 0.3s ease;
	background-color: #f5f5f5 !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
	width: 35px;
}

/* home page banner */
/*.banner-item {*/
/*	height: 30vw;*/
/*}*/

.banner-item img {
	width: 100%;
	height: 100%;
	/*aspect-ratio: 4 /1;*/
}

/* home page game menu */
#categories {
	padding-top: 20px;
}

.game-menu-swiper {
	height: 85px;
}

.game-menu-swiper .game-menu-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-weight: 700;
	color: white;
}

.game-menu-swiper .game-menu-item.active {
	color: var(--primary-color);
}

.game-menu-swiper .menu-item-icon {
	width: 30px;
	height: 30px;
}

.game-menu-item .menu-item-icon-active {
	display: none;
}

.game-menu-item:is(.active) .menu-item-icon-inactive {
	display: none;
}

.game-menu-item:is(.active) .menu-item-icon-active {
	display: unset;
}

/* home page recommended games */
.game-item {
	border-radius: 4px;
}

.game-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 2 / 1;
}

/* home page mega win games */
.mega-win-item {
	border-radius: 4px;
}

.mega-win-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 2 / 1;
}
