.popup {
    z-index: 900;
    background-color: #ce1616;
    border: 1px solid #d3d3d3;
    text-align: center;
    min-height: 15px;
    min-width: 30px;
    max-height: 600px;
    max-width: 800px;
  }
  
  /*Drgable */
  
  .popup {
    position: absolute;
    /*resize: both; !*enable this to css resize*! */
    overflow: auto;
  }
  
  .popup-header {
    padding: 10px;
    cursor: move;
    z-index: 100;
    
    text-align: center;
  }
  
  /*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 */
  }
  