.vdr {
    touch-action: none;
    position: absolute;
    box-sizing: border-box;
    border: 0 solid transparent!important;
    /* border: 1px dashed black; */
    /* border: 1px solid transparent; */
  }
  .handle {
    box-sizing: border-box;
    position: absolute;
    /* width: 10px;
    height: 10px; */
    /* background: #EEE;
    border: 1px solid #333; */
  }
  .handle-tl {
    top: 0px;
    left: 0px;
    /* cursor: nw-resize; */
  }
  .handle-tm {
    top: 0px;
    left: 50%;
    /* cursor: n-resize; */
  }
  .handle-tr {
    top: 0px;
    right: 0px;
    /* cursor: ne-resize; */
  }
  .handle-ml {
    top: 50%;
    left: 0px;
    /* cursor: w-resize; */
  }
  .handle-mr {
    top: 50%;
    right: 0px;
    /* cursor: e-resize; */
  }
  .handle-bl {
    bottom: 0px;
    left: 0px;
    /* cursor: sw-resize; */
  }
  .handle-bm {
    bottom: 0px;
    left: 50%;
    /* cursor: s-resize; */
  }
  .handle-br {
    bottom: 0px;
    right: 0px;
    /* cursor: se-resize; */
  }
  @media only screen and (max-width: 768px) {
    [class*="handle-"]:before {
      content: '';
      left: -10px;
      right: -10px;
      bottom: -10px;
      top: -10px;
      position: absolute;
    }
  }