/* GLOBAL: INCLUDES
 *
 * It is recommended to only include variables,
 * mixins, etc. in this file, to prevent duplicated
 * CSS in your final, compiled files.
 */
/**
 * Bootstrap Global Variables & Mixins
 * Bootstrap Components should be imported in Vue components
 */
/* set the overriding variables */
/**
 * Bulma variable overrides
 */
@keyframes spinAround {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(359deg);
}
}
/* GLOBAL FUNCTIONS
--------------------------------------------- */
/* GLOBAL MIXINS
--------------------------------------------- */
/* AUTO SCALING FOR TYPE WITH MIN/MAX SIZES

  @param {Number}  $responsive  - Viewport-based size
  @param {Number}  $min         - Minimum font size (px)
  @param {Number}  $max         - Maximum font size (px) (optional)

  @param {Number}  $fallback    - Fallback for viewport-based units (optional)

  @example SCSS - 5vw size, 35px min & 150px max size + 50px fallback:

  @include responsive-font(5vw, 35px, 150px, 50px);
*/
/* VUE DESIGN SYSTEM SPACING HELPERS
--------------------------------------------- */
/*
  INSET-SPACE: For interface containers.
  INSET-SQUISH-SPACE: For buttons, form elements, cells.
  STACK-SPACE: For vertically stacked content.
  INLINE-SPACE: For things displayed inline.
*/
.debug .product .product__image,
.debug .product .product__title,
.debug .product .product__attributes,
.debug .product .product__availability,
.debug .product .product__discount,
.debug .product .product__price,
.debug .product .product__add-to-cart {
  position: relative;
}
.debug .product .product__image::after,
.debug .product .product__title::after,
.debug .product .product__attributes::after,
.debug .product .product__availability::after,
.debug .product .product__discount::after,
.debug .product .product__price::after,
.debug .product .product__add-to-cart::after {
  font-size: 10px;
  color: red;
  position: absolute;
  inset: 0;
}
.debug .product__section {
  box-shadow: inset 0 0 0 1px rgba(64, 224, 208, 0.4);
}
.debug .product__image::after {
  content: ".product__image";
  background: rgba(255, 0, 0, 0.1);
}
.debug .product__title::after {
  content: ".product__title";
  background: rgba(0, 0, 255, 0.1);
}
.debug .product__availability::after {
  content: ".product__availability";
  background: rgba(255, 165, 0, 0.1);
}
.debug .product__attributes::after {
  content: ".product__attributes";
  background: rgba(255, 255, 0, 0.1);
}
.debug .product__discount::after {
  content: ".product__discount";
  background: rgba(128, 0, 128, 0.1);
}
.debug .product__price::after {
  content: ".product__price";
  background: rgba(128, 0, 128, 0.1);
}
.debug .product__add-to-cart::after {
  content: ".product__add-to-cart";
  background: rgba(128, 0, 128, 0.1);
}
.debug-text * {
  white-space: wrap !important;
  word-break: break-all !important;
}
p,
span.paragraph {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.3s ease;
  font-family: "MultipleSansPro", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgb(32, 32, 32);
}
p:last-child,
span.paragraph:last-child {
  margin-bottom: 0;
}
p a,
span.paragraph a {
  color: rgb(0, 93, 169);
  text-decoration: none;
}
p a:hover,
span.paragraph a:hover {
  color: rgb(0, 136, 219);
}
p.intro,
span.paragraph.intro {
  margin-bottom: 24px;
  font-family: "MultipleSansPro", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
p.intro:last-child,
span.paragraph.intro:last-child {
  margin-bottom: 0;
}
p.large,
span.paragraph.large {
  font-size: 32px;
}
p.small,
span.paragraph.small {
  font-size: 12px;
}
p.medium-small,
span.paragraph.medium-small {
  font-size: 14px;
}
p.constrain,
span.paragraph.constrain {
  max-width: 640px;
}