* {
  margin: 0;
  padding: 0;
}

.hidden {
  opacity: 0;
}

#loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
}

.preloader {
  position: absolute;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  background: #e74c3c;
  transform: rotate(45deg);
  animation: preloader 2s linear infinite;
}

.loadBar {
  position: absolute;
  width: 100px;
  height: 4px;
  left: calc(50% - 50px);
  top: calc(50% + -15px);
  background: #DDD;
}

.progress {
  position: relative;
  width: 0%;
  height: inherit;
  background: #000;
}

@keyframes loading {

  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }

}

@keyframes preloader {

  0%, 100% {
    transform: rotate(45deg);
  }

  60% {
    transform: rotate(405deg);
  }

}


/**===== bars1 =====
#barsbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  margin: 0 auto ;
  background: #333;
  padding: 45px 0px;
  background-clip: padding-box;
  text-align: center;
}

#bars1 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  margin: -25px 0 0 -25px;
  z-index: 999;
}

#bars1 span {
  position: absolute;
  display: block;
  bottom: 10px;
  width: 9px;
  height: 5px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-animation: bars1 1.5s  infinite ease-in-out;
          animation: bars1 1.5s  infinite ease-in-out;
}

#bars1 span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#bars1 span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#bars1 span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#bars1 span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@keyframes bars1 {
  0% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    background: #000000;
  }
  50% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
}
@-webkit-keyframes bars1 {
  0% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    background: #000000;
  }
  50% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    height: 5px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    background: rgba(0, 0, 0, 0.25);
  }
}

.fade-out {
  animation: fadeOut ease .8s;
  -webkit-animation: fadeOut ease .8s;
  -moz-animation: fadeOut ease .8s;
  -o-animation: fadeOut ease .8s;
  -ms-animation: fadeOut ease .8s;
}
@keyframes fadeOut {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}

/** END of bars1 */
/*-----------------------------------------------------------------------*/



.boxS {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  margin: 0 auto ;
  padding: 45px 0px;
  background-clip: padding-box;
  text-align: center;
  overflow: hidden;
  color: rgba(255,255,255,0.5);
}

@media screen and (max-width: 700px){
.boxS {
	position: fixed;  
	width: 65%;
	line-height: 14px;
  }	
	
	
}	