#loader {
  position: absolute;
  inset: 0;
  background: #fff;
  text-align: center;
  app-region: drag;
}
#loader img {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 30px);
  margin: 0 auto;
  height: 60px;
}

/*#loader {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: #fff;*/
/*  text-align: center;*/
/*  app-region: drag;*/
/*}*/
/*#loader img {*/
/*  position: absolute;*/
/*  top: calc(50% - 50px);*/
/*  left: calc(50% - 50px);*/
/*  margin: 0 auto;*/
/*  height: 100px;*/
/*}*/
#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% - 10px);
  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: 3px solid #dedede;
  border-left-color: #ee9c24;
  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);
  }
}
