.lds-hourglass
{
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 1px;
  box-sizing: border-box;
  border: 10px solid #fff;
  border-color: #0c71b6 transparent #0c71b6 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);
  }
}

.lds-dual-ring
{
  display: inline-block;
  width: 14px;
  height: 14px;
}
.lds-dual-ring:after
{
  content: " ";
  display: block;
  width: 14px;
  height: 14px;
  margin: 1px;
  border-radius: 50%;
  border: 2px solid rgb(255, 0, 0);
  border-color: #0c71b6 transparent #0c71b6 transparent;
  animation: lds-dual-ring 0.6s linear infinite;
}
@keyframes lds-dual-ring
{
  0%
  {
    transform: rotate(0deg);
  }
  100%
  {
    transform: rotate(360deg);
  }
}

@media (max-width: 881px) {
  #serverProgress {
      text-align: center;
  }
}
