.spinng {
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 50px;
  margin: auto;
}

.spinner-text {
  text-align: center;
  font-size: 14px;
  color: #ffb400;
  font-weight: bold;
}

.spinner-wrapper {
  margin: auto;
  margin-bottom: 30px;
  height: 120px;
  text-align: center;
  font-size: 14px;
  color: #ffb400;
  font-weight: bold;
}

.spinner-wrapper > .rect {
  background-color: #ffb400;
  height: 100%;
  width: 14px;
  display: inline-block;
  transform: scaleY(0.4);
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner-wrapper > .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner-wrapper > .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner-wrapper > .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner-wrapper > .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1);
  }
}
