#loader {
  position: absolute;
  inset: 0;
  background: #f9f9f9 linear-gradient(261deg, rgb(250, 241, 238) 0%, rgb(242, 247, 249) 50%, rgb(248 243 254) 90%);
  text-align: center;
  app-region: drag;
}
#loader img {
  position: absolute;
  top: calc(50% - 120px);
  left: calc(50% - 120px);
  margin: 0 auto;
  height: 120px;
}
#loader span {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #263238;
  height: 120px;
}
#loader:after {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% + 100px);
  text-indent: -9999em;
  transform: translateZ(0);
  width: 40px;
  height: 40px;
  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 #dedede;
  border-left-color: #ce4fbf;
  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);
  }
}
