.vdr {
    touch-action: none;
 
}

.handle,
.vdr {
    position: absolute;
    box-sizing: border-box
}

.handle {
    width: 10px;
    height: 10px;
    background: #eee; 
    border: 1px solid #333;
}

.handle-tl {
    top: -10px;
    left: -10px;
    cursor: nw-resize
}

.handle-tm {
    top: -10px;
    left: 50%;
    margin-left: -5px;
    cursor: n-resize
}

.handle-tr {
    top: -10px;
    right: -10px;
    cursor: ne-resize
}

.handle-ml {
    left: -10px;
    cursor: w-resize
}

.handle-ml,
.handle-mr {
    top: 50%;
    margin-top: -5px
}

.handle-mr {
    right: -10px;
    cursor: e-resize
}

.handle-bl {
    bottom: -10px;
    left: -10px;
    cursor: sw-resize
}

.handle-bm {
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
    cursor: s-resize
}

.handle-br {
    bottom: -10px;
    right: -10px;
    cursor: se-resize
}

@media only screen and (max-width:768px) {
    [class*=handle-]:before {
        content: "";
        left: -10px;
        right: -10px;
        bottom: -10px;
        top: -10px;
        position: absolute
    }
}
.print-box .dragging{ 
    width: 100%;
    height: 100%;
}
.print-box .dragging img{
    border: 1px dashed hsl(0, 0%, 0%);
    box-sizing: border-box;
}