#unsupported-browser {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 24px;
  box-sizing: border-box;
  text-align: center;
  background: #f7f8fa;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", PingFang SC, Microsoft YaHei, sans-serif;
}

#unsupported-browser .logo {
  width: 116px;
  height: auto;
  margin-bottom: 36px;
}

#unsupported-browser h1 {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1.24;
  color: #2f3540;
  font-weight: 500;
}

#unsupported-browser p,
#unsupported-browser .action {
  margin: 0;
  color: #676d78;
  line-height: 1.8;
  font-size: 17px;
}

#unsupported-browser .action {
  margin-top: 4px;
}

#unsupported-browser .link {
  color: #5a7bfc;
}

app-root,
.preloader {
  display: none;
}

.browser-supported app-root,
.browser-supported .preloader {
  display: block;
}

.browser-supported #unsupported-browser {
  display: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #49a9ee;
  z-index: 9999;
  transition: opacity .65s;
}

.preloader-hidden-add {
  opacity: 1;
  display: block;
}

.preloader-hidden-add-active {
  opacity: 0;
}

.preloader-hidden {
  display: none;
}

.cs-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cs-loader-inner {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: 100%;
  color: #fff;
  text-align: center;
}

.cs-loader-inner label {
  font-size: 20px;
  opacity: 0;
  display: inline-block;
}

@keyframes lol {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }

  33% {
    opacity: 1;
    transform: translateX(0);
  }

  66% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}

.cs-loader-inner label:nth-child(6) {
  animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
  animation: lol 3s .1s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
  animation: lol 3s .2s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
  animation: lol 3s .3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
  animation: lol 3s .4s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
  animation: lol 3s .5s infinite ease-in-out;
}