 /* ----------------------------------------------------------------------------
 // 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;
    background-color: #fff;
    padding: 70px;
    border: 2px dashed #eaeef3;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    /* border-image: url(../img/border-image.png) 25 repeat; */
    text-align: center;
    font-size: 14px;
    color: #7f858a;
}

    .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: 15px;
            line-height: 10px;
            display: inline-block;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }
        .ezdz-dropzone span:before {
            content: "Seçilen Dosya : "
        }

        .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-color:darkgray;
        color: darkgray;
    }

    .ezdz-enter {
        border-color:black;
        color: black;
    }

    .ezdz-accept {
        border-color:gray;
        color: gray;
    }

    .ezdz-reject {
        border-color:darkred;
        color: darkred;
    }
