.grid-np {
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr 0.5fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "item-np1 item-np2 item-np3 item-np4 item-np5";
    border-bottom: 1px solid #333 !important;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    border-top: 1px solid #333;

}

.section-title {
    background: #6cb4ca !important;
    color: #fff;
    border-top-left-radius: 2px;
    border-left: 1px solid #333;
}

h2.title-status::after,
.section-title::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid !important;
    border-width: 10px 10px 0 0 !important;
    border-color: #fff transparent transparent transparent !important;
    transform: rotate(90deg);
}

.bl {
    border-left: 1px solid #333;
}

.br {
    border-right: 1px solid #333;
}

.nb {
    border: none !important;
}

.dog-ear-np {
    position: relative;
    box-shadow: inset -1px 0px 10px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 4px;
    width: 170px;
    padding-right: 20px;
}

.item-np1 {
    grid-area: item-np1;
}

.item-np2 {
    grid-area: item-np2;
}

.item-np3 {
    grid-area: item-np3;
}

.item-np4 {
    grid-area: item-np4;
}

.item-np5 {
    grid-area: item-np5;
}

.cell-np-right {
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: center;
    color: black;
    border-left: 1px solid #333;
}

.grid-np-2 {
    display: grid;
    grid-template-columns: 300px 1fr 0.75fr 0.75fr 1.5fr 0.85fr 0.85fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "cell-np-2 cell-np-3 cell-np-4 cell-np-5 cell-np-6 cell-np-7 cell-np-8 ";
}

.cell-np-2 {
    grid-area: cell-np-2;
}

.cell-np-3 {
    grid-area: cell-np-3;
}

.cell-np-4 {
    grid-area: cell-np-4;
}

.cell-np-5 {
    grid-area: cell-np-5;
}

.cell-np-6 {
    grid-area: cell-np-6;
}

.cell-np-7 {
    grid-area: cell-np-7;
    border-top: 1px solid #333;
}

.cell-np-8 {
    grid-area: cell-np-8;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.dig::after {
    right: -2px;
}