/* loading icon */
/* https://loading.io/css/ */
.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: auto;
  box-sizing: border-box;
  /*
  border: 26px solid #5DADE2;
  border-color: #5DADE2 transparent #5DADE2 transparent;
  */
  border: 26px solid steelblue;
  border-color: steelblue transparent steelblue 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);
  }
}