/* Final sale-banner alignment overrides. Loaded after pq-enhancements.css. */

.pq-sale-card {
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  text-align: center !important;
}

.pq-sale-content {
  justify-items: center !important;
  text-align: center !important;
  width: min(100%, 900px);
  margin-inline: auto;
}

.pq-sale-message,
.pq-sale-note {
  text-align: center !important;
  margin-inline: auto;
}

.pq-sale-kicker {
  margin-inline: auto;
}

.pq-sale-icon {
  position: absolute;
  left: clamp(16px, 2.4vw, 28px);
  top: 50%;
  transform: translateY(-50%);
}

.pq-sale-code {
  justify-self: center !important;
  margin-inline: auto;
}

@media (width <= 860px) {
  .pq-sale-card {
    grid-template-columns: 1fr !important;
  }

  .pq-sale-code {
    grid-column: auto !important;
    justify-self: center !important;
  }
}

@media (width <= 600px) {
  .pq-sale-content {
    width: 100%;
  }

  .pq-sale-icon {
    display: none !important;
  }
}