.loading {
  z-index: 9999;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.829);
}

.bars5 .loading-content {
  display: block;
  position: absolute;
  width: 200px;
  height: 100px;
  color: white;
  top: 100px;
  margin: -25px 0 0 -25px;
}

/**===== bars5 =====*/

.bars5 {
  display: block;
  position: absolute;
  height: 50px;
  width: 50px;
  margin: -25px 0 0 -25px;
}

.bars5 span {
  position: absolute;
  display: block;
  bottom: 10px;
  width: 9px;
  height: 5px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-animation: bars5 3s infinite ease-in-out;
  animation: bars5 3s infinite ease-in-out;
}

.bars5 span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.bars5 span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.bars5 span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.bars5 span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@keyframes bars5 {
  0% {
    height: 5px;
    transform: translateX(0px);
    transform: translateX(0px);
    background: skyblue;
  }

  25% {
    height: 30px;
    transform: translateX(0px);
    transform: translateX(0px);
    background: #008744;
  }

  50% {
    height: 30px;
    transform: translateX(10px);
    transform: translateX(10px);
    background: skyblue;
  }

  100% {
    height: 5px;
    transform: translateX(0px);
    transform: translateX(0px);
    background: #008744;
  }
}

@-webkit-keyframes bars5 {
  0% {
    height: 5px;
    transform: translateX(0px);
    background: skyblue;
  }

  25% {
    height: 30px;
    transform: translateX(0px);
    background: #008744;
  }

  50% {
    height: 30px;
    transform: translateX(10px);
    background: skyblue;
  }

  100% {
    height: 5px;
    transform: translateX(0px);
    background: #008744;
  }
}

/** END of bars5 */

