/**!
 * CSS Theme Preloader CSS
 * theme-preloader.css
 * Create a preloading screen for your website content
 * Author: Mario Jurasovic @mjd
 * Author URI: https://mariojurasovic.com/
 * Theme URI: https://p6.mariojurasovic.com/
 * Version: 1.0.0 (Custom Build)
 * Copyright (c)2018
 **/


/*--------------------------------------------------------------
## CSS - THEME-PRELOADER.CSS
--------------------------------------------------------------*/
.theme-preloader-container body {
	display: none;
}
.theme-preloader-container {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	text-align: center;
	position: fixed;
	z-index: 9999999;
	background: #e1e1e1;
	background-color: #e1e1e1;
}
.theme-preloader-container .theme-preloader-screen {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.theme-preloader-container .theme-preloader-screen .logo-container {
	margin-bottom: 57px;
}
.theme-preloader-container .theme-preloader-screen .logo-container .logo {
	opacity: 1.00;
}
.theme-preloader-container .theme-preloader-screen .theme-preloader-bar {
	display: inline-block;
	width: 400px;
	height: 18px;
	border: 1px solid #333333;
	margin-bottom: 23px;
	text-align: left;
}
.theme-preloader-container .theme-preloader-screen .theme-preloader-bar .bar {
	display: inline-block;
	width: 0;
	height: 100%;
	background: #333333;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}
.theme-preloader-container .theme-preloader-screen .theme-preloader-percentage {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	color: #333333;
	text-transform: uppercase;
}
/*--------------------------------------------------------------
## END
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## CSS RESPONSIVE MEDIA QUERIES
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	.theme-preloader-container .theme-preloader-screen .theme-preloader-bar {
		width: 300px;
	}
}
/*--------------------------------------------------------------
## END
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## CSS RESPONSIVE - MEDIA QUERIES
--------------------------------------------------------------*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {}
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {}
/* Small Devices, Tablets */
@media only screen and (max-width: 767.98px) {}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {}
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {}
/*--------------------------------------------------------------
# END
--------------------------------------------------------------*/