/* // Progress Bar // */

/*progress bar*/
#page-wrap {
  position: relative;
  margin: 20px auto 16px;
  max-width: 480px;
  width: calc(100% - 10px);
}

.success #page-wrap {
  margin-bottom: 30px;
}
.meter {
  box-sizing: content-box;
  height: 14px;
  position: relative;
  border-radius: 25px;
  background: #d9dce0;
  max-width: 340px;
  width: calc(100% - 10px);
  margin: 0 auto;
  bottom: -11px;
  height: 29px;
  box-shadow: 0px 0px 18px 0px #004dc0b2;
}

.progress-bar-number {
  position: absolute;
  top: 15px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 21.78px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

span.processing.active {
  -webkit-animation: moveLeftRight 1s linear forwards;
  -moz-animation: moveLeftRight 1s linear forwards;
  -o-animation: moveLeftRight 1s linear forwards;
  animation: moveLeftRight 1s linear forwards;
}
span.processing.active_success {
  -webkit-animation: moveLeftRightSuccess 1s linear forwards;
  -moz-animation: moveLeftRightSuccess 1s linear forwards;
  -o-animation: moveLeftRightSuccess 1s linear forwards;
  animation: moveLeftRightSuccess 1s linear forwards;
}
span.processing {
  width: 0;
}
.meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background: #6eadff;
  box-shadow: inset 0 2px 9px rgb(255 255 255 / 30%),
    inset 0 -2px 6px rgb(0 0 0 / 40%);
  position: relative;
  overflow: hidden;
}
.animate > span > span,
.meter > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(101, 89, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(101, 89, 255, 0.2) 50%,
    rgba(101, 89, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  background-size: 20px 20px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
.animate > span > span,
.meter > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: inear-gradient(
    -45deg,
    rgba(101, 89, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(101, 89, 255, 0.2) 50%,
    rgba(101, 89, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  background-size: 20px 20px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
.success .meter > span {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.wrap-icon {
  display: flex;
  justify-content: space-between;
  max-width: 360px;
  width: calc(100% - 10px);
  position: relative;
  top: -8px;
  margin: 0 auto;
}
.wrap-text {
  font-weight: normal;
  font-size: 12px;
  display: flex;
  justify-content: space-around;
  padding: 0;
  box-sizing: border-box;
  color: #ffffff;
}
.wrap-text > span {
  flex-grow: 1;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: center;
  margin-right: 16px;
}

@media screen and (max-width: 560px) {
  #page-wrap {
    position: relative;
    margin: 8px auto 16px;
    max-width: 480px;
    width: calc(100% - 10px);
  }
}

/* //END// */

@keyframes moveLeftRight {
  0% {
    width: 0%;
  }
  50% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}
@-moz-keyframes moveLeftRight {
  0% {
    width: 0%;
  }
  50% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes moveLeftRight {
  0% {
    width: 0%;
  }
  50% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}
@-o-keyframes moveLeftRight {
  0% {
    width: 0%;
  }
  50% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}
@-o-keyframes moveLeftRightSuccess {
  0% {
    width: 50%;
  }
  50% {
    width: 75%;
  }
  100% {
    width: 99%;
  }
}
@-webkit-keyframes moveLeftRightSuccess {
  0% {
    width: 50%;
  }
  50% {
    width: 75%;
  }
  100% {
    width: 99%;
  }
}
@-moz-keyframes moveLeftRightSuccess {
  0% {
    width: 50%;
  }
  50% {
    width: 75%;
  }
  100% {
    width: 99%;
  }
}
@keyframes moveLeftRightSuccess {
  0% {
    width: 50%;
  }
  50% {
    width: 75%;
  }
  100% {
    width: 99%;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}
