#background-loading {
  background: #000000;
  opacity: 1;
  z-index: 99999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;

  font-size: 14px;
  color: #ffffff;
  text-align: center;
  padding: 450px 0;
}

@media only screen and (max-width:480px) {
  #background-loading {
    background: #000000;
    opacity: 1;
    z-index: 99999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;

    font-size: 10px;
    color: #ffffff;
    text-align: center;
    padding: 330px 0;
  }
}

.loading-text {
  position: absolute;
  color: #fff;
  top: 60%;
  left: 50%;
  margin: -10px 0 0 -48px;
  font-family: Optima, sans-serif;
  font-weight: 300;
}

.loader {
  position: absolute;
  top: 35%;
  left: 35%;
  width: 30%;
  height: 20%;
}

.loader::after,
.loader::before {
  content: "";
  position: absolute;
  border-radius: 20%;
}

/* .loader::after {
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid transparent;
  border-top-color: #32cd32;
  border-bottom-color: #32cd32;
  animation: loading 1.5s linear;
  animation-iteration-count: infinite;
} */

/* .loader::before {
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
  border: 3px solid transparent;
  border-top-color: #03afdb;
  border-bottom-color: #03afdb;
  animation: loading 3s linear;
  animation-iteration-count: infinite;
} */

@keyframes loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}