.no-js #loader { display: none;  }
.js #loader {
     display: block;
     position: absolute;
     left: 100px;
     top: 0; 
}
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #256350;
    text-align: center;
}
.loading-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 200px;
  height: 100px;
  line-height: 100px;
}
.loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-family: 'YesevaOne', serif;
  font-size: 14px;
}
.loading-text span:nth-child(1) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1s 0s infinite linear alternate;
          animation: blur-text 1s 0s infinite linear alternate;
}
.loading-text span:nth-child(2) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1s 0.2s infinite linear alternate;
          animation: blur-text 1s 0.2s infinite linear alternate;
}
.loading-text span:nth-child(3) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1s 0.4s infinite linear alternate;
          animation: blur-text 1s 0.4s infinite linear alternate;
}
.loading-text span:nth-child(4) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1s 0.6s infinite linear alternate;
          animation: blur-text 1s 0.6s infinite linear alternate;
}
.loading-text span:nth-child(5) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1s 0.8s infinite linear alternate;
          animation: blur-text 1s 0.8s infinite linear alternate;
}
.loading-text span:nth-child(6) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1s 1s infinite linear alternate;
          animation: blur-text 1s 1s infinite linear alternate;
}
.loading-text span:nth-child(7) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1s 1.2s infinite linear alternate;
          animation: blur-text 1s 1.2s infinite linear alternate;
}

@-webkit-keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}

@keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}


.loading {
    position: absolute;
    top: 40px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 200px;
    height: 100px;
    line-height: 100px;
}

/* loading-進度條-灰 */
.loading-line-low {
    transform: translate(-50% , -50%);
    width: 100%;
    background-color: rgb(255 255 255 / 40%);
    position: absolute;
    top: 53%;
    left: 50%;
    height: 2px;
}

/* loading-進度條-白 */
.loading-line-High{
  position: absolute;
  transform: translate(-0% , -50%);
  width: 0px;
  height: 2px;
  background-color: rgb(255 255 255 / 68%);
  animation: animation-line-LightColor 1s forwards ease-in-out;
  top: 53%;
  left: 0%;
}  

/* Animation Line LightColor*/
@keyframes animation-line-LightColor {
    0%{
        padding-right: 0;
    }
    100%{
        padding-right: 100%;
    }
}

