/* ----------------------------------------------
 * Generated by Animista on 2023-12-13 16:59:27
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
 @keyframes step-in {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* ----------------------------------------------
 * Generated by Animista on 2023-12-13 16:59:27
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
 @keyframes option-in {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  margin-top: -25px;
  margin-left: -25px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #00000047 #0000;
  animation: l1 1s infinite;
  top: 50%;
  left: 50%;
  position: absolute;
  background: #eee;
  outline: 5000px solid #eee;
  z-index: 9999;
  outline-offset: -1px;
}
@keyframes l1 {to{transform: rotate(.5turn)}}