/*
 *  jquery-easy-loading - v1.3.0
 *  Easily add and manipulate loading states of any element on the page
 *  http://github.com/CarlosBonetti/jquery-loading
 *
 *  Made by Carlos Bonetti <carlosb_bc@hotmail.com>
 *  Under MIT License
 */
/* This CSS file just define some default styles and loaders */
/* You don't need to include it if you're working with your custom overlay loader element */
.loading-overlay {
	display: table;
	opacity: 0.9;
}

.loading-overlay-content {
	font-family: 'burncoose';
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 3em;
	font-weight: normal;
	text-align: center;
	display: table-cell;
	vertical-align: top;
	color: #4a6365;
	padding-top: 4em;
}

.loading-overlay.loading-theme-light {
	background-color: #fff;
	color: #000;
}

.loading-overlay.loading-theme-dark {
	background-color: #000;
	color: #fff;
}
