[type=file] {
	position: absolute;
	filter: alpha(opacity=0);
	opacity: 0;
}
[type=file] + label {
	padding-left: 0px;
	padding-right: 0px;
	width: 100px;
	font-weight: normal;
	text-align: center;
	z-index: 1;
	position:relative;
	cursor: pointer;

}
[type=file] + label:hover {
	background: -webkit-gradient(
			linear,
			left top, left bottom,
			from(#dff3fc),
			to(#98d2f3)
	)
}
.box_upload {
	position: absolute;
	top: 7px;
	right: 6px;
	cursor: pointer;
}

.loader {
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #3498db;
	border-bottom: 5px solid #3498db;
	width: 28px;
	height: 28px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin: auto;
}

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

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