.product-quote-panel {
  text-align: left;
  scroll-margin-top: 100px;
}
.product-quote-panel > h2,
.product-quote-panel > p {
  max-width: 48rem;
  margin-left: 0;
  margin-right: 0;
}
.product-quote {
  margin-top: 1.75rem;
}
.product-quote fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.product-quote__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.5rem;
}
.product-quote__field {
  min-width: 0;
}
.product-quote__field label {
  display: block;
  margin-bottom: .45rem;
  color: var(--white, #fff);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.4;
}
.product-quote__field label span {
  font-weight: 400;
  color: #dce0dd;
}
.product-quote__field input,
.product-quote__field textarea,
.product-quote__field select {
  width: 100%;
  min-height: 3rem;
  margin: 0;
  padding: .8rem .9rem;
  border: 1px solid #c5cec8;
  border-radius: var(--radius-sm, 5px);
  background: #fff;
  color: #1a2321;
  font: 400 1rem/1.35 var(--font-body, Arial, sans-serif);
}
.product-quote__field input::placeholder,
.product-quote__field textarea::placeholder {
  color: #59655e;
  opacity: 1;
}
.product-quote__field input:focus-visible,
.product-quote__field textarea:focus-visible,
.product-quote__field select:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  border-color: #1a2321;
}
.product-quote-panel .product-quote__help,
.product-quote-panel .product-quote__status {
  max-width: 48rem;
  margin: 1.25rem 0 0;
  color: #e3e7e4;
  font-size: .9375rem;
  line-height: 1.55;
}
.product-quote__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.25rem;
  margin-top: 1.5rem;
}
.product-quote-panel .product-quote__actions .btn {
  margin: 0;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}
.product-quote__actions [disabled] {
  cursor: not-allowed;
  opacity: .55;
}
.product-quote__direct,
.product-quote__result {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .22em;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}
.product-quote__direct:hover,
.product-quote__result:hover {
  text-decoration-thickness: 2px;
}
.product-quote__result {
  display: inline-block;
  margin-top: .75rem;
  min-height: 2.75rem;
  padding: .55rem 0;
}
.product-quote__result[hidden] {
  display: none;
}
.product-quote__status:empty {
  display: none;
}
@supports selector(body:has(form:focus-within)) {
  body:has(.product-quote:focus-within) .wa-float {
    visibility: hidden;
  }
  section:has(> .container > .product-quote-panel) {
    scroll-margin-top: 100px;
  }
}
@media (max-width: 600px) {
  .product-quote__fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  .product-quote__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .product-quote__actions .btn {
    width: 100%;
  }
  .product-quote__direct {
    min-height: 2.75rem;
    padding: .55rem 0;
  }
}
