.loader {
	border: 10px solid #f3f3f3;
	border-radius: 50%;
	border-top: 10px solid blue;
	border-bottom: 10px solid blue;
	width: 100px;
	height: 100px;
	margin-left: 50%;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#footer {
  padding-bottom: 10px;
  background-image: url(../images/footer.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
}

#footer h1{
  margin-bottom: 65px;
  margin-top: 36px;
}

#footer .bottom-separator {
  margin-bottom: 60px;
}

#team-online {
  /*padding: 85px 0;*/
  background-image: url(../images/backgroundvideo.png);
}