@charset "UTF-8";






/* loading */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9000000;
  background-image: url(../../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading>div {
  position: relative;
  height: 1.5px;
  display: block;
  width: 300px;
  margin-top: 100px;
}

#loading .load-line {
  position: absolute;
  top: 0%;
  left: 0;
  width: 0px;
  height: 100%;
  height: 1.5px;
  background: #0075c1;
  -webkit-transition: all 1s .5s ease;
  transition: all 1s .5s ease;
}

@media (max-width: 1366px) {
  #loading>div {
    width: 200px;
    margin-top: 100px;
  }
  #loading {
    background-size: 180px;
  }
}

@media (max-width: 500px) {
  #loading {
    background-size: 65%;
  }
  #loading>div {
    width: 70%;
  }
}