/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 09:08:03 */
#preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#ffffff;
display:flex;
align-items:center;
justify-content:center;
z-index:999999;
transition:opacity .6s ease-in-out, visibility .6s ease-in-out;
will-change:opacity;
}

/* pulzování loga */

.preloader-logo{
width:300px;
height:auto;
animation:pulseLogo 2s ease-in-out infinite;
}

@keyframes pulseLogo{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}
}

/* fade out */

#preloader.hide{
opacity:0;
visibility:hidden;
pointer-events:none;
}

@media screen and (max-width: 767px) {
		.preloader-logo{
width:250px;
	}
}