﻿.dropzone {
    border: 2px dashed #ccc !important;
    border-radius: 3px;
    height: 150px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .dropzone.drag-over {
        background-color: #f7f7f7;
    }

.dropzone__input {
    display: none;
}

.dropzone__prompt {
    font-size: 1.2rem;
    text-align: center;
    color: #999;
}

.dropzone:hover {
    border: 2px dashed #206bc4 !important;
}

.dropzone_hover {
    border: 2px dashed #206bc4 !important;
}