.app-loading {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.app-loading .logo img{
  width: 180px;
}

@media (min-width: 768px) {
  .app-loading .logo img{
    width: 220px;
  }
}

.app-loading .spinner {
  width: 260px;
  height: 260px;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 768px) {
  .app-loading .spinner {
    width: 320px;
    height: 320px;
  }
}

.app-loading .spinner .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: #ddd;
  stroke-width: 1;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}


.pointer{
  cursor: pointer;
}		

/* .label-tip{
  color: #848484;
} */
.form-label {
	font-size: 1.1rem;
}

.form-label span {
  font-size: 1rem;
}
.form-label .label-tip {
  color: #848484;
  font-size: 1rem;
  font-weight: 300;
  font-family: "PingFang TC", 微軟正黑體, "Microsoft JhengHei", sans-serif;
}

.brand-tip
{
  padding: 8px 16px;
  /* background-color: #c3c9cc; */
  border-radius: 4px;
  /* border-left: 5px solid #50bfff; */
  margin: 20px 0;
}