

.logo {

	position: relative;
	display: block;
	margin: auto;
	width:  160px;
	height:  160px;
	margin-bottom: 20px;
}

.logo .loader-circle {
	position: absolute;
	border-radius: 50%;
	width: 160px;
	height: 160px;
	background-color: white;
	-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .075);
	-moz-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .075);
}


.logo .loader-mask {
	position: absolute;
	overflow: hidden;
	-webkit-transform-origin: 80px 80px;
	transform-origin: 80px 80px;
	-webkit-mask-image: -webkit-linear-gradient(top, #000000, transparent);
	mask-image: linear-gradient(top, #000000, transparent);

}

body:not(.ie) .logo .loader-mask {
	-webkit-animation: rotate 1.5s infinite linear;
	animation: rotate 1.5s infinite linear;
}

.logo .loader-line {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.logo img {
	opacity: 0.5;
	width: 70px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
	}
}