.dropzone {
    background: white;
    border-radius: 5px;
    max-width: 540px;
    margin:50px auto;
    padding: 0 0;
    height: auto;
    min-height: 50px;
}

/* Custom css */
.dropzone.dz-clickable{
    cursor: pointer;
    font-size: larger;
    background-color: #0000001a;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    border: 5px dashed #cccccc;
    border-radius: 12px;
}
.dropzone .camera-img{
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 15px;
    position: absolute;
    left: 0;
}
.dropzone .img-circle{position: relative;display: inline-block;padding-left: 45px;}
.dropzone .camera-img img{
    width: 100%;
    height: 100%;
    display: block;
}

.dropzone .dz-preview .dz-details .dz-filename span {
    color: #ffffff;
    background: transparent;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span{
    color: #000000;
    background-color: rgb(255,255,255);
}

.dropzone .dz-message{margin: 30px;}
.dropzone .dz-preview .dz-details .dz-size{display: none;}
.dropzone .dz-preview .dz-details{
    height: 50px;
    min-height: 50px;
    padding:0;
    padding-left: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    opacity: 1;
    justify-content: space-between;
}
.dropzone .dz-preview.image__open .dz-details{
    padding-left: 55px;
}
.dropzone .dz-preview{width: 100%;height: 50px;min-height: 50px;margin: 0;}
.dropzone .dz-preview .dz-progress{
    left: -1px;
    right: -1px;
    margin: 0;
    top: -5px;
    height: 5px;
    background: #608b78;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: auto;
}
.dropzone .dz-preview .dz-image{
    height: 50px;
    width: 50px;
    border-radius: 0 !important;
    display: none;
}
.dropzone .dz-preview .dz-details .dz-filename{display:flex;}
.dropzone .dz-preview:hover .dz-image img{
    -webkit-transform:none;
    -moz-transform:none;
    -ms-transform:none;
    -o-transform:none;
     transform:none; 
     -webkit-filter: none; 
     filter: none; 
}
.dropzone .dz-preview .dz-image img{
     height: 100%;
     width: 100%;
}
.dropzone .dz-preview .dz-progress .dz-upload{
    background: #79bf98d4;
}
.dropzone .dz-preview .dz-error-message{
    top: auto;
    left: 0;
    background: linear-gradient(to bottom, #ff0000, #ff0000);
    background: #ff0000;
}
.dropzone .dz-preview .dz-error-message:after{
    border-bottom: 6px solid #ff0000;
}
.dropzone .dz-preview .dz-remove{
    color: #ffffff;
    padding: 0.4em;
    border-radius: 3px;
    text-decoration: none;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 999999;
}
.dropzone .dz-preview .dz-remove:hover{
    color: #000000;
    background-color: rgb(255,255,255);
    text-decoration: none;
}
.dropzone .dz-preview.image__open .dz-image{display: block;}
.dropzone .dz-preview.image__open .uploading{display: none;}