/* Unminify the code here: https://unminify.com/ */
.spinner {
  margin: 50px auto;
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-top-color: #6fdbff;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(111, 219, 255, 0.5);
  animation: spin 0.9s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
