body{
    background:#f6f7f7;
    color:#555;
    font-size:.85rem;
    font-family: 'Poppins', sans-serif;
}
ul{
    padding:0;
}
ul li{
    list-style:none;
}

span.currency-before,
span.currency-after{
    color:#000;
    font-weight: bold;
    font-size:.7rem;
}

.items tbody td{
    font-size:.85rem;
}
.items tbody td:first-child{
    width:4%;
}
.items tbody td:nth-child(2){
    min-width:51%;
}
.items tbody td:nth-child(3){
    width:5%;
}
.items tbody td:nth-child(4),
.items tbody td:last-child{
    width:20%;
}

.note{
    border-left:2px solid #ddd;
}
.border-top-dark{
    border-top:2px solid #c9c9c9;
}
.border-bottom-dark{
    border-bottom:2px solid #c9c9c9;
    border-bottom-width:2px !important;
}

img.company-logo {
    width: 60px;
    height: 60px;
}

.sidebar{
    transition:all ease 0.4s;
    width:50vw;
    transform:translateX(200%);
}

.sidebar.show{
    transform:translateX(0);
}

.tab-pane{
    max-height:80vh;
    overflow-y:scroll;
    overflow-x: hidden;
}

@media (max-width:768px){
    .sidebar{
        width:70vw;
    }
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}