/* LOADER */
.loader {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999999999;
}

.loader_box {
	margin: auto;
	text-align: center;
	color: #ffffff;
	font-weight: 500;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.loader_box_animation {
	width : 65px;
	height: 65px;
	border-radius: 50%;
	display: inline-block;
	border-top:3px solid #fff;
	border-right:3px solid transparent;
	animation: rotation 1s linear infinite;
}

.loader_box_title {
	margin-top: 15px;
	font-weight: 600;
	color: #FFF;
}

@keyframes rotation {
	0% { transform: rotate(0deg) }
	100% { transform: rotate(360deg) }
}