/*-------- Preloader --------*/
#preloader {
  position: fixed;
  z-index: 999999999 !important;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#preloader [data-loader="dual-ring"] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -25px;
  margin-top: -25px;
  content: " ";
  border-radius: 70%;
  border: 5px solid #ff5c00;
  border-color: #ff5c00 transparent #ff5c00 transparent;
  animation: dual-ring 1.2s linear infinite;
}
.loading_2 {
      position: absolute;
      width: 100%;
      top: 40%;
      color: #009b00;
      font-size: 20px;
      text-align: center;
      animation: bounce 2s linear infinite;
    }

@keyframes dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}