@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,600;1,400;1,600&display=swap');

      html, body, label {
        font-family: 'Roboto', sans-serif;
      }
      
      .spinner {
    position: fixed;
    width: 15.7px;
    height: 15.7px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .spinner::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 100%;
    /* background: radial-gradient(rgba(255, 255, 255, 0.774), rgba(0, 0, 0, 0.753)); */

    background: -webkit-radial-gradient(rgba(0, 0, 0, 0.712), rgba(0, 0, 0, 0.788));
  }

  .spinner div {
    animation: spinner 1.875s infinite backwards;
    background-color: #ffff;
    border-radius: 50%;
    height: 100%;
    position: absolute;
    width: 100%;

  }

  .spinner div:nth-child(1) {
    animation-delay: 0.15s;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .spinner div:nth-child(2) {
    animation-delay: 0.3s;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .spinner div:nth-child(3) {
    animation-delay: 0.45s;
    background-color: rgba(255, 255, 255, 0.7);
  }

  .spinner div:nth-child(4) {
    animation-delay: 0.6s;
    background-color: rgba(255, 255, 255, 0.6);
  }

  .spinner div:nth-child(5) {
    animation-delay: 0.75s;
    background-color: rgba(255, 255, 255, 0.5);
  }

  @keyframes spinner {
    0% {
      transform: rotate(0deg) translateY(-200%);
    }

    60%,
    100% {
      transform: rotate(360deg) translateY(-200%);
    }
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }