@keyframes indeterminate1Keyframe {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate2Keyframe {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@keyframes heart-beat {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes progress {
  from {
    width: 1%;
  }
  to {
    width: 99.9%;
  }
}
body {
  margin: 0;
}
#no-javascript {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8px;
  box-sizing: border-box;
}
#start-Loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 10000;
}
#start-LoadingBar-root {
  width: 100%;
}
#start-LoadingBarProgress-root {
  position: relative;
  overflow: hidden;
  display: block;
  height: 4px;
  z-index: 0;
  background-color: rgb(158, 175, 204);
}
#start-LoadingBarProgress-bar1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: transform 0.2s linear 0s;
  transform-origin: left;
  background-color: #0066ff;
  width: auto;
  animation: indeterminate1Keyframe 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
#start-LoadingBarProgress-bar2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: transform 0.2s linear 0s;
  transform-origin: left;
  background-color: #0066ff;
  width: auto;
  animation: indeterminate2Keyframe 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite;
}
#start-LoadingIndicator-root {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, #0066ff, #002e7a);
}
#start-LoadingIndicator-root img {
  height: 80px;
  width: auto;
  opacity: 1;
  animation: heart-beat 2s infinite;
}
#start-LoadingIndicator-imageContainer {
  height: 80px;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 500px) {
  #start-LoadingIndicator-root img {
    height: 60px;
  }
  #start-LoadingIndicator-imageContainer {
    height: 60px;
  }
}
