.rebuy-widget-popup {
  &:not(:has(li)) {
    display: none;
  }
  .slider-buttons {
    display: none;
  }
  .slider {
    display: flex;
    margin-bottom: 0;
  }
  dialog {
    width: min(850px, 90dvw);
    border: none;
  }
  li {
    width: calc(100% / var(--mobile-columns));
    @media screen and (min-width: 750px) {
      width: calc(100% / var(--desktop-columns));
    }
  }
  .btn.btn-theme {
    width: 100%;
    white-space: normal;
    @media only screen and (max-width: 575px) {
      margin-bottom: 1rem;
    }
  }
  rebuy-products[data-hide-prices="true"] {
    .product-card__price {
      display: none;
    }
  }
  rebuy-products[desktop-nav-enable="true"] {
    @media screen and (min-width: 750px) {
      .slider-buttons {
        display: flex;
      }
    }
  }
  rebuy-products[phone-nav-enable="true"] {
    @media screen and (max-width: 749px) {
      .slider-buttons {
        display: flex;
      }
    }
  }
  .slider-button--prev .icon {
    transform: rotate(180deg);
  }
}