@keyframes lds-wedges {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@-webkit-keyframes lds-wedges {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.lds-wedges {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  margin: -25px 0 0 -25px;
}
.lds-wedges > div {
  width: auto;
  height: 100%;
}
.lds-wedges > div > div {
  opacity: 0.8;
  transform-origin: 50px 50px;
  animation: lds-wedges 3s linear infinite;
}
.lds-wedges > div > div > div {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 31px;
  border-radius: 30px 0 0 0;
  transform-origin: 50px 50px;
}
.lds-wedges > div div:nth-child(1) > div {
  background: #303742;
  transform: rotate(0deg);
}
.lds-wedges > div div:nth-child(1) {
  animation-duration: 0.75s;
}
.lds-wedges > div div:nth-child(2) > div {
  background: #007c3f;
  transform: rotate(0deg);
}
.lds-wedges > div div:nth-child(2) {
  animation-duration: 1s;
}
.lds-wedges > div div:nth-child(3) > div {
  background: #86bc25;
  transform: rotate(0deg);
}
.lds-wedges > div div:nth-child(3) {
  animation-duration: 1.5s;
}
.lds-wedges > div div:nth-child(4) > div {
  background: #005a98;
  transform: rotate(0deg);
}
.lds-wedges > div div:nth-child(4) {
  animation-duration: 3s;
}
.lds-hourglass {
  display: inline-block;
  z-index: 10;
  position: absolute;
  left: 50%;
  width: 3rem;
  height: 3rem;
  margin-left: -1.5rem;
}
.lds-hourglass::after {
  content: " ";
  display: block;
  box-sizing: border-box;
  width: 0;
  height: 0;
  margin: 6px;
  border: 26px solid #86bc25;
  border-color: #86bc25 transparent #86bc25 transparent;
  border-radius: 50%;
  animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
.hide-icon {
  display: none !important;
}
