.loader-wheel {
    animation: spin 1s infinite linear;
    border: 2px solid  #69b3fe;
    border-left: 4px solid #fff;
    border-radius: 50%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
    margin-left: 50%;
    margin-top: 5%;
    margin-bottom: 15%;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }