/****** PLACE YOUR CUSTOM STYLES HERE ******/

.ChText {
	font-family: "Microsoft JhengHei", 微軟正黑體;
}

.tText-12 {
	font-family: "Microsoft JhengHei", 微軟正黑體, "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
}
.tText-14 {
	font-family: "Microsoft JhengHei", 微軟正黑體, "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
}

.image-g01 {
	max-height: 160px;
	padding-right: 20px;
	padding-bottom: 20px;
}

.select-option_P1 {
  position: relative;
  cursor: pointer;
  height: 50px;
  overflow: hidden;
  margin-bottom: 24px;
  width:210px;
  margin: 0px auto;
}
.select-option_P1 i {
  position: absolute;
  font-size: 18px;
  right: 20px;
  top: 14px;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  cursor: pointer;
}
.select-option_P1:focus i {
  color: #fff;
}
.select-option_P1 select {
  margin-bottom: 0;
}


/*
We set the element we are applying our loading mask to relative  
*/
.loading-mask {
  position: relative;
  min-height: 300px;
}

/*
Because we set .loading-mask relative, we can span our ::before  
element over the whole parent element  
*/
.loading-mask::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

/*
Spin animation for .loading-mask::after  
*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/*
The loading throbber is a single spinning element with three  
visible borders and a border-radius of 50%.  
Instead of a border we could also use a font-icon or any  
image using the content attribute.  
*/
.loading-mask::after {
  content: "";
  position: absolute;
  border-width: 3px;
  border-style: solid;
  border-color: transparent rgb(255, 255, 255) rgb(255, 255, 255);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  animation: 2s linear 0s normal none infinite running spin;
  filter: drop-shadow(0 0 2 rgba(0, 0, 0, 0.33));
}

.alert-stander {
    border: 1px solid #333;
    color: #333;
}