.resizable {
  background: black;
/*   width: 100px;
  height: 100px; */
  width: 50%;
  height: 50%;
  position: absolute !important;
  left: 100px; 
  top: 50px;
  display: none; 
}

.resizable .resizers{
  width: 100%;
  height: 100%;
  border: 3px solid red;
  box-sizing: border-box;
}

.resizable .resizers .resizer{
  width: 20px;
  height: 20px;
  border-radius: 50%; /*magic to turn square into circle*/
  background: white;
  border: 3px solid red;
  position: absolute;
}

.resizable .resizers .resizer.top-left {
/*   left: -5px; */
left: 0; 
right: 0; 
margin-left: auto; 
margin-right: auto; 
  top: -5px;
 /*  cursor: nwse-resize; */
 cursor: n-resize;

}
.resizable .resizers .resizer.bottom-left {
/*   left: -5px; */
left: 0; 
right: 0; 
margin-left: auto; 
margin-right: auto; 
  bottom: -5px;
/*   cursor: nesw-resize; */
cursor: n-resize;
}


.resizable .resizers .resizer.top-right {
  right: -5px;
  top: 50%;
  cursor: e-resize;
}
.resizable .resizers .resizer.top-right2 {
  left: -5px;
  top: 50%;
  cursor: e-resize;
}
.resizable .resizers .resizer.bottom-right {
  left: -5px;
  top: 50%;
  cursor: nwse-resize;
}


#mdiv {
  width: 26px;
  height: 26px;
  background-color: red;
  float: right;
  cursor: pointer;
}

.mdiv {
  height: 25px;
  width: 3px;
  margin-left: 13px;
  background-color: white;
  -webkit-transform: rotate(45deg); /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
  -ms-transform: rotate(45deg); /* IE 9 */
  transform: rotate(45deg);
  z-index: 1;
}

.mdclose {
  height: 25px;
  width: 3px;
  margin-left: 0px;
  background-color: white;
  -webkit-transform: rotate(90deg); /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
  -ms-transform: rotate(90deg); /* IE 9 */
  transform: rotate(90deg);
  z-index: 2;
}



