#loader {
  position: absolute;
  inset: 0;
  background: #141a21;
  text-align: center;
  app-region: drag;
}
#loader img {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 85px);
  margin: 0 auto;
  height: 150px;
}
#loader span {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #263238;
  height: 90px;
}
#loader:after {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% + 50px);
  text-indent: -9999em;
  transform: translateZ(0);
  width: 30px;
  height: 30px;
  margin: auto;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.915rem;
  font-weight: 500;
  letter-spacing: 0.00914em;
  line-height: 1.57;
  border-radius: 50%;
  border: 4px solid #444b51;
  border-left-color: #ff2f92;
  box-sizing: border-box;
  -webkit-animation: animation 1.1s infinite linear;
  animation: animation 1.1s infinite linear;
}
@-webkit-keyframes animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
