/*
    loading.css
    web-communication.eu | 14/04/2016
    Copyright 2016 web-communication.eu
*/


#light {
	position:              absolute;
	top:                   0;
	left:                  0;
	display:               none;
	z-index:               100000;
}

.white {
	background-color:      rgba(255,255,255,0.80);
}
.black {
	background-color:      rgba(0,0,0,0.80);
}
.dark {
	background-color:      #000000;
}

#loading {
	position:         		fixed;
	width:              	60px;
	height:             	60px;
	left:               	50%;
	top:                	50%;
	margin-left:        	-30px;
	margin-top:        		-60px;
	display:            	none;
	z-index:            	100001;
}	 	
	
#loading img {
	max-width:				60px;
}	






/* Spinner 1 */
.spinner-1:before {
  content: "";
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  border: 3px solid lightgray;
  border-top-color: coral;
  animation: spinner 0.7s linear infinite;
  z-index:            	100001;
}

/* Spinner 2 */
.spinner-2:before {
  content: "";
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -50px;
  margin-left: -30px;
  border-radius: 50%;
  border: 7px solid transparent;
  border-top-color: #318BFF;/*coral;*/
  border-bottom-color: #318BFF;/*coral;*/
  animation: spinner 0.7s ease infinite;
  z-index:            	100001;
}

/* Spinner 3 */
.spinner-3:before {
  content: "";
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  border-top: 5px solid #318BFF;/*coral;*/
  border-right: 5px solid transparent;
  animation: spinner 0.7s linear infinite;
  z-index:            	100001;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}