.product-characteristics ul, .product-characteristics ol{
  padding: revert;
  list-style: revert;
}


table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 10px;
}

th {
    background-color: #f4f6f8;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border: 1px solid #dcdcdc;
    font-size: 10px;
}

tbody td {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    font-size: 10px;
}

/* Чередование строк */
tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Ховер */
tbody tr:hover {
    background-color: #eef5ff;
    transition: 0.2s;
}

/* Первый столбец выделим */
tbody td:first-child {
    font-weight: 600;
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    table {
        font-size: 10px;
    }

    thead {
        display: none;
    }


    tbody td::before {
        position: absolute;
        left: 10px;
        top: 8px;
        white-space: nowrap;
        font-weight: 600;
        text-align: left;
    }


}