/* based on the sample code taken from: https://interactjs.io/ */

.dropzone {
    border: solid 1px;
    border-radius: 8px;
    padding: 0.75lh 0.25em;
    margin-bottom: 1em;
    transition: background-color 0.3s;
    min-height: 3lh;
}

.drop-active {
    border-style: dashed;
}

.drop-target {
    background-color: #8bf;
    border: solid 1px #008;
}

.drag-drop {
    display: inline-block;

    padding: 0.25em 0.5em;
    margin: 0.5rem 0 0 0.5rem;

    color: #ddd;
    background-color: #700;
    border: solid 1px #400;

    touch-action: none;
    transform: translate(0px, 0px);

    transition: background-color 0.3s;

    user-select: none;
}

.drag-drop.can-drop {
    color: #ddd;
    background-color: #070;
    border: solid 1px #040;
}

.nonfree_oporder_wrapper {
    padding: 0;
}