#loadingScreen {
  position: fixed;
  z-index: 100;
  background: black;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transform: translateY(0vh);
  transition: transform 1s cubic-bezier(.46,.06,.28,.99);
}

div#loadingScreen.away {
  transform: translateY(-110vh);
}

#loading {
  color: #707070;
  position: absolute;
  margin-top: 114px;
  font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;
  font-size: 1.5em;
  animation: fade 2s ease-in infinite;
}

#developed {
  color: #707070;
  position: absolute;
  bottom: 0;
  font-size: 0.7em;
  font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.loading-icon {
  /*
   width: 114px;
   height: 114px;
   border-radius: 200px;
   border: 3px solid #707070;
   */
   display: flex;
   justify-content: center;
   align-items: center;
}

.loading_bar {
  width: 102px;
  background: #707070;
  border-radius: 10px;
  height: 3px;
  display: block;
  animation: barAnimation 3s linear infinite;
  transform: translateZ(0);
}

.loading_bar:nth-child(2) {
  animation-delay: 0.25s;
}

.loading_bar:nth-child(3) {
  animation-delay: 0.5s;
}

.loading_bar:nth-child(4) {
  animation-delay: 0.75s;
}

.loading_bar:nth-child(5) {
  animation-delay: 1s;
}

.loading_bar:nth-child(6) {
  animation-delay: 1.25s;
}

@keyframes barAnimation {
  0% {
    transform: rotate(0deg) translateX(0px);
    width: 102px;
  }
  50% {
    transform: rotate(180deg) translateX(-5px);
    width: 33px;
  }
  100% {
    transform: rotate(360deg) translateX(0px);
    width: 102px;
  }
}

@keyframes mobileBarAnimation {
  0% {
    transform: rotate(0deg) translateX(0px);
    width: 72px;
  }
  50% {
    transform: rotate(180deg) translateX(-5px);
    width: 21px;
  }
  100% {
    transform: rotate(360deg) translateX(0px);
    width: 72px;
  }
}

@media only screen and (max-width: 768px) {

  .loading_bar {
    width: 72px;
    animation: mobileBarAnimation 3s linear infinite;
  }

}
