    /*!
 * CSS processo
 * Copyright 2020
 * Authot: Gideon M. Gonçalves em 12/02/2020 Brazil
 */
    /* https://stackoverflow.com/questions/42095478/adding-scroll-only-to-table-body-with-fixed-header-angularjs */
    /* Table Scroll */
    
    table.scroll {
        /* width: 100%; */
        /* Optional */
        /* border-collapse: collapse; */
        border-spacing: 0;
        /*   border: 2px solid black; */
    }
    
    table.scroll tbody,
    table.scroll thead {
        display: block;
    }
    
    thead tr th {
        height: 30px;
        line-height: 30px;
        /* text-align: left; */
    }
    
    table.scroll tbody {
        height: 55rem;
        /*500px; */
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    tbody {
        /*  border-top: 2px solid black; */
    }
    
    tbody td,
    thead th {
        /* width: 20%; */
        /* Optional */
        /*  border-right: 1px solid black; */
        /* white-space: nowrap; */
    }
    
    tbody td:last-child,
    thead th:last-child {
        border-right: none;
    }