﻿.dropzone {
    background: white;
    border-radius: 5px;
    border: 2px rgb(0, 135, 247);
    display: flex;
    flex-flow: column;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    color: rgb(100, 108, 127);
    line-height: 1.4rem;
    font-family: Roboto, "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    background-image: linear-gradient(135deg,rgba(0,0,0,.03)25%,transparent 25%,transparent 50%,rgba(0,0,0,.03)50%,rgba(0,0,0,.03)75%,transparent 75%,transparent);
    background-color: #FAFCFD;
    background-size: 16px 16px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px 10px;
}

    .dropzone .bg-success {
        background-color: #a7e9a7 !important;
    }

    .dropzone .bg-processing {
        background-color: #e7e49d !important;
    }

    .dropzone .bg-error {
        background-color: #e7a69d !important;
    }

    .dropzone .dz-preview {
        position: relative;
        display: inline-block;
        vertical-align: top;
        margin: 5px;
        min-height: 80px;
        background: white;
        border-radius: 5px;
        border: 2px dashed rgb(0, 135, 247);
    }

        .dropzone .dz-preview .dz-loading > i {
            position: absolute !important;
            top: 7px !important;
            right: 14px !important;
            color: #8cc657 !important;
            font-size: 1.6em !important;
        }

        .dropzone .dz-preview .dz-details {
            z-index: 200;
            position: absolute;
            opacity: 1;
            top: 28px;
            left: 4px;
            font-size: 13px;
            min-width: 100%;
            max-width: 100%;
            padding: 0px;
            text-align: center;
            color: rgba(0, 0, 0, 0.9);
            line-height: 150%;
        }

            .dropzone .dz-preview .dz-details img {
                opacity: 0;
            }

            .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
                background-color: unset;
                padding: 0 0.4em;
                border-radius: 3px;
            }

        .dropzone .dz-preview .dz-progress {
            opacity: 1;
            z-index: 120;
            pointer-events: none;
            position: absolute;
            height: 16px;
            left: 35%;
            top: 67%;
            margin-top: 3px;
            width: 80%;
            margin-left: -140px;
            background: rgba(255, 255, 255, 0.9);
            -webkit-transform: scale(1);
            border-radius: 8px;
            overflow: hidden;
        }

            .dropzone .dz-preview .dz-progress .dz-upload {
                background: #333;
                background: linear-gradient(to bottom, #666, #00247d);
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                width: 0;
                -webkit-transition: width 300ms ease-in-out;
                -moz-transition: width 300ms ease-in-out;
                -ms-transition: width 300ms ease-in-out;
                -o-transition: width 300ms ease-in-out;
                transition: width 300ms ease-in-out;
            }

        .dropzone .dz-preview .dz-details .dz-filename {
            text-align: left;
            z-index: 120;
        }

    .dropzone .dz-status {
        position: absolute;
        height: 28px;
        left: 8px;
        top: 5px;
    }

    .dropzone .dz-preview .dz-details .dz-size, .dropzone-previews .dz-preview .dz-details .dz-size {
        position: absolute;
        bottom: 80px;
        right: 11px;
        height: 28px;
        font-size: 14px;
        /*line-height: 28px;*/
    }

    .dropzone .dz-preview .dz-loading > i {
        position: absolute;
        top: 55px;
        right: 38px;
        height: 28px;
        line-height: 28px;
        color: #8cc657;
    }

    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
        pointer-events: none;
        opacity: 0;
        z-index: 500;
        position: absolute;
        display: block;
        top: 35%;
        left: 98%;
        margin-left: -27px;
        margin-top: -27px;
    }

    .dropzone .dz-preview .dz-error-message {
        pointer-events: none;
        z-index: 1000;
        position: absolute;
        display: block;
        display: none;
        opacity: 0;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
        border-radius: 8px;
        font-size: 13px;
        top: 100px;
        left: 0px;
        width: 100%;
        background: #be2626;
        background: linear-gradient(to bottom, #be2626, #a92222);
        padding: 0.5em 1.2em;
        color: white;
    }

    .dropzone .dz-max-files-reached {
        background-color: #dfb56c;
    }
