/* LOADING */

@import url(http://fonts.googleapis.com/css?family=Open+Sans:300) !important;

.inner {
  position: absolute !important; 
  margin: auto !important; 
  width: 50px !important; 
  height: 95px !important; 
  top: 0px !important; 
  left: 0px !important; 
  bottom: 0px !important; 
  right: 0px !important; 
}

.inner > div {
  width: 50px !important; 
  height: 50px !important; 
  background-color: rgba(255, 255, 255, 0.7) !important; 
  border-radius: 100% !important; 
  position: absolute !important; 
  transition: all 0.5s ease !important; 
}

.inner > div:first-child {
  margin-left: -27px !important; 
  animation: one 1.5s linear 1 !important; 
}

.inner > div:nth-child(2) {
  margin-left: 27px !important; 
  animation: two 1.5s linear 1 !important; 
}

.inner > div:nth-child(3) {
  margin-top: 54px !important; 
  margin-left: -27px !important; 
  animation: four 1.5s linear 1 !important; 
}

.inner > div:nth-child(4) {
  margin-top: 54px !important; 
  margin-left: 27px !important; 
  animation: three 1.5s linear 1 !important; 
}

@keyframes one {
  0% {
    transform: scale(1) !important;
  }
  25% {
    transform: scale(0.3) !important;
  }
  50% {
    transform: scale(1) !important;
  }
  75% {
    transform: scale(1.4) !important;
  }
  100% {
    transform: scale(1) !important;
  }
}

@keyframes two {
  0% {
    transform: scale(1.4) !important;
  }
  25% {
    transform: scale(1) !important;
  }
  50% {
    transform: scale(0.3) !important;
  }
  75% {
    transform: scale(1) !important;
  }
  100% {
    transform: scale(1.4) !important;
  }
}

@keyframes three {
  0% {
    transform: scale(1) !important;
  }
  25% {
    transform: scale(1.4) !important;
  }
  50% {
    transform: scale(1) !important;
  }
  75% {
    transform: scale(0.3) !important;
  }
  100% {
    transform: scale(1) !important;
  }
}

@keyframes four {
  0% {
    transform: scale(0.3) !important;
  }
  25% {
    transform: scale(1) !important;
  }
  50% {
    transform: scale(1.4) !important;
  }
  75% {
    transform: scale(1) !important;
  }
  100% {
    transform: scale(0.3) !important;
  }
}

.inner > div.done {
  margin-left: 0px !important; 
  margin-top:  27px !important; 
}

.inner > div.page {
  transform: scale(40) !important; 
}

.pageLoad {
  position: fixed !important; 
  top: 0px !important; 
  left: 0px !important; 
  width: 100% !important; 
  height: 100vh !important; 
  background-color: #ABDCFB !important; 
  transition: all 0.3s ease !important; 
  z-index: 2 !important; 
}

.pageLoad.off {
  opacity: 0 !important; 
  pointer-events: none !important; 
}


.next {
  width: 100% !important; 
  height: 350px !important; 
  background-color: lightgray !important; 
  margin-top: 400px !important; 
  opacity: 0 !important; 
  transition: all 0.5s ease !important; 
}
.next:after {
  content: ' ' !important; 
  width: 100% !important; 
  height: 40vh !important; 
  transform: skewY(5deg) !important; 
  background-color: lightgray !important; 
  position: absolute !important; 
  z-index: 1 !important; 
  margin-top: -100px !important; 
}

.next.opac {
  opacity: 1 !important; 
}

.selector-container {
  position: absolute !important;
  width: 100% !important;
  bottom: 17% !important;
  text-align: center !important;
  z-index: 1 !important;
  left: 0 !important;
}

.selector {
  margin: 5px !important;
  width: 20px !important;
  height: 20px !important;
  background: #000 !important;
  cursor: pointer !important;
  border-radius: 50% !important;
  border: 2px #fff solid !important;
  display: inline-block !important;
}

.selector.active {
  background: #fff !important;
}