.dtw-table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
}

.dtw-table-row {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.dtw-table-row:last-child {
    border-bottom: none;
}

.dtw-table-cell {
    padding: 18px 20px;
    box-sizing: border-box;
    border-right: 1px solid #ddd;
    overflow-wrap: anywhere;
}

.dtw-table-cell:last-child {
    border-right: none;
}

.dtw-left {
    text-align: left;
    font-weight: 500;
}

.dtw-right {
    text-align: left;
    font-weight: 600;
}

.dtw-table-row:nth-child(even) {
    background: #f7f3ed;
}

/* Tablet */

@media (max-width: 1024px) {

    .dtw-table-cell {
        padding: 16px;
    }

}

/* Mobile */

@media (max-width: 767px) {

    .dtw-table-cell {
        padding: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

}