#menu_container_load_box {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px !important;
}

.menu_container_load_tip {
  color: #f98600;
}

.menu_container_load_stripe {
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
}

.menu_container_load_stripe span {
  width: 10px;
  height: 10px;
  margin: 0 1px;
  display: inline-block;
  vertical-align: middle;
  background: #f98600;
  animation: menu_container_load_stripe 1.5s infinite ease-in-out;
}

.menu_container_load_stripe span:nth-child(2) {
  animation-delay: 0.2s;
}

.menu_container_load_stripe span:nth-child(3) {
  animation-delay: 0.4s;
}

.menu_container_load_stripe span:nth-child(4) {
  animation-delay: 0.6s;
}

.menu_container_load_stripe span:nth-child(5) {
  animation-delay: 0.8s;
}

.menu_container_load_bounce {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  font-size: 14px !important;
}

.menu_container_load_letter {
  animation: menu_container_load_bounce 0.75s cubic-bezier(0.05, 0, 0.2, 1) infinite alternate;
  display: inline-block;
  transform: translate3d(0, 0, 0);
  margin-top: 0.5em;
  text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em;
  font: normal 500 6rem "Varela Round", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.menu_container_load_letter:nth-child(1) {
  animation-delay: 0s;
}

.menu_container_load_letter:nth-child(2) {
  animation-delay: 0.2s;
}

.menu_container_load_letter:nth-child(3) {
  animation-delay: 0.4s;
}

.menu_container_load_letter:nth-child(4) {
  animation-delay: 0.6s;
}

.menu_container_load_letter:nth-child(5) {
  animation-delay: 0.8s;
}

.menu_container_load_letter:nth-child(6) {
  animation-delay: 0.4166666667s;
}

@keyframes menu_container_load_stripe {
  0% {
    height: 10px;
    background: #f98600;
  }

  25% {
    height: 60px;
    background: #f98600;
  }

  50% {
    height: 10px;
    background: #f98600;
  }

  100% {
    height: 10px;
    background: #f98600;
  }
}

@keyframes menu_container_load_bounce {
  0% {
    transform: translate3d(0, 0, 0);
    text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em;
  }

  100% {
    transform: translate3d(0, -14px, 0);
    text-shadow: rgba(255, 255, 255, 0.4) 0 1em 0.35em;
  }
}
