.loader-inner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  margin:15px auto;
  position: relative;
  background: #FF3D00;
  color: black;
  box-shadow: -24px 0, 24px 0;
  box-sizing: border-box;
  animation: rotation 2s ease-in-out infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.loading-component {
  .loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
  }

  .loader-wheel {
    animation: spin 1s infinite linear;
    border: 4px solid rgba(30, 30, 30, 0.5);
    border-left: 4px solid #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .loader-text {
    color: #0a1115;
    font-size: large;
    font-weight: bold;
  }

  .loader-text:after {
    content: '';
    animation: load 1s linear infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes load {
    0% {
      content: '';
    }
    33% {
      content: '.';
    }
    67% {
      content: '..';
    }
    100% {
      content: '...';
    }
  }
}
