.estimate-product-list__item {
  width: 100%;
  border-top: 1px solid var(--default-border-color);
  position: relative; }
  .estimate-product-list__item:first-child {
    border-top: none; }

.estimate-product-list__image {
  height: 123px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: relative;
  border-bottom: 1px solid var(--default-border-color); }
  .estimate-product-list__image svg {
    fill: var(--default-border-color); }

.estimate-product-list__delete {
  position: absolute;
  right: var(--space);
  top: var(--space); }
  .estimate-product-list__delete:hover .svg-icon svg {
    --icon-fill-color: #423E38; }
  .estimate-product-list__delete .svg-icon svg {
    --icon-fill-color: var(--default-disabled-grey-color); }

@media (min-width: 1000px) {
  .estimate-product-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: var(--space);
    padding-right: var(--space); }
  .estimate-product-list__image {
    min-height: 123px;
    height: auto;
    width: 123px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--default-border-color); }
  .estimate-product-list__delete {
    position: relative;
    right: auto;
    top: auto;
    padding-top: calc(var(--space) / 2); } }
