/**********************************/
/*     LSPLASY			      */
/**********************************/
.rotate-x-start {
	transform: rotateX(75deg);
}

.rotate-x-end {
	transform: rotateX(0deg);
}

.rotate-y-start {
	transform: rotateY(75deg);
}

.rotate-y-end {
	transform: rotateY(0deg);
}

.zoom-start {
	transform: scale(0.8);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.zoom-end {
	transform: scale(1);
	opacity: 1;
	transition: transform 0.5s ease, opacity 0.5s ease;
}


.panel_opravneni {
}

.panel_opravneni:hover {
	transform: scale(1.05);
}

.perspective {
	perspective: 1000px;
}

.transition-3d {
	transition: transform 0.6s ease-out;
	transform-style: preserve-3d;
}

@keyframes pulse-smooth {
	0%, 50% {
		opacity: 0.4;
		transform: scale(1);
	}
	50% {
		opacity: 0.0;
		transform: scale(2);
	}
}
.animate-pulse-smooth {
	animation: pulse-smooth 1s ease-in-out 1;
}


@keyframes ani_title-text {
	from {
		opacity: 0;
		transform: scale(0,0);
	}

	to {
		opacity: 1;
	}

}

@keyframes ani_logo {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

@keyframes ani_nav {
	from {
		transform: scale(0,0);
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

@keyframes ani_jump {
	from {
		transform: translateY(150%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes ani_rotate {
	from {
		transform: rotate(1turn);
		opacity: 0;
	}

	to {
		transform: rotate(3turn);
		opacity: 1;
	}
}

/**********************************/
/*     Back To Top Button         */
/**********************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 0.75rem;
	bottom: 0.75rem;
	display: none;
	width: 2.625rem;
	height: 2.625rem;
	border-radius: 1.875rem;
	background: #A2A6BCFF url("../img/up-arrow.png") no-repeat center 47%;
	background-size: 1.125rem 1.125rem;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #6e6e6e;
}

/************************/
/*     Preloader     	*/
/************************/
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000000;
}

.spinner-text {
	background: url("../img/letadlow.png") no-repeat center;
	position: relative;
	top: 50%;
	height: 144px;
}

.spinner {
	position: relative;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 1.25rem;
	margin: -0.625rem 0 0 -1.875rem;
	margin-left: -60px;
	text-align: center;
}

.spinner > div {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #fff;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.62s;
	animation-delay: -0.62s;
}
.spinner .bounce2 {
	-webkit-animation-delay: -0.48s;
	animation-delay: -0.48s;
}
.spinner .bounce3 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.spinner .bounce4 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0); }
	40% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	} 40% {
		  -webkit-transform: scale(1.0);
		  -ms-transform: scale(1.0);
		  transform: scale(1.0);
	  }
}