html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  overflow: hidden;
}

.loader-spinner {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border-top: 0.3em solid #eaeaea;
  border-left: 0.3em solid #eaeaea;
  border-right: 0.3em solid #eaeaea;
  border-bottom: 0.3em solid #ffb329;
  animation: spinner;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.loader-line {
  position: absolute;
  overflow: hidden;
  width: 100px;
  background-color: #0A8AB9;
  height: 1px;
  left: -20%;
  animation: line-left-to-right;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.line-loader-container {
  position: relative;
  padding: 20px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  width: 400px;
  height: 400px;
  border: 1px solid #eeeeee;
}

@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes line-left-to-right {
  0% {
    opacity: 0;
  }
  50% {
    left: 40%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}