.orderview, #positionview {
    opacity:0.5;
    cursor: pointer;
    z-index: 11;
    display: none;
    position: absolute;
    left: 300px;
    top: 200px;
    width: 200px;
    height: 20px;
    background-color:#cccccc;
    font-size: 12px;
  }
  
  .orderview:hover {
    opacity: 1;
  }
  
  .orderview[data-side=BUY] {
    background-color:green;
  }
  .orderview[data-side=SELL] {
    background-color:red;
  }
  .orderview[data-type=stop_market] {
    box-shadow: 0 0 10px red;
  }
  
  .orderview [data-key=in_price]{
    display: inline-block;
    background-color: #fff;
    color:#314448;
    width: 60px;
    height: 20px;
    line-height:20px;
    text-align: center;
  }
  .orderview [data-key=quantity]{
    margin-left: 5px;
    display: inline-block;
    background-color: #fff;
    color:#314448;
    width: 60px;
    height: 20px;
    line-height:20px;
    text-align: center;
  }
  
  .orderview .close{
    text-align: center;
    position: absolute;
    right: 0px;
    display: inline-block;
    background-color: #fff;
    color:#314448;
    width: 20px;
    height: 20px;
    line-height:20px;
    font-size:16px;
  }
  .orderview:hover {
    z-index:12;
  }
  .orderview .close:hover{
    background-color: #dddddd;
  }
  
  #futures_balance{
    padding: 10px;
      display: none;
      position: absolute;
      left: 0;
      bottom: 0;
      background-color: #282828;
      width: 300px;
      font-size: 13px;
      z-index: 11;
      opacity: 0.7;
  }
  
  #positionview[data-side=long] {
    background-color:#3d7a36;
  }
  #positionview[data-side=short] {
    background-color:#aa2222;
  }
  #positionview {
    opacity:0.5;
    width: 400px;
  }
  #positionview:hover {
    opacity: 1;
  }
  #positionview [data-key]{
    margin-left: 5px;
    display: inline-block;
    background-color: #fff;
    color:#314448;
    width: 60px;
    height: 20px;
    line-height:20px;
    text-align: center;
  }
  
  #close_position_market{
      padding: 2px;
      height: 20px;
      float: right;
  }

  #draw_container {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 12;
  }