
#loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1e1e1e;
  display: none;
}

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: none;
}

.load hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite;
}

.load :first-child {
    background: #fff;
    animation-delay: -1.5s;
}

.load :nth-child(2) {
    background: #41786f;
    animation-delay: -1s;
}

.load :nth-child(3) {
    background: #fff;
    animation-delay: -0.5s;
}

.load :last-child {
    background: #41786f;
}

.js .load, .js #loader-wrapper {
  display: block;
}
