div.load [role="progressbar"][aria-busy="true"] {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 4px;
  width: 100%;
  background-color: #fff;
  -webkit-animation: preloader-background linear 3.5s infinite;
          animation: preloader-background linear 3.5s infinite;
}
div.load [role="progressbar"][aria-busy="true"]::before, div.load [role="progressbar"][aria-busy="true"]::after {
  display: block;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 0;
  height: 4px;
  background: #afa;
  -webkit-animation: preloader-front linear 3.5s infinite;
          animation: preloader-front linear 3.5s infinite;
  content: '';
}
div.load [role="progressbar"][aria-busy="true"]::before {
  right: 50%;
}
div.load [role="progressbar"][aria-busy="true"]::after {
  left: 50%;
}

@-webkit-keyframes preloader-background {
  0%, 24.9% {
    background-color: #fff;
  }
  25%, 49.9% {
    background-color: #6f6f6f;
  }
  50%, 74.9% {
    background-color: #c9c9c9;
  }
  75%, 100% {
    background-color: #353535;
  }
}

@keyframes preloader-background {
  0%, 24.9% {
    background-color: #fff;
  }
  25%, 49.9% {
    background-color: #6f6f6f;
  }
  50%, 74.9% {
    background-color: #c9c9c9;
  }
  75%, 100% {
    background-color: #353535;
  }
}
@-webkit-keyframes preloader-front {
  0% {
    width: 0;
    background-color: #6f6f6f;
  }
  24.9% {
    width: 50%;
    background-color: #6f6f6f;
  }
  25% {
    width: 0;
    background-color: #c9c9c9;
  }
  49.9% {
    width: 50%;
    background-color: #c9c9c9;
  }
  50% {
    width: 0;
    background-color: #353535;
  }
  74.9% {
    width: 50%;
    background-color: #353535;
  }
  75% {
    width: 0%;
    background-color: #fff;
  }
  100% {
    width: 50%;
    background-color: #fff;
  }
}
@keyframes preloader-front {
  0% {
    width: 0;
    background-color: #6f6f6f;
  }
  24.9% {
    width: 50%;
    background-color: #6f6f6f;
  }
  25% {
    width: 0;
    background-color: #c9c9c9;
  }
  49.9% {
    width: 50%;
    background-color: #c9c9c9;
  }
  50% {
    width: 0;
    background-color: #353535;
  }
  74.9% {
    width: 50%;
    background-color: #353535;
  }
  75% {
    width: 0%;
    background-color: #fff;
  }
  100% {
    width: 50%;
    background-color: #fff;
  }
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

div.load {
  position: relative;
  width: 100%;
  height: 4px;
}

