/* V291 · descrição do produto fixa durante a rolagem horizontal */
#products .product-audit-table-wrap {
  position: relative;
  isolation: isolate;
}

#products .product-audit-table .audit-product-description {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 360px;
  max-width: 360px;
  overflow: hidden;
  background: #fff;
  box-shadow: 7px 0 9px -9px rgba(22, 48, 34, .8);
  text-overflow: ellipsis;
}

#products .product-audit-table thead .audit-product-description {
  top: 0;
  z-index: 7;
  background: #f3f6f4;
}

#products .product-audit-table tbody tr:nth-child(odd) .audit-product-description {
  background: #fcfaf6;
}

#products .product-audit-table tbody tr.active-row .audit-product-description {
  background: #ebf7ef;
}

@media (max-width: 900px) {
  #products .product-audit-table .audit-product-description {
    width: 300px;
    max-width: 300px;
  }
}
