/* Tabela com cabeçalho inclinado a 45° */

.table-angled-header {
    width: auto !important;
    table-layout: fixed;
}

.table-angled-header thead th.th-angled {
    position: relative;
    height: 130px;
    vertical-align: bottom;
    padding-bottom: 8px;
    border: none;
    overflow: visible;
}

.table-angled-header thead th.th-angled::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: #dee2e6;
    transform: skewX(-45deg);
    transform-origin: bottom right;
}


.table-angled-header thead tr {
    border-bottom: 1px solid #dee2e6;
}

.table-angled-header thead th {
   position:relative;
}

.th-angled-text {
    transform: rotate(-45deg);
    display: inline-block;
    position: absolute;
    bottom: 46px;
    right: -113px;
    white-space: nowrap;
    width: 150px;
    height: 35px;
    z-index: 9999;
    font-size: 12px;
    border-bottom: 1px solid #CCC;
    color: #000;
    text-align: left;
    background: #FFF;
}