﻿.custom-loader {
  width:50px;
  height:50px;
  border-radius:50%;
  border:8px solid;
  border-color:#78A5FF;
  border-right-color: #1A00FF;
  animation:s2 1s infinite linear;
}
@keyframes s2 {to{transform: rotate(1turn)}}

.custom-progress {
    width: 50px;
    height: 50px;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(0, 0%, 92%);
  }
  100% {
    background-color: hsl(0, 0%, 97%);
  }
}
