/**
 * @param {string} $scheme - The color scheme of the button. Options are nothing, $scheme-light, $scheme-dark
 * if $scheme-dark is passed, the button will be black text and black outline
 * if $scheme-light is passed, the button will be white text and white outline
 * if no $scheme is passed, the button will depend on the background color via the bg-dark mixin
 *   - if ancestor DOES have bg-dark, then white text and white outline
 *   - if ancestor DOES NOT have bg-dark, then black text and black outline
 */
.price-container[data-v-20f8abfc] {
  display: inline-grid;
  grid-template-columns: auto auto auto auto;
  grid-column-gap: 8px;
}
.price-container .price[data-v-20f8abfc] {
  font-family: "DenimINK-Medium", Arial, sans-serif;
  font-style: normal;
  line-height: 1.4;
  font-size: 20px;
  letter-spacing: 0rem;
  text-transform: none;
  color: #000000;
}
.-bg-dark .price-container .price[data-v-20f8abfc], .-bg-section-dark .price-container .price[data-v-20f8abfc], .-bg-page-dark .-bg-section-transparent .price-container .price[data-v-20f8abfc] {
  color: #ffffff;
  fill: #ffffff;
}
.price-container .price a[data-v-20f8abfc] {
  color: #000000;
}
.-bg-dark .price-container .price a[data-v-20f8abfc], .-bg-section-dark .price-container .price a[data-v-20f8abfc], .-bg-page-dark .-bg-section-transparent .price-container .price a[data-v-20f8abfc] {
  color: #ffffff;
  fill: #ffffff;
}
.price-container .price.hard-sale[data-v-20f8abfc] {
  color: #c41320;
}
.price-container .price.strikedOut[data-v-20f8abfc] {
  font-family: "DenimINK-Regular", Arial, sans-serif;
  font-style: normal;
  line-height: 1.4;
  font-size: 16px;
  letter-spacing: 0rem;
  text-transform: none;
  color: #000000;
}
.-bg-dark .price-container .price.strikedOut[data-v-20f8abfc], .-bg-section-dark .price-container .price.strikedOut[data-v-20f8abfc], .-bg-page-dark .-bg-section-transparent .price-container .price.strikedOut[data-v-20f8abfc] {
  color: #ffffff;
  fill: #ffffff;
}
.price-container .price.strikedOut a[data-v-20f8abfc] {
  color: #000000;
}
.-bg-dark .price-container .price.strikedOut a[data-v-20f8abfc], .-bg-section-dark .price-container .price.strikedOut a[data-v-20f8abfc], .-bg-page-dark .-bg-section-transparent .price-container .price.strikedOut a[data-v-20f8abfc] {
  color: #ffffff;
  fill: #ffffff;
}
.price-container .price.strikedOut[data-v-20f8abfc] {
  text-decoration: line-through;
  opacity: 0.56;
  margin-top: 2px;
}