#PageVoucher{
    width: 100%;
    height: -moz-calc(100%-50px);
	height: -webkit-calc(100% - 50px);
	height: calc(100% - 50px);
    padding: 8px 8px 8px 8px;
    top: 50px;
    position: relative;
    border-radius: 5px;
}
.VoucherMain{
    width: 100%;
    height: 350px;
    top: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: white;
    border-bottom: 1px solid #ccc;
    box-shadow:0 0 5px rgba(0, 0, 0, .6);
    position: relative;
}
.Voucher0Main{
    width: 100%;
    height: -moz-calc(100%-350px);
	height: -webkit-calc(100% - 350px);
	height: calc(100% - 350px);
    background-color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow:0 0 5px rgba(0, 0, 0, .6);
    position: relative;
}
.column {
    float: left;
    padding: 0px;
    width: 50%;/* Should be removed. Only for demonstration */
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
.tblEdit{
    width: 100%;
}
.lbltext{
    width:70px;
    padding-left: 5px;
}
.cmdRow{
    height: 30px;
    background-color: #F1F2F3;
}
#Ctv0Command{
    display: none;
}
.baritem{
    display: none;
    width: 48px !important;
}
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .Voucher0Main{
        display: none;
    }
    .VoucherMain{
        height: 100% !important;
    }
    #frmEditVoucher{
        margin-top:0px !important;
    }
    .column {
      width: 100%;
    }
    #Ctv0Command{
        display: flex;
    }
    .baritem{
        display: block;
    }
    #mndr{
        width: 48px !important;
        height:130px;
      }
    
    #cmdHide{
        width: 200px;
        height: 200px;
        position: absolute;
        z-index: 9999;
        display: none;
        float: left;
        right: 0px;
        border-bottom-left-radius: 5px;
        background: #F1F2F3;
    }
}