.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid #009fda;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 0;
	}
	4.9% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 0;
	}
	5% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

.game-search-panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--bs-green);
}

.game-tabs {
    background: #ececec;
    box-shadow: 0 3px 5px #0003;
    padding: 0 0.625rem;
    min-height: 4rem;
}

.game-tabs .tabs-menu-item .tab-button {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.game-tabs .tabs-menu-item .tab-icon svg {
	width: 32px;
	height: 32px;
}

.casino-games-header-panel .btn svg {
	width: 32px;
	height: 32px;
}

.casino-stage {

}

.casino-stage .game-card {
	position: relative;
}

.casino-stage .game__details-wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.casino-stage .game__details {
	background: rgba(0,90,159,.8);
}

.casino-stage .game-title {
	padding: 0.6rem 0.5rem;
	font-weight: normal;
	margin-bottom: 0;
	display: inline-block;
}

.casino-stage .game__play-wrapper {
	opacity: 0;
	transition: 0.35s all;
}

.casino-stage .game-card[data-info-panel-visible="false"] .game__info {
	display: none;
}

.casino-stage .game-card[data-info-panel-visible="true"] .game__play-btn {
	display: none;
}

.casino-stage .game-card:hover .game__play-wrapper {
	opacity: 1;
	background: rgba(0,90,159,.8);
}
