/* ----------------------------------------------------------------------------
// Ezdz [izy-dizy]
// v0.4.2 - released 2014-10-20 13:45
// Licensed under the MIT license.
// https://github.com/jaysalvat/ezdz
// ----------------------------------------------------------------------------
// Copyright (C) 2014 Jay Salvat
// http://jaysalvat.com/
// ---------------------------------------------------------------------------*/

.ezdz-dropzone {
    position: relative;
    border-radius: 5px;
    font: bold 12px arial;
    text-align: center;
    width: 200px;
    height: 100px;
    line-height: 20px;
    border: 2px dotted #BDBDBD;
    color: #000;
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.7);
}

.ezdz-dropzone div {
    /* */
}

.ezdz-dropzone span {
    border-radius: 5px;
    background: black;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 13px;
    font-weight: normal;
    max-width: 90%;
    vertical-align: middle;
    padding: 5px;
    line-height: 10px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ezdz-dropzone img {
    border-radius: 5px;
    max-width: 95%;
    max-height: 95%;
    margin-top: -3px;
    vertical-align: middle;
}

.ezdz-dropzone [type="file"] {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ezdz-focus {
    border: 2px dotted #BDBDBD;
    color: darkgray;
    background: #fff;
}

.ezdz-enter {
    border: 5px solid black;
    color: black;
    background: #fff;
}

.ezdz-accept {
    border: 2px dotted #BDBDBD;
    color: gray;
    background: #fff;
}

.ezdz-reject {
    border: 2px solid darkred;
    color: darkred;
    background: #fff;
}
