#layer_03, .layer_03{
	position:absolute;
	-webkit-transition: opacity 1s ease-out;
	-moz-transition: opacity 1s ease-out;
	-o-transition: opacity 1s ease-out;
	transition: opacity 1s ease-out;
}
	
@keyframes picFadeOut {
	0% {
		opacity:1;
	}
	45% {
		opacity:1;
	}
	55% {
		opacity:0;
	}
	100% {
		opacity:0;
	}
}

@keyframes picFadeIn {
	0% {
		opacity:0;
	}
	45% {
		opacity:0;
	}
	55% {
		opacity:1;
	}
	100% {
		opacity:1;
	}
}

.layer_03{
	animation-name: picFadeOut;
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
	animation-duration: 2s;
	animation-direction: alternate;
}

#layer_03{
	animation-name: picFadeIn;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	animation-duration: 2s;
	animation-direction: alternate;
}

/*   P O R T R A I T   																						 */
/* --------------------------------------------------------------------------------------------------------- */

.intro-portrait .intro_features {background-color: rgba(0,255,0,0.2);}

/* intro logo */
.intro-portrait #layer_02 {left: calc(50% - 215px);}

/* intro game */
.intro-portrait #layer_03 {left: calc(50% - 480px);}

/* intro game */
.intro-portrait .layer_03 {left: calc(50% - 480px);}

/* arrow */
.intro-portrait #layer_04 {left: calc(50% - 205px);}

/* extra */
.intro-portrait #layer_05 {/*left: calc(50% - 193px);*/}

/* reels */
.intro-portrait #layer_06 {left: calc(50% - 177px);}

/* paylines */
.intro-portrait #layer_07 {left: calc(50% - 157px);}

/* background pink */
.intro-portrait #layer_08 {}




/*   L A N D S C A P E																						 */
/* --------------------------------------------------------------------------------------------------------- */

.intro-landscape .intro_features {background-color: rgba(0,255,0,0.2);}

/* intro logo */
.intro-landscape #layer_02 {transform: scale(0.9); left: 2%; top: 2%;}

/* intro game */
.intro-landscape #layer_03 {transform: scale(0.96); left: calc(100% - 936px); top: -5%;}

/* intro game */
.intro-landscape .layer_03 {transform: scale(0.96); left: calc(100% - 936px); top: -5%;}

/* arrow */
.intro-landscape #layer_04 {transform: scale(1); left: 10%; top: 50%;}

/* extra */
.intro-landscape #layer_05 {transform: scale(1); left: -10%; top: 0%;}

/* reels */
.intro-landscape #layer_06 {transform: scale(0.75); left: 0%; top: 64%;}

/* paylines */
.intro-landscape #layer_07 {transform: scale(0.75); left: 75%; top: 89%;}

/* background pink */
.intro-landscape #layer_08 {top: 171px; transform: scale(0.9); left: calc(50% - 510px);}

/* -- INFO BG -- */
img.bg_filter_info {
	-webkit-filter: saturate(1.2) brightness(0.6) invert(0.1);
}