
#dropzone {
    margin-bottom: 3rem;
}

.dropzone {
    border-width: 2px !important;
    border-style: dashed !important;
    border-color: #0087F7;
    border-radius: 5px;
    background: white;
}

    .dropzone .dz-message {
        font-weight: 400;
    }

        .dropzone .dz-message .note {
            font-size: 0.8em;
            font-weight: 200;
            display: block;
            margin-top: 1.4rem;
        }

    .dropzone .dz-progress {
        display: none;
    }

    .dropzone .dz-preview .dz-remove{
        display: inline-block;
    }

    .dropzone .dz-preview input {
        width: 100px;
        padding: 0px 5px;
    }

    .dropzone .dz-remove {
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 20;
        color: red;
        background-color: transparent;
        padding: 0px 5px;
        border-radius: 12px;
    }
        .dropzone .dz-remove:hover {
            cursor: pointer;
            background-color: #fdcaca;
            padding: 0px 5px;
            border-radius: 12px;
        }