
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #eb6b2d;
  border-color: #eb6b2d transparent #eb6b2d transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loaderContainer {
  width: 100%;
  height: 100%;
  margin-left: 0px;
  position: fixed;
  background-color: rgba(193, 193, 193, 0.2);
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-dual-ring.center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
