.page-loading {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19891017;
  background-color: #fff
}

.page-no-scroll {
  overflow: hidden
}

.rubik-loader {
  width: 64px;
  height: 64px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(img/ic_loading.gif);
  background-repeat: no-repeat;
  background-position: center
}

.loading_wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width:360px;
}

.loading_wrapper .text{
  margin-left:35px;
  text-align: center;
}
.loading_wrapper .text.dev{
  margin-left: 35px;
  text-align: center;
  font-weight: 700;
  font-style: italic;
}

.ball-loader{
  display: flex;
  justify-content: center;
  margin-bottom:20px;
}

.ball-loader span {
  display: inline-block;
  background-color: #4aca85;
  width: 25px;
  height: 25px;
  -webkit-animation: 1s ball-load ease-in-out infinite;
  animation: ball-load 1s ease-in-out infinite;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  border-radius: 50%;
  margin: 2px
}

.ball-loader span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

.ball-loader span:nth-child(2) {
  -webkit-animation-delay: .1s;
  animation-delay: .1s
}

.ball-loader span:nth-child(3) {
  -webkit-animation-delay: .15s;
  animation-delay: .15s
}

.ball-loader span:nth-child(4) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

@-webkit-keyframes ball-load {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }
}

@keyframes ball-load {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }
}

.progress{
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-left: 40px;
}
#box {
  width:100px;
  height: 5px;
  background-color: #b2b5b5;
  border-radius: 8px;
  margin-top: 7px;
}
#boxInner{
  background-color: hsl(213deg 91% 56%);
  z-index: 19891017;
  height: 5px;
  position: absolute;
  border-radius: 8px;
}
#num{
  font-size: 12px;
  transform: scale(0.9);
  font-weight: 700;
}