#casino #search {
	display: flex;
	background: var(--b1);
	margin: 0 10px;
	width: calc(100% - 20px);
	border-radius: 10px;
}
#casino #search .inner {
	padding: 5px;
	font-weight: 800;
	width: 100%;
}
#casino #search .inner #search_name {
	position: relative;
	padding: 10px;
	background: var(--inp);
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 10px 20px;
	outline: none;
	color: white;
	font-weight: 800;
	border: none;
	width: calc(100% - 120px);
}
#casino #search .inner #search_btn {
	position: absolute;
	padding: 10px 15px;
	color: white;
	background: var(--p);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border: none;
}

#casino .links {
	display: flex;
	width: calc(100% - 20px);
	margin: 10px;
}
#casino .links .link {
	position: relative;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	background: var(--leftRightBackGrad);
	gap: 10px;
	width: 100%;
	border-radius: 10px;
	overflow-x: hidden;
}
#casino .links .link img {}
#casino .links .link span {
	color: white;
	font-weight: 800;
	font-size: 13px;
}
#casino .links .link .slot_back {
	position: absolute;
	background-position: calc(100% - 20px) center;
	background-image: url(icons/slots_white.svg);
	background-size: auto 100%, auto;
	background-repeat: no-repeat;
	right: -35px;
	top: 0;
	width: 100%;
	height: 100%;
}
#casino .links .link .live_casino_back {
	position: absolute;
	background-position: calc(100% - 20px) center;
	background-image: url(icons/live_casino_white.svg);
	background-size: auto 100%, auto;
	background-repeat: no-repeat;
	right: -35px;
	top: 0;
	width: 100%;
	height: 100%;
}

#games {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 14px);
	gap: 5px;
	margin: 5px 10px;
}
#games .game {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	padding: 2px;
	background: var(--inp);
	width: calc(50% - 9px);
}
#games .game img {
	border-radius: 10px;
	width: 100%;
}
#games .game span {
	text-align: center;
	color: white;
	font-size: 10px;
	font-weight: 900;
	padding: 2px;
}

#more_wrapper {
	margin: 10px;
	font-size: 14px;
	font-weight: 800;
}
#more_wrapper #more_btn {
	background: var(--p);
	padding: 10px;
	color: white;
	text-align: center;
	border-radius: 10px;
}

