.lds-dual-ring {
    width: 115px;
    height: 115px;
    left: 0;
    right: 0;
    top: 30%;
    margin-left: auto;
    margin-right: auto;
    z-index: 100000000000000000;
    position: absolute;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 100px;
  height: 100px;
  margin: 8px;
  border-radius: 50%;
  border: 2px solid #16523f;
  border-color: #16523f transparent #ffdf1b transparent;
  animation: lds-dual-ring .5s linear infinite;
}
.loader-background {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    background: #353535a6;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}