/* Splash Screen Splash CSS */
body {
  margin:0;
  height:100%;
  background: #000000;
  background-size: 100% 100%;
}

/* Zylu Logo Styling */
.center {
  margin: 0;
  position: absolute;
  box-sizing: border-box;
  top: 30%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.contain {
  display:block;
  width:100%; height:100%;
  object-fit: contain;
}

.stretch {
  display:block;
  width:100%; height:100%;
}

.cover {
  display:block;
  width:100%; height:100%;
  object-fit: cover;
}

@media (prefers-color-scheme: dark) {
  body {
    margin:0;
    height:100%;
    background: #000000;
    
    background-size: 100% 100%;
  }
}

/* Progress Bar Styling */
.loading{
  position: absolute;
  top: 50%;
  left: 50%;
  padding-top: 5%;
  transform: translate(-50%, -50%);
}
/* Progress Text Styling */
.percent{
  color: #fff;
  font-size: 18px;
  padding-top: 10%;
  font-weight: 400;
  text-align: center;
  font-family: Verdana,Helvetica,Arial,sans-serif;
  margin-bottom: 15px;
}
.progress-bar{
  width: 406px;
  height: 15px;
  background: #111;
  border-radius: 13px;
  padding: 3px;
  box-sizing: border-box;
}
.progress{
  width: 10px;
  height: 9px;
  background: #fff;
  border-radius: 13px;
}
.text-blink{
  animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.2;
  }
  100%{
    opacity: 1;
  }
}

#fade{
  transition: opacity 1s;
}

.hide{
  visibility: hidden;
}