#load {
  width: 100%;
  height: 100vh;
  
  opacity: 0;
  pointer-events: none;

  transition: opacity linear .1s;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  -webkit-box-orient: vertical;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  background-color: rgba(0, 0, 0, .9);

  color: white;
  font-size: 0.8em;
}
#load.open {
  opacity: 1;
  pointer-events: all;
}

.lds-spinner {
  margin-bottom: 20px;
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-spinner div {
  -webkit-transform-origin: 32px 32px;
  transform-origin: 32px 32px;
  -webkit-animation: lds-spinner-old 0.6s linear infinite;
  animation: lds-spinner 0.6s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div.nth-child-1{
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);

  -webkit-animation-delay: 1100ms;
  animation-delay: -0.55s;
}
.lds-spinner div.nth-child-2{
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  
  -webkit-animation-delay: 1000ms;
  animation-delay: -0.5s;
}
.lds-spinner div.nth-child-3{
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  
  -webkit-animation-delay: 900ms;
  animation-delay: -0.45s;
}
.lds-spinner div.nth-child-4{
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  
  -webkit-animation-delay: 800ms;
  animation-delay: -0.4s;
}
.lds-spinner div.nth-child-5{
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  
  -webkit-animation-delay: 700ms;
  animation-delay: -0.35s;
}
.lds-spinner div.nth-child-6{
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  
  -webkit-animation-delay: 600ms;
  animation-delay: -0.3s;
}
.lds-spinner div.nth-child-7{
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  
  -webkit-animation-delay: 500ms;
  animation-delay: -0.25s;
}
.lds-spinner div.nth-child-8{
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
  
  -webkit-animation-delay: 400ms;
  animation-delay: -0.2s;
}
.lds-spinner div.nth-child-9{
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
  
  -webkit-animation-delay: 300ms;
  animation-delay: -0.15s;
}
.lds-spinner div.nth-child-10{
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  
  -webkit-animation-delay: 200ms;
  animation-delay: -0.1s;
}
.lds-spinner div.nth-child-11{
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
  
  -webkit-animation-delay: 100ms;
  animation-delay: -0.05s;
}
.lds-spinner div.nth-child-12{
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
  
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes lds-spinner-old {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}