
@keyframes loadScale {
  0% {
    width: 0%;
    margin-left: 20px;
  }

 100% {
    width: 100%;
  }
}

@keyframes loadColor {
  0% {
   fill: #eaeaea;
  }

  30% {
    fill: #21b0e6;
  }

  60% {
    fill: #9de0f4;
  }

  100% {
   fill: #eaeaea;
  }
}

body{
  background-color: white;
  margin: 0;
}

#loading_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

#loading_anim {
  width: 20%;
  height: 20%;
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}

#Laag_1 {
  overflow: hidden;
}

.cls-1{fill:#eaeaea;}
.cls-2{
  fill:#7d7d7d;
  animation-duration: 1.5s;
  animation-name: loadScale, loadColor;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
}

.fontsLoading {
  position: fixed;
  left: -1000px;
  bottom: -1000px;
}