#jpreOverlay {
	background-color: #fff;
	position:absolute;
	width:100%;
	height:100%;
}
#jpreSlide{
	/* font-size:22px;
	color:#ccc;
	text-align:center;
	width:50%;
	height:30%; */
}
#jpreLoader{
	width:200px;
	height:200px;
	/* background:#111; */
	/* border-radius:25px; */
	/* -moz-border-radius:25px; */
	/* -webkit-border-radius:25px; */
	margin:20px;
	/* animation: animName 2s linear infinite; */
}
/* @keyframes animName {
	0%{
	   transform: rotate(0deg);
	  }
   100%{
	   transform: rotate(360deg);
	  }
   } */

#jpreBar {
	/* background:#222;
	border-radius:25px;
	-moz-border-radius:25px;
	-webkit-border-radius:25px; */
}

#jprePercentage {
	/* color:#111;
	z-index:-1;
	font-family:Arial,Helvetica,sans-serif;
	text-align:center;
	margin-top:10px;
	font-size:96px;
	margin-top:-10px; */
}

#jSplash{
	line-height:200%;
}

#jSplash section{
	padding:0;
	display:block;
	background:none !important;
}

#jpreLoader img {
    width: 100px; /* Adjust the size of the logo as needed */
    height: auto;
    animation: zoomInOut 1s infinite ease-in-out;
}

@keyframes zoomInOut  {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}