.popup {
	min-height: 150px;
	min-width: 300px;
	max-width: 50%;
	max-height: 70%;
  }
  
  /*Drgable */
  
  .popup {
	position: absolute;
	/*resize: both; !*enable this to css resize*! */
	overflow: auto;
  }
  
  .popup-header {
	cursor: move;
	z-index: 10;
  }
  
  /*Resizeable*/
  
  .popup .resizer-right {
	width: 5px;
	height: 100%;
	background: transparent;
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: e-resize;
  }
  
  .popup .resizer-bottom {
	width: 100%;
	height: 5px;
	background: transparent;
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: n-resize;
  }
  
  .popup .resizer-both {
	width: 5px;
	height: 5px;
	background: transparent;
	z-index: 10;
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: nw-resize;
  }
  
  /*NOSELECT*/
  
  .popup * {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
									supported by Chrome and Opera */
  }
  