@media (max-width:1024px) {
    .table {
        flex-direction: column;
        margin: 0.8em;
        padding: 0.8em;
        background-color: rgb(245, 245, 247);
        border-radius: 10px;
    }

    .table div:nth-child(2) .cell:nth-child(1),
    .table div:nth-child(3) .cell:nth-child(1),
    .table div:nth-child(4) .cell:nth-child(1),
    .table div:nth-child(5) .cell:nth-child(1) {
        border-right: 1px solid #cdcdcd;
    }

    .cell {
        flex-direction: column;
        line-height: 2em;
        border-bottom: 1px solid #cdcdcd;
        /* margin-top: 1em; */
        padding: 1em 0.3em;
    }
}