/**
 * Theme Name: Casino Theme
 * Theme URI: 
 * Author: iSeeGor
 * Author URI: https://github.com/iSeeGor
 * Description: Casino Wordpress Theme
 * Text Domain: 
 * Version: 1.0
 */	


.game-player__poster {

	background: black;
	overflow: hidden;
}

.game-player__poster:hover {

	cursor: pointer;
}

.game-player__poster:hover .button-play {

    background: rgba(255, 255, 255, 0.5);
}

.game-player__poster:hover .button-play::before {

	border-color: transparent transparent transparent #3246FF;
}

.page-game .game-player__fullscreen {

	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 2;
	/* background: red; */
	padding: 8px;
}

.game-player__fullscreen .icon {

	fill: white;
}

.game-player__poster.is-active:hover {

	opacity: 1;
}

.game-player__poster.is-fullscreen {

	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 120;
}

.game-player__poster.is-active::before,
.game-player__poster.is-active img,
.game-player__poster.is-active .button-play {

	opacity: 0 !important;
	pointer-events: none;
}

.game-player__game-window {
	
	width: 100%;
	height: 100%;
}

.game-player__iframe {

	width: 100%;
	height: 100%;
}


/* Futured games slider */
.futured-games--no-slider .futured-games__slider-controll, 
.futured-games--no-slider .futured-games__slider-bullets {

	display: none;
}

.futured-games--no-slider .swiper-slide {

	flex: 1 1 calc( 100% / 4 );
	max-width: calc( 100% / 4 );
	margin-right: 20px;
}

.futured-games--no-slider .swiper-slide:last-child {

	margin-right: 0;
}

/* Comments Stars */
.comments-rating {
	border: none;
	padding: 0;
	margin-left: 0;
}

.comments-rating label {
	display: inline-block;
}

.rating-container {
	/* remove inline-block whitespace */
	font-size: 0;
	/* flip the order so we can use the + and ~ combinators */
	unicode-bidi: bidi-override;
	direction: rtl;
}

.rating-container * {
	font-size: 1.4rem;
}

.rating-container > input {
	display: none;
}

.rating-container > input + label {
	/* only enough room for the star */
	font-family: 'dashicons';
	display: inline-block;
	overflow: hidden;
	text-indent: 9999px;
	width: 1em;
	white-space: nowrap;
	cursor: pointer;
	margin: 0;
}

.rating-container > input + label:before {
	display: inline-block;
	text-indent: -9999px;
	content: "\f154";
	color: #888;
}

.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
	content: "\f155";
	color: #e52;
	text-shadow: 0 0 1px #333;
}

.rating-container > .star-cb-clear + label {
	text-indent: -9999px;
	width: .5em;
	margin-left: -.5em;
}

.rating-container > .star-cb-clear + label:before {
	width: .5em;
}

.rating-container:hover > input + label:before {
	content: "\f154";
	color: #888;
	text-shadow: none;
}

.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
	content: "\f155";
	color: #e52;
	text-shadow: 0 0 1px #333;
}

.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
	text-indent: 9999px;
}

.comment-respond .rating-container > input + label {
	text-indent: -9999px;
}