.loadred {
  position: absolute;
    z-index: 20;
    background: #ff0034;
    opacity: 0;
}
 .lds-ring {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  bottom: 0;
  height: 22px;
  width: 22px;
  right: 0;
  margin: auto;
  background: red;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loadred.show {
  opacity: 1 !important;
  width:100% !important;
  height: 100% !important;
}
