/* ----------------------------------------------------------------------------
// Ezdz [izy-dizy]
// v0.5.1 - released 2016-05-10 14:52
// Licensed under the MIT license.
// https://github.com/jaysalvat/ezdz
// ----------------------------------------------------------------------------
// Copyright (C) 2016 Jay Salvat
// http://jaysalvat.com/
// ---------------------------------------------------------------------------*/

.fieldInnerwrapImageInput img {
	margin-left: 10px;
}

.ezdz-dropzone {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    font: bold 24px arial;
    line-height: 150px;
    color: lightgray;
    text-align: center;
    border: 2px dotted lightgray;
    -webkit-transition: all 0.5s;
  	-moz-transition: all 0.5s;
  	-ms-transition: all 0.5s;
  	-o-transition: all 0.5s;
  	transition: all 0.5s;
}/*
.ezdz-dropzone > div {
	height: 100%;
	line-height: 100%;
}*/
.ezdz-dropzone.ezdz-accept > div {
	height: 100%;
	line-height: 100%;
	padding: 5px;
}
.ezdz-dropzone img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.ezdz-dropzone [type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0
}
.ezdz-dropzone:hover, .ezdz-focus, .ezdz-enter, .ezdz-accept {
	border-color: gray;
	color: gray;	
}
.ezdz-reject {
    border-color: #cc0000;
	color: #cc0000;
}

.ezdz-dropzone span {
    display: inline-block;
    max-width: 90%;
    padding: 4%;
    overflow: hidden;
    font-size: 13px;
    font-weight: normal;
    line-height: 10px;
    color: white;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    background: black;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px
}
@media screen and (max-width: 480px) {
	.ezdz-dropzone {
    	height: 80px;
    	font: bold 18px arial;
    	line-height: 80px;
   	}
	.fieldInnerwrapImageInput img {
		height: 80px;
	}
}