html.white-layout,
html.white-layout body {
	background: #fff !important;
}
.content {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}
/*HEADER*/
.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	-webkit-box-shadow: 0px 4px 5px 0px rgb(0 0 0 / 20%);
	-moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4px 5px 0px rgb(0 0 0 / 20%);
}
.content-padding-header {
	padding-top: 60px;
}
.header-user {
	height: 50px;
}
.header img {
	max-height: 60px;
}
.mobile-login-button {
	display: none;
}
.mobile-login-button button {
	width: 42px;
	min-width: 42px;
	height: 42px;
	border-radius: 4px;
}
.header-menu a div {
	height: 50px;
}
.header-menu * {
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}
.header-menu a div > div {
	position: absolute;
	left: 0;
	bottom: 0px;
	height: 2px;
	width: 100%;
	/* background: var(--bg-primary); */
}
.header-menu a:hover div,
.header-menu a.active-menu-option div {
	background: rgba(255, 255, 255, 0.08);
}
.header-menu a:hover div p,
.header-menu a.active-menu-option div p {
	color: var(--btn-color-primary);
}
.header-menu a:hover div > div,
.header-menu a.active-menu-option div > div {
	background: var(--btn-color-primary);
}
@media (max-width: 950px) {
	.header-menu {
		display: none;
	}
	.mobile-login-button {
		display: flex !important;
		border: none !important;
		background: none !important;
		min-width: auto !important;
		padding: 0 !important;
	}
	.header-user {
		padding: 0px 20px;
	}
	.user-header-content .btn-primary.btn-small {
		min-width: auto !important;
		padding: 0 4px !important;
	}
}


/*CHAT BUTTON*/
.chatButton {
	height: 30px;
	width: 30px;
	min-width: 30px;
	border-radius: 100%;
	background: var(--btn-color-primary);
	border: 1px solid var(--btn-color-primary-border);
}
.chatButton svg {
	width: 20px;
	height: 20px;
	color: var(--btn-color-primary-text) !important;
}
.chatButton:hover {
	background: var(--btn-color-primary-hover);
	border: 1px solid var(--btn-color-primary-hover-border);
	color: var(--btn-color-primary-hover-text);
}
.chatButton:hover svg {
	width: 18px;
	height: 18px;
	color: var(--btn-color-primary-hover-text) !important;
}
/*LOGIN POPUP*/
.dark-logo {
	margin-left: auto;
	margin-right: auto;
	width: auto;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loginForm , .registerForm{
	width: 100%;
	max-width: 450px;
	margin: auto;
}
.mobile-login-popup {
	display: none;
	border-top: 1px solid #d9d9d9;
}
@media (max-width: 830px) {
	.mobile-login-popup {
		display: block;
	}
}

/*FOOTER*/
.footer-logo {
	width: 100%;
	max-width: 150px;
}
.footer-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.footer-col p {
	width: 100%;
	max-width: 210px;
}
.footer-cols {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}
.footer-col-title {
	font-weight: bold;
	margin-bottom: 20px;
	color: var(--color-secondary);
}
.footer-redes p {
	max-width: 90px;
}
.footer-text {
	max-width: 250px;
	line-height: 18px;
}
.footer-col .bold.uppercase.mb20.pb10 {
	color: var(--btn-color-primary);
}
@media (max-width: 964px) {
	.footer-col {
		align-items: center;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.footer-text {
		text-align: center;
	}
	.footer-col p {
		text-align: center;
	}
}

/*POPUP*/
.popup {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0;
	margin: 0 auto;
	background: var(--color-overlay);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9991;
}
.popup-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.content.no-overflow {
	height: 100vh !important;
	padding: 0 !important;
	margin: 0 !important;
}
.popup .popup-content {
	margin: 0 auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bg-primary);
	max-height: calc(100vh - 32px);
	height: auto;
	max-width: 550px;
	min-width: 550px;
	min-height: 180px;
	border-radius: 20px;
	overflow: auto;
	z-index: 1;
	opacity: 0;
	transition: 0.3s;
	box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 50%);
}
.popup .popup-content-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
}
.popup .popup-content-header .close {
	position: absolute;
	margin: 0;
	padding: 0;
	right: 15px;
	top: 15px;
	color: var(--color-primary);
	cursor: pointer;
}
.popup .field-error {
	padding-left: 0;
	background: none;
}
.popup .field-error .MuiAlert-icon {
	display: none;
}
.popup .field-error .MuiAlert-message {
	color: var(--bg-color-error);
	padding: 0px 10px;
}
@media (max-width: 560px) {
	.popup .popup-content {
		max-width: calc(100% - 20px);
		max-height: calc(100% - 20px);
		min-width: calc(100% - 20px);
		min-height: 100%;
		height: 100%;
		width: 100%;
		height: -webkit-fill-available;
		max-height: -webkit-fill-available;
		min-height: -webkit-fill-available;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	iframe#depositResponseIframe {
		height: calc(100vh - 100px);
	}
}

/*USER MENU*/
.user-menu {
	position: absolute;
	top: 0px;
	height: 100%;
	width: 100%;
	background: var(--color-overlay);
}
.user-menu > .user-menu-content {
	position: absolute;
	right: 0;
	top: 0;
	height: calc(100% - 120px);
	padding: 60px 20px;
	background: var(--bg-primary);
	min-width: 250px;
	opacity: 0;
	transition: 0.3s;
}
.user-menu .user-menu-content p {
	padding: 5px 10px;
	color: var(--color-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
	transition: 0.3s;
}
.user-menu .user-menu-content p:last-child {
	border-bottom: none;
}
.user-menu .user-menu-content p:hover {
	background: rgb(255 255 255 / 25%);
}
.user-menu .btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	color: var(--color-primary);
	z-index: 9;
	background: none;
	border: none;
	cursor: pointer;
}
.user-menu-info {
	border-radius: 10px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.user-menu-info .user-menu-info-img {
	background: rgb(238 238 238 / 50%);
	border: 2px solid var(--color-tertiary);
	border-radius: 100%;
	width: 46px;
	min-width: 46px;
	height: 46px;
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-size: 26px;
}
.user-menu-info-content {
	width: 100%;
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.user-menu-info-content span {
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.user-menu .user-menu-content p .white-icon {
	color: var(--color-tertiary);
	fill: var(--color-tertiary);
}
.resetPwdButton {
	border-bottom: none !important;
}
p.main-menu-link,
.main-menu-link p {
	padding: 10px !important;
}
p.main-menu-link.custom-menu-link,
.main-menu-link.custom-menu-link p {
	background: var(--color-overlay);
}

/* KAN-19*/
a.main-menu-link.highlighted-menu-link p {
	color: var(--btn-color-primary-text);
	background-color: var(--btn-color-primary) !important;
	margin: 10px 0px;
}

a.main-menu-link.highlighted-menu-link p {

	margin: 10px 0px;
}
/* EOF KAN-19*/

/* ADD */
a.main-menu-link.bottom-menu-link {
	position: absolute;
	bottom: 10px;
	background-color: var(--btn-color-primary) !important;
	width: 87%;
}
a.main-menu-link.bottom-menu-link p {
	color: var(--btn-color-primary-text);
}
.user-mobile-content {
	display: none;
}
@media (max-width: 850px) {
	.user-mobile-content {
		display: block !important;
	}
}

/*HISTORY*/
@media (max-width: 500px) {
	form#filter-form-history > div,
	form#filter-form-history button {
		width: 100%;
		margin: 0px 0px 20px 0px;
	}
}

/*DOCUMENTS*/
.userDocs-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 650px;
}
.userFiles {
	gap: 20px;
}
.userDocs {
	background: rgb(255 255 255 / 15%);
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: var(--border-radius);
	width: calc(100% - 40px);
	min-height: calc(180px - 40px);
	max-height: calc(180px - 40px);
	padding: 20px;
}
.userDocs > div > svg,
.userDocs > svg {
	width: 48px;
	height: 48px;
}
.userDocs-counter {
	opacity: 0.6;
}
.userDocs-status {
	position: absolute;
	right: 0;
	top: 0;
}
.Doc_pending_status {
	color: #ff9a5d;
}
.Doc_revising_status {
	color: #ffffff;
}
.Doc_approved_status {
	color: #6ac726;
}
.Doc_error_status {
	color: #ff5d5d;
}
.userDocs.uploadButton {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	position: relative;
	transition: 0.3s;
	min-height: 342px;
}
.doc-history {
	background: rgb(255 255 255 / 15%);
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: var(--border-radius);
}
.doc-history-element {
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	padding: 10px;
	overflow: hidden;
}
.doc-history-element:last-child {
	border: none;
}
.docFileName {
	max-width: 250px;
	width: 250px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.drag-drop {
	display: flex;
	background: rgb(255 255 255 / 10%);
	border: 2px dashed rgb(255 255 255 / 20%) !important;
	border-radius: var(--border-radius);
	cursor: pointer;
	position: relative;
}
.drag-drop:hover {
	background: rgb(255 255 255 / 15%);
}
.drag-drop label {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 20px;
}
@media (max-width: 1000px) {
	.userDocs.uploadButton p {
		font-size: var(--text-small) !important;
	}
}
@media (max-width: 900px) {
	.userDocs {
		min-height: calc(164px - 40px);
	}
	.userFiles {
		flex-direction: column;
		align-items: flex-start;
	}
	.doc-history-element {
		flex-direction: column;
		align-items: flex-start;
	}
	.doc-history-element .white-text.txtr {
		text-align: left !important;
	}
	.doc-history-element > div:last-child {
		margin-top: 5px;
		margin-left: 44px;
	}
}

/*BALANCE*/
.account-card {
	background: rgb(255 255 255 / 15%);
	border: 1px solid rgb(255 255 255 / 10%);
	position: relative;
	width: 250px;
	height: 63px;
	overflow: hidden;
}
.account-card-info {
	display: flex;
	align-items: center;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	justify-content: space-between;
	position: absolute;
	z-index: 1;
}
.account-card-info svg {
	width: 48px;
	height: 48px;
	color: var(--color-secondary);
}
.account-card-background {
	position: absolute;
	z-index: 0;
	rotate: -24deg;
	left: -10px;
	top: 0;
}
.account-card-background svg {
	width: 120px;
	height: 120px;
	color: rgb(255 255 255 / 6%);
}
@media (max-width: 480px) {
	.promo-code-form > div,
	.promo-code-form > div .input {
		width: 100%;
	}
	.promo-code-form button {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
}
@media (max-width: 450px) {
	.account-card {
		width: 100%;
	}
}

/*OVERLAY*/
.overlay {
	width: 100%;
	height: 100%;
	background: none;
	margin: 0;
	position: absolute;
	z-index: 0;
}

/*BANNER*/
.bannerSlider {
	min-height: 220px;
}
.bannerSlider .splide__slide,
.banner-slide,
.banner-slide img {
	width: 100%;
	max-width: 100%;
	cursor: pointer;
}
.bannerSlider .splide__arrow {
	background: #262626;
	border: 1px solid var(--btn-color-primary);
	width: 32px;
	height: 32px;
	border-radius: 100px;
}
.bannerSlider .splide__arrow svg {
	fill: var(--btn-color-primary);
}
.bannerSlider .splide__pagination__page {
	background: #f2f2f2;
	opacity: 1;
}
.bannerSlider .splide__pagination__page.is-active {
	background: var(--btn-color-primary);
}

/*LOBBY*/

.machines-contanier {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 0px 10px;
}
.machine {
	position: relative;
	flex-direction: column;
	background: rgb(47 72 88 / 60%);
	width: calc((100% / 8) - 10px);
	border-radius: 5px;
	align-items: center;
	justify-content: space-between;
	transition: 0.3s;
	-webkit-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
}
.machine:hover {
	cursor: pointer;
}
.machine::after {
	content: "";
	position: absolute;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid rgb(245 192 67 / 0%);
	border-radius: 10px;
	z-index: 0;
	transition: 0.3s;
}
.machine:hover::after {
	border: 2px solid var(--color-tertiary);
}
.machine .machine-logo {
	transition: 0.5s;
	border-radius: 5px;
}
.machine-frame {
	position: absolute;
	width: 100%;
	height: 100%;
}
.machine .btn-secondary {
	display: none;
}
.machine .machine-name {
	position: absolute;
	opacity: 0;
	z-index: 1;
	top: 15px;
	color: #fff;
	font-weight: bold;
	text-shadow: 2px 2px rgb(0 0 0 / 60%);
	transition: 0.3s;
}
.machine:hover .machine-name,
.machine:hover .btn-primary,
.machine:hover .machine-button-demo {
	opacity: 1 !important;
}
.machine .btn-primary {
	position: absolute;
	opacity: 0 !important;
	bottom: calc(50% - 30px);
	transition: 0.3s;
	width: auto;
	min-width: auto;
	padding: 0px 10px;
	z-index: 1;
}
.machine:hover .machine-logo,
.machine:hover .machine-tags {
	filter: brightness(0.3) blur(0.2px);
	opacity: 0.9;
}
.machine .machine-logo {
	max-height: unset !important;
	min-height: unset !important;
	height: unset !important;
}
.machine-tags {
	display: none !important;
}
@media (max-width: 1500px) {
	.machine {
		width: calc((100% / 7) - 10px);
	}
}
@media (max-width: 1300px) {
	.machine {
		width: calc((100% / 6) - 10px);
	}
}
@media (max-width: 1100px) {
	.machine {
		width: calc((100% / 5) - 10px);
	}
}
@media (max-width: 800px) {
	.machine {
		width: calc((100% / 4) - 10px);
	}
}
@media (max-width: 650px) {
	.machine {
		width: calc((100% / 2) - 10px);
	}
}
@media (max-width: 825px) {
	.machines-contanier .machine .machine-name {
		display: none;
	}
	.machines-contanier .machine .machine-logo {
		border-radius: 5px;
	}
	.machine .btn-primary {
		bottom: calc(50% - 20px);
		width: auto !important;
		padding: 0px 10px;
	}
}
@media (max-width: 480px) {
	.machines-contanier {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}
.index-lobby .machine {
	position: relative;
	flex-direction: column;
	max-width: 180px;
	min-width: 180px;
	background: rgb(47 72 88 / 60%);
	border-radius: 5px;
	align-items: center;
	justify-content: space-between;
	transition: 0.3s;
	-webkit-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 825px) {
	.index-lobby .machines-contanier .machine {
		min-width: 120px;

	}
}

/*LOBBY FAV*/
.btn-favorite {
	position: absolute;
	bottom: 6px;
	right: 6px;
	background: #000000;
	border-radius: 50px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: 0.3s;
}

.btn-favorite svg {
	display: flex;
	align-items: center;
	justify-content: center;
	fill: var(--bg-color-error);
	margin-top: 2px;
}

.btn-favorite:hover {
	transform: scale(1.05);
	filter: brightness(0.8);
}
.favActive-true .favFalse {
	display: none;
}
.favActive-false .favTrue {
	display: none;
}

/*LOBBY FILTER*/
.filter-providers {
	padding-top: 2px;
	padding-bottom: 5px;
	background: rgb(255 255 255 / 10%);
}
.lobby-search-bar .filter-name > div,
.filter-content {
	color: #ffffff !important;
	border-radius: 4px;
}
.lobby-search-bar .filter-name > div fieldset {
	border-color: rgb(255 255 255 / 20%) !important;
}
.filter-content * {
	color: #ffffff !important;
}
.filter-provider,
.filter-tag,
.filter-favs {
	border-radius: var(--border-radius);
}
.filter-tag label img,
.filter-favs label img {
	width: 25px;
	height: 25px;
}
.filter-provider.checked *,
.filter-provider ul li:hover *,
.filter-tag.checked *,
.filter-tag:hover *,
.filter-favs.checked *,
.filter-favs:hover * {
	color: var(--color-tertiary) !important;
}
.filter-tag.checked label p,
.filter-tag:hover label p,
.filter-favs.checked label p,
.filter-favs:hover label p {
	border: 1px solid var(--btn-color-primary);
}
.filter-tag.checked img,
.filter-tag:hover img,
.filter-favs.checked img,
.filter-favs:hover img {
	filter: brightness(0.6);
}
.filter-provider.checked div{
	border: 1px solid var(--color-tertiary);
}
.filter-provider label img {
	width: 30px;
	height: 30px;
	max-width: 30px;
	max-height: 30px;
	min-width: 30px;
	min-height: 30px;
}
.filter-provider label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 65px;
}
.filter-provider label,
.filter-provider label *,
.filter-tag label,
.filter-tag label *,
.filter-favs,
.filter-favs * {
	transition: 0.3s;
}
.filter-tag *,
.filter-favs * {
	text-transform: capitalize;
}
.filter-tag label,
.filter-favs label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	max-width: 50px;
	min-width: 50px;
	min-height: 55px;
	max-height: 55px;
	text-align: center;
	font-size: 11px;
}
.filter-tag label img {
	height: 25px;
	width: 25px;
}
.filter-favs label svg {
	height: 25px;
	width: 25px;
}
.filter-provider label div {
	background: #000;
	border: 1px solid #000;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	margin-top: 3px;
	margin-bottom: 30px;
}
.filter-provider label p {
	position: absolute;
	top: 49px;
	min-width: 53px;
	max-width: 107px;
	height: 24px;
	background: none;
	border: none;
	font-weight: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	margin-bottom: 0;
}
.filter-tag label p {
	background: rgb(38 38 38);
	border: 1px solid #262626;
	color: rgb(255 255 255 / 40%) !important;
	width: 25px;
	height: 25px;
	min-width: 25px;
	min-height: 25px;
	max-width: 25px;
	max-height: 25px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-bottom: 6px;
}
.casino-en-vivo-page .filter-providers {
	display: none;
}
.lobby-search .splide__arrow {
	background: none;
}
.lobby-search .splide__arrow * {
	fill: var(--btn-color-primary);
}
.filter-provider.checked div {
	box-shadow: 0px 0px 6px 0px var(--color-tertiary);
}
.filter-tag.checked label p,
.filter-favs.checked label p {
	box-shadow: 0px 0px 6px 1px var(--color-tertiary);
}
/*New Lobby*/
.provider-slide,
.tag-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	padding: 0 10px;
	margin: 5px 5px 0 5px;
}
.provider-slide div {
	background: #000;
	border: 1px solid #000;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	margin-bottom: 32px;
}
.tag-slide div {
	background: rgb(38 38 38);
	border: 1px solid #262626;
	color: rgb(255 255 255 / 50%) !important;
	font-weight: bold;
	width: 25px;
	height: 25px;
	min-width: 25px;
	min-height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	margin-bottom: 30px;
}
.provider-slide div img,
.provider-slide div span {
	width: 30px;
	height: 30px;
	max-width: 30px;
	max-height: 30px;
	min-width: 30px;
	min-height: 30px;
}

.provider-slide.filterProv_0 img {
	height: 20px;
	max-width: 20px;
	max-height: 20px;
	min-width: 20px;
	min-height: 20px;
}
.tag-slide.filterTag_0 img {
	height: 15px;
	max-width: 15px;
	max-height: 15px;
	min-width: 15px;
	min-height: 15px;
}
.provider-slide p,
.tag-slide p {
	position: absolute;
	bottom: 0;
	min-width: 53px;
	max-width: 70px;
	height: 24px;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.provider-slide:hover *,
.tag-slide:hover * {
	transition: 0.3s;
	cursor: pointer;
	color: var(--color-tertiary) !important;
}
.provider-slide:hover div,
.tag-slide:hover div {
	border: 1px solid var(--color-tertiary);
}
.activeProviderSlide div,
.activeTagSlide div {
	box-shadow: 0px 0px 6px 2px var(--color-tertiary);
	border: 1px solid var(--color-tertiary);
}
.activeProviderSlide *,
.activeTagSlide * {
	color: var(--color-tertiary);
}
.lobby-search .w50,
.lobby-search .w25 {
	min-width: auto;
	max-width: 100%;
}
.lobby-search .w50 {
	width: 75%;
}
.provider-select-image {
	width: 28px;
	height: 28px;
	margin-right: 12px;
	border: 1px solid rgb(92 92 92);
	border-radius: 100%;
	background: #000;
}
p.tag-select-image {
	background: #000000;
	width: 28px;
	height: 28px;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 100%;
}
.input input {
	height: 30px !important;
}
.select > div {
	height: 30px !important;
	line-height: 34px;
}
@media (max-width: 800px) {
	.lobby-search {
		padding-top: 0px;
		padding-left: 0;
		padding-right: 0;
	}
	.casino-page .filter-providers {
		display: none;
	}
	.lobby-search > div {
		min-width: calc(50% - 20px) !important;
		width: calc(50% - 20px);
	}
}
@media (max-width: 600px) {
	.filter-tags,
	.filter-providers {
		align-items: flex-start;
		flex-wrap: nowrap;
		overflow: scroll;
		max-width: calc(100% - 40px);
	}
}

/*iframe*/
#iframeArea {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	width: calc(100% - 20px);
	height: calc(100% - 50px);
	background: #000000;
	padding: 40px 10px 10px 10px;
}
#iframeArea iframe {
	height: 100%;
	border: none;
}
#iframeArea .iframeButtons {
	position: absolute;
	top: 0;
	right: 0;
}
#iframeArea #demoMessage {
	position: absolute;
	top: 5px;
	margin: auto;
	left: 0;
	right: 0;
	width: 100px;
	text-align: center;
	padding: 5px;
	border-radius: var(--border-radius);
	color: var(--bg-color-warning);
}

/*PROFILE*/
.personal-data {
	display: flex;
	gap: 20px;
}
.personal-data > div {
	width: 50%;
}
.personal-data > div > div {
	min-height: 282px;
	background: rgb(255 255 255 / 15%);
	border: 1px solid rgb(255 255 255 / 10%);
}
@media (max-width: 850px) {
	.personal-data {
		flex-wrap: wrap;
	}
	.personal-data > div {
		width: 100%;
	}
}

/*Fragment*/
.text-fragment-column {
	padding: 0px 40px;
	width: calc(50% - 80px);
}
@media (max-width: 800px) {
	.text-fragment-column {
		width: 100%;
	}
}

/*RESET PWD*/
.reset-pwd-page {
	max-width: 600px;
	width: 100%;
}
.reset-pwd-page h1 {
	width: 280px;
	left: calc(50% - 140px);
}

/*PROVIDER ORDER*/
.filterProv_evolution {
	order: 1;
}
.filterProv_ezugi {
	order: 2;
}
.filterProv_pragmatic {
	order: 3;
}
.filterProv_habanero {
	order: 4;
}
.filterProv_egt {
	order: 5;
}
.filterProv_hacksaw {
	order: 6;
}
.filterProv_redtiger {
	order: 7;
}
.filterProv_spribe {
	order: 8;
}
.filterProv_netent {
	order: 9;
}
.filterProv_greentube {
	order: 10;
}
.filterProv_ctgaming {
	order: 11;
}
.filterProv_skywind {
	order: 12;
}
.filterProv_zitro {
	order: 13;
}
.filterProv_microgaming {
	order: 14;
}

/*HOME LINKS CARDS*/
.homeImageLinks > div {
	width: calc(33% - 20px);
	overflow: hidden;
	border-radius: 8px;
	-webkit-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.3);
}
.homeImageLinks > div a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.homeImageLinks > div a img {
	width: 100%;
}
.homeImageLinks > div button.btn-primary {
	position: absolute;
	bottom: 10px;
}
@media (max-width: 900px) {
	.homeImageLinks > div {
		height: 450px;
	}
	.homeImageLinks > div img {
		position: absolute;
		height: 100%;
		top: 0;
		width: auto !important;
	}
	.homeImageLinks > div a {
		height: 100%;
	}
}
@media (max-width: 650px) {
	.homeImageLinks > div {
		height: auto;
		width: 100%;
		margin-bottom: 20px;
	}
	.homeImageLinks > div img {
		position: relative;
		height: auto;
		width: 100% !important;
	}
	.homeImageLinks > div a {
		height: 100%;
	}
	.homeImageLinks > div a button {
		width: auto !important;
	}
}



.tagsCarrousel .splide__list {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}
@media (max-width: 1150px) {
	.tagsCarrousel .splide__list {
		justify-content: flex-start;
	}
}
@media (max-width: 700px) {
	.tagsCarrousel .tagSlide {
		margin-left: 5px;
		margin-right: 5px;
	}
	.tagsCarrousel > div.splide {
		padding-top: 0;
		padding-bottom: 0;
	}
}
.tagsCarrousel .splide__slide img {
	margin: 10px 0;
	padding: 0 0px;
	height: 66px;
}
.activeMenuOption img {
	background: #333 !important;
	border-radius: 8px;
	box-shadow: 0px 0px 6px 2px var(--color-tertiary);
	border: 1px solid var(--color-tertiary);
}

.main-menu-link.depositButton p {
	background-color: var(--btn-color-primary) !important;
	color: var(--color-secondary);
}

@media (min-width: 950px) {
	.lux-machine{
		width: 180px;
		height: 180px;
	}
}

/* BANNER reduced version*/
.bannerSliderReduced {
	min-height: 180px;
}
.bannerSliderReduced .splide__slide,
.banner-slide-reduced,
.banner-slide-reduced img {
	width: 100%;
	max-width: 100%;
	cursor: pointer;
	height: 180px;
}
.bannerSliderReduced .splide__arrow {
	background: #262626;
	border: 1px solid var(--btn-color-primary);
	width: 20px;
	height: 20px;
	border-radius: 100px;
}
.bannerSliderReduced .splide__arrow svg {
	fill: var(--btn-color-primary);
}
.bannerSliderReduced .splide__pagination__page {
	background: #f2f2f2;
	opacity: 1;
}
.bannerSliderReduced .splide__pagination__page.is-active {
	background: var(--btn-color-primary);
}

@media (min-width: 950px) {
	.bannerSliderReduced {
		min-height: 260px;
	}

	.bannerSliderReduced .splide__slide,
	.banner-slide-reduced,
	.banner-slide-reduced img {
		width: 100%;
		max-width: 100%;
		cursor: pointer;
		height: 260px;
	}
	.bannerSliderReduced .splide__arrow {
		background: #262626;
		border: 1px solid var(--btn-color-primary);
		width: 32px;
		height: 32px;
		border-radius: 100px;
	}
}

.tagsCarrousel ul#splide01-list {
	max-height: 68px;
}

.lobby div#splide02 {
	padding-bottom: 5px;
	padding-top: 0px;
}

.splide.bannerSlider-reduced {
	margin: 30px 0px;
}


/* KAN 19*/
.rainbow {
	animation: colorchange 45s; /* animation-name followed by duration in seconds*/ /* you could also use milliseconds (ms) or something like 2.5s */
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-play-state: running;
}

@keyframes colorchange {
	0% { color: #ff0000; }
	14% { color: #ffa500; }
	28% { color: #ffff00; }
	42% { color: #008000; }
	56% { color: #0000ff; }
	70% { color: #4b0082; }
	84% { color: #ee82ee; }
	100% { color: #ff0000; }
}
/*EOF KAN 19*/

/* HOME PAGE */
.homepage .filter-tags {
	display: none;
}
.homepage .filter-providers {
	border-top: 1px solid var(--bg-primary);
}

.homepage {
	margin:10px;
}

.homepage h1 {
	padding:10px;
	width: 100%;
	text-align: center;
}


.homepage h2 {
	padding:20px;
	text-align: center;
	width: 100%;
}
/* REGISTRO */
#registerButton{
	height: 42px;
	border-radius: 4px;
	background-color: #f44336;
}
.register-field{
	width: 100%;
}

#registerPopup{
	padding-bottom: 120px;
}
.page-content{
	padding-bottom: 100px;

}

#cashAmountHeader{
	font-size: 24px;
}

.registerButton {
	bottom: calc(50% - 30px);
	transition: 0.3s;
	width: auto;
	min-width: auto;
	padding: 0px 10px;
	z-index: 1;
	background-color: #f44336;
}

.loginButton {
	color:white;
	background-color: #008000;
}

.showMoreButton{
	color: #eeeeee;
    background-color: #9c4bd7;
    font-size: large;

}

.header {
	background-color: #262626;
}


/* PIE DE PAGINA */
.footer {
	z-index: 100000;
	width: 100%;
	text-align: center;
	background-color: #262626;
}

@media (max-width: 480px) {

	.footer {
		position: fixed;
		bottom: 0;
	}
}


.header {
	min-height: 60px;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

.navbar-left .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.navbar-center{
	align-items: center;
	width: 100%;
	text-align: center;
}

.navbar-center .nav-links {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
}

.navbar-center .nav-links li {
  /* margin-right: 1rem; */
  width: 100%;
}

.navbar-center .nav-links a {
  color: #fff;
  text-decoration: none;
}

.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-right .cart-icon,
.navbar-right .user-icon {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
  position: relative;
}

.navbar-right .cart-count {
  background-color: #f44336;
  color: #fff;
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
}

.lobby-header {
	background-color: #333333;
    padding: 10px;
    font-size: large;
    font-weight: 600;
	margin-bottom: 20px;
}