.loader {
  background-color: #fff;
  bottom: 0;
  display: grid;
  left: 0;
  place-items: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.ring-loader {
  border: 5px solid rgba(0, 159, 185, 0.3);
  border-radius: 50%;
  height: 60px;
  position: relative;
  width: 60px;
}
.ring-loader::after {
  -webkit-animation: ring-rotate 1s linear infinite;
          animation: ring-rotate 1s linear infinite;
  border: 5px solid transparent;
  border-top-color: #009fb9;
  border-radius: 50%;
  content: "";
  height: 60px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 60px;
}

@-webkit-keyframes ring-rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ring-rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}