#preloader {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
    height: 100%;
	background-color:rgba(250,0,0,0);
/*	background-color:#fff;*/
	display: flex;
	justify-content:center;
	align-items: center;
  /* change if the mask should have another color then white */
    z-index: 99;
  /* makes sure it stays on top */
}
	
/*	------------外圈部份-------------------------------- */
.spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
	
/*--------------- */
.circle-border {
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63,249,220);
  background: linear-gradient(0deg, rgba(63,249,220,0.1) 33%, rgba(63,249,220,1) 100%);
  animation: spin .8s linear 0s infinite;
}

.circle-core {
  width: 95%;
  height: 95%;
  background-color: lightyellow;  /* #37474f;*/  /*#fff*/
  border-radius: 50%;
}
	
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
	
/*-------- ---------------------------  */
div .text{
    position: absolute;
    top: 41%;
    left: 0;
    right: 0;
    width: 4rem;
    margin: auto;
	padding-right: 25px;
	}
	
.circle-border:after{
		content: "";
		color: lightblue;
	}	
	
.text:after{
	margin-right: 10px;
	content: "";
	background-image:url(../images/okgirlpng.png); 
	background-size: 80px, 80px;
	background-repeat: no-repeat;
	display: inline-flex;
	width: 200px;
	height: 300px;
   
	}
/*--------loading 文字----------------------------  */
div .text2{
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    width: 4rem;
    margin: auto;
	padding-right: 5px;
	}

.text2:after{
	margin-right: 10px;
    color: red;
	content: "Loading";
    font-weight: bold;
    animation-name: myAnimation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
	}
	
@keyframes myAnimation {
		
  0% {content: "Loading";}
  25% {content:"Loading."}
  50%{content: "Loading.."}
  75%{content: "Loading..."}
	
	}
/* CSS Document */

