/* 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);
}
.spinner__wrapper {
  display: inline-block;
}
.spinner__wrapper .spinner--circle {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  border-color: transparent;
  border-style: solid;
  border-bottom-color: rgb(0, 136, 219);
  border-left-color: rgb(0, 136, 219);
  animation: 1s circle linear infinite;
}
.spinner__wrapper .spinner--circle--small {
  width: 15px;
  height: 15px;
  border-width: 2px;
}
.spinner__wrapper .spinner--circle--medium {
  width: 23px;
  height: 23px;
  border-width: 3px;
}
.spinner__wrapper .spinner--circle--large {
  width: 30px;
  height: 30px;
  border-width: 4px;
}
.spinner__wrapper .spinner--dots--small > div {
  width: 8px;
  height: 8px;
  margin-left: 3px;
}
.spinner__wrapper .spinner--dots--medium > div {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}
.spinner__wrapper .spinner--dots--large > div {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}
.spinner__wrapper .spinner--dots > div {
  background-color: rgb(0, 136, 219);
  border-radius: 100%;
  display: inline-block;
  animation: dots 1.4s infinite ease-in-out both;
}
.spinner__wrapper .spinner--dots > div:nth-child(0) {
  margin-left: 0;
}
.spinner__wrapper .spinner--dots > div:nth-child(1) {
  animation-delay: -0.32s;
}
.spinner__wrapper .spinner--dots > div:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes dots {
0%, 80%, 100% {
    transform: scale(0);
}
40% {
    transform: scale(1);
}
}
@keyframes dots {
0%, 80%, 100% {
    transform: scale(0);
}
40% {
    transform: scale(1);
}
}
@keyframes circle {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
@keyframes circle {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}