/* 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-6dd18c6a {
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[data-v-6dd18c6a],
.debug .product .product__title[data-v-6dd18c6a],
.debug .product .product__attributes[data-v-6dd18c6a],
.debug .product .product__availability[data-v-6dd18c6a],
.debug .product .product__discount[data-v-6dd18c6a],
.debug .product .product__price[data-v-6dd18c6a],
.debug .product .product__add-to-cart[data-v-6dd18c6a] {
  position: relative;
}
.debug .product .product__image[data-v-6dd18c6a]::after,
.debug .product .product__title[data-v-6dd18c6a]::after,
.debug .product .product__attributes[data-v-6dd18c6a]::after,
.debug .product .product__availability[data-v-6dd18c6a]::after,
.debug .product .product__discount[data-v-6dd18c6a]::after,
.debug .product .product__price[data-v-6dd18c6a]::after,
.debug .product .product__add-to-cart[data-v-6dd18c6a]::after {
  font-size: 10px;
  color: red;
  position: absolute;
  inset: 0;
}
.debug .product__section[data-v-6dd18c6a] {
  box-shadow: inset 0 0 0 1px rgba(64, 224, 208, 0.4);
}
.debug .product__image[data-v-6dd18c6a]::after {
  content: ".product__image";
  background: rgba(255, 0, 0, 0.1);
}
.debug .product__title[data-v-6dd18c6a]::after {
  content: ".product__title";
  background: rgba(0, 0, 255, 0.1);
}
.debug .product__availability[data-v-6dd18c6a]::after {
  content: ".product__availability";
  background: rgba(255, 165, 0, 0.1);
}
.debug .product__attributes[data-v-6dd18c6a]::after {
  content: ".product__attributes";
  background: rgba(255, 255, 0, 0.1);
}
.debug .product__discount[data-v-6dd18c6a]::after {
  content: ".product__discount";
  background: rgba(128, 0, 128, 0.1);
}
.debug .product__price[data-v-6dd18c6a]::after {
  content: ".product__price";
  background: rgba(128, 0, 128, 0.1);
}
.debug .product__add-to-cart[data-v-6dd18c6a]::after {
  content: ".product__add-to-cart";
  background: rgba(128, 0, 128, 0.1);
}
.debug-text[data-v-6dd18c6a] * {
  white-space: wrap !important;
  word-break: break-all !important;
}
.radio-button__control[data-v-6dd18c6a] {
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 20px auto auto;
  align-items: center;
  cursor: pointer;
  line-height: 16px;
  margin: 0;
  color: rgb(32, 32, 32);
  outline: none;
}
.radio-button__control input[type=radio][data-v-6dd18c6a] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  position: relative;
}
.radio-button__control input[type=radio][data-v-6dd18c6a]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  transition: background-color 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 0 0 1px rgb(221, 221, 221);
}
.radio-button__control input[type=radio][data-v-6dd18c6a]::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.5, 1.7, 1, 1);
}
.radio-button__control input[type=radio][data-v-6dd18c6a]:checked {
  opacity: 1;
}
.radio-button__control input[type=radio][data-v-6dd18c6a]:checked::before {
  background-color: rgb(0, 93, 169);
  box-shadow: none;
}
.radio-button__control input[type=radio][data-v-6dd18c6a]:checked::after {
  content: "";
  transform: scale(1);
}
.radio-button__control:focus-visible input[type=radio][data-v-6dd18c6a]::before {
  box-shadow: inset 0 0 0 1px rgb(221, 221, 221), 0 0 0 2px rgb(0, 93, 169);
}
.radio-button__control:focus-visible input[type=radio][data-v-6dd18c6a]:checked::before {
  box-shadow: 0 0 0 2px rgb(0, 93, 169);
}
.radio-button__control:hover input[type=radio][data-v-6dd18c6a]::before {
  box-shadow: inset 0 0 0 2px rgb(221, 221, 221);
}
.radio-button__control:hover input[type=radio][data-v-6dd18c6a]:checked::before {
  background-color: rgb(0, 136, 219);
  box-shadow: none;
}
.radio-button__control__label[data-v-6dd18c6a] {
  margin-left: 16px;
  line-height: 20px;
}
.radio-button__control__tooltip[data-v-6dd18c6a] {
  margin: 0;
}
.radio-button__control--disabled[data-v-6dd18c6a] {
  cursor: not-allowed;
  color: rgb(151, 151, 151);
}
.radio-button__control--disabled input[type=radio][data-v-6dd18c6a]:checked::before {
  background-color: rgb(151, 151, 151);
  box-shadow: none;
}
.radio-button__control--disabled:hover input[type=radio][data-v-6dd18c6a]::before {
  box-shadow: inset 0 0 0 1px rgb(221, 221, 221);
}
.radio-button__control--disabled:hover input[type=radio][data-v-6dd18c6a]:checked::before {
  background-color: rgb(151, 151, 151);
  box-shadow: none;
}