/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 74:0 Unexpected "{"
Line 74:1 Expected identifier but found "%"

**/
{% style %}
  .quantity-rules-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
  }

  .tooltip-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(var(--color-foreground));
    opacity: 0.65;
    transition: opacity 0.2s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tooltip-icon:hover,
  .tooltip-icon:focus {
    opacity: 1;
    outline: none;
  }

  .tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    text-align: left;
    border-radius: var(--radius-base);
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: nowrap;
    z-index: 50;
    box-shadow: var(--shadow-md);
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgb(var(--color-foreground)) transparent transparent transparent;
  }

  .tooltip-icon:hover + .tooltip-content,
  .tooltip-icon:focus + .tooltip-content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
{% endstyle %}
