/*
    overlight.css
	web-communication.eu | 04/06/2018
    Copyright 2018 web-communication.eu
*/


.hidescroll {
		overflow: 				hidden;
}	
	


#page {
		position: 				absolute;
		width: 					100%;
		top: 					0;
		left:					0;
		/*background: #000;*/
}



#overlight {
		position: 				fixed;
		display: 				none;
		top: 					0;
		left:					0;
		z-index: 				2;
}


#overlight.black {
		display: 				block;
		background-color:      	rgba(0,0,0,0.50);
}

#overlight.white {
		display: 				block;
		background-color:      	rgba(255,255,255,0.80);
}


/* 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: 6px solid #ffffff;
  border-top-color: transparent;
  animation: spinner 0.9s linear infinite;
  z-index:            	1000;
}

/* 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.9s ease infinite;
  z-index:            	1000;
}

/* 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: 8px solid #FFFFFF;/*coral;*/
  border-right: 8px solid transparent;
  animation: spinner 0.9s linear infinite;
  z-index:            	1000;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
