.outer-wrapper {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(83, 39, 39);
  transition: all 1s linear;
}
.loader-wrapper {
  position: relative;
  top: 50%;
  left: 50%;
  display: flex;
  height: 5rem;
  justify-content: center;
  /* width: 10rem; */
  transform: translate(-50%, -50%);
}
.loader {
  display: inline-block;
  margin: 0.3rem;
  position: relative;
  height: 1rem;
  width: 1rem;
  border: 1px solid #fff;
  /* margin: 0 2px; */
  top: 50%;
  background-color: #fff;
}

.loader.loader1 {
  animation: jump 2s linear infinite;
}

.loader.loader2 {
  animation: jump 2s linear 0.1s infinite;
}
.loader.loader3 {
  animation: jump 2s linear 0.2s infinite;
}
.loader.loader4 {
  animation: jump 2s linear 0.3s infinite;
}
.loader.loader5 {
  animation: jump 2s linear 0.4s infinite;
}

.loading {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  font-family: monospace;
  color: #fff;
}

@keyframes jump {
  0% {
    top: 50%;
  }
  50% {
    top: -30%;
  }
  100% {
    top: 50%;
  }
}
.visuallyHidden {
  opacity: 0;
}

.hidden {
  display: none;
}
