/* ----------------------------------------------------------------------------
// Ezdz [izy-dizy]
// Licensed under the MIT license.
// http://github.com/jaysalvat/ezdz/
// ----------------------------------------------------------------------------
// Copyright (C) 2014 Jay Salvat
// http://jaysalvat.com/
// --------------------------------------------------------------------------*/

.ezdz-dropzone {
    position: relative;
    /*border-radius: 20px;*/
    font: 14px arial;
    text-align: center;
    width: 100%;
    height: 93px;
    /* line-height: 20px; */
    border: 2px dashed transparent;
    color: #D3D3D3;
    overflow: hidden;
}

    .ezdz-dropzone div {
        /* */
        padding-top: 25px;
        font-size: 12px;

    }

    .ezdz-dropzone:hover{
        /*color: #000000;*/
        border: 2px dashed #D3D3D3;
    }

        .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: 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: 10px dotted #A9A9A9;
        color: #A9A9A9;
    }

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

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

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

    .ezdz-reject {
        border: 2px solid #8B0000;
        color: #8B0000;
    }
