/* horizontal panel*/

.panel-container {
  display: flex;
  flex-direction: row;
  border: 1px solid silver;
  overflow: hidden;
  
  /* avoid browser level touch actions */
  xtouch-action: none;
}

.panel-left {
 /* flex: 0 0 auto; */
  /* only manually resize */
  padding: 10px;
  width: 300px;
  min-height: 200px;
  min-width: 150px;
}

.splitter {
  flex: 0 0 auto;
  width: 18px;  
  background: url(../images/vsizegrip.png) center center no-repeat #535353;
  min-height: 200px;
  cursor: col-resize;  
}

.panel-right {
 flex: 1 1 ;
  /* resizable */
  padding: 10px;
  width: 100%;
  min-height: 200px;
  min-width: 200px;
}


/* vertical panel */

.panel-container-vertical {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-top {
  /*flex: 0 0 auto;*/
  /* only manually resize */
  padding: 10px;
  height: 150px;
  min-height:30px;
  width: 100%;
}

.splitter-horizontal {
  flex: 0 0 auto;
  height: 18px;
  background: url(../images/hsizegrip.png) center center no-repeat #535353;
  cursor: row-resize;
}

.panel-bottom {
  flex: 1 1;
  /* resizable */
  padding: 10px;
}
