.loading {
  background-color: rgba(0, 0, 0, 0.9) !important;
  color: white;
  font-weight: 600;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.loader > span {
  height: 30px;
  width: 7px;
  margin-right: 10px;
  background-color: #fff;
  animation: loading 1s linear infinite;
}

.loader > span:nth-child(1) {
  animation-delay: 0.1s;
}

.loader > span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader > span:nth-child(3) {
  animation-delay: 0.3s;
}

.loader > span:nth-child(4) {
  animation-delay: 0.4s;
}

.loader > span:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes loading {
  0% {
    height: 0;
  }
  25% {
    height: 25px;
  }
  50% {
    height: 50px;
  }
  100% {
    height: 0;
  }
}


.bottom-loader {
  /*display: inline-block;
  position: relative;*/
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 12%) scale(0.5);

  pointer-events: none;

  opacity: 0;
  transition: opacity 200ms;
}

.bottom-loader span {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  border-radius: 4px;
  background: #fff;
  animation: bottom-loading 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.bottom-loader span:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}

.bottom-loader span:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}

.bottom-loader span:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}

@keyframes bottom-loading {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}