/* ============================================================
LOADING
============================================================ */
/*.complete {
	overflow: auto;
}*/
.all-page-loading#progress {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1615;
  color: #ffffff;
}
.all-page-loading .progress-bar-inner{
position: absolute;
  left: calc(50% - 140px);
  top: calc(50% - 18px);
  width: 280px;
  height: 5px;
  background-color: none;
}
.all-page-loading .progress-inner {
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background-color: none;
  /*overflow: hidden;*/
}

.all-page-loading .progress-bar {
  position: absolute;
  bottom: 0;
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(90.59deg, #2755FF 48.81%, #00A8FF 99.86%);
}
.all-page-loading .progress-bar::before {
  content:"";
  position: absolute;
  border-radius: 8px;
  width:280px;
  bottom: 0;
  height: 12px;
  background-color: #FFFFFF4D;
}

.all-page-loading .progress-inner .progress-text {
  /*display: none;*/
  color: #fff;
  font-size: 1em;
  position: absolute;
  z-index: 11112;
  width: 50px;
  line-height: 50px;
  text-align: center;
  bottom: 0;
  transform: unset;
}

.all-page-loading .progress-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 136px;
  height: 136px;
  background: url("../img/loading.gif") no-repeat;
  background-size: 100%;
  background-position: center;
}

.all-page-loading .progress-complete .progress-bar {
  background-color: #0C1615;
}

/* 轉圈圖飾 */
.spinner {
    border-color: #1b62b4 rgba(0, 0, 0, .07) #1b62b4 rgba(0, 0, 0, .07) !important;
}
.spinner:after {
    border-color: transparent #fff transparent #fff;
    -moz-animation: rotate 4s linear infinite;
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}
.spinner, .spinner:after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: inline-block;
    margin-top: -39px;
    margin-left: -39px;
    width: 70px;
    height: 70px;
    border: 4px solid;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
    -ms-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}