div.preload {
  display: none;
}
.browser-testing {
  display: flex;
  flex: 1;
  justify-content: space-around;
}
.loading-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #4c5673;
  transform: translate(-50%, -50%);
}
.chrome-link {
  text-underline-offset: 6px !important;
  font-weight: bold !important;
  font-style: oblique !important;
  color: gold !important;
}
.firefox-link {
  text-underline-offset: 6px !important;
  font-weight: bold !important;
  font-style: oblique !important;
  color: orange !important;
}
.loading-border {
  padding: 0.5em;
  border-color: #e0e1e277;
  border-style: groove;
  border-width: 1px;
}
.service-worker-state {
  font-size: 1.1em;
  background-color: #6e970999;
  padding: 3px 3px 3px 3px;
}
.loading-text {
  margin: 0.5em;
  text-align: center;
  color: white;
}
.sk-cube-grid {
  position: relative;
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background-image: url('/icons/app/logo.svg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.sk-cube-grid .sk-cube {
  border-top-left-radius: 9px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 6px;
  width: 33%;
  height: 33%;
  background-color: #6e9709ff;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    background-color: #6e9709ff;
    border-top-left-radius: 9px;
    border-bottom-right-radius: 9px;
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    background-color: #6e970933;
    border-top-left-radius: 1px;
    border-bottom-right-radius: 1px;
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    background-color: #6e9709ff;
    border-top-left-radius: 9px;
    border-bottom-right-radius: 9px;
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    background-color: #6e970933;
    border-top-left-radius: 1px;
    border-bottom-right-radius: 1px;
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
.sk-period1 {
  -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
  animation-duration: 5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: mymove;
}
.sk-period2 {
  -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
  animation-duration: 5s;
  animation-timing-function: ease;
  animation-delay: 0.1s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: mymove;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
  50% {
    font-size: 0.1em;
  }
}

/* Standard syntax */
@keyframes mymove {
  50% {
    font-size: 1em;
  }
}
