.libs-loader-parent
{
	position: relative;

	min-height: 100px;
}

.libs-loader-container
{
	position: absolute;
	z-index: 1;

	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.libs-loader-container.body
{
	position: fixed;
	z-index: 100001;
}

.libs-loader-container .libs-loader-overlay
{
	width: 100%;
	height: 100%;

	background: #fff;
}

.libs-loader-container .libs-loader-icon
{
	position: absolute;

	width: 40px;
	height: 40px;

	top: 50%;
	left: 50%;

	margin: -20px;
}

.libs-loader-container .libs-loader-icon.animated
{
	-webkit-animation: rotation .6s infinite linear;
	-moz-animation: rotation .6s infinite linear;
	animation: rotation .6s infinite linear;

	border: 6px solid rgba(0, 0, 0, .15);
	border-top-color: rgba(0, 0, 0, .8);

	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.libs-loader-container .libs-loader-icon.ie-not-cool
{
	background: url("ie-loader.gif") no-repeat center center;
}

@-webkit-keyframes rotation {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(359deg);}
}

@-moz-keyframes rotation {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(359deg);}
}

@keyframes rotation {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}