@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
/*-----------------------------------------------------------*/
/* loader 01 */
.loader_circle01 {
  background: #000;
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.loader_circle01-header {
  bottom: 0;
  height: 35px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  z-index: 99999;
}

.loader_circle01-inner {
  bottom: 0;
  height: 0px;
  /*60px*/
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader_circle01-line-wrap {
  -webkit-animation: spin 2000ms cubic-bezier(0.175, 0.885, 0.32, 1.275)
    infinite;
  animation: spin 2000ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  width: 100px;
}

.loader_circle01-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader_circle01-line-wrap:nth-child(1) {
  -webkit-animation-delay: -50ms;
  animation-delay: -50ms;
}

.loader_circle01-line-wrap:nth-child(2) {
  -webkit-animation-delay: -100ms;
  animation-delay: -100ms;
}

.loader_circle01-line-wrap:nth-child(3) {
  -webkit-animation-delay: -150ms;
  animation-delay: -150ms;
}

.loader_circle01-line-wrap:nth-child(4) {
  -webkit-animation-delay: -200ms;
  animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
  -webkit-animation-delay: -250ms;
  animation-delay: -250ms;
}

.loader_circle01-line-wrap:nth-child(1) .loader-line {
  border-color: hsl(0, 80%, 60%);
  height: 90px;
  width: 90px;
  top: 7px;
}

.loader_circle01-line-wrap:nth-child(2) .loader-line {
  border-color: hsl(60, 80%, 60%);
  height: 76px;
  width: 76px;
  top: 14px;
}

.loader_circle01-line-wrap:nth-child(3) .loader-line {
  border-color: hsl(120, 80%, 60%);
  height: 62px;
  width: 62px;
  top: 21px;
}

.loader_circle01-line-wrap:nth-child(4) .loader-line {
  border-color: hsl(180, 80%, 60%);
  height: 48px;
  width: 48px;
  top: 28px;
}

.loader_circle01-line-wrap:nth-child(5) .loader-line {
  border-color: hsl(240, 80%, 60%);
  height: 34px;
  width: 34px;
  top: 35px;
}

@-webkit-keyframes spin {
  0%,
  15% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0%,
  15% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* loader 02 */

/*
* {
    box-sizing: border-box;
    overflow: hidden;
}

body {
    padding-top: 10em;
    text-align: center;
}
*/
.loader_wave01_panel {
  margin: auto;
  background: #000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 20em;
  /*離上面的距離*/
  text-align: center;
}

.loader_wave01 {
  position: relative;
  margin: 0 auto;
  width: 350px;
  color: white;
  /*文字顏色*/
  font-family: "Roboto Condensed", sans-serif;
  font-size: 250%;
  background: linear-gradient(
    180deg,
    var(--main-fg-color) 0,
    var(--main-bg-color) 100%
  );
  box-shadow: inset 0 5px 20px black;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  /*
    */
}

.loader_wave01:after {
  content: "";
  display: table;
  clear: both;
}

/*
span {
    float: left;
    height: 100px;
    line-height: 120px;
    width: 50px;
}
        */

.loader_wave01 > span {
  float: left;
  height: 100px;
  line-height: 120px;
  width: 48px;
  border-left: 1px solid #444;
  border-right: 1px solid #222;
}

.covers {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.covers span {
  float: left;
  height: 100px;
  line-height: 120px;
  width: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0, #ddd 100%);
  animation: up 2s infinite;
}

@keyframes up {
  0% {
    margin-top: 0;
  }

  16% {
    margin-top: 23%;
    height: 20px;
  }

  50% {
    margin-top: 0;
  }

  100% {
    margin-top: 0;
  }
}

.covers span:nth-child(2) {
  animation-delay: 0.142857s;
}

.covers span:nth-child(3) {
  animation-delay: 0.285714s;
}

.covers span:nth-child(4) {
  animation-delay: 0.428571s;
}

.covers span:nth-child(5) {
  animation-delay: 0.571428s;
}

.covers span:nth-child(6) {
  animation-delay: 0.714285s;
}

.covers span:nth-child(7) {
  animation-delay: 0.857142s;
}

/* 靜態 Loading 遮罩樣式 (Extracted from HTML) */
#initial-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.3s ease-out;
}

#initial-loader .scan {
  text-align: center;
}

#initial-loader img {
  width: 300px;
  height: 300px;
  margin-bottom: 10px;
}

#initial-loader .loading-text {
  font-size: 60px;
  color: #92bfff;
  font-family: sans-serif;
  font-weight: bold;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
