.larakit-loader {
	position : relative;
	overflow : hidden;
}

.larakit-loader:after {
	display          : block;
	position         : absolute;
	content          : '';
	top              : 0;
	right            : 0;
	bottom           : 0;
	left             : 0;
	background-color : rgba(0, 0, 0, .8);
	border-radius    : 5px;
	z-index          : 99999999;
}

.larakit-loader:before {
	display     : block;
	position    : absolute;
	content     : '\f110';
	animation   : 2s linear 0s normal none infinite running fa-spin;
	font-family : 'FontAwesome';
	font-size   : 40px;
	color       : #ffffff;
	top         : 50%;
	left        : 50%;
	line-height : 40px;
	margin-left : -20px;
	margin-top  : -20px;
	z-index     : 999999998;
}