.table-grid {
    display: grid;
    grid-template-columns: 1.5rem 4rem 3.5rem auto 4rem 2rem 3.5rem;
    grid-template-rows: auto auto auto;
    row-gap: 1px;
    column-gap: 2px;
    /*border: 1px solid #ddd;*/
    padding: 0px;
    min-width: 330px;
    margin: 12px 3px;
    border-top: #decefc 2px solid;
    border-bottom: #decefc 2px solid;

}

.table-grid>div {
    border-bottom: 1px solid #decefc;
    padding: 5px;
    background-color: #faf6fd;
    align-content: center;
}

.table_head .table-grid>div {
    background-color: #fbf8dd;
    font-weight: 600;
}

.table_head>.table-grid {
    border-top: #ded265 2px solid;
    border-bottom: #ded265 2px solid;
}

.cell:nth-child(1) {
    grid-column: 7 / 8;
    grid-row: 1 / 2;
}

.cell:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    align-content: center;
    text-align: center
}

.cell:nth-child(3) {
    grid-column: 2/ 3;
    grid-row: 1 / 2;
    text-align: right;
}

.cell:nth-child(4) {
    grid-column: 3 / 7;
    grid-row: 1 / 2;


}

.cell:nth-child(4) a {
    font-weight: 600;
    font-size: 1rem;
}


.cell:nth-child(5) {
    grid-column: 2/ 5;
    grid-row: 2 / 3;
}

.cell:nth-child(6) {
    grid-column: 6 / 7;
    grid-row: 3 / 4;

}

.cell:nth-child(7) {
    grid-column: 7/ 8;
    grid-row: 3 / 4;
}

.cell:nth-child(8) {
    grid-column: 2 / 6;
    grid-row: 3 / 4;

}

.cell:nth-child(9) {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
    font-size: 0.8rem;

}

.table {

    border-width: 4px 0px;
    border-style: solid;
    /*border-color:#03294a6b;*/
    border-color: #baaf49;
    border-collapse: collapse;
}



@media (min-width: 900px) {
    .table {
        display: table;
    }

    .table_head {
        display: table-header-group;
    }

    .tbody {
        display: table-row-group;

    }

    .table-grid {
        display: table-row;
        padding: 0px;
        margin: 0px 2px;
        border-width: 1px 0px 0px 0px;
        border-color: #decefc;
    }

    .table-grid>div {
        display: table-cell;
        align-content: center;
        padding: 3px;
        border-bottom: 1px solid #decefc;
        border-left: 1px solid #FFF;
        border-right: 1px solid #fff;
    }

    .cell:nth-child(1) {
        width: 3rem;


    }

    .cell:nth-child(2) {
        width: 1rem;


    }

    .cell:nth-child(3) {
        width: 4rem;
    }

    .cell:nth-child(4) {
        width: 240px;
        background-color: #faf6fd;
        border-radius: 0px;
        border-bottom: 1px solid #decefc;
        border-left: 1px solid #FFF;
        border-right: 1px solid #fff;
        border-top: none;
    }

    .cell:nth-child(5) {
        width: 190px;

    }

    .cell:nth-child(6) {
        width: 2rem;
    }

    .cell:nth-child(7) {
        width: 3rem;
    }

    .cell:nth-child(8) {
        width: 12rem;
    }

    .cell:nth-child(9) {
        width: 8rem;
    }

    .cell:nth-child(4) a {
        font-weight: 400;
        font-size: inherit;
    }
}