.history-update-product__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: var(--space);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.history-update-product__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--space) / 2);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.history-update-product__preview {
  --product-preview-item-width: 65px;
  --product-preview-item-height: 65px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 65px; }

.history-update-product__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--space) / 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .history-update-product__data-old {
    text-decoration: line-through; }
  .history-update-product__data-new {
    color: var(--default-blue-color); }

.history-update-product__title {
  font-weight: 700;
  text-decoration: underline; }
