html,
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: unset;
}

.app-loading-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-loading-logo {
  width: 50%;
  max-width: 250px;
  margin-bottom: 50px;
}

.app-loading-container {
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  position: absolute;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.app-loading-image {
  height: 55px;
  margin: 16px;
}

.app-loading {
  position: relative;
  height: 140px !important;
  width: 140px !important;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.app-loading-center {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
  border: 9px solid #e4002b;
  overflow: hidden;
  box-sizing: border-box;
}

.app-loading::before {
  content: '';
  position: absolute;
  top: 210px;
  left: 26px;
  width: 100px;
  height: 32px;
  border-radius: 100%;
  background-color: rgb(222 225 228 / 40%);
}

.app-loading-wrap {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.app-loading-span::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 6px;
  background-color: #e4002b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.app-loading-span::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 20px;
  width: 36px;
  height: 12px;
  background-color: #e4002b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 0 4px 4px 0;
}

.box-1 {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box-2 {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* animation */

@keyframes rowup-1 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
}

@keyframes rowup-1 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
}

@keyframes rowup-2 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
}

@keyframes rowup-2 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
}

@keyframes cloud-loop {
  0% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes shadow-loop {
  0% {
    -webkit-transform: translate(0, -35px) scale(1.15, 0.25);
    transform: translate(0, -35px) scale(1.15, 0.25);
  }

  100% {
    -webkit-transform: translate(0, -35px) scale(1, 0.25);
    transform: translate(0, -35px) scale(1, 0.25);
  }
}

@keyframes shadow-loop {
  0% {
    -webkit-transform: translate(0, -35px) scale(1.15, 0.25);
    transform: translate(0, -35px) scale(1.15, 0.25);
  }

  100% {
    -webkit-transform: translate(0, -35px) scale(1, 0.25);
    transform: translate(0, -35px) scale(1, 0.25);
  }
}

.box-1 {
  -webkit-animation: 4s rowup-1 linear infinite normal;
  animation: 4s rowup-1 linear infinite normal;
}

.box-2 {
  -webkit-animation: 4s rowup-2 linear infinite normal;
  animation: 4s rowup-2 linear infinite normal;
}

.app-loading-center {
  animation-name: cloud-loop;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
}

.app-loading-span {
  position: relative;
  left: 112px;
  top: 60px;
  animation-name: cloud-loop;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
}

.app-loading::before {
  animation-name: shadow-loop;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
}
