/* loading */
body.loading {
  overflow: hidden;
}

.progress {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 99999;
}

.progress .progress-bar-wrap {
  display: none;
}

.progress .animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .progress .animation {
    top: 47%;
    transform: translate(-50%, -47%);
  }
}
.progress .animation img {
  width: 105px;
  height: 114px;
  display: none;
}

@media screen and (max-width: 767px) {
  .progress .animation img {
    width: 95px;
    height: 103px;
  }
}
