
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    margin: 0;
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    overflow: hidden;
    scroll-behavior: smooth;
}
body.light-mode .loader-wrapper {
  background-color: #EEEEEE;
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 51%;
    height: 100%;
    background: #222222;
    z-index: 9000;
}
h1 {
    color: #EEEEEE;
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
 
#loader-wrapper .loader-section.section-right {
    right: 0;
}
.loader {
  display: inline-block;
  width: 8vh;
  height: 8vh;
  position: relative;
  border: 4px solid #056722;
  animation: loader 2s infinite ease;
  z-index: 9004;
}
body.light-mode .loader {
  border: 4px solid #056722;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #056722;
  animation: loader-inner 2s infinite ease-in;
}
body.light-mode .loader-inner {
  background-color: #056722;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}
.loader-text {
  position: fixed;
  margin-top: 20vh;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.loudelement2 {
  width: 9px;
  background-color: #056722;
  border-radius: 4px;
  margin: 0px 3px 0px 3px;
  box-shadow: 0px 0px 76px 9px #056722;
}
body.light-mode .loudelement2 {
  background-color: #111;
  box-shadow: 0px 0px 76px 9px #111;
}
#loudelement21 {animation: loud2E1 0.8s;animation-iteration-count: infinite;}
#loudelement22 {animation: loud2E2 0.8s;animation-iteration-count: infinite;}
#loudelement23 {animation: loud2E3 0.8s;animation-iteration-count: infinite;}
#loudelement24 {animation: loud2E4 0.8s;animation-iteration-count: infinite;}
#loudelement25 {animation: loud2E5 0.8s;animation-iteration-count: infinite;}
@keyframes loud2E1 {
  0% {height: 30%;}
  20% {height: 20%;}
  40% {height: 20%;}
  60% {height: 30%;}
  80% {height: 40%;}
  100% {height: 30%;}
}
@keyframes loud2E2 {
  0% {height: 40%;}
  20% {height: 30%;}
  40% {height: 20%;}
  60% {height: 20%;}
  80% {height: 30%;}
  100% {height: 40%;}
}
@keyframes loud2E3 {
  0% {height: 30%;}
  20% {height: 40%;}
  40% {height: 30%;}
  60% {height: 20%;}
  80% {height: 20%;}
  100% {height: 30%;}
}
@keyframes loud2E4 {
  0% {height: 20%;}
  20% {height: 30%;}
  40% {height: 40%;}
  60% {height: 30%;}
  80% {height: 20%;}
  100% {height: 20%;}
}
@keyframes loud2E5 {
  0% {height: 20%;}
  20% {height: 20%;}
  40% {height: 30%;}
  60% {height: 40%;}
  80% {height: 30%;}
  100% {height: 20%;}
}