.loadingAnim {
  position: fixed;
  z-index: 1000000000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  background-color: #1A1A1A;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  opacity: 0;
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 150px;
  height: 1.25em;
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #fff;
  will-change: transform, width;
}

.loadingAnim_line:before {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: 'LOADING';
  -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
  animation: loadingAnim_text 1s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}

.loaded .loading-logo,
.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

/********************
animation setting
********************/
@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: .5;
    color: #fff;
  }
}

@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: .5;
    color: #fff;
  }
}

/* =================================================
 logo setting
================================================= */
.loading-logo {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading-logo svg {
  width: 100%;
  max-width: 742px;
  max-height: 110px;
  overflow: inherit;
}

@media (min-width: 100px) and (max-width: 768px) {
  .loading-logo svg {
    padding-left: 7vw;
    padding-bottom: 8vw;
  }
}

.loading-logo text {
  stroke: white;
  fill: white;
  font-size: 10rem;
  stroke-dasharray: 150% 150%;
  stroke-width: 0.5px;
  -webkit-animation: stroke-anim 4.5s linear;
  animation: stroke-anim 4.5s linear;
  font-family: 'Times New Roman',serif;
  font-weight: normal;
  text-shadow: 5px 5px 0px rgba(181, 181, 181, 0.5);
  /*letter-spacing: 0.5rem;*/
  text-anchor: start;
}

.loading-logo text:first-letter {
  font-size: 40rem;
}

@media (min-width: 100px) and (max-width: 768px) {
  .loading-logo text {
    font-size: 13vw;
  }
}

.loading-logo .text-mask {
  stroke: transparent;
}

@-webkit-keyframes stroke-anim {
  0% {
    stroke-dashoffset: 150%;
    fill: transparent;
    text-shadow: 5px 5px 0px rgba(181, 181, 181, 0);
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0%;
    fill: white;
    text-shadow: 5px 5px 0px rgba(181, 181, 181, 0.5);
  }
}

/*# sourceMappingURL=maps/loading.css.map */
