/*=========================================*/
/* loader css  start*/
/*=========================================*/
/* Chrome Frame prompt */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
/* Author's custom styles */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999999999;
  background: #ffd500;
  -webkit-transform: translateX(0);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(0);
  /* IE 9 */
  transform: translateX(0);
  /* Firefox 16+, IE 10+, Opera */
}

.logo-loader {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  text-align: center;
}

#loader {
  display: inline-block;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1005;
  background-size: cover;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}

#loader-wrapper h2 {
  font-size: 24px;
  font-family: 'FuturaPT-Light';
  color: #000000;
  z-index: 999999;
  display: inline-block;
  text-align: center;
  width: 100%;
  top: 56%;
  position: absolute;
  z-index: 1005;
  background-size: cover;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

#loader-wrapper .loader_line {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  z-index: 9999999;
  float: left;
  position: absolute;
  top: 58%;
  left: 50%;
  background-color: #ffffff;
  border: 5px solid #ffffff;
  border-radius: 50px;
  transform: translate(-50%, -58%);
  -webkit-transform: translate(-50%, -58%);
}

.progress {
  height: 7px;
  top: 60%;
  left: 50%;
  position: absolute;
  width: 40%;
  margin: 0 auto;
  transform: translate(-50%, -60%);
  display: inline-block;
  text-align: center;
  overflow: visible;
}

.progress>span {
  position: relative;
  float: left;
  height: 7px;
  line-height: 16px;
  text-align: right;
  border: none;
}

.progress>span:before {
  height: 7px;
  border: none;
  background-color: #000;
}


/* loading logo */

#minutes {
  width: 100%;
  height: 100%;
  position: absolute;
  background: no-repeat center center;
  background-size: contain;
  margin-top: -12px;
}

#minutes:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat top center;
  background-size: 90px;
  background-position: center 5%;
  transition: transform 1s;
}

#minutes {
  z-index: 100;
}

#minutes:after {
  content: '';
  display: block;
  animation: seconds infinite 1s;
}

@keyframes seconds {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

#minutes.right:after {
  background: url(../images/hoverimage2.png) no-repeat center center;
}