<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes loading-opacity {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  10% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  90% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.fxs-splashscreen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  background-color: #004ab5;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.fxs-splashscreen &gt; div {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.fxs-splashscreen .fxs-splashscreen-logo {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.fxs-splashscreen-loader-container {
  margin-top: 16px;
}

.fxs-splashscreen-loader-container &gt; div {
  margin-left: 10px;
}

.fxs-splashscreen-loader-container &gt; div::after {
  height: 10px;
  width: 10px;
  background: #fff;
}

.fxs-loading5dots-container {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.fxs-loading5dots-container &gt; div {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  margin-right: -100%;
  -webkit-animation: loading 3s cubic-bezier(0, 0.95, 1, 0.05) infinite, loading-opacity 1.5s ease-in-out infinite alternate;
  animation: loading 3s cubic-bezier(0, 0.95, 1, 0.05) infinite, loading-opacity 1.5s ease-in-out infinite alternate;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fxs-loading5dots-container &gt; div:nth-child(1) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fxs-loading5dots-container &gt; div:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fxs-loading5dots-container &gt; div:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.fxs-loading5dots-container &gt; div:nth-child(4) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.fxs-loading5dots-container &gt; div::after {
  content: '';
  display: block;
  border-radius: 50%;
}

.fxs-splashscreen .logo {
  background: url(./control-tower-logo.svg) no-repeat center;
  background-size: 100%;
  width: 75px;
  height: 75px;
}

.ane-loader-issue {
  font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue',
    sans-serif;
  color: #fff;
}

.ane-loader-issue a {
  color: #fff;
}

.ane-loader-issue h1,
.ane-loader-issue h2,
.ane-loader-issue h3,
.ane-loader-issue h4,
.ane-loader-issue h5,
.ane-loader-issue h6,
.ane-loader-issue p {
  margin: 0;
}

.ane-loader-issue p {
  margin-bottom: 10px;
}
</pre></body></html>