 /* ----------------------------------------------------------------------------
 // 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/
 // ---------------------------------------------------------------------------*/

.ezdz-dropzone {
    position: relative;
    border-radius: 2px;
    font-family:'PT Sans', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-transform:uppercase;
    width: 100%;
    max-width: 300px;
    height: 200px;
    line-height: 200px;
    border: 2px dashed #CCC;
    color: #CCC;
    overflow: hidden;
}

    .ezdz-dropzone div {
        /* */
    }

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

        .ezdz-dropzone img {
            border-radius: 0px;
            max-width: 100%;
            max-height: 100%;
            margin-top: 0px;
            /*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 dashed darkgray;
        color: darkgray;
    }

    .ezdz-enter {
        border: 2px solid black;
        color: black;
    }

    .ezdz-accept {
        border: 2px solid #CCC;
        color: gray;
    }

    .ezdz-reject{
        border: 2px dashed #FA6C6C;
        color: #FA6C6C;
    }
