/*** table block ***/

.table-wrapper > .row{
    overflow-y: auto;
}
.table-cell{
    min-width: 170px;
}
.table-wrapper .table-heading-row.gold-table-style .table-cell{
    background:var(--gold);
}
.table-wrapper .table-row.gold-table-style .table-cell{
    background:#FFFBEE;
}
.table-wrapper .table-heading-row.leaf-table-style .table-cell{
    background:var(--medium-green-tint-1);
}
.table-wrapper .table-row.leaf-table-style .table-cell{
    background:#F3F6E5;
}
.table-wrapper .table-cell{
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
}
.table-wrapper .table-heading-row .table-cell{
    padding-top: 12px;
    padding-bottom: 12px;
}
.table-wrapper .table-row .table-cell{
    padding-top: 8px;
    padding-bottom: 8px;
}

.table-block .scroll-table:after{
    content:'Scroll horizontally to see the full table';
    font-size: 12px;
    top:12px;
    right:0;
    display: block;
    position: absolute;
}
.table-block .scroll-table.table-has-header:after{
    top:54px;
}

.table-block .heading_section {
    margin-bottom: -20px;
}

.full-size-table.qty-5 .col-2.table-cell{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

