.elementor-9687 .elementor-element.elementor-element-110cf056{--display:flex;}.elementor-9687 .elementor-element.elementor-element-ccd3ec3{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-0fdc59e */@media screen and (max-width: 768px) {
  /* Скрываем заголовки таблицы (thead) */
  table thead {
    display: none;
  }

  /* Делаем каждый элемент блока (tr, td) блочным */
  table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ccc;
  }

  table td {
    display: block;
    text-align: right; /* Текст значения справа */
    font-size: 14px;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 50%; /* Место для названия колонки */
  }

  /* Добавляем названия колонок через псевдоэлемент :before */
  table td:before {
    content: attr(data-label); /* Берет текст из атрибута data-label */
    position: absolute;
    left: 10px;
    width: 45%;
    font-weight: bold;
    text-align: left;
  }
}/* End custom CSS */