#loading__container {
  position: fixed;
  left: 0;right: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading__container div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#loading__container div .dots-animated {
  opacity: 0;
  animation: dots-animation-1 500ms infinite;
}
.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-hourglass:after {
    content: " ";
    display: block;
    position: relative;
    left: -7px;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid #71AF34;
    border-color: #71AF34 transparent #71AF34 transparent;
    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);
    }
}

@keyframes dots-animation-1 {
  0% {
    opacity: 0;
  } 70% {
    opacity: 1;
  } 100% {
    opacity: 0;
  }
}