@-webkit-keyframes scrollDown {
	0% {
		top: 14px;
		opacity: 0;
	}
	15% {
		top: 14px;
		opacity: 1;
	}
	30% {
		top: 14px;
		opacity: 1;
	}
	45% {
		top: 34px;
		opacity: 1;
	}
	100% {
		top: 34px;
		opacity: 0;
	}
}

@keyframes scrollDown {
	0% {
		top: 14px;
		opacity: 0;
	}
	15% {
		top: 14px;
		opacity: 1;
	}
	30% {
		top: 14px;
		opacity: 1;
	}
	45% {
		top: 34px;
		opacity: 1;
	}
	100% {
		top: 34px;
		opacity: 0;
	}
}

.scroll__down {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	display: inline-block;
	width: 56px;
	margin: auto;
	text-align: center;
	background-color: transparent;
	border: none;
}

.scroll__mouse {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 54px;
	margin: 0 auto;
	border: 2px solid #EEE;
	border-radius: 20px;
}

.scroll__wheel {
	position: absolute;
	top: 14px;
	left: 13px;
	width: 4px;
	height: 4px;
	background-color: #EEE;
	border-radius: 50%;
	-webkit-animation: scrollDown 2.5s infinite;
	animation: scrollDown 2.5s infinite;
}

/* ________________________ */

.loader_f{
    width: 100%;
    height: 100%;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
    z-index: 999999;
    background-color: rgba(255,255,255,0.5);
}

/* LOADER 1 */
#loader-1:before, #loader-1:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 3px solid transparent;
    border-top-color: #0051ea;
}

#loader-1:before{
	z-index: 100;
	animation: spin 1s infinite;
}

#loader-1:after{
	border: 3px solid #ccc;
}

@keyframes spin{
	0%{
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100%{
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}