html {
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

body {
  background-color: #002140;
  height: 100vh;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

*::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: #007def;
  background-clip: content-box;
  border: 2px solid transparent;
  border-radius: 10px;
  margin: 0 0;
}

*::-webkit-scrollbar-thumb {
  background: #007def;
  border-radius: 10px;
}

.c-axs-avatar {
  letter-spacing: -1px;
}
div#navbar-loader {
  position: absolute;
}
div#navbar-loader.active {
  position: absolute;
  width: 100vw;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(0, 125, 239, 0) 0,
    rgba(0, 125, 239, 0.8) 50%,
    rgba(0, 125, 239, 0) 100%
  );
  z-index: 1000;
  top: 63px;

  background-repeat: no-repeat;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: -1600px 0;
  }
  100% {
    background-position: 1600px 0;
  }
}

.platform-alert {
  width: 100%;
  text-align: center;
  font-size: 22px;
  color: #007def;
  padding: 24px;
  margin: 200px auto 0;
  font-family: Lato, sans-serif;
  display: none;
}

.platform-alert button {
  font-size: 16px;
  display: block;
  appearance: none;
  color: white;
  background-color: #007def;
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin: 24px auto;
}

#loader {
  color: #798daa;
  margin-top: 200px;
  width: 100%;
  font-size: 22px;
  font-family: Lato, sans-serif;
  text-align: center;
}
