/* *************************************************************************************************
 *
 *  Animate icon when waiting for domaincheck result
 *   
 * ************************************************************************************************* */
 
.loadericon {
  animation: spin 1.5s infinite linear;
  border: 10px solid rgba(255, 255, 255, 0.75);
  border-left: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  border-top: 10px solid rgba(255, 255, 255, 0.1);
  width: 100px;
  height: 100px;
  margin: 2em auto;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
