/*
DropZone
*/

#dropzone-demande {
	background-color : #EBEBEB;
	background-position: center;
	background-repeat: no-repeat;
	height : 200px !important;
    opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
	transition-property : opacity, filter;
	transition-duration : 0.5s;
	border-radius: 10px;
	padding: 15px;
	overflow: hidden;
}

.dropzone .dz-message {
	margin-top: calc((200px) / 2 - 36px) !important;
}

#dropzone-demande:hover {
    opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
	transition-property : opacity, filter;
	transition-duration : 0.5s;
}