body {
}

.logo {
    -webkit-box-shadow: 2px 2px 4px 5px #ddd; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 2px 2px 4px 5px #ddd; /* Firefox 3.5 - 3.6 */
    box-shadow: 2px 2px 4px 5px #ddd; /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}


/* File upload Dropzone*/

div.dropzone {
    width: 180px;
    height: 180px;
    background-color: rgba(183, 183, 183, 0.1);
    border-width: 2px;
    border-style: dashed;
    padding: 10px;
}

    div.dropzone > * {
        pointer-events: none;
    }

    div.dropzone.dropzone-active {
        border-style: solid;
    }

    div.dropzone .dropzone-text > span {
        font-weight: 100;
        opacity: 0.7;
        font-size: 14px;
    }


img.dropzone-img {
    max-width: 100%;
    max-height: 100%;
}

#dropzone-external {
    width: 180px;
    height: 180px;
    background-color: rgba(183, 183, 183, 0.1);
    border-width: 2px;
    border-style: dashed;
    padding: 10px;
}

    #dropzone-external > * {
        pointer-events: none;
    }

    #dropzone-external.dropzone-active {
        border-style: solid;
    }


#dropzone-image {
    max-width: 100%;
    max-height: 100%;
}

#dropzone-text > span {
    font-weight: 100;
    opacity: 0.7;
    font-size: 16px;
}

#upload-progress {
    display: flex;
    margin-top: 10px;
}