﻿/*
===============================================================
Plik: preloader.css
===============================================================
*/

/* ========================================================= PRELOADER - KLEPSYDRA =================================================================== */
.popupPreloader {
	display: none; /* DOMYŚLNIE NIEWIDOCZNY - TYLKO JS MA GO POKAZAĆ */
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.popupPreloaderImgKlepsydra {
	width: 150px;
	height: auto;
	animation: rotatePreloader 1s linear infinite;
}

@keyframes rotatePreloader {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/* ======================================================= PRELOADER koniec KLEPSYDRA =============================================================== */
