.bottom-loader {
  background-color: rgba(82, 73, 28, 0.5) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  position: relative;
  overflow: visible !important;
}

.bottom-loader::after {
  content: "";
  position: absolute;
  top: 115%;
  left: 0;
  color: rgb(1, 75, 1);
  font-size: 10px;
}

.bottom-loader::before {
  content: "";
  top: 110%;
  background-color: rgb(1, 75, 1);
  height: 3px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  width: 0;
  animation-name: loadr-animetion;
  animation: loadr-animetion 1s ease-in-out infinite alternate;
}

.bottom-loaded::after {
  content: "";
  position: absolute;
  top: 115%;
  left: 0;
  color: rgb(1, 75, 1);
  font-size: 10px;
  font-weight: 600;
}

.bottom-loaded::before {
  content: "";
  top: 110%;
  background-color: rgb(82, 73, 28);
  height: 3px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  width: 0;
  animation-name: loadr-animetion;
  animation: loadr-animetion 0.6s ease-out forwards;
}

.bottom-loaded {
  background-color: rgba(82, 73, 28, 0.5) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  position: relative;
  overflow: visible;
}

@keyframes loadr-animetion {
  0% {
    width: 0;
  }
  100% {
    width: 99%;
  }
}

/*# sourceMappingURL=loaders.css.map */
