@charset "UTF-8";
/* BREAKPOINTS */
/* MEDIA QUERIES */
/*
$lt-smartphone: only screen and (max-device-width: 576px);
*/
.is-xxs, .is-xs, .is-s, .is-m, .is-l, .is-xl {
  display: none;
}

@media only screen and (min-width: 340px) {
  .is-xxs {
    display: block;
  }
}

@media only screen and (min-width: 576px) {
  .is-xs {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .is-s {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .is-m {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .is-l {
    display: block;
  }
}

@media only screen and (min-width: 1600px) {
  .is-xl {
    display: block;
  }
}

.only-xs, .only-s, .only-m, .only-l, .only-xl {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 340px) {
  .only-xxs {
    display: block;
  }
}

@media only screen and (min-width: 0px) and (max-width: 576px) {
  .only-xs {
    display: block;
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .only-s {
    display: block;
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .only-m {
    display: block;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .only-l {
    display: block;
  }
}

@media only screen and (min-width: 1201px) {
  .only-xl {
    display: block;
  }
}

.close {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  line-height: 40px;
  line-height: 2.5rem;
  border-radius: 50%;
  text-align: center;
  background: #333;
  margin-left: auto;
  font-size: 20px;
  font-size: 1.25rem;
  color: rgb(var(--color-white));
  cursor: pointer;
  transition: transform 0.3s;
}
.close:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}
.close i:before {
  font-size: 15px;
  font-size: 0.9375rem;
}

.wbx-query > .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: calc(var(--gutter) / 2);
}
@media only screen and (max-width: 768px) {
  .wbx-query > .wrapper {
    margin-bottom: calc(var(--gutter) / 2);
  }
}

.wbx-query-search-reset {
  display: flex;
  align-items: center;
  font-size: 24px;
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 0 0.25em;
  cursor: pointer;
}
.wbx-query-search-reset i {
  margin: auto;
}
.wbx-query-search-reset:hover {
  background: rgb(0, 0, 0);
  color: #fff;
}

.wbx-query-search {
  grid-area: catalog-search;
  flex: 1;
}
.wbx-query-search .form-text {
  flex: 1;
  width: auto;
  margin: 0;
}
.wbx-query-search .form-select {
  margin: 0;
}
.wbx-query-search .form-select .form-input {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.wbx-query-display {
  grid-area: catalog-sorting;
  display: flex;
  align-items: center;
  gap: 0 1px;
  height: 40px;
}
.wbx-query-display .wbx-query-display-filter.active button {
  background: rgba(var(--color-black), 1);
  color: #fff;
}
.wbx-query-display .wbx-query-display-filter.active button select {
  color: #fff;
}
.wbx-query-display > * {
  height: 100%;
}
.wbx-query-display > .wbx-query-display-numbers {
  margin-right: auto;
  height: auto;
}
.wbx-query-display button select,
.wbx-query-display button select:focus {
  background: none;
  line-height: 32px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.wbx-query-sort {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 var(--gutter-grid);
  align-self: center;
}
.wbx-query-sort .form-select {
  width: auto;
  margin: 0;
}

.wbx-query-search {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wbx-query-search-input {
  display: flex;
  width: 100%;
  flex: 1;
  min-width: 200px;
}
.wbx-query-search-input .form-input {
  width: 100%;
}
.wbx-query-search-input .form-button button {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
@media only screen and (max-width: 992px) {
  .wbx-query-search-input .form-button button span {
    display: none;
  }
}
.wbx-query-search-input .icon-close {
  font-size: 0.7em;
}

.wbx-advanced-search {
  font-size: 0.9em;
  font-weight: var(--fw-bold);
}
.wbx-advanced-search span {
  display: block;
  cursor: pointer;
  white-space: nowrap;
}

.wbx-query-filters {
  grid-area: catalog-filters;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .wbx-query-filters .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.wbx-query-filters-aside {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: none;
}
.wbx-query-filters-aside:has(.wbx-query-filters-item) {
  display: block;
}
.wbx-query-filters-aside .wrapper {
  display: flex;
  gap: calc(var(--gutter) / 2);
  flex-direction: column;
}
.wbx-query-filters-aside .wbx-query-filters-container {
  display: block;
  gap: 0px;
}
.wbx-query-filters-aside .wbx-query-filters-container .wbx-query-filters-item {
  flex: 1;
  width: 100%;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.wbx-query-filters-aside .form-text,
.wbx-query-filters-aside .form-dropdown,
.wbx-query-filters-aside .form-accordeon,
.wbx-query-filters-aside .form-checkbox {
  margin: 0;
}
.wbx-query-filters-aside .form-checkbox {
  width: auto;
}

.wbx-query-filters-container {
  width: 100%;
  display: grid;
  grid-auto-flow: dense;
  grid-gap: calc(var(--gutter-grid) / 2);
  grid-template-columns: repeat(auto-fill, minmax(var(--product-column-min-width), 1fr));
  gap: 0.25em;
}
.wbx-query-filters-container .form-dropdown,
.wbx-query-filters-container .form-select {
  width: auto;
  margin: 0;
}

.wbx-query-filters-title {
  white-space: nowrap;
}

.wbx-query-filters-item {
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
  display: flex;
  min-height: 40px;
}
.wbx-query-filters-item > * {
  margin: auto 0 !important;
  width: 100% !important;
}
@media only screen and (max-width: 992px) {
  .wbx-query-filters-item {
    width: 100%;
  }
}
@media only screen and (max-width: 340px) {
  .wbx-query-filters-item {
    width: 100%;
  }
}
.wbx-query-filters-item .form-input-wrapper {
  align-items: center;
}
.wbx-query-filters-item .form-input-item {
  white-space: nowrap;
}
.wbx-query-filters-item:last-child {
  margin-right: 0;
}
.wbx-query-filters-item .form-input {
  width: 100%;
}
.wbx-query-filters-item .form-modal {
  min-width: 100%;
}

.wbx-query-filters-item-stock .form-checkbox .form-input {
  border: none;
  background: none;
}

.wbx-query-filters-item-stock-label:before {
  top: -2px;
}

.wbx-filters-listing {
  margin-right: auto;
}

.wbx-filters-active-cta-clear {
  margin-left: auto !important;
}
.wbx-filters-active-cta-clear svg {
  width: 20px;
  height: auto;
}

.wbx-filters-active {
  grid-area: catalog-filters-active;
  width: 100%;
}
.wbx-filters-active > .wrapper {
  display: flex;
  gap: calc(var(--gutter) / 2);
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .wbx-filters-active > .wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex-direction: row;
  }
}

.wbx-filters-active-listing {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  gap: calc(var(--gutter) / 4);
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .wbx-filters-active-listing {
    justify-content: flex-start;
    flex-direction: row;
  }
}

.wbx-filters-active-item {
  display: flex;
  white-space: nowrap;
  align-items: center;
  padding: 0 calc(var(--gutter) / 2);
  font-size: 14px;
  border-radius: 4px;
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
  min-height: 2.4em;
  position: relative;
  transition: all 250ms ease;
}
@media only screen and (min-width: 992px) {
  .wbx-filters-active-item {
    padding: 0 calc(var(--gutter) / 4);
  }
}
.wbx-filters-active-item:hover {
  opacity: 0.7;
}

.wbx-filters-active-close {
  width: auto;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  margin-left: calc(var(--gutter) / 4);
}
.wbx-filters-active-close:before {
  position: relative;
  top: 2px;
}

.form-option {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.form-option .form-option {
  margin-top: 1em;
}
.form-option.has-error > .form-label {
  color: rgba(var(--color-danger), 1);
  font-weight: var(--fw-bold);
}
.form-option .currency {
  font-size: 0.7em;
  font-style: normal;
  padding-right: 0.25em;
}
.form-option > .form-label {
  display: block;
  margin-bottom: 0.5em;
}
.form-option > .form-label:has(.asterisk) {
  font-weight: var(--fw-medium);
}
.form-option > .form-label .asterisk {
  color: orange;
  margin-left: 0.25em;
  font-size: 1.2em;
}
.form-option > .form-input {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: stretch;
  /* SELECTED */
}
.form-option > .form-input .form-input-wrapper {
  position: relative;
}
.form-option > .form-input .form-input-wrapper input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-option > .form-input .form-input-label-wrapper {
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.5em 1em;
  margin: 0;
  border: 1px solid rgba(var(--color-black), 1);
  min-height: 100%;
}
.form-option > .form-input .form-input-label-wrapper .form-input-label-text {
  padding: 0.25em;
  order: 5;
}
.form-option > .form-input .form-input-label-wrapper .form-input-label-price {
  order: 10;
}
.form-option > .form-input .form-input-label-wrapper figure {
  order: 1;
  width: 100%;
  height: 60px;
  display: flex;
  aspect-ratio: 16/9;
}
.form-option > .form-input .form-input-label-wrapper figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: auto;
}
.form-option > .form-input .form-input-label-wrapper:before, .form-option > .form-input .form-input-label-wrapper:after {
  display: none;
  background: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.form-option > .form-input .active .form-input-label-wrapper,
.form-option > .form-input input:checked ~ .form-input-label-wrapper {
  background: rgba(var(--color-black), 1);
  color: rgba(var(--color-white), 1);
  font-weight: var(--fw-bold);
}
.form-option > .form-input .active .form-input-label-wrapper.has-picture,
.form-option > .form-input input:checked ~ .form-input-label-wrapper.has-picture {
  background: inherit;
  color: inherit;
  border-width: 2px;
}
.form-option.attribute-type-color {
  /* SELECTED */
}
.form-option.attribute-type-color .form-input-label-wrapper {
  width: 2em;
  height: 2em;
  padding: 0;
  border-radius: 50%;
  border: 0px;
}
.form-option.attribute-type-color .form-input-label-wrapper .form-input-label-text {
  display: none;
}
.form-option.attribute-type-color .form-input-label-wrapper .form-input-label-price {
  display: none;
}
.form-option.attribute-type-color .form-input-label-wrapper .form-input-label-image {
  border-radius: inherit;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4) inset;
  height: 100%;
  width: 100%;
  display: block;
}
.form-option.attribute-type-color .form-input-label-wrapper .form-input-label-image img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
.form-option.attribute-type-color input:checked ~ span:before {
  content: "";
  border: 2px solid #000;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  display: block;
  position: absolute;
}

/*
.form-list-field-option{
  padding: 0.5em 0;

  .debug &{
    border: 1px dashed #88a40b;
    position: relative;
    &:before{
      content: "vueJs Product-Option";
      position: absolute;
      border: 1px dashed #88a40b;
      background: #d5dc97;
      color: rgb(var(--color-black));
      font-size: 10px;
      text-transform: uppercase;
        font-weight: var(--fw-black);
      bottom: 100%;
      right: 0;
      padding: 5px;
    }
  }

  &.has-error > label{
    color: red;
    font-weight: var(--fw-bold);
    animation: blinker 1s linear;
    animation-iteration-count: 2;
  }

  .form-list-field-option-input{
    display: flex;
    flex-wrap: wrap;

    > *{
      margin-right: 5px;
      margin-bottom: 5px;
    }
  }

  .form-list-field-option-label{
    font-size: 11px;
    display: block;
    margin-bottom: 1em;
    color: rgb(var(--color-black));
      font-weight: var(--fw-medium);

    .info{
      text-transform: none;
      color: rgb(var(--color-black));
    }
  }
  .form-list-field-option-input-label{
    position: relative;
    cursor: pointer;

    & > input[type='radio']{
      opacity: 0;
      position: absolute;
    }
    & > span {
      background: #f0f0f0;
      min-width: 2.4em;
      display: block;
      position: relative;
        font-weight: var(--fw-bold);

      &:after{
        content:"";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgb(var(--color-black));
        opacity: 0;
      }

      > span{
        line-height: 40px;
        padding: 0 0.5em;
      }
    }
    &.active > span,
    & > input[type='radio']:checked ~ span{
      background-color: rgb(var(--color-black));
      color: rgb(var(--color-white));
    }
    &.active > span:after,
    & > input[type='radio']:checked ~ span:after{
      opacity: 1;
    }
  }
}

.form-list-field-option-color {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.field-option-image {
  position: absolute;
  top: 0;
  left: 0;

  img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
}

.field-option-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.field-option-name {
  position: relative;
  z-index: 1;
}


.form-list-field-option-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.form-list-field-option-name {
  position: relative;
  z-index: 1;
  display: block;
  white-space: nowrap;
  text-align: center;
}

//.field-option.attribute-type-color > .field-option-input .field-option-input-label{
//  margin-right: 4px;
//  margin-bottom: 4px;
//}
//.field-option.attribute-type-color > .field-option-input .field-option-input-label > span{
//  border-radius: 30px;
//  width: 30px;
//  aspect-ratio: 1;
//  margin: 2px;
//  min-width: 1px ;
//}
//.field-option.attribute-type-color > .field-option-input input[type='radio']:checked ~ span{
//  border: 0px;
//}
//.field-option.attribute-type-color > .field-option-input .field-option-input-label > span > span{
//  display: none;
//}
//.field-option.attribute-type-color > .field-option-input > span:before,
//.field-option.attribute-type-color > .field-option-input input[type='radio'] ~ span:before{
//  display: none;
//}
//.field-option.attribute-type-color > .field-option-input .active > span:before,
//.field-option.attribute-type-color > .field-option-input input[type='radio']:checked ~ span:before{
//  content: "";
//  position: absolute;
//  border-radius: 50%;
//  top: 50%;
//  left: 50%;
//  display: block;
//  width: calc(100% + 2px);
//  height: calc(100% + 2px);
//  transform: translateX(-50%) translateY(-50%);
//  border: 2px solid rgb(var(--color-black));
//  background: none ;
//}
//.field-option.attribute-type-color > .field-option-input input[type='radio']:checked ~ span:after{
//  display: none;
//}
//.field-option.attribute-type-text input{
//  line-height: 40px;
//  padding: 0 0.5em;
//  border: 1px solid rgb(var(--color-black));
//  width: 100%;
//}


/*
 * Attributes specificities
 */
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.wbx-badge-status {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  line-height: 2em;
  font-size: 0.9rem;
}

.wbx-badge-status-discount {
  display: inline-block;
  background: rgb(var(--color-promotion));
  color: rgb(var(--color-white));
  padding: 0 0.5em;
  font-weight: var(--fw-bold);
  margin-right: 2px;
  text-transform: uppercase;
}

.wbx-badge-status-new {
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
  padding: 0 4px;
  font-weight: var(--fw-bold);
  margin-right: 2px;
}

.drop-zone {
  display: none;
  position: fixed;
  right: -90px;
  bottom: -90px;
  color: rgb(var(--color-white));
  z-index: 100;
  width: 180px;
  height: 180px;
  text-align: left;
}
.drop-zone .area {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  transform-origin: center;
  left: 50%;
  width: 120%;
  height: 120%;
  z-index: -1;
  background: rgb(0, 0, 0);
  border-radius: 50%;
}
.drop-zone .hit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  transform-origin: center;
  left: 50%;
  width: 150%;
  height: 150%;
  z-index: 0;
  border-radius: 50%;
}
.drop-zone > .wrapper {
  transition: all 200ms ease-in-out;
  position: relative;
  height: 100%;
  border-radius: 50%;
}
.drop-zone i {
  font-size: 40px;
  position: absolute;
  top: 25%;
  transform: translateY(-50%) translateX(-50%);
  left: 25%;
  transition: opacity 400ms ease-in-out;
  transition-delay: 500ms;
}
.drop-zone .success {
  position: absolute;
  top: 25%;
  transform: translateY(-50%) translateX(-50%);
  left: 25%;
  width: 60px;
  height: 60px;
}
.drop-zone .success .circ {
  opacity: 0;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  -webkit-transition: all 0.75s;
  -moz-transition: all 0.75s;
  -ms-transition: all 0.75s;
  -o-transition: all 0.75s;
  transition: all 0.75s;
}
.drop-zone .success .tick {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  -webkit-transition: stroke-dashoffset 0.5s 0.25s ease-out;
  -moz-transition: stroke-dashoffset 0.5s 0.25s ease-out;
  -ms-transition: stroke-dashoffset 0.5s 0.25s ease-out;
  -o-transition: stroke-dashoffset 0.5s 0.25s ease-out;
  transition: stroke-dashoffset 0.5s 0.25s ease-out;
}
.drop-zone.dropping-moving > .wrapper .area {
  opacity: 0.5;
}
.drop-zone.dropping-on > .wrapper .area {
  background: #7dc945;
}
.drop-zone.dropped > .wrapper .area {
  background: #7dc945;
}
.drop-zone.dropped i {
  opacity: 0;
  transition-delay: 0ms;
}
.drop-zone.dropped .success .path {
  opacity: 1;
  stroke-dashoffset: 0;
}

/*******************************

  RESUME

*******************************/
.wbx-step, .wbx-checkout-empty, .wbx-voucher, .wbx-shipping, .wbx-resume {
  border-radius: var(--border-radius);
  background: rgb(var(--color-white));
  margin-bottom: 1rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}

.wbx-resume {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
}
.wbx-resume .wbx-cart-product {
  padding: calc(var(--gutter) / 2) var(--gutter);
}
.wbx-resume .wbx-cart-product .wbx-cart-product-content {
  padding-left: 0;
}

.wbx-resume-buttons {
  padding: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--gutter) / 2);
  flex-direction: column;
}
.wbx-resume-buttons > * {
  width: 100%;
}
.wbx-resume-buttons .wbx-button-container {
  margin: 0 !important;
}

.wbx-resume-title {
  padding: var(--gutter);
  padding-bottom: calc(var(--gutter) / 2);
  font-size: 1.4rem;
  font-weight: var(--fw-light);
}

.wbx-resume-back-button {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wbx-resume-checkout-button {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.amount {
  white-space: nowrap;
}

.wbx-cart-resume-table-products-vouchers .voucher-name {
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}
.wbx-cart-resume-table-products-vouchers .remove {
  display: block;
  font-size: 0.8em;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
.wbx-cart-resume-table-products-vouchers .remove:hover {
  color: rgb(var(--color-danger));
}

.wbx-shipping-wrapper {
  padding: calc(var(--gutter) / 2);
  padding-top: 0;
}

.wbx-voucher {
  margin-bottom: 0;
}

.wbx-voucher-wrapper {
  padding: var(--gutter);
  padding-top: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.25em;
}
.wbx-voucher-wrapper > * {
  width: 100% !important;
}
.wbx-voucher-wrapper .form-text {
  margin-bottom: 0px;
  width: auto;
  flex: 1;
}

.wbx-cart-resume-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 0.9rem;
  padding: var(--gutter);
  padding-bottom: 0;
  padding-top: calc(var(--gutter) / 2);
}
.wbx-cart-resume-table .price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.wbx-cart-resume-table .price i {
  font-style: normal;
  font-size: 0.8em;
  margin-right: 0.25em;
}
.wbx-cart-resume-table .price span {
  margin-left: auto;
}
.wbx-cart-resume-table .price.regular-price {
  text-decoration: line-through;
  font-size: 0.8em;
}
.wbx-cart-resume-table > * {
  display: flex;
}
.wbx-checkout-main-resume .wbx-cart-resume-table > * {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.wbx-cart-resume-table > *:last-child {
  border-bottom: none !important;
}
.wbx-cart-resume-table > * .label {
  flex: 1;
}
.wbx-cart-resume-table > * > * {
  padding-bottom: 0.15em;
  padding-top: 0.15em;
}
.wbx-checkout-main-resume .wbx-cart-resume-table > * > * {
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}
.wbx-cart-resume-table > * > *:last-child {
  min-width: 100px;
}

.wbx-cart-resume-table-products-total {
  font-size: 1.125em;
  font-weight: var(--fw-extra-bold);
}

.wbx-cart-resume-table-products-taxes {
  color: rgb(var(--color-grey));
}
.wbx-cart-resume-table-products-taxes.wbx-cart-ttc {
  order: 100;
  border: none;
}

[class*=wbx-cart-resume-] .label {
  text-align: left;
  padding-right: calc(var(--gutter) / 2);
}
[class*=wbx-cart-resume-] div {
  text-align: right;
}
[class*=wbx-cart-resume-].wbx-resume-products-total .label, [class*=wbx-cart-resume-].wbx-resume-products-total .price span {
  font-weight: var(--fw-bold);
}
[class*=wbx-cart-resume-].wbx-resume-products-taxes {
  font-size: 0.9em;
  opacity: 0.6;
}
[class*=wbx-cart-resume-].wbx-resume-products-taxes > * {
  border-bottom: 0px;
}

/*******************************

  CART

*******************************/
.weebox-cart-active .wbx-cart-floating-side, .weebox-cart-active .wbx-checkout, .weebox-cart-active .wbx-cart, .weebox-cart-active .wbx-resume {
  transform: translateX(0%);
}

.wbx-cart-main-content {
  background: rgba(var(--color-white));
  padding: calc(var(--gutter) / 2) 0;
}

.wbx-cart-product {
  display: flex;
  padding: calc(var(--gutter) / 2) var(--gutter);
  border-bottom: 1px solid #eee;
  position: relative;
  justify-content: space-between;
  gap: calc(var(--gutter) / 2);
}
.wbx-cart-product:last-of-type {
  border: none;
}
.wbx-cart-product:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  background: red;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 100ms ease-in-out;
}
.wbx-cart-product .wbx-loader {
  z-index: 20;
  width: 40px;
  height: auto;
}
.wbx-cart-product .wbx-loader > div {
  border-color: rgb(var(--color-black)) transparent transparent transparent;
}
.wbx-cart-product.wbx-cart-loading * {
  pointer-events: none;
}
.wbx-cart-product.wbx-cart-loading:after {
  opacity: 1;
}

.wbx-cart-product-picture {
  width: 140px;
}
.wbx-cart-product-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}
.wbx-cart-floating-content .wbx-cart-product-picture {
  width: 100px;
}
@media only screen and (max-width: 768px) {
  .wbx-cart-floating-content .wbx-cart-product-picture {
    width: 60px;
  }
}

.wbx-cart-product-header {
  margin-bottom: 0.25em;
}
.wbx-resume .wbx-cart-product-header {
  display: flex;
  justify-content: space-between;
}

.wbx-cart-product-name span {
  display: block;
}

.wbx-cart-product-content-description {
  margin-bottom: 0.5em;
}

.wbx-cart-product-content-gift {
  margin-bottom: 0.5em;
}

.wbx-cart-product-quantity {
  display: flex;
  margin-bottom: 0.5em;
}
.wbx-cart-product-quantity > * {
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 30px;
  text-align: center;
}
.wbx-cart-product-quantity span {
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  border-top: #eee 1px solid;
  border-bottom: #eee 1px solid;
}
.wbx-cart-product-quantity button {
  cursor: pointer;
  background: #eee;
  border: 0;
  color: rgb(var(--color-black));
}

.wbx-cart-product-option-listing {
  display: flex;
  flex-direction: column;
  color: rgb(var(--color-black));
  font-size: 0.9em;
  opacity: 0.7;
}
.wbx-cart-product-option-listing dd {
  padding-left: 1em;
  margin-bottom: 0.5em;
}

.wbx-cart-product-content {
  flex: 1;
}
.wbx-cart-product-content > *:last-child {
  margin-bottom: 0;
}
.wbx-cart-product-content .wbx-product-name {
  font-weight: var(--fw-bold);
  font-size: 1.2em;
}
.wbx-cart-product-content .wbx-product-name a {
  color: inherit;
  text-decoration: none;
}

.wbx-cart-product-footer {
  display: flex;
  flex-direction: column;
}

.wbx-cart-product-content-schedule {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5em 1em;
}
.wbx-cart-product-content-schedule .wbx-cart-product-content-schedule-title {
  width: 100%;
}
.wbx-cart-product-content-schedule .wbx-cart-product-content-schedule-title strong {
  display: inline-block;
  padding: 0.25em 0.5em;
  background: rgb(var(--color-light-grey));
  color: rgb(var(--color-black));
  text-transform: uppercase;
  font-size: 0.75em;
}
.wbx-cart-product-content-schedule .wbx-cart-product-content-schedule-action {
  display: flex;
  align-items: center;
}

.wbx-cart-product-content-schedule-location {
  display: flex;
  margin-right: 2px;
}
.wbx-cart-product-content-schedule-location i {
  margin-right: 0.5em;
}
.wbx-cart-product-content-schedule-location p {
  color: rgba(var(--color-black), 1);
  margin: 0;
}
.wbx-cart-product-content-schedule-location p span {
  display: block;
}
.wbx-cart-product-content-schedule-location p strong {
  font-weight: var(--fw-bold);
  display: block;
}

.wbx-cart-product-content-schedule-date {
  display: flex;
  margin-right: 2px;
}
.wbx-cart-main-content .wbx-cart-product-content-schedule-date {
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr auto;
}
.wbx-cart-product-content-schedule-date .title {
  font-weight: var(--fw-bold);
  display: block;
}
.wbx-cart-product-content-schedule-date .icon, .wbx-cart-product-content-schedule-date .choose-institut label span, .choose-institut label .wbx-cart-product-content-schedule-date span {
  margin-right: 0.5em;
}

.wbx-cart-main-content .wbx-cart-product-content-schedule-date-details {
  grid-column-start: 2;
}

.wbx-cart-remove {
  font-size: 0.8em;
  line-height: 2em;
  border: 0;
  background: none;
  color: rgb(var(--color-dark-grey));
  transition: all 0.25s ease-out;
  margin-top: auto;
  text-align: center;
  border-radius: 4px;
}
.wbx-cart-remove:hover {
  transition: transform 0.3s;
  background: rgb(var(--color-danger));
  color: #fff;
}
.wbx-cart-remove i {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  display: none;
}

/*******************************

  CHECKOUT

*******************************/
[rel=checkout-resume] .form-checkbox {
  margin-bottom: 1em;
}
[rel=checkout-resume] .form-checkbox a {
  color: rgba(var(--color-link));
}

.wbx-checkout-empty {
  padding: var(--gutter);
}

.wbx-cgv-accepted {
  font-weight: var(--fw-bold);
}
.wbx-cgv-accepted span {
  display: block;
  font-weight: var(--fw-light);
  color: rgba(var(--color-main), 1);
}

.wbx-checkout-main > .wrapper {
  display: flex;
  gap: var(--gutter);
  flex-wrap: wrap;
  align-items: flex-start;
  width: var(--wrapper-width);
  margin: auto;
}
.wbx-checkout-main .wbx-checkout-main-content {
  order: 1;
  flex: 3;
  min-width: min(100%, 600px);
}
@media only screen and (max-width: 768px) {
  .wbx-checkout-main .wbx-checkout-main-content {
    width: auto;
  }
}
.wbx-checkout-main .wbx-checkout-buttons {
  order: 3;
  padding-right: var(--gutter);
}
@media only screen and (max-width: 768px) {
  .wbx-checkout-main .wbx-checkout-buttons {
    width: 100%;
    margin: 0;
    padding: calc(var(--gutter) / 2);
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: rgb(var(--color-white));
  }
}

.wbx-checkout-main-resume {
  order: 2;
  position: sticky;
  display: flex;
  flex-direction: column;
  top: calc(var(--nav-sticky) + var(--notice-height) + var(--gutter) / 2);
  min-width: min(100%, 350px);
  flex: 1;
  gap: var(--gutter);
}
@media only screen and (max-width: 768px) {
  .wbx-checkout-main-resume {
    width: 100%;
    position: static;
    order: 10;
  }
}

.wbx-checkout-account {
  display: flex;
  align-items: center;
  width: 100%;
  padding: calc(var(--gutter) / 2);
  margin-bottom: calc(var(--gutter) / 2);
  background: #f9efdf;
}
@media only screen and (max-width: 992px) {
  .wbx-checkout-account {
    flex-direction: column;
    gap: calc(var(--gutter) / 2);
  }
}
.wbx-checkout-account strong {
  font-size: 1.2em;
}
@media only screen and (min-width: 992px) {
  .wbx-checkout-account footer {
    margin-left: auto;
  }
}

.wbx-checkout-main-content {
  flex: 1;
  max-width: 100%;
}

.wbx-checkout .same-as ~ * {
  margin-top: var(--gutter);
}
.wbx-checkout h2 {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  text-transform: uppercase;
}
.wbx-checkout h2 span {
  display: none;
}
@media only screen and (max-width: 768px) {
  .wbx-checkout h2 {
    font-size: 1.2rem;
  }
}
.wbx-checkout .wbx-step-wrapper > h3 {
  font-weight: var(--fw-medium);
  margin-bottom: 1em;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .wbx-checkout .wbx-step-wrapper > h3 {
    font-size: 1rem;
  }
}
.wbx-checkout .wbx-step {
  position: relative;
  margin-bottom: var(--gutter);
}
.wbx-checkout .wbx-step:last-child {
  margin: 0;
}

.wbx-resume-address {
  display: flex;
  margin-top: calc(var(--gutter) / 2);
  padding-top: calc(var(--gutter) / 2);
  border-top: dotted 1px #ddd;
  width: 100%;
}
.wbx-resume-address > *:nth-child(1) {
  font-weight: var(--fw-bold);
}
.wbx-resume-address > *:nth-child(2) {
  padding-left: 2em;
}
.wbx-resume-address span {
  display: block;
}

.wbx-checkout-loader {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--color-white), 1);
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wbx-checkout-loader.relative {
  position: static;
}
.wbx-checkout-loader .wbx-checkout-loader-label {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  display: block;
}
.wbx-checkout-loader .css-loader {
  width: 60px;
  height: 60px;
  margin: auto;
}
.wbx-checkout-loader .css-loader::before {
  border: 4px solid rgb(var(--color-black));
}

.wbx-form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--gutter);
  width: 100%;
}
.wbx-form > * {
  order: 100;
}
.wbx-form .form-radio[rel="address_billing.lastname"], .wbx-form .form-radio[rel="address_billing.firstname"], .wbx-form .form-radio[rel="address_delivery.firstname"], .wbx-form .form-radio[rel="address_delivery.lastname"], .wbx-form .form-radio[rel="personal.firstname"], .wbx-form .form-radio[rel="personal.lastname"], .wbx-form .form-radio[rel=firstname], .wbx-form .form-radio[rel=lastname], .wbx-form .form-radio[rel=email], .wbx-form .form-radio[rel=phone], .wbx-form .form-radio[rel=phone_mobile], .wbx-form .form-radio[rel=birthdate],
.wbx-form .form-text[rel="address_billing.lastname"],
.wbx-form .form-text[rel="address_billing.firstname"],
.wbx-form .form-text[rel="address_delivery.firstname"],
.wbx-form .form-text[rel="address_delivery.lastname"],
.wbx-form .form-text[rel="personal.firstname"],
.wbx-form .form-text[rel="personal.lastname"],
.wbx-form .form-text[rel=firstname],
.wbx-form .form-text[rel=lastname],
.wbx-form .form-text[rel=email],
.wbx-form .form-text[rel=phone],
.wbx-form .form-text[rel=phone_mobile],
.wbx-form .form-text[rel=birthdate],
.wbx-form .form-birthdate[rel="address_billing.lastname"],
.wbx-form .form-birthdate[rel="address_billing.firstname"],
.wbx-form .form-birthdate[rel="address_delivery.firstname"],
.wbx-form .form-birthdate[rel="address_delivery.lastname"],
.wbx-form .form-birthdate[rel="personal.firstname"],
.wbx-form .form-birthdate[rel="personal.lastname"],
.wbx-form .form-birthdate[rel=firstname],
.wbx-form .form-birthdate[rel=lastname],
.wbx-form .form-birthdate[rel=email],
.wbx-form .form-birthdate[rel=phone],
.wbx-form .form-birthdate[rel=phone_mobile],
.wbx-form .form-birthdate[rel=birthdate],
.wbx-form .form-select[rel="address_billing.lastname"],
.wbx-form .form-select[rel="address_billing.firstname"],
.wbx-form .form-select[rel="address_delivery.firstname"],
.wbx-form .form-select[rel="address_delivery.lastname"],
.wbx-form .form-select[rel="personal.firstname"],
.wbx-form .form-select[rel="personal.lastname"],
.wbx-form .form-select[rel=firstname],
.wbx-form .form-select[rel=lastname],
.wbx-form .form-select[rel=email],
.wbx-form .form-select[rel=phone],
.wbx-form .form-select[rel=phone_mobile],
.wbx-form .form-select[rel=birthdate] {
  width: calc(50% - var(--gutter) / 2);
}
@media only screen and (max-width: 992px) {
  .wbx-form .form-radio[rel="address_billing.lastname"], .wbx-form .form-radio[rel="address_billing.firstname"], .wbx-form .form-radio[rel="address_delivery.firstname"], .wbx-form .form-radio[rel="address_delivery.lastname"], .wbx-form .form-radio[rel="personal.firstname"], .wbx-form .form-radio[rel="personal.lastname"], .wbx-form .form-radio[rel=firstname], .wbx-form .form-radio[rel=lastname], .wbx-form .form-radio[rel=email], .wbx-form .form-radio[rel=phone], .wbx-form .form-radio[rel=phone_mobile], .wbx-form .form-radio[rel=birthdate],
  .wbx-form .form-text[rel="address_billing.lastname"],
  .wbx-form .form-text[rel="address_billing.firstname"],
  .wbx-form .form-text[rel="address_delivery.firstname"],
  .wbx-form .form-text[rel="address_delivery.lastname"],
  .wbx-form .form-text[rel="personal.firstname"],
  .wbx-form .form-text[rel="personal.lastname"],
  .wbx-form .form-text[rel=firstname],
  .wbx-form .form-text[rel=lastname],
  .wbx-form .form-text[rel=email],
  .wbx-form .form-text[rel=phone],
  .wbx-form .form-text[rel=phone_mobile],
  .wbx-form .form-text[rel=birthdate],
  .wbx-form .form-birthdate[rel="address_billing.lastname"],
  .wbx-form .form-birthdate[rel="address_billing.firstname"],
  .wbx-form .form-birthdate[rel="address_delivery.firstname"],
  .wbx-form .form-birthdate[rel="address_delivery.lastname"],
  .wbx-form .form-birthdate[rel="personal.firstname"],
  .wbx-form .form-birthdate[rel="personal.lastname"],
  .wbx-form .form-birthdate[rel=firstname],
  .wbx-form .form-birthdate[rel=lastname],
  .wbx-form .form-birthdate[rel=email],
  .wbx-form .form-birthdate[rel=phone],
  .wbx-form .form-birthdate[rel=phone_mobile],
  .wbx-form .form-birthdate[rel=birthdate],
  .wbx-form .form-select[rel="address_billing.lastname"],
  .wbx-form .form-select[rel="address_billing.firstname"],
  .wbx-form .form-select[rel="address_delivery.firstname"],
  .wbx-form .form-select[rel="address_delivery.lastname"],
  .wbx-form .form-select[rel="personal.firstname"],
  .wbx-form .form-select[rel="personal.lastname"],
  .wbx-form .form-select[rel=firstname],
  .wbx-form .form-select[rel=lastname],
  .wbx-form .form-select[rel=email],
  .wbx-form .form-select[rel=phone],
  .wbx-form .form-select[rel=phone_mobile],
  .wbx-form .form-select[rel=birthdate] {
    width: 100%;
  }
}
.wbx-form .form-radio[rel="address_billing.company"], .wbx-form .form-radio[rel="address_delivery.company"], .wbx-form .form-radio[rel="address_billing.country"], .wbx-form .form-radio[rel="address_delivery.country"], .wbx-form .form-radio[rel="address_billing.street_complement"], .wbx-form .form-radio[rel="address_delivery.street_complement"], .wbx-form .form-radio[rel=gender],
.wbx-form .form-text[rel="address_billing.company"],
.wbx-form .form-text[rel="address_delivery.company"],
.wbx-form .form-text[rel="address_billing.country"],
.wbx-form .form-text[rel="address_delivery.country"],
.wbx-form .form-text[rel="address_billing.street_complement"],
.wbx-form .form-text[rel="address_delivery.street_complement"],
.wbx-form .form-text[rel=gender],
.wbx-form .form-birthdate[rel="address_billing.company"],
.wbx-form .form-birthdate[rel="address_delivery.company"],
.wbx-form .form-birthdate[rel="address_billing.country"],
.wbx-form .form-birthdate[rel="address_delivery.country"],
.wbx-form .form-birthdate[rel="address_billing.street_complement"],
.wbx-form .form-birthdate[rel="address_delivery.street_complement"],
.wbx-form .form-birthdate[rel=gender],
.wbx-form .form-select[rel="address_billing.company"],
.wbx-form .form-select[rel="address_delivery.company"],
.wbx-form .form-select[rel="address_billing.country"],
.wbx-form .form-select[rel="address_delivery.country"],
.wbx-form .form-select[rel="address_billing.street_complement"],
.wbx-form .form-select[rel="address_delivery.street_complement"],
.wbx-form .form-select[rel=gender] {
  width: 100%;
}
.wbx-form .form-radio[rel="address_billing.street"], .wbx-form .form-radio[rel="address_delivery.street"],
.wbx-form .form-text[rel="address_billing.street"],
.wbx-form .form-text[rel="address_delivery.street"],
.wbx-form .form-birthdate[rel="address_billing.street"],
.wbx-form .form-birthdate[rel="address_delivery.street"],
.wbx-form .form-select[rel="address_billing.street"],
.wbx-form .form-select[rel="address_delivery.street"] {
  width: calc(80% - var(--gutter) / 2);
}
.wbx-form .form-radio[rel="address_billing.street_number"], .wbx-form .form-radio[rel="address_delivery.street_number"],
.wbx-form .form-text[rel="address_billing.street_number"],
.wbx-form .form-text[rel="address_delivery.street_number"],
.wbx-form .form-birthdate[rel="address_billing.street_number"],
.wbx-form .form-birthdate[rel="address_delivery.street_number"],
.wbx-form .form-select[rel="address_billing.street_number"],
.wbx-form .form-select[rel="address_delivery.street_number"] {
  width: calc(20% - var(--gutter) / 2);
}
.wbx-form .form-radio[rel="address_billing.locality"], .wbx-form .form-radio[rel="address_delivery.locality"],
.wbx-form .form-text[rel="address_billing.locality"],
.wbx-form .form-text[rel="address_delivery.locality"],
.wbx-form .form-birthdate[rel="address_billing.locality"],
.wbx-form .form-birthdate[rel="address_delivery.locality"],
.wbx-form .form-select[rel="address_billing.locality"],
.wbx-form .form-select[rel="address_delivery.locality"] {
  width: calc(60% - var(--gutter) / 2);
}
@media only screen and (max-width: 992px) {
  .wbx-form .form-radio[rel="address_billing.locality"], .wbx-form .form-radio[rel="address_delivery.locality"],
  .wbx-form .form-text[rel="address_billing.locality"],
  .wbx-form .form-text[rel="address_delivery.locality"],
  .wbx-form .form-birthdate[rel="address_billing.locality"],
  .wbx-form .form-birthdate[rel="address_delivery.locality"],
  .wbx-form .form-select[rel="address_billing.locality"],
  .wbx-form .form-select[rel="address_delivery.locality"] {
    width: 100%;
  }
}
.wbx-form .form-radio[rel="address_billing.postal_code"], .wbx-form .form-radio[rel="address_delivery.postal_code"],
.wbx-form .form-text[rel="address_billing.postal_code"],
.wbx-form .form-text[rel="address_delivery.postal_code"],
.wbx-form .form-birthdate[rel="address_billing.postal_code"],
.wbx-form .form-birthdate[rel="address_delivery.postal_code"],
.wbx-form .form-select[rel="address_billing.postal_code"],
.wbx-form .form-select[rel="address_delivery.postal_code"] {
  width: calc(40% - var(--gutter) / 2);
}
@media only screen and (max-width: 992px) {
  .wbx-form .form-radio[rel="address_billing.postal_code"], .wbx-form .form-radio[rel="address_delivery.postal_code"],
  .wbx-form .form-text[rel="address_billing.postal_code"],
  .wbx-form .form-text[rel="address_delivery.postal_code"],
  .wbx-form .form-birthdate[rel="address_billing.postal_code"],
  .wbx-form .form-birthdate[rel="address_delivery.postal_code"],
  .wbx-form .form-select[rel="address_billing.postal_code"],
  .wbx-form .form-select[rel="address_delivery.postal_code"] {
    width: 100%;
  }
}
.wbx-form.entity-type-company [rel=company],
.wbx-form.entity-type-company [rel="address.company"],
.wbx-form.entity-type-company [rel="address_billing.company"],
.wbx-form.entity-type-company [rel="address_delivery.company"] {
  order: 1;
}

@keyframes checked {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.wbx-checkout-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: var(--gutter) 0;
}
.wbx-checkout-buttons > *:only-child {
  margin-left: auto;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-block;
  stroke-width: 2;
  stroke: rgb(var(--color-white));
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}
.crossmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #ff0000;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.crossmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #ff0000;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #ff0000;
  animation: fillred 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.crossmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.cross__path {
  stroke: rgb(var(--color-white));
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  transform-origin: 50% 50% 0;
}

.cross__path--right {
  animation: 0.3s ease 0.8s normal forwards 1 running stroke;
}

.cross__path--left {
  animation: 1s ease 0.8s normal forwards 1 running stroke;
}

@keyframes fillred {
  100% {
    box-shadow: inset 0px 0px 0px 30px #ff0000;
  }
}
.wbx-checkout-order-header {
  overflow: hidden;
  text-align: left;
  padding: var(--gutter) 0;
  display: flex;
}
.wbx-checkout-order-header > *:nth-child(2) {
  flex: 1;
  padding-left: var(--gutter);
}
@media only screen and (max-width: 992px) {
  .wbx-checkout-order-header {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .wbx-checkout-order-header > * {
    width: 100%;
    padding: 0 !important;
  }
  .wbx-checkout-order-header .wbx-checkout-order-header-icon {
    margin: 1em;
  }
}
.wbx-checkout-order-header h1 {
  margin-bottom: 0.5em;
  font-size: 2rem;
  font-weight: var(--fw-bold);
}
.wbx-checkout-order-header p {
  font-size: 18px;
  font-size: 1.125rem;
}
.wbx-checkout-order-header p strong {
  font-weight: var(--fw-bold);
}
.wbx-checkout-order-header.canceled p, .wbx-checkout-order-header.error p {
  color: rgb(var(--color-danger));
}
.wbx-checkout-order-header .bt-retry {
  margin-top: var(--gutter);
}

.wbx-checkout-order-information {
  padding: var(--gutter);
}
.wbx-checkout-order-information strong {
  font-weight: var(--fw-bold);
}

.wbx-checkout-order-details {
  display: flex;
  gap: var(--gutter);
  margin: auto;
  border-top: 1px solid rgb(var(--color-light-grey));
  margin-top: var(--gutter);
  padding-top: var(--gutter);
}
@media only screen and (max-width: 768px) {
  .wbx-checkout-order-details {
    flex-wrap: wrap;
  }
  .wbx-checkout-order-details > * {
    width: 100% !important;
    padding-bottom: var(--gutter);
  }
}
.wbx-checkout-order-details > div {
  width: 50%;
}
.wbx-checkout-order-details > div h2 {
  margin-bottom: 1em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  text-align: left;
  font-size: 1.4rem;
}
.wbx-checkout-order-details > div span {
  display: block;
}
.wbx-checkout-order-details > div .headline {
  color: rgb(var(--color-dark-grey));
}

.wbx-checkout-shipping-schedules {
  width: 100%;
}
.wbx-checkout-shipping-schedules > * {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(var(--color-black));
  padding: 1em 0.5em;
}
.wbx-checkout-shipping-schedules > *:hover {
  background: rgba(var(--color-black), 0.05);
}
.wbx-checkout-shipping-schedules > * svg {
  margin-right: 0.5em;
}

.wbx-checkout-steps {
  display: flex;
  margin-bottom: var(--gutter);
}
.wbx-checkout-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  color: rgba(var(--color-black), 0.5);
}
.wbx-checkout-steps li figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid #ccc;
  background: #fff;
  z-index: 10;
}
.wbx-checkout-steps li figure svg {
  width: 26px;
  height: 26px;
}
.wbx-checkout-steps li:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 20px;
  width: 100%;
  height: 2px;
  background: #ccc;
}
.wbx-checkout-steps li:first-child:before {
  display: none;
}
.wbx-checkout-steps li.done, .wbx-checkout-steps li.active {
  color: rgba(var(--color-black), 1);
  font-weight: var(--fw-bold);
}
.wbx-checkout-steps li.done figure, .wbx-checkout-steps li.active figure {
  border-color: #000;
}
.wbx-checkout-steps li.done:before, .wbx-checkout-steps li.active:before {
  background: rgba(var(--color-black), 1);
}
.wbx-checkout-steps li.active figure {
  background: rgba(var(--color-black), 1);
  color: rgba(var(--color-white), 1);
}
.wbx-checkout-steps span {
  margin-top: 0.5em;
  display: none;
}

.wbx-checkout-no-results {
  text-align: center;
  padding: var(--gutter);
  color: rgba(var(--color-danger), 1);
  font-weight: var(--fw-medium);
  font-size: 1em;
  width: 100%;
}

.wbx-step > .notice,
.wbx-step > .form-notice {
  margin: var(--gutter);
}
.wbx-step > header {
  padding: var(--gutter);
  border-bottom: 1px solid rgba(var(--color-black), 0.1);
}
.wbx-step > header h2 {
  font-weight: var(--fw-bold);
  margin: 0;
}
.wbx-step > footer {
  padding: var(--gutter);
  padding-top: calc(var(--gutter) / 2);
  display: flex;
  justify-content: space-between;
}
.wbx-step > footer .wbx-button-container:has(.wbx-checkout-validate-button) {
  margin-left: auto;
}
.wbx-step > .wbx-step-wrapper {
  position: relative;
  padding: var(--gutter);
}
.wbx-step > .wbx-step-wrapper h2 {
  margin-bottom: 1em;
}
.wbx-step > .wbx-step-wrapper ~ .wbx-step-wrapper {
  border-top: 1px solid rgba(var(--color-black), 0.1);
}

.wbx-shipping-refresh-auto {
  margin: auto;
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wbx-shipping-refresh-auto > span {
  font-weight: var(--fw-medium);
  display: block;
  margin-bottom: 1em;
  font-size: 1.2em;
}

.wbx-shipping-refresh {
  margin: auto;
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(var(--color-warning), 0.05);
}
.wbx-shipping-refresh figure {
  margin-bottom: 1rem;
  color: rgba(var(--color-warning));
}
.wbx-shipping-refresh figure svg {
  width: 60px;
  height: 60px;
}
.wbx-shipping-refresh > span {
  font-weight: var(--fw-medium);
  display: block;
  margin-bottom: 1em;
  font-size: 1.2em;
}

.wbx-resume-order {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gutter);
}
.wbx-resume-order h6 {
  font-size: 0.8rem;
  margin-bottom: 1em;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
}
.wbx-resume-order .address {
  margin-bottom: 1em;
}
.wbx-resume-order .address span {
  display: block;
}
.wbx-resume-order .info {
  margin-bottom: 1em;
  font-weight: var(--fw-medium);
}

.wbx-checkout-schedules-resume {
  margin-bottom: 0.5em;
}
.wbx-checkout-schedules-resume > * {
  display: flex;
  align-items: center;
}
.wbx-checkout-schedules-resume > * figure {
  margin-right: 0.5em;
}
.wbx-checkout-schedules-resume:has(.is-missing) {
  color: rgba(var(--color-warning));
  font-weight: var(--fw-bold);
}

.wbx-checkout-shipping-type-selector {
  display: flex;
  gap: calc(var(--gutter) / 2);
}
.wbx-checkout-shipping-type-selector[disabled=true] {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
@media only screen and (max-width: 992px) {
  .wbx-checkout-shipping-type-selector {
    flex-direction: column;
  }
}
.wbx-checkout-shipping-type-selector > * {
  flex: 1;
}
.wbx-checkout-shipping-type-selector label {
  display: flex;
  min-height: 100%;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}
.wbx-checkout-shipping-type-selector label input {
  position: absolute;
  visibility: hidden;
}
.wbx-checkout-shipping-type-selector label > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: left;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .wbx-checkout-shipping-type-selector label > div {
    justify-content: left;
  }
}
.wbx-checkout-shipping-type-selector label > div:after, .wbx-checkout-shipping-type-selector label > div:before {
  display: none;
}
.wbx-checkout-shipping-type-selector label svg {
  margin: 0;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
}

.wbx-checkout-shipping-type-selector-tab {
  border-radius: var(--border-radius);
  background: rgba(var(--color-black), 0.05);
  padding: calc(var(--gutter) / 2) !important;
  min-height: 100%;
  width: 100%;
  cursor: pointer !important;
}
@media only screen and (max-width: 992px) {
  .wbx-checkout-shipping-type-selector-tab {
    padding: 0.5em 1em !important;
  }
}
.wbx-checkout-shipping-type-selector-tab:hover {
  background: rgba(var(--color-black), 0.1);
}
input:checked ~ .wbx-checkout-shipping-type-selector-tab, .wbx-checkout-shipping-type-selector-tab.active {
  background: rgba(var(--color-black));
  color: rgba(var(--color-white));
}

.wbx-checkout-schedules__form {
  width: 100%;
  position: relative;
  margin-bottom: var(--gutter);
}
.wbx-checkout-schedules__form ~ .wbx-checkout-schedules__form {
  margin-bottom: var(--gutter);
}

.wbx-shipping-schedules .wbx-checkout-schedules__form:last-of-type {
  margin-bottom: 0;
}

.wbx-checkout-order-actions {
  display: inline-flex;
  gap: 1em;
  margin-top: 2em;
}
.wbx-checkout-order-actions > * {
  margin: 0 !important;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .wbx-checkout-order-actions {
    flex-wrap: wrap;
  }
}

.wbx-address-form-toggle {
  display: flex;
  justify-content: right;
  align-items: center;
  line-height: 1em;
  margin-top: 0.5em;
}
.wbx-address-form-toggle * {
  cursor: pointer;
  display: block;
  color: rgba(var(--color-link));
  padding: 0.5em;
  border-radius: var(--border-radius);
}
.wbx-address-form-toggle *:hover {
  background: rgba(var(--color-link), 0.05);
}

.wbx-product-main > .wrapper {
  width: var(--wrapper-width);
  margin: auto;
}

.wbx-product-header {
  grid-area: product-header;
}
.wbx-product-back {
  margin-bottom: 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wbx-product-back svg {
  margin-right: 0.25em;
}

.wbx-product-resume {
  grid-area: product-resume;
}
.wbx-product-resume .wbx-product-resume-wrapper {
  flex: 1;
  position: sticky;
  top: var(--nav-height);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-back {
  order: 1;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-resume-header {
  order: 10;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-prices {
  order: 20;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-stock {
  order: 30;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-options {
  order: 40;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-variants-thumbnails {
  order: 35;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-variant {
  order: 36;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-resume-footer {
  order: 60;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-trust-messages {
  order: 70;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-rating {
  order: 15;
}
.wbx-product-resume .wbx-product-resume-wrapper .wbx-product-back {
  margin-right: auto;
}

.wbx-product-attributes {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
}

.wbx-product-item-image {
  position: relative;
  margin: auto;
  width: 100%;
}
.wbx-product-item-image img {
  aspect-ratio: 1;
  object-fit: contain;
  width: 100%;
  height: auto;
  display: block;
}

.wbx-product-sku {
  display: block;
  text-transform: uppercase;
  font-size: 0.8em;
  color: rgb(var(--color-grey));
}

.wbx-product-name span {
  display: block;
}
.wbx-grid-listing .wbx-product-name span {
  display: inline;
}

.wbx-product-add-to-cart {
  display: flex;
  align-items: center;
}
.wbx-product-add-to-cart .wbx-button-container {
  flex: 1;
}
.wbx-product-add-to-cart .form-quantity {
  margin-right: 0.25em;
}
.wbx-product-add-to-cart .form-quantity input {
  max-width: 3em;
  text-align: center;
  border: none;
  background: #ffffff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.wbx-product-add-to-cart .form-quantity .form-input-wrapper {
  display: flex;
  background: #f4f4f4;
  border: 1px solid #ccc;
  min-height: 35px;
  border-radius: 3px;
  overflow: hidden;
}
.wbx-product-add-to-cart .form-quantity .form-input-wrapper button {
  background: none;
  border-radius: 0;
  border: 0;
  aspect-ratio: 1/1;
  width: 35px;
  height: 35px;
  transition: 150ms ease-in-out all;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wbx-product-add-to-cart .form-quantity .form-input-wrapper button:hover {
  background: rgba(var(--color-black), 1);
  color: #fff;
}

.wbx-product-add-to-cart-disabled {
  cursor: not-allowed;
}
.wbx-product-add-to-cart-disabled .wbx-product-quantity {
  pointer-events: none;
  opacity: 0.3;
}
.wbx-product-add-to-cart-disabled .wbx-product-button button {
  pointer-events: none;
  opacity: 0.3;
}
.wbx-product-add-to-cart-disabled .wbx-product-button span {
  padding: 0;
}
.wbx-product-add-to-cart-disabled .wbx-product-button .icon, .wbx-product-add-to-cart-disabled .wbx-product-button .choose-institut label span, .choose-institut label .wbx-product-add-to-cart-disabled .wbx-product-button span {
  display: none;
}

.wbx-product-content {
  position: relative;
  z-index: 10;
}
.wbx-product-content > .wrapper {
  position: relative;
}
.wbx-product-content > .wrapper .weebox-product-tabs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
}
.wbx-product-content > .wrapper .weebox-product-tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  padding: 0;
  margin: auto;
  text-align: center;
}
.wbx-product-content > .wrapper .weebox-product-tabs ul > * {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wbx-product-content > .wrapper .weebox-product-tabs ul li {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
}
.wbx-product-content > .wrapper .weebox-product-tabs ul li a {
  display: block;
  color: rgb(var(--color-black));
  padding: var(--gutter-h);
  text-decoration: none;
}
.wbx-product-content > .wrapper .weebox-product-tabs ul li.active {
  font-weight: var(--fw-bold);
  background: rgb(var(--color-white));
}
.wbx-product-content > .wrapper .weebox-product-tabs-container {
  position: relative;
  width: 100%;
}
.wbx-product-content > .wrapper .weebox-product-tabs-container > div {
  padding: 0;
  display: none;
}
.wbx-product-content > .wrapper .weebox-product-tabs-container > div.active {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .wbx-product-content > .wrapper .weebox-product-tabs-container > div.active {
    margin: 0;
  }
}
.wbx-product-content > .wrapper .image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 50%;
  overflow: hidden;
  background: #333;
}
.wbx-product-content > .wrapper .image figure {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .wbx-product-content > .wrapper .image {
    position: relative;
    top: inherit;
    left: inherit;
    bottom: inherit;
    right: inherit;
    width: 100%;
  }
}
.wbx-product-content > .wrapper .content {
  position: relative;
  z-index: 10;
  padding-right: 6vh;
  width: 50%;
  line-height: 1.2em;
}
@media only screen and (max-width: 768px) {
  .wbx-product-content > .wrapper .content {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .wbx-product-content {
    margin: 0;
  }
}

.wbx-product-trust-message {
  grid-column: span 2;
}

.wbx-product-characteristics {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.wbx-product-characteristics-attribute {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 2fr;
  padding: 0.75em 0;
  gap: 0.25em 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-size: 0.75rem;
}
.wbx-product-characteristics-attribute:last-child {
  border: none;
}

.wbx-product-characteristics-attribute-item {
  font-weight: var(--fw-bold);
}
.wbx-product-characteristics-attribute-item:nth-child(n+1) {
  grid-column-start: 2;
}

.wbx-product-details {
  grid-area: product-details;
}
.wbx-product-details > .wbx-product-details-wrapper {
  display: grid;
}

.weebox-product-custom {
  padding: var(--gutter-h) 0;
  border-bottom: 1px #eee solid;
}

.wbx-product-actions {
  margin-top: var(--gutter-h);
  padding: var(--gutter) 0;
}
.wbx-product-actions > div {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.wbx-product-actions .weebox-product-actions-quantity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: 40px;
}
@media only screen and (max-width: 768px) {
  .wbx-product-actions .weebox-product-actions-quantity {
    margin: 0;
    width: 50%;
  }
}
.wbx-product-actions .weebox-product-actions-quantity label {
  margin-right: var(--gutter-h);
}
.wbx-product-actions .weebox-product-actions-quantity input {
  width: 60px;
}
.wbx-product-actions .weebox-product-actions-add-to-cart,
.wbx-product-actions .weebox-product-actions-book {
  width: 50%;
}
.wbx-product-actions .weebox-product-actions-book {
  padding-right: var(--gutter-h);
}
@media only screen and (max-width: 768px) {
  .wbx-product-actions .weebox-product-actions-book {
    display: none;
  }
}
.wbx-product-actions .weebox-product-actions-book button {
  background: #f0f0f0;
  color: rgb(var(--color-black));
}
@media only screen and (max-width: 768px) {
  .wbx-product-actions {
    background: rgb(var(--color-white));
    z-index: 500;
    padding: var(--gutter-h);
    justify-content: center;
  }
  .wbx-product .wbx-product-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #ddd;
  }
}

.weebox-product-warranty {
  background: rgba(0, 0, 0, 0.03);
  margin: var(--gutter) 0;
  min-height: 100px;
  width: 100%;
  order: 10;
}

.weebox-product-new {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10%;
  background: #63635b;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  transform: rotate(5deg);
  border: 4px solid rgb(var(--color-white));
  z-index: 200;
}
.weebox-product-new span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: rgb(var(--color-white));
}
.weebox-product-image .weebox-product-new {
  width: 80px;
  height: 80px;
  line-height: 78px;
  border: 2px solid #63635b;
  background: #63635b;
}
.weebox-product-image .weebox-product-new span {
  color: rgb(var(--color-white));
  font-size: 20px;
  font-size: 1.25rem;
}

.weebox-product-promo-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var();
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  color: rgb(var(--color-white));
  line-height: 90px;
}
.weebox-product-promo-badge span {
  font-size: 35px;
  font-size: 2.1875rem;
  font-family: var(--font-special);
  font-weight: var(--fw-extra-bold);
}

.weebox-product-prices {
  margin: var(--gutter) 0;
}

.weebox-product-resume {
  width: 40%;
  order: 3;
}
.weebox-product-resume .wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-top: var(--gutter-h);
}
.weebox-product-resume .wrapper > * {
  width: 100%;
}
.weebox-product-resume .wrapper > [class^=weebox-product] {
  order: 4;
}
.weebox-product-resume .wrapper header {
  order: 1;
}
.weebox-product-resume .wrapper .weebox-product-promotion,
.weebox-product-resume .wrapper .weebox-product-price {
  order: 3;
}
.weebox-product-resume h1 {
  color: rgb(var(--color-black));
  font-weight: var(--fw-bold);
  margin-bottom: 0.5em;
  font-size: 36px;
  font-size: 2.25rem;
}
@media only screen and (max-width: 768px) {
  .weebox-product-resume h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 768px) {
  .weebox-product-resume {
    order: 3;
    width: 100%;
  }
}

.size-helper .icon, .size-helper .choose-institut label span, .choose-institut label .size-helper span {
  margin-right: calc(var(--gutter) / 4);
}

.weebox-product-gallery {
  order: 1;
  width: 80px;
}
.weebox-product-gallery figure {
  background: rgba(0, 0, 0, 0.03) no-repeat center;
  background-size: contain;
  width: 80px;
  height: 80px;
  margin-bottom: 4px;
  overflow: hidden;
}
.weebox-product-gallery figure img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .weebox-product-gallery {
    order: 2;
    width: 100%;
    text-align: center;
    margin-bottom: var(--gutter-h);
  }
  .weebox-product-gallery figure {
    display: inline-block;
    margin-left: 4px;
    width: 60px;
    height: 60px;
  }
}

.weebox-product-attributes {
  margin-top: var(--gutter-h);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  min-width: 100%;
}
.weebox-product-attributes .wbx-product-variant {
  border-top: 1px #eee solid;
  padding: var(--gutter) 0;
}
.weebox-product-attributes .wbx-product-variant .form-field {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.weebox-product-attributes .wbx-product-variant .form-field label, .weebox-product-attributes .wbx-product-variant .form-field .form-label {
  display: block;
}
.weebox-product-attributes .wbx-product-variant .form-field .form-input .form-input-wrapper {
  border-color: #ddd;
  background: rgb(var(--color-white));
}
.weebox-product-attributes .wbx-product-variant .form-field .form-input .form-input-wrapper > span {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 40px;
}
@media only screen and (max-width: 768px) {
  .weebox-product-attributes .wbx-product-variant.attribute_codezip_size .field-option-input-label {
    flex: 1;
  }
}
.weebox-product-attributes .wbx-product-variant.as-variation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--gutter-h) 0;
}
.weebox-product-attributes .wbx-product-variant.as-variation .field-option-input {
  margin-bottom: 0px;
}
.weebox-product-attributes .wbx-product-variant.as-variation .field-option-input > * {
  margin-right: 5px;
  overflow: hidden;
  position: relative;
  border-bottom: 4px solid transparent;
  padding: 6px;
}
@media only screen and (max-width: 768px) {
  .weebox-product-attributes .wbx-product-variant.as-variation .field-option-input > * {
    min-width: calc(20% - var(--gutter) / 4);
  }
}
.weebox-product-attributes .wbx-product-variant.as-variation .field-option-input > * figure {
  position: relative;
  width: 100px;
  background: no-repeat center;
  background-size: contain;
  margin: auto;
}
.weebox-product-attributes .wbx-product-variant.as-variation .field-option-input > * figure img {
  width: 100%;
  display: block;
}
.weebox-product-attributes .wbx-product-variant.as-variation .field-option-input > *:hover {
  border-color: #ccc;
}
.weebox-product-attributes .wbx-product-variant.as-variation .field-option-input > *.active {
  border-color: rgb(var(--color-black));
}
.wbx-product-available-at {
  font-size: 16px;
  font-size: 1rem;
  margin: 1em 0;
  color: rgb(var(--color-black));
  background: #fbe6cd;
  padding: 0.5em 1em;
  border-radius: 3px;
  display: inline-block;
  font-weight: var(--fw-bold);
}

.weebox-product-delivery {
  margin-top: calc(var(--gutter) * 2);
  position: relative;
  width: 100%;
  order: 10;
  align-self: flex-end;
  margin-bottom: 2px;
}
@media only screen and (max-width: 768px) {
  .weebox-product-delivery {
    margin-top: var(--gutter-h);
  }
}
.weebox-product-delivery ul {
  position: relative;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.weebox-product-delivery ul > * {
  list-style: none;
  margin: 0;
  padding: 0;
}
.weebox-product-delivery ul li {
  overflow: hidden;
  font-size: 14px;
  font-size: 0.875rem;
  padding: var(--gutter) calc(var(--gutter) * 2);
  flex: 1;
  position: relative;
}
.weebox-product-delivery ul li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  width: 1px;
  transform: translateY(-50%);
}
.weebox-product-delivery ul li .icon, .weebox-product-delivery ul li .choose-institut label span, .choose-institut label .weebox-product-delivery ul li span {
  font-size: 30px;
  margin: 0;
  margin-right: var(--gutter-h);
  color: rgb(var(--color-main));
}
.weebox-product-delivery ul li h6 {
  margin: 0;
  font-size: 1.1em;
  color: rgb(var(--color-black));
  margin-bottom: 0.5em;
}
.weebox-product-delivery ul li p {
  margin: 0;
  font-size: 1em;
  color: rgb(var(--color-black));
}
.weebox-product-delivery ul li:last-child:after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .weebox-product-delivery ul li {
    position: relative;
    padding: var(--gutter) 0;
    width: 100%;
    flex: inherit;
  }
  .weebox-product-delivery ul li:after {
    top: 99%;
    left: 50%;
    height: 2px;
    width: 80%;
    transform: translateX(-50%);
    background: #eee;
  }
}

.wbx-product-image {
  grid-area: product-image;
  position: relative;
}
.wbx-product-image > .wbx-product-image-wrapper {
  position: sticky;
  top: var(--nav-height);
}
.wbx-product-image .spacer {
  width: 100%;
  margin: auto;
  display: block;
}
.wbx-product-image.no-gallery ~ .product-gallery {
  display: none;
}
@media only screen and (max-width: 768px) {
  .wbx-product-image {
    width: 100%;
    margin: 0;
    margin-bottom: calc(var(--gutter) * 2);
    order: 1;
  }
}
.wbx-product-image.swiper-desktop .weebox-product-image-slider {
  display: none;
}
.wbx-product-image.swiper-desktop > .preview,
.wbx-product-image.swiper-desktop .thumbnails {
  display: block;
}
.wbx-product-image .weebox-product-image-slider {
  margin-bottom: 0;
}

.wbx-product-preview {
  position: relative;
}

.wbx-product-preview-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gutter) / 2);
  margin-top: calc(var(--gutter) / 2);
}

.weebox-product-item-dragging {
  position: fixed;
  width: 200px;
  height: 200px;
  background-color: rgb(var(--color-white));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}
.weebox-product-item-dragging span {
  position: relative;
  margin: auto;
  display: inline-block;
  background: #333;
  color: rgb(var(--color-white));
  font-size: 10px;
  border-radius: 6px;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  padding: 4px 8px;
  letter-spacing: 0.1em;
}

.wbx-product-cards-zero {
  text-align: center;
  width: 100%;
  margin: auto;
  color: rgb(var(--color-black));
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em;
}
.wbx-product-cards-zero p {
  margin: auto;
}

.wbx-product-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  z-index: 10;
}
.wbx-product-thumbnails ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.wbx-product-thumbnails ul li {
  width: 20%;
  min-width: 32px;
  margin: 2px;
  padding: 2px;
}
.wbx-product-thumbnails ul li a {
  background-color: rgb(var(--color-white));
  cursor: pointer;
  display: block;
  border-bottom: 4px solid transparent;
  transition: all 200ms ease-in-out;
}
.wbx-product-thumbnails ul li a .see-more {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wbx-product-thumbnails ul li a:hover {
  border-color: rgb(0, 0, 0);
}
.wbx-product-thumbnails ul li figure img {
  width: 100%;
  display: block;
}

/*******************************

  CART FLOAT

*******************************/
#page-wrapper {
  transition: all 300ms ease-in-out;
}
.wbx-cart-floating {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 21474836479;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 300ms, opacity 300ms ease-in-out;
}
.weebox-cart-active .wbx-cart-floating {
  visibility: visible;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.wbx-cart-floating-side {
  font-size: 1rem;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  z-index: 21474836490;
  transform: translateX(110%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  background: rgb(var(--color-white));
  transition: all 300ms ease-in-out;
}
.wbx-cart-floating-side .wbx-cart-floating-header {
  padding: var(--gutter);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgb(var(--color-white)) 0%, #f4f4f4 100%);
}
.wbx-cart-floating-side .wbx-cart-floating-header h6 {
  margin: 0;
  font-size: 1em;
  text-transform: uppercase;
}
.wbx-cart-floating-side .wbx-cart-product-content-schedule-date,
.wbx-cart-floating-side .wbx-cart-product-content-schedule-location {
  width: 100%;
  margin: 0;
  margin-bottom: 2px;
}
.wbx-cart-floating-side > .wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.wbx-cart-floating-side > .wrapper > div {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.wbx-cart-floating-side > .wrapper > footer {
  display: flex;
  flex-direction: column;
}
.wbx-cart-floating-side > .wrapper > footer .wbx-cart-floating-side-cart-details {
  padding: 10px;
}
.wbx-cart-floating-side > .wrapper > footer .wbx-cart-floating-side-cart-details > div {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-top: 0.25em;
  font-size: 0.9em;
}
.wbx-cart-floating-side > .wrapper > footer .wbx-cart-floating-side-cart-details > div.wbx-cart-floating-side-cart-total {
  font-weight: var(--fw-bold);
  font-size: 1.1em;
}
.wbx-cart-floating-side > .wrapper > footer .wbx-cart-floating-side-cart-details > div > *:last-child {
  margin-left: auto;
}
.wbx-cart-floating-side > .wrapper > footer .wbx-cart-floating-side-cart-details > div > *:last-child i {
  font-style: normal;
  padding-right: 0.1em;
  font-size: 0.8em;
}
.wbx-cart-floating-side > .wrapper > footer .wbx-cart-floating-side-cart-actions {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  gap: 0.5em;
}
.wbx-cart-floating-side > .wrapper > footer .wbx-cart-floating-side-cart-actions > * {
  flex: 1;
}

/*******************************

  CART FLOAT

*******************************/
#page-wrapper {
  transition: all 300ms ease-in-out;
}

.weebox-account-floating-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 300ms, opacity 300ms ease-in-out;
}
.weebox-account-active .weebox-account-floating-overlay {
  visibility: visible;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

.weebox-account-floating {
  font-size: 1rem;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  z-index: 20000;
  transform: translateX(110%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  background: rgb(var(--color-white));
  transition: all 300ms ease-in-out;
}
.weebox-account-floating .weebox-account-floating-loading {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.weebox-account-floating .weebox-account-floating-loading .css-loader {
  width: 60px;
  height: 60px;
  margin: auto;
}
.weebox-account-floating .weebox-account-floating-loading .css-loader::before {
  border: 4px solid rgb(var(--color-black));
}
.weebox-account-floating .form-text {
  width: 100%;
}
.weebox-account-active .weebox-account-floating {
  transform: translateX(0%);
}
.weebox-account-floating > .wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background: linear-gradient(to bottom, rgb(var(--color-white)) 0%, #f4f4f4 100%);
}
.weebox-account-floating > .wrapper > header {
  padding: 1em 1em;
  display: flex;
  align-items: center;
}
.weebox-account-floating > .wrapper > header h6 {
  margin: 0;
  font-size: 1em;
  text-transform: uppercase;
}
.weebox-account-floating > .wrapper > div {
  height: var(--app-height);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.weebox-account-floating > .wrapper > div .buttons {
  display: flex;
  align-items: center;
  width: 100%;
}
.weebox-account-floating > .wrapper > div .buttons a {
  text-decoration: underline;
  color: gray;
}
.weebox-account-floating > .wrapper > div .buttons xbutton {
  cursor: pointer;
  border: 1px solid rgb(var(--color-black));
  background: rgb(var(--color-black));
  padding: 0.5em;
  color: rgb(var(--color-white));
  font-weight: var(--fw-extra-bold);
}
.weebox-account-floating > .wrapper > div .buttons xbutton i {
  display: none;
  transition: all 1s linear;
}
.weebox-account-floating > .wrapper > div .buttons xbutton.spinner {
  transition: all 1s linear;
  position: relative;
}
.weebox-account-floating > .wrapper > div .buttons xbutton.spinner span {
  opacity: 0;
}
.weebox-account-floating > .wrapper > div .buttons xbutton.spinner i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.weebox-account-floating > .wrapper > div .buttons xbutton.spinner i:before {
  display: block;
  animation: loading 1s ease infinite;
  font-size: 15px;
  font-weight: var(--fw-black);
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.weebox-account-floating > .wrapper > div .buttons > *:last-child {
  margin-left: auto;
}
.weebox-account-floating > .wrapper > div .returning-user .sign-in, .weebox-account-floating > .wrapper > div .returning-user .reset-password {
  flex: 1;
  min-height: 25%;
  padding: 3em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.weebox-account-floating > .wrapper > div .returning-user .reset-password h2 {
  margin-bottom: 0;
}
.weebox-account-floating > .wrapper > div .returning-user .reset-password .form-text {
  margin-top: 1em;
}
.weebox-account-floating > .wrapper > div .subscribe {
  flex: 1;
  padding: 3em 2em;
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
}
.weebox-account-floating > .wrapper > div h2 {
  font-size: 2em;
  margin-bottom: 1em;
}
.weebox-account-floating > .wrapper > footer {
  display: flex;
  flex-direction: column;
}
.weebox-account-floating > .wrapper > footer .wbx-cart-floating-side-cart-details {
  padding: 10px;
}
.weebox-account-floating > .wrapper > footer .wbx-cart-floating-side-cart-details > div {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-top: 0.25em;
  font-size: 0.9em;
}
.weebox-account-floating > .wrapper > footer .wbx-cart-floating-side-cart-details > div.wbx-cart-floating-side-cart-total {
  font-weight: var(--fw-bold);
  font-size: 1.1em;
}
.weebox-account-floating > .wrapper > footer .wbx-cart-floating-side-cart-details > div > *:last-child {
  margin-left: auto;
}
.weebox-account-floating > .wrapper > footer .wbx-cart-floating-side-cart-details > div > *:last-child i {
  font-style: normal;
  padding-right: 0.1em;
  font-size: 0.8em;
}
.weebox-account-floating > .wrapper > footer .wbx-cart-floating-side-cart-actions {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  gap: 0.5em;
}
.weebox-account-floating > .wrapper > footer .wbx-cart-floating-side-cart-actions > * {
  flex: 1;
}

.sign-in-enter-active {
  transition: all 0.3s ease-out;
}

.sign-in-leave-active {
  transition: all 0.05s ease-in;
}

.sign-in-enter-from {
  opacity: 0;
  transform: translateX(150px);
}

.sign-in-leave-to {
  display: none;
  opacity: 0;
  transform: translateX(-150px);
}

.wbx-close {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #333;
  margin-left: auto;
  color: rgb(var(--color-white));
  cursor: pointer;
  transition: transform 0.3s;
}
.wbx-close:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}
.wbx-close i:before {
  font-size: 15px;
  font-size: 0.9375rem;
}

.wbx-breadcrumb {
  grid-area: breadcrumb;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  font-size: 11px;
  font-size: 0.6875rem;
}
.wbx-breadcrumb ol {
  display: flex;
}
.wbx-breadcrumb .wbx-breadcrumb-list {
  line-height: 1em;
  display: flex;
  width: 100%;
  height: var(--gutter);
  align-items: center;
}
.wbx-breadcrumb .wbx-breadcrumb-list li {
  display: inline-block;
}
.wbx-breadcrumb .wbx-breadcrumb-list li a {
  font-weight: var(--fw-regular);
  text-decoration: none;
  display: inline-block;
}
.wbx-breadcrumb .wbx-breadcrumb-list li > span {
  display: inline-block;
  padding: 0 10px;
}
.wbx-breadcrumb .wbx-breadcrumb-list li:last-child a {
  font-weight: var(--fw-light);
}

.debug .wbx-product-stock,
.debug .field-option,
.debug .weebox-product-price {
  border: 1px dashed #0B61A4;
  position: relative;
}
.debug .wbx-product-stock:before,
.debug .field-option:before,
.debug .weebox-product-price:before {
  content: "vueJs";
  position: absolute;
  border: 1px dashed #0B61A4;
  background: #97bedc;
  color: rgb(var(--color-black));
  font-size: 10px;
  text-transform: uppercase;
  font-weight: var(--fw-black);
  bottom: 100%;
  right: 0px;
  padding: 5px;
}

.weebox-calendar-schedules {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.weebox-calendar-schedules .weebox-calendar-schedules-header {
  border-bottom: 1px solid #ccc;
  margin-right: 8px;
}
.weebox-calendar-schedules .weebox-calendar-schedules-header > * > * {
  padding: 4px;
}
.weebox-calendar-schedules .weebox-calendar-schedules-header .weebox-calendar-schedules-cell.has-slot {
  background: rgb(var(--color-white));
}
.weebox-calendar-schedules .weebox-calendar-schedules-header .weebox-calendar-schedules-cell.today {
  background-color: #faf7ec;
}
.weebox-calendar-schedules .weebox-calendar-schedules-header .weebox-calendar-schedules-cell.hidden {
  display: none;
}
.weebox-calendar-schedules .weebox-calendar-schedules-header strong {
  font-size: 1em;
  text-transform: lowercase;
}
.weebox-calendar-schedules .weebox-calendar-schedules-cell-header {
  border-radius: 10px;
  padding: 0.5em 0;
}
.weebox-calendar-schedules .weebox-calendar-schedules-body {
  background-image: linear-gradient(135deg, #f4f4f4 25%, rgb(var(--color-white)) 25%, rgb(var(--color-white)) 50%, #eeeeee 50%, #f4f4f4 75%, rgb(var(--color-white)) 75%, rgb(var(--color-white)) 100%);
  background-size: 20px 20px;
  padding-top: 2em;
}
.weebox-calendar-schedules .weebox-calendar-schedules-body .weebox-calendar-schedules-cell {
  border-left: 1px solid #ddd;
  border-right: 1px solid rgb(var(--color-white));
  padding: 0.5em;
}
.weebox-calendar-schedules .weebox-calendar-schedules-body .weebox-calendar-schedules-cell.has-slot {
  background: rgb(var(--color-white));
}
.weebox-calendar-schedules .weebox-calendar-schedules-body .weebox-calendar-schedules-cell.today {
  background-color: rgb(var(--color-white));
}
.weebox-calendar-schedules .weebox-calendar-schedules-body .weebox-calendar-schedules-cell.hidden {
  display: none;
}
.weebox-calendar-schedules .weebox-calendar-schedules-row {
  display: flex;
}
.weebox-calendar-schedules .weebox-calendar-schedules-cell {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  padding: 4px;
}
.weebox-calendar-schedules .weebox-calendar-schedules-cell:last-child {
  border-right: 0px;
}
.weebox-calendar-schedules .weebox-calendar-schedules-slot {
  opacity: 0.3;
  white-space: nowrap;
  padding: 0.5em;
  text-align: center;
  margin-bottom: 6px;
  transition: all 200ms ease-in-out;
  background: #f8cdc9;
  color: #e44b3f;
}
.weebox-calendar-schedules .weebox-calendar-schedules-slot .weebox-calendar-schedules-slot-end {
  display: none;
}
.weebox-calendar-schedules .weebox-calendar-schedules-slot.available {
  opacity: 1;
  background: #ecf8c9;
  color: #8fb126;
  cursor: pointer;
}
.weebox-calendar-schedules .weebox-calendar-schedules-slot.available:hover {
  transform: scale(1.05);
  background: #6c8d0b;
  color: rgb(var(--color-white));
}
.weebox-calendar-schedules .weebox-calendar-schedules-slot.available.active {
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
}

.weebox-calendar-schedules-line {
  height: 1px;
  border: 0;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: var(--gutter);
}

.weebox-calendar-schedules-checkout-success {
  padding: var(--gutter);
  padding-top: 0;
  text-align: center;
}
.weebox-calendar-schedules-checkout-success h1 {
  margin-bottom: 0.5em;
}
.weebox-calendar-schedules-checkout-success p {
  font-size: 1.2em;
}
.weebox-calendar-schedules-checkout-success .weebox-calendar-schedules-resume {
  margin-top: var(--gutter);
}

.weebox-calendar-schedules-checkout {
  padding: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
}
.weebox-calendar-schedules-checkout .form-radio,
.weebox-calendar-schedules-checkout .form-text,
.weebox-calendar-schedules-checkout .form-birthdate,
.weebox-calendar-schedules-checkout .form-select {
  width: 100%;
}
.weebox-calendar-schedules-checkout .form-radio:last-child,
.weebox-calendar-schedules-checkout .form-text:last-child,
.weebox-calendar-schedules-checkout .form-birthdate:last-child,
.weebox-calendar-schedules-checkout .form-select:last-child {
  margin-bottom: 0px;
}
.weebox-calendar-schedules-checkout .form-radio[rel="person.lastname"], .weebox-calendar-schedules-checkout .form-radio[rel="person.firstname"], .weebox-calendar-schedules-checkout .form-radio[rel="person.email"], .weebox-calendar-schedules-checkout .form-radio[rel="person.phone_mobile"],
.weebox-calendar-schedules-checkout .form-text[rel="person.lastname"],
.weebox-calendar-schedules-checkout .form-text[rel="person.firstname"],
.weebox-calendar-schedules-checkout .form-text[rel="person.email"],
.weebox-calendar-schedules-checkout .form-text[rel="person.phone_mobile"],
.weebox-calendar-schedules-checkout .form-birthdate[rel="person.lastname"],
.weebox-calendar-schedules-checkout .form-birthdate[rel="person.firstname"],
.weebox-calendar-schedules-checkout .form-birthdate[rel="person.email"],
.weebox-calendar-schedules-checkout .form-birthdate[rel="person.phone_mobile"],
.weebox-calendar-schedules-checkout .form-select[rel="person.lastname"],
.weebox-calendar-schedules-checkout .form-select[rel="person.firstname"],
.weebox-calendar-schedules-checkout .form-select[rel="person.email"],
.weebox-calendar-schedules-checkout .form-select[rel="person.phone_mobile"] {
  width: calc(50% - var(--gutter) / 2);
}
@media only screen and (max-width: 768px) {
  .weebox-calendar-schedules-checkout .form-radio[rel="person.lastname"], .weebox-calendar-schedules-checkout .form-radio[rel="person.firstname"], .weebox-calendar-schedules-checkout .form-radio[rel="person.email"], .weebox-calendar-schedules-checkout .form-radio[rel="person.phone_mobile"],
  .weebox-calendar-schedules-checkout .form-text[rel="person.lastname"],
  .weebox-calendar-schedules-checkout .form-text[rel="person.firstname"],
  .weebox-calendar-schedules-checkout .form-text[rel="person.email"],
  .weebox-calendar-schedules-checkout .form-text[rel="person.phone_mobile"],
  .weebox-calendar-schedules-checkout .form-birthdate[rel="person.lastname"],
  .weebox-calendar-schedules-checkout .form-birthdate[rel="person.firstname"],
  .weebox-calendar-schedules-checkout .form-birthdate[rel="person.email"],
  .weebox-calendar-schedules-checkout .form-birthdate[rel="person.phone_mobile"],
  .weebox-calendar-schedules-checkout .form-select[rel="person.lastname"],
  .weebox-calendar-schedules-checkout .form-select[rel="person.firstname"],
  .weebox-calendar-schedules-checkout .form-select[rel="person.email"],
  .weebox-calendar-schedules-checkout .form-select[rel="person.phone_mobile"] {
    width: 100%;
  }
}
.weebox-calendar-schedules-checkout .form-radio[rel="address.locality"],
.weebox-calendar-schedules-checkout .form-text[rel="address.locality"],
.weebox-calendar-schedules-checkout .form-birthdate[rel="address.locality"],
.weebox-calendar-schedules-checkout .form-select[rel="address.locality"] {
  width: calc(70% - var(--gutter) / 2);
}
@media only screen and (max-width: 768px) {
  .weebox-calendar-schedules-checkout .form-radio[rel="address.locality"],
  .weebox-calendar-schedules-checkout .form-text[rel="address.locality"],
  .weebox-calendar-schedules-checkout .form-birthdate[rel="address.locality"],
  .weebox-calendar-schedules-checkout .form-select[rel="address.locality"] {
    width: 100%;
  }
}
.weebox-calendar-schedules-checkout .form-radio[rel="address.postal_code"],
.weebox-calendar-schedules-checkout .form-text[rel="address.postal_code"],
.weebox-calendar-schedules-checkout .form-birthdate[rel="address.postal_code"],
.weebox-calendar-schedules-checkout .form-select[rel="address.postal_code"] {
  width: calc(30% - var(--gutter) / 2);
}
@media only screen and (max-width: 768px) {
  .weebox-calendar-schedules-checkout .form-radio[rel="address.postal_code"],
  .weebox-calendar-schedules-checkout .form-text[rel="address.postal_code"],
  .weebox-calendar-schedules-checkout .form-birthdate[rel="address.postal_code"],
  .weebox-calendar-schedules-checkout .form-select[rel="address.postal_code"] {
    width: 100%;
  }
}

.weebox-calendar-schedules-resume {
  display: flex;
  justify-content: center;
  padding: var(--gutter);
  padding-top: 0;
}
.weebox-calendar-schedules-resume > * {
  display: flex;
  margin: 0 calc(var(--gutter));
  text-align: left;
  align-items: center;
}
.weebox-calendar-schedules-resume label {
  font-weight: var(--fw-bold);
  margin-right: 1em;
}
.weebox-calendar-schedules-resume label svg {
  max-width: 60px;
  width: 100%;
  height: auto;
}
.weebox-calendar-schedules-resume strong, .weebox-calendar-schedules-resume span, .weebox-calendar-schedules-resume time {
  display: block;
}

.weebox-calendar-schedules-steps {
  display: flex;
  justify-content: center;
  padding: 0.5em;
  margin-top: 1em;
}
.weebox-calendar-schedules-steps > li {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 1em;
}
.weebox-calendar-schedules-steps > li:after {
  content: "";
  height: 4px;
  width: 2em;
  position: absolute;
  z-index: -1;
  left: 100%;
  top: 20px;
  background: rgb(var(--color-black));
}
.weebox-calendar-schedules-steps > li:last-child:after {
  display: none;
}
.weebox-calendar-schedules-steps > li i {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  border: 4px solid rgb(var(--color-black));
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 35px;
  font-weight: var(--fw-bold);
}
.weebox-calendar-schedules-steps > li span {
  display: none;
}
.weebox-calendar-schedules-steps > li.active i {
  color: rgb(var(--color-white));
  background: rgb(var(--color-black));
}
.weebox-calendar-schedules-steps > li.active span {
  font-weight: var(--fw-bold);
}

.weebox-calendar-schedules-notice {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #dff5af;
  font-size: 1em;
  text-align: center;
  padding: 0.5em 1em;
  z-index: 10;
}
.weebox-calendar-schedules-notice.medium {
  background: #f5ecaf;
}
.weebox-calendar-schedules-notice.low {
  background: #f5cdaf;
}

.weebox-calendar-schedules-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
}
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-select .v-calendar {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-select .v-calendar .input-field {
  opacity: 0;
  height: 100%;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
}
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-select .v-calendar .input-field input {
  height: 100%;
}
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-select .v-calendar .content {
  top: 100%;
}
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-select > button {
  position: relative;
}
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-select > button * {
  cursor: pointer;
}
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-previous,
.weebox-calendar-schedules-navigation .weebox-calendar-schedules-next {
  text-align: center;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .weebox-calendar-schedules-navigation .weebox-calendar-schedules-previous button span,
  .weebox-calendar-schedules-navigation .weebox-calendar-schedules-next button span {
    display: none;
  }
}

.weebox-calendar-schedules-loader {
  display: block;
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
}
.weebox-calendar-schedules-loader .wbx-loader {
  width: 40px;
  height: auto;
}
.weebox-calendar-schedules-loader .wbx-loader div {
  border-color: rgb(var(--color-black)) transparent transparent transparent;
}

.popin-stock-out {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background: rgba(var(--color-black), 0.4);
  display: none;
  align-items: center;
  justify-content: center;
}
.popin-stock-out-open .popin-stock-out {
  display: flex;
}
.popin-stock-out > .wrapper {
  background: rgb(var(--color-white));
  margin: var(--gutter);
  padding: var(--gutter);
  position: relative;
}
.popin-stock-out .icon-close {
  position: absolute;
  top: calc(var(--gutter) / 2);
  right: calc(var(--gutter) / 2);
  opacity: 0.4;
  cursor: pointer;
  transition: all 250ms ease-out;
}
.popin-stock-out .icon-close:hover {
  opacity: 1;
}

:root {
  --color-white: 255, 255, 255;
  --color-light-grey: 238, 238, 238;
  --color-grey: 160, 160, 160;
  --color-dark-grey: 85, 85, 85;
  --color-black: 0, 0, 0;
  --color-main: 255, 17, 0;
  --color-main-dark: 162, 32, 32;
  --color-danger: 255, 0, 0;
  --color-danger-lighten-45: 255, 179, 179;
  --color-danger-darken-10: 204, 0, 0;
  --color-danger-darken-25: 128, 0, 0;
  --color-promotion: 214, 0, 87;
  --color-warning: 255, 158, 24;
  --color-warning-darken-10: 204, 119, 0;
  --color-success: 20, 167, 42;
  --color-success-lighten-45: 173, 245, 42;
  --color-success-darken-10: 14, 123, 31;
  --color-success-darken-25: 6, 55, 14;
  --page-top-margin: calc(var(--nav-sticky) + var(--notice-height) + var(--gutter));
  --page-width: 100%;
  --page-gutter-width: 40px;
  --wrapper-width: calc(var(--page-width) - var(--gutter-w));
  --wrapper-max-width: calc(var(--page-max-width) - var(--gutter-w));
  --gutter: 40px;
  --gutter-w: 3vw;
  --gutter-h: 3vh;
  --gutter-grid: 3vw;
  --transition: all .25s ease-out;
  --product-column-min-width: 300px;
}

:root {
  --v-calendar-picker-color:rgb(var(--color-white));
  --v-calendar-input-bg-color:rgb(var(--color-white));
  --v-calendar-input-bg-disable-color:#f5f5f5;
  --v-calendar-input-text-disable-color:#b8b8b9;
  --v-calendar-select-bg-color:rgb(var(--color-white));
  --v-calendar-border-color:#eaeaeb;
  --v-calendar-triangle-color:#eaeaeb;
  --v-calendar-shadow:0 20px 30px 0 rgba(0,0,0,0.2);
  --v-calendar-top-shadow:3px -14px 30px 0px rgba(0,0,0,0.2);
  --v-calendar-text-color:#7b8187;
  --v-calendar-action-color:#7b8187;
  --v-calendar-text-disabled-color:#b8b8b9;
  --v-calendar-view-button-color:#7b8187;
  --v-calendar-view-button-font-weight:var(--fw-regular);
  --v-calendar-view-button-font-size:1rem;
  --v-calendar-datepicker-icon-color:#1bba67;
  --v-calendar-datepicker-icon-size:1.1rem;
  --v-calendar-active-bg-color:#1bba67;
  --v-calendar-active-text-color:rgb(var(--color-white));
  --v-calendar-range-bg-color:#edfff9;
  --v-calendar-range-text-color:#7b8187;
  --v-calendar-range-radius:100%;
  --v-calendar-day-hover-bg-color:#eaeaeb;
  --v-calendar-day-width:25px;
  --v-calendar-day-height:25px;
  --v-calendar-day-font-size:0.9rem;
  --v-calendar-day-font-weight:var(--fw-regular);
  --v-calendar-day-name-font-size:0.9rem;
  --v-calendar-day-name-font-weight:var(--fw-medium);
  --v-calendar-day-name-color:#7b8187;
  --v-calendar-input-border:1px solid #eaeaeb;
  --v-calendar-input-text-color:#7b8187;
  --v-calendar-input-font-size:0.9rem;
  --v-calendar-input-font-weight:var(--fw-regular);
  --v-calendar-content-radius:0px;
  --v-calendar-year-font-size:1.1rem;
  --v-calendar-year-color:#7b8187;
  --v-calendar-year-font-weight:var(--fw-regular);
  --v-calendar-year-disabled-color:#b8b8b9;
  --v-calendar-year-disabled-bg-color:transparent;
  --v-calendar-year-padding:10px;
  --v-calendar-year-border:none;
  --v-calendar-year-border-radius:none;
  --v-calendar-month-font-size:1.1rem;
  --v-calendar-month-color:#7b8187;
  --v-calendar-month-font-weight:var(--fw-regular);
  --v-calendar-month-disabled-color:#b8b8b9;
  --v-calendar-month-disabled-bg-color:transparent;
  --v-calendar-month-padding:8px;
  --v-calendar-month-border:none;
  --v-calendar-month-border-radius:none;
}

.v-calendar :focus {
  outline: none;
}

.v-calendar * {
  outline: none;
  font-family: inherit;
}

.v-calendar {
  position: relative;
  width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.v-calendar .content {
  background: var(--v-calendar-picker-color);
  -webkit-box-shadow: var(--v-calendar-shadow);
  box-shadow: var(--v-calendar-shadow);
  position: absolute;
  top: 56px;
  z-index: 99999;
}

.v-calendar .content,
.v-calendar .input-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.v-calendar .input-field {
  position: relative;
  min-width: 140px;
  font-weight: var(--v-calendar-input-font-weight);
}

.v-calendar .input-field .clearButton {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--v-calendar-text-color);
  padding: 0;
  cursor: pointer;
  border: none;
  background: transparent;
}

.v-calendar .input-field .clearButton svg {
  fill: currentColor;
}

.v-calendar .input-field .clearButton,
.v-calendar .input-field .clearButton svg {
  width: var(--v-calendar-day-font-size);
  height: var(--v-calendar-day-font-size);
}

.v-calendar .input-field input:disabled ~ svg {
  fill: var(--v-calendar-text-color);
}

.v-calendar .input-field.long {
  min-width: 290px;
}

.v-calendar .input-field input {
  padding-left: 40px;
  padding-right: 20px;
  font-size: var(--v-calendar-input-font-size);
  min-width: inherit;
  height: 50px;
  border-radius: 6px;
  border: var(--v-calendar-input-border);
  background-color: var(--v-calendar-input-bg-color);
  color: var(--v-calendar-input-text-color);
  font-weight: inherit;
}

.v-calendar .input-field input:disabled {
  background-color: var(--v-calendar-input-bg-disable-color);
  color: var(--v-calendar-input-text-disable-color);
  cursor: not-allowed;
}

.v-calendar .input-field svg {
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.v-calendar .input-field svg.datepicker {
  left: 10px;
  width: var(--v-calendar-datepicker-icon-size);
  height: var(--v-calendar-datepicker-icon-size);
  fill: var(--v-calendar-datepicker-icon-color);
}

.v-calendar .calendar {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: white;
}

.v-calendar .calendar.range:first-child {
  border-right: 1px solid var(--v-calendar-border-color);
}

.v-calendar .calendar:first-child:before {
  content: "";
  position: absolute;
  bottom: 100%;
  top: -20px;
}

.v-calendar .calendar .selected-field {
  padding-top: 20px;
  background-color: var(--v-calendar-select-bg-color);
}

.v-calendar .calendar .selected-field .selected-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.v-calendar .calendar .selected-field .viewButton {
  border: 0;
  width: 100%;
  padding: 10px;
  color: var(--v-calendar-view-button-color);
  font-size: var(--v-calendar-view-button-font-size);
  font-weight: var(--v-calendar-view-button-font-weight);
  margin-right: 10px;
  margin-left: 10px;
  background: transparent;
  cursor: pointer;
}

.v-calendar .calendar .selected-field .nextDateButton,
.v-calendar .calendar .selected-field .prevDateButton {
  position: relative;
  border: 0;
  background: transparent;
}

.v-calendar .calendar .selected-field .nextDateButton:after,
.v-calendar .calendar .selected-field .prevDateButton:after {
  content: "";
  display: inline-block;
  text-align: left;
  cursor: pointer;
  border: 7px solid transparent;
}

.v-calendar .calendar .selected-field .prevDateButton:after {
  border-right: 10px solid var(--v-calendar-action-color);
}

.v-calendar .calendar .selected-field .nextDateButton:after {
  border-left: 10px solid var(--v-calendar-action-color);
}

.v-calendar .calendar .days {
  display: grid;
  grid-template-columns: repeat(7, minmax(-webkit-max-content, 1fr));
  grid-template-columns: repeat(7, minmax(max-content, 1fr));
}

.v-calendar .calendar .months,
.v-calendar .calendar .years {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  max-width: calc(var(--v-calendar-day-width) * 7 + 20px);
  min-height: 250px;
}

.v-calendar .calendar .days-selection,
.v-calendar .calendar .selected-field {
  padding-left: 20px;
  padding-right: 20px;
}

.v-calendar .calendar .days-selection .days {
  padding-bottom: 20px;
}

.v-calendar .calendar .days .day,
.v-calendar .calendar .months .month,
.v-calendar .calendar .years .year {
  background: transparent;
  border: 0;
  text-align: center;
  cursor: pointer;
}

.v-calendar .calendar .months .month,
.v-calendar .calendar .years .year {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.v-calendar .calendar .months .month {
  font-size: var(--v-calendar-month-font-size);
  font-weight: var(--v-calendar-month-font-weight);
  color: var(--v-calendar-month-color);
  padding: var(--v-calendar-month-padding);
  border: var(--v-calendar-month-border);
  border-radius: var(--v-calendar-year-month-radius);
  background-color: var(--v-calendar-month-bg-color);
}

.v-calendar .calendar .months .month:disabled {
  pointer-events: none;
  color: var(--v-calendar-month-disabled-color);
  background-color: var(--v-calendar-month-disabled-bg-color);
}

.v-calendar .calendar .days .day {
  padding: 0;
  margin-right: 10px;
  font-size: var(--v-calendar-day-font-size);
  font-weight: var(--v-calendar-day-font-weight);
  color: var(--v-calendar-text-color);
  width: 100%;
  text-align: left;
}

.v-calendar .calendar .days .day,
.v-calendar .calendar .days .day .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.v-calendar .calendar .days .day .number {
  width: var(--v-calendar-day-width);
  height: var(--v-calendar-day-height);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  font-size: inherit;
}

.v-calendar .calendar .days .day.name {
  pointer-events: none;
  font-size: var(--v-calendar-day-name-font-size);
  font-weight: var(--v-calendar-day-name-font-weight);
  color: var(--v-calendar-day-name-color);
  width: auto;
}

.v-calendar .calendar .days .day.selectedDate .number {
  background: var(--v-calendar-active-bg-color);
  color: var(--v-calendar-active-text-color);
}

.v-calendar .calendar .days .day.circle .number {
  border-radius: 100%;
}

.v-calendar .calendar .days .day.selectedRange {
  background: var(--v-calendar-range-bg-color);
  color: var(--v-calendar-range-text-color);
}

.v-calendar .calendar:first-child .days .day.selectedDate {
  border-top-left-radius: var(--v-calendar-range-radius);
  border-bottom-left-radius: var(--v-calendar-range-radius);
}

.v-calendar .calendar:last-child .days .day.selectedDate {
  border-top-right-radius: var(--v-calendar-range-radius);
  border-bottom-right-radius: var(--v-calendar-range-radius);
}

.v-calendar .calendar .days .day.disabledDate {
  pointer-events: none;
  color: var(--v-calendar-text-disabled-color);
}

.v-calendar .calendar .days .day.disabledDate.selectedRange {
  background: var(--v-calendar-range-bg-color);
}

.v-calendar .calendar .days .day:hover .number {
  background: var(--v-calendar-day-hover-bg-color);
}

.v-calendar .calendar .years .year {
  font-size: var(--v-calendar-year-font-size);
  font-weight: var(--v-calendar-year-font-weight);
  color: var(--v-calendar-year-color);
  padding: var(--v-calendar-year-padding);
  border: var(--v-calendar-year-border);
  border-radius: var(--v-calendar-year-border-radius);
  background-color: var(--v-calendar-year-bg-color);
}

.v-calendar .calendar .years .year:disabled {
  pointer-events: none;
  color: var(--v-calendar-year-disabled-color);
  background-color: var(--v-calendar-year-disabled-bg-color);
}

.v-calendar.left .content {
  left: 0;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  border-bottom-left-radius: var(--v-calendar-content-radius);
  border-bottom-right-radius: var(--v-calendar-content-radius);
  border-top-right-radius: var(--v-calendar-content-radius);
}

.v-calendar.left .calendar:first-child:before {
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--v-calendar-triangle-color) transparent;
  left: 0;
}

.v-calendar.right .content {
  right: 0;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  border-bottom-left-radius: var(--v-calendar-content-radius);
  border-bottom-right-radius: var(--v-calendar-content-radius);
  border-top-left-radius: var(--v-calendar-content-radius);
}

.v-calendar.right .calendar:first-child:before {
  right: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--v-calendar-triangle-color) transparent;
}

.v-calendar.top .content {
  top: 100%;
  -webkit-transform: translateY(calc(-100% - 66px));
  transform: translateY(calc(-100% - 66px));
  -webkit-box-shadow: var(--v-calendar-top-shadow);
  box-shadow: var(--v-calendar-top-shadow);
  border-top-left-radius: var(--v-calendar-content-radius);
  border-top-right-radius: var(--v-calendar-content-radius);
  border-bottom-right-radius: var(--v-calendar-content-radius);
}

.v-calendar.top .content .calendar:first-child:before {
  border-width: 5px;
  border-style: solid;
  border-color: var(--v-calendar-triangle-color) transparent transparent transparent;
  top: 100%;
  left: 0;
}

.v-calendar.bottom .content {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  border-bottom-left-radius: var(--v-calendar-content-radius);
  border-bottom-right-radius: var(--v-calendar-content-radius);
  border-top-right-radius: var(--v-calendar-content-radius);
}

.v-calendar.bottom .content .calendar:first-child:before {
  left: 0;
}

.v-calendar.bottom .content .calendar:first-child:before,
.v-calendar.center .calendar:first-child:before {
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--v-calendar-triangle-color) transparent;
}

.v-calendar.center .calendar:first-child:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.v-calendar.center .content {
  -webkit-transform: translateY(5px) translateX(-50%);
  transform: translateY(5px) translateX(-50%);
  left: 50%;
  border-bottom-left-radius: var(--v-calendar-content-radius);
  border-bottom-right-radius: var(--v-calendar-content-radius);
  border-top-right-radius: var(--v-calendar-content-radius);
}

.wbx-pagination {
  grid-area: catalog-pagination;
  order: 20;
  width: 100%;
  margin: var(--gutter) 0;
}

.wbx-pagination-listing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}
.wbx-pagination-listing .icon, .wbx-pagination-listing .choose-institut label span, .choose-institut label .wbx-pagination-listing span {
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
  position: relative;
  top: 2px;
}

.wbx-pagination-item {
  color: rgba(var(--color-black), 0.6);
  transition: all 0.3s ease-out;
}
.wbx-pagination-item:hover {
  background: rgba(var(--color-light-grey), 0.6);
  color: rgba(var(--color-black), 1);
}

.wbx-pagination-link {
  display: inline-block;
  padding: 0.25em 0.5em;
}

.wbx-pagination-item-active {
  font-weight: var(--fw-bold);
  background: rgb(var(--color-light-grey));
  color: rgb(var(--color-black));
}

.wbx-pagination-navigation {
  margin: 0 1em;
  color: rgb(var(--color-black), 0.4);
}
.wbx-pagination-navigation a {
  display: flex;
  align-items: center;
}
.wbx-pagination-navigation:hover {
  color: rgba(var(--color-black), 1);
}

.wbx-product-card-variants-colors {
  width: 100%;
  margin: calc(var(--gutter) / 4) 0;
}

.wbx-product-card-variants-colors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.wbx-product-card-variants-colors-item {
  font-size: 16px;
}

.wbx-product-card-variants-colors-link {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgb(var(--color-white));
  position: relative;
}
.wbx-product-card-variants-colors-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.25s ease-out;
}
.wbx-product-card-variants-colors-link:hover:before {
  border-color: rgba(0, 0, 0, 0.8);
}

.wbx-rating {
  display: inline-flex;
  align-items: center;
}

.wbx-rating-stars {
  position: relative;
  display: inline-block;
  align-items: center;
  white-space: nowrap;
}

.rating-stars-value {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #f8ca72;
}
.rating-stars-value svg path {
  opacity: 1;
}

.rating-stars-max {
  color: rgb(var(--color-light-grey));
}

.rating-stars-item {
  margin: 0;
  overflow: hidden;
}
.rating-stars-item:last-of-type {
  margin-right: 0;
}

.rating-stars-information {
  margin-left: 0.5em;
  font-size: 12px;
  display: inline-block;
  font-weight: var(--fw-medium);
}

.wbx-brandline-resume > .wrapper {
  display: flex;
  gap: calc(var(--gutter) / 2);
}

.wbx-brandline-picture {
  width: 50%;
}

.wbx-brandline-picture-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wbx-trust-message-content {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1fr 1fr 1fr;
}

.wbx-product-price {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  font-weight: var(--fw-light);
}
.wbx-product-price i {
  font-style: normal;
}
.wbx-product-price .currency {
  font-size: 0.6em;
  font-style: normal;
  padding-right: 0.25em;
}
.wbx-cart-product .wbx-product-price {
  align-items: flex-end !important;
}
.wbx-product-price.has-discount .wbx-price-current {
  color: rgb(var(--color-promotion));
  font-weight: var(--fw-bold);
  position: relative;
}

.wbx-price-tax {
  font-size: 0.8rem;
  order: 3;
  color: rgb(var(--color-grey));
}

.wbx-price-savings {
  color: rgb(var(--color-promotion));
  font-weight: var(--fw-bold);
  font-size: 0.8em;
  position: relative;
}
.wbx-price-savings .label-prefix {
  font-style: inherit;
  padding-right: 0.25em;
}
.wbx-price-savings .label-suffix {
  font-style: inherit;
  font-weight: var(--fw-light);
}
.wbx-price-savings .amount {
  font-size: inherit !important;
}
.wbx-price-savings .asterisk {
  display: none;
}

.wbx-price-flat {
  font-weight: var(--fw-light);
  font-size: 0.8em;
  position: relative;
}
.wbx-price-flat .asterisk {
  display: none;
}
.wbx-price-flat .label-prefix {
  font-style: inherit;
  padding-right: 0.25em;
}
.wbx-cart-product .wbx-price-flat .label-prefix {
  display: block;
  text-align: right;
}
.wbx-price-flat .label-suffix {
  font-style: inherit;
  font-weight: var(--fw-light);
}
.wbx-price-flat .amount {
  font-size: inherit !important;
}
.wbx-cart-product .wbx-price-flat {
  font-size: 1em;
  text-decoration: line-through;
}
.wbx-cart-product .wbx-price-flat .label-prefix {
  display: none;
}

.wbx-price-current {
  font-size: 1.2em;
  position: relative;
  font-weight: var(--fw-bold);
}
.wbx-price-current .asterisk {
  display: none;
}
.wbx-price-current .label-suffix {
  font-size: 0.8em;
  font-style: inherit;
  font-weight: var(--fw-light);
}

.wbx-price-unit {
  font-size: 0.8em;
  position: relative;
}
.wbx-price-unit .label-suffix {
  font-size: 0.8em;
  font-style: inherit;
  font-weight: var(--fw-light);
}

.wbx-price-commercial-gesture {
  font-weight: var(--fw-bold);
}

.wbx-price-information {
  color: rgb(var(--color-promotion));
  font-weight: var(--fw-light);
  font-size: 0.9em;
  order: -1;
}
.wbx-price-information:last-of-type {
  margin-bottom: 0;
}

.wbx-product-price-quantities-title {
  margin: 0.25em 0;
  width: 100%;
}
.wbx-product-price-quantities-title span {
  background: rgb(var(--color-promotion));
  color: #fff;
  display: inline-block;
  padding: 0.5em 0.75em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
}

.wbx-product-price-quantities {
  display: flex;
  margin: 1em 0;
  width: 100%;
}
.wbx-product-price-quantities > * {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5em;
  margin-right: 0.25em;
  margin-bottom: 0.25em;
}
.wbx-product-price-quantities > * > span {
  display: block;
  margin-bottom: 0.25em;
  font-size: 12px;
}
.wbx-product-price-quantities > *.active {
  border: 2px solid rgb(0, 0, 0);
}
.wbx-product-price-quantities i {
  font-style: normal;
}
.wbx-product-price-quantities .currency {
  font-size: 0.6em;
  font-style: inherit;
  padding-right: 0.25em;
}

.wbx-brand-picture {
  margin-bottom: calc(var(--gutter) / 4);
}

.wbx-brand-picture-figure {
  width: 170px;
}
.wbx-brand-picture-figure img {
  max-width: 100%;
}

.wbx-product-stock {
  margin-bottom: 1rem;
  font-size: 1em;
}
.wbx-product-stock figure {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 0.5em;
  text-align: center;
}
.wbx-product-stock figure svg {
  width: 100%;
  height: auto;
}
.wbx-product-stock figure:before {
  line-height: 0px;
}
.wbx-product-stock .wbx-product-stock-inventory {
  margin-bottom: 0.25em;
}

.wbx-product-card-stock {
  position: absolute;
  z-index: 2;
  right: calc(var(--gutter) / 4);
  top: calc(var(--gutter) / 4);
}
.wbx-product-card-stock:hover .wbx-product-stock-label {
  opacity: 1;
}

.wbx-product-card-stock .wbx-product-stock-label {
  max-width: 140px;
  text-align: right;
  margin-right: 0.5em;
  opacity: 0;
  order: -1;
  transition: opacity 0.25s ease-out;
}

.wbx-product-stock-in {
  display: flex;
  color: #399829;
}

.wbx-product-stock-out {
  display: flex;
  color: #f23055;
}

.wbx-product-stock-only-in-store {
  display: flex;
  color: #3CCAEF;
}

.wbx-product-stock-in-progress {
  display: flex;
  color: #EAA00A;
}

.wbx-product-stock-warning {
  display: flex;
  align-items: center;
  color: #EAA00A;
}

.wbx-products-listing {
  grid-area: catalog-listing;
}

.wbx-product-cards {
  list-style: none;
  padding: 0;
  width: calc(100% + 1px);
  margin: 0;
  display: grid;
  grid-gap: calc(var(--gutter-grid) / 2);
  gap: 0;
  grid-template-columns: repeat(auto-fill, minmax(var(--product-column-min-width), 1fr));
  /*
   * Grid listing
   */
}
.wbx-grid-listing .wbx-product-cards {
  display: flex;
  flex-direction: column;
}

.wbx-product-card {
  position: relative;
  height: 100%;
  display: flex;
  gap: calc(var(--gutter) / 4);
  flex-direction: column;
  /*
   * Grid listing
   */
}
.wbx-product-card .wbx-variants-thumbnails,
.wbx-product-card .wbx-product-card-variants-colors-link,
.wbx-product-card .wbx-product-card-footer {
  z-index: 3;
}
.wbx-product-card .wbx-product-card-preview {
  grid-area: product-card-preview;
  position: relative;
}
.wbx-product-card .wbx-variants-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: hidden;
}
.wbx-product-card .wbx-product-headline {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wbx-product-card .wbx-product-card-content {
  grid-area: product-card-content;
  flex: 1;
}
.wbx-product-card .wbx-product-card-footer {
  grid-area: product-card-footer;
}
.wbx-product-card .wbx-cart-floating-side-product-item-quantity {
  border: 1px solid #ccc;
}
.wbx-product-card .wbx-cart-floating-side-product-item-quantity input {
  height: 40px;
  min-width: 60px;
  text-align: center;
  line-height: 40px;
  border: 0;
  background: none;
}
.wbx-product-card .wbx-variants-thumbnails-list {
  transform: translateY(100%);
  justify-content: center;
  flex-wrap: nowrap;
}
.wbx-product-card:hover .wbx-variants-thumbnails-list {
  opacity: 1;
  transform: translateY(0%);
}
.wbx-grid-listing .wbx-product-card {
  display: grid;
  gap: 1em;
  grid-auto-columns: auto;
  grid-template-columns: minmax(0, 20fr) minmax(0, 80fr);
  grid-template-areas: "product-card-preview product-card-content" "product-card-preview product-card-footer";
}
.wbx-grid-listing .wbx-product-card .wbx-product-card-preview {
  grid-row: span 2;
}
.wbx-grid-listing .wbx-product-card .wbx-product-card-footer {
  justify-content: end;
}

.wbx-product-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.wbx-product-card-title {
  font-size: 1.2rem;
  line-height: 1.2em;
  margin-bottom: 0;
}

.wbx-product-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
  justify-content: end;
}

.wbx-product-card-variants-thumbnails {
  height: 0;
}

.wbx-variants-thumbnails-list {
  transition: all 0.3s ease-out;
  align-items: center;
  background: #fff;
  padding: 0.5em 0;
  display: none;
  flex-wrap: wrap;
  gap: 0.25em;
}
.wbx-variants-thumbnails-list:has(li) {
  display: flex;
}
.wbx-product-card-variants-thumbnails .wbx-variants-thumbnails-list {
  opacity: 0;
  justify-content: center;
  transform: translateY(calc(-100% + var(--gutter-w) / 4));
}

.wbx-variants-thumbnails-item {
  text-align: center;
  transition: all 0.3s ease-out;
  max-width: 80px;
}
.wbx-variants-thumbnails-item > * {
  border: 1px solid transparent;
  background: rgb(var(--color-white));
  padding: 2px;
  display: block;
}
.wbx-variants-thumbnails-item > *:hover {
  border-color: rgba(var(--color-black), 1);
}
.wbx-variants-thumbnails-item.wbx-variants-thumbnails-item-active > * {
  border-color: rgba(var(--color-black), 1);
}
.wbx-product-variants-thumbnails .wbx-variants-thumbnails-item {
  width: 65px;
}
.wbx-product-card-variants-thumbnails .wbx-variants-thumbnails-item {
  flex: 1;
  max-width: 20%;
}
.wbx-variants-thumbnails-item-active {
  border-color: rgb(var(--color-black));
}
.wbx-variants-thumbnails-item-more {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wbx-variants-thumbnails-item:hover:not(.wbx-variants-thumbnails-item-active) {
  border-color: rgb(var(--color-light-grey));
}
.wbx-variants-thumbnails-item a {
  display: block;
}

.wbx-variants-thumbnails-image img {
  object-fit: contain;
  aspect-ratio: 1;
  max-width: 65px;
  width: 100%;
  height: auto;
  display: block;
}

.wbx-registration > .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter);
}
.wbx-registration > .wrapper .wbx-breadcrumb {
  width: 100%;
}

.wbx-registration-aside > *,
.wbx-registration-main {
  background: rgba(var(--color-white));
  padding: var(--gutter);
}

.wbx-registration-main {
  flex: 1;
  max-width: 800px;
  margin: auto;
  margin-bottom: var(--gutter);
}

.wbx-registration-aside {
  min-width: 300px;
}

wbx-registration-form #form-registration-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
}
wbx-registration-form footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: var(--gutter);
}

.form-radio[rel="address.lastname"], .form-radio[rel="address.firstname"], .form-radio[rel=email], .form-radio[rel=phone], .form-radio[rel=phone_mobile], .form-radio[rel=birthdate],
.form-text[rel="address.lastname"],
.form-text[rel="address.firstname"],
.form-text[rel=email],
.form-text[rel=phone],
.form-text[rel=phone_mobile],
.form-text[rel=birthdate],
.form-birthdate[rel="address.lastname"],
.form-birthdate[rel="address.firstname"],
.form-birthdate[rel=email],
.form-birthdate[rel=phone],
.form-birthdate[rel=phone_mobile],
.form-birthdate[rel=birthdate],
.form-select[rel="address.lastname"],
.form-select[rel="address.firstname"],
.form-select[rel=email],
.form-select[rel=phone],
.form-select[rel=phone_mobile],
.form-select[rel=birthdate] {
  width: calc(50% - var(--gutter) / 2);
}
@media only screen and (max-width: 992px) {
  .form-radio[rel="address.lastname"], .form-radio[rel="address.firstname"], .form-radio[rel=email], .form-radio[rel=phone], .form-radio[rel=phone_mobile], .form-radio[rel=birthdate],
  .form-text[rel="address.lastname"],
  .form-text[rel="address.firstname"],
  .form-text[rel=email],
  .form-text[rel=phone],
  .form-text[rel=phone_mobile],
  .form-text[rel=birthdate],
  .form-birthdate[rel="address.lastname"],
  .form-birthdate[rel="address.firstname"],
  .form-birthdate[rel=email],
  .form-birthdate[rel=phone],
  .form-birthdate[rel=phone_mobile],
  .form-birthdate[rel=birthdate],
  .form-select[rel="address.lastname"],
  .form-select[rel="address.firstname"],
  .form-select[rel=email],
  .form-select[rel=phone],
  .form-select[rel=phone_mobile],
  .form-select[rel=birthdate] {
    width: 100%;
  }
}
.form-radio[rel="address.company"], .form-radio[rel="address.country"], .form-radio[rel="address.street_complement"], .form-radio[rel="address.gender"],
.form-text[rel="address.company"],
.form-text[rel="address.country"],
.form-text[rel="address.street_complement"],
.form-text[rel="address.gender"],
.form-birthdate[rel="address.company"],
.form-birthdate[rel="address.country"],
.form-birthdate[rel="address.street_complement"],
.form-birthdate[rel="address.gender"],
.form-select[rel="address.company"],
.form-select[rel="address.country"],
.form-select[rel="address.street_complement"],
.form-select[rel="address.gender"] {
  width: 100%;
}
.form-radio[rel="address.street"],
.form-text[rel="address.street"],
.form-birthdate[rel="address.street"],
.form-select[rel="address.street"] {
  width: calc(80% - var(--gutter) / 2);
}
.form-radio[rel="address.street_number"],
.form-text[rel="address.street_number"],
.form-birthdate[rel="address.street_number"],
.form-select[rel="address.street_number"] {
  width: calc(20% - var(--gutter) / 2);
}
.form-radio[rel="address.locality"],
.form-text[rel="address.locality"],
.form-birthdate[rel="address.locality"],
.form-select[rel="address.locality"] {
  width: calc(60% - var(--gutter) / 2);
}
@media only screen and (max-width: 992px) {
  .form-radio[rel="address.locality"],
  .form-text[rel="address.locality"],
  .form-birthdate[rel="address.locality"],
  .form-select[rel="address.locality"] {
    width: 100%;
  }
}
.form-radio[rel="address.postal_code"],
.form-text[rel="address.postal_code"],
.form-birthdate[rel="address.postal_code"],
.form-select[rel="address.postal_code"] {
  width: calc(40% - var(--gutter) / 2);
}
@media only screen and (max-width: 992px) {
  .form-radio[rel="address.postal_code"],
  .form-text[rel="address.postal_code"],
  .form-birthdate[rel="address.postal_code"],
  .form-select[rel="address.postal_code"] {
    width: 100%;
  }
}

.wbx-location-search {
  max-width: 600px;
}
.weebox-modal .wbx-location-search {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.wbx-location-search__container {
  max-width: 600px;
  padding: var(--gutter) 0;
}
.wbx-location-search__container h2 {
  font-size: 1.4em !important;
  margin-bottom: 1em;
}
.wbx-location-search__container .wbx-selector-items {
  max-width: 600px;
  margin: auto;
}
.weebox-modal .wbx-location-search__container {
  margin: auto;
}
.weebox-modal .wbx-location-search__container h2 {
  text-align: center;
}

.wbx-location-search__tabs {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 20px;
  overflow: hidden;
}
.weebox-modal .wbx-location-search__tabs {
  align-self: center;
  margin-bottom: 2em;
}
.wbx-location-search__tabs > * {
  margin: 0;
  padding: 0;
}
.wbx-location-search__tabs label {
  position: relative;
}
.wbx-location-search__tabs label div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  background: rgba(var(--color-black), 0.05);
  color: rgba(var(--color-black), 1);
  cursor: pointer;
  border-radius: 2px;
}
.wbx-location-search__tabs label div:hover {
  background: rgba(var(--color-black), 0.1);
}
.wbx-location-search__tabs label div.active {
  background: rgba(var(--color-black));
  color: rgba(var(--color-white));
}
.wbx-location-search__tabs label svg {
  margin-right: 0.5em;
}
.wbx-location-search__tabs label input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.wbx-location-search__tabs label input:checked ~ div {
  background: rgba(var(--color-black));
  color: rgba(var(--color-white));
}

.form-autocomplete-wrapper.form-error .form-autocomplete > .form-input {
  border-color: rgba(var(--color-danger));
}

.wbx-multiselect {
  display: flex;
  align-items: center;
  border: 1px solid #111;
}
.wbx-multiselect.form-error {
  border-color: rgba(var(--color-danger));
}
.wbx-multiselect > *:last-child {
  flex: 1;
}
.wbx-multiselect .multiselect__single {
  align-items: center;
}
.wbx-multiselect .wbx-multiselect-icon {
  width: 60px;
  text-align: center;
}
.wbx-multiselect .arrow-down {
  position: absolute;
  top: calc(50% - 15px);
  right: 10px;
  width: 30px;
  height: 30px;
}
.wbx-multiselect .arrow-down svg {
  width: 100%;
  height: 100%;
}
.wbx-multiselect .multiselect__clear {
  position: absolute;
  top: calc(50% - 19px);
  right: 50px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--color-black), 0.05);
  color: rgba(var(--color-black));
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 180ms ease-in-out all;
}
.wbx-multiselect .multiselect__clear:hover {
  background: rgba(var(--color-black));
  color: rgba(var(--color-white));
}
.wbx-multiselect .multiselect__clear svg {
  width: 80%;
  height: 80%;
}
.wbx-multiselect .multiselect__spinner {
  top: 0;
  right: 0;
  margin: 2px;
  height: 90%;
  z-index: 10;
}
.wbx-multiselect .multiselect__spinner:before, .wbx-multiselect .multiselect__spinner:after {
  border-color: #111 transparent transparent;
  width: 30px;
  height: 30px;
  top: calc(50% - 10px);
  left: calc(50% - 16px);
}
.wbx-multiselect .multiselect__tags {
  border: 0px;
  border-radius: 0px;
  min-height: 60px;
  padding: 0;
  padding-right: 40px;
  display: flex;
}
.wbx-multiselect .multiselect__placeholder {
  padding: 0;
  margin: 0;
  padding-left: 1em !important;
  font-size: 20px;
  line-height: 60px;
}
.wbx-multiselect .multiselect__placeholder,
.wbx-multiselect .multiselect__input::placeholder {
  font-weight: var(--fw-light);
  color: rgba(var(--color-black), 0.5);
}
.wbx-multiselect .multiselect, .wbx-multiselect .multiselect__input, .wbx-multiselect .multiselect__single {
  font-size: 20px;
}
.wbx-multiselect .multiselect__select {
  height: 90%;
}
.wbx-multiselect .multiselect__input {
  padding-left: 1em !important;
  opacity: 0;
}
.wbx-multiselect .multiselect--active .multiselect__input {
  opacity: 1;
}
.wbx-multiselect .multiselect--active .multiselect__clear {
  display: none;
}
.wbx-multiselect .multiselect__input,
.wbx-multiselect .multiselect__single {
  display: flex;
  padding: 0;
  margin: 0;
  min-height: 60px;
  color: rgba(var(--color-black));
  font-weight: var(--fw-bold);
}
.wbx-multiselect .autocomplete-option {
  display: flex;
  align-items: center;
  padding-left: 1em;
}
.wbx-multiselect .autocomplete-option figure {
  margin-right: 0.5em;
}
.wbx-multiselect .multiselect__content-wrapper {
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
}
.wbx-multiselect .multiselect__option--highlight {
  background: #f4f4f4;
  color: rgba(var(--color-black), 1);
}
.wbx-multiselect .multiselect__option {
  min-height: 60px;
  display: flex;
  align-items: center;
}
.wbx-multiselect .multiselect__option:has(.hide-parent) {
  display: none;
}

.wbx-location-search__notice {
  color: rgba(var(--color-warning), 1);
  font-weight: var(--fw-bold);
  padding: 0.5em 0;
  display: none;
}
.wbx-location-search__notice:has(p) {
  display: block;
}

.wbx-location-container-modal {
  padding: var(--gutter);
}

.wbx-location-search__pickups-item-opening-hours {
  margin-bottom: 1em;
}

.wbx-location-search__pickups-item-opening-hours-listing {
  display: table;
}
.wbx-location-search__pickups-item-opening-hours-listing > * {
  display: table-row;
}
.wbx-location-search__pickups-item-opening-hours-listing > * > * {
  display: table-cell;
  padding-bottom: 0.5em;
  text-align: left;
}
.wbx-location-search__pickups-item-opening-hours-listing > * > * span {
  display: block;
}
.wbx-location-search__pickups-item-opening-hours-listing .day {
  padding-right: 0.5em;
  text-align: right;
}

.wbx-search-container-modal {
  padding: 0 40px;
}
.wbx-search-container-modal .wbx-search-listing-wrapper {
  max-width: 600px;
  margin: auto;
  margin-top: 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wbx-search-container-modal .wbx-empty {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0px;
  gap: 4px;
  font-size: 12px;
  color: rgba(var(--color-link), 1);
}
.wbx-search-container-modal .wbx-search-listing {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.75em;
  font-size: 15px;
}
.wbx-search-container-modal .wbx-search-listing li .wbx-search-listing-item {
  display: inline-block;
  color: rgba(var(--color-link), 1);
}
.wbx-search-container-modal h6 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.wbx-search-container-modal .wbx-search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: auto;
  gap: 1em;
}
.wbx-search-container-modal .wbx-search-wrapper .wbx-search-input {
  border-bottom: 2px solid #000;
  flex: 1;
}
.wbx-search-container-modal .wbx-search-wrapper .wbx-search-input input {
  background: none;
  border: 1px;
  width: 100%;
  padding: 0.5em 0;
  font-size: 22px;
  font-family: var(--font-content);
  font-weight: 800;
}
.wbx-search-container-modal .wbx-search-wrapper .wbx-search-input input::placeholder {
  opacity: 0.5;
  font-weight: 300;
}
.wbx-notice {
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 0.5rem;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
}
.wbx-notice p {
  font-weight: var(--fw-light);
}
.wbx-notice .wbx-notice-wrapper {
  flex: 1;
}
.wbx-notice.warning {
  background: rgba(var(--color-warning), 0.2);
}
.wbx-notice.danger, .wbx-notice.error {
  background: rgba(var(--color-danger), 0.2);
}
.wbx-notice.success {
  background: rgba(var(--color-success), 0.2);
}

.wbx-selector-items {
  display: flex;
  flex-direction: column;
  gap: calc(var(--gutter) / 4) 0;
  width: 100%;
}
.wbx-selector-items.is-loading {
  pointer-events: none;
  user-select: none;
  /*
  [data-is-loading='tile']{
    color: transparent;
    background: rgba(0,0,0,0.1);
  }
  [data-is-loading='hide']{
    visibility: hidden;
  }
   */
}

.wbx-selector-item {
  position: relative;
  padding: calc(var(--gutter) / 2);
  padding-left: calc(22px + var(--gutter));
  display: flex;
  transition: all ease-in-out 0.25s;
  border-radius: var(--border-radius);
  color: rgba(var(--color-black), 0.6);
  gap: 1em;
  /*
  &.active{
    .delivery-dates{
      color: rgba(var(--color-success), 1);
      //border-radius: var(--border-radius);

      &:has(.shipping-extended){
        color: rgba(var(--color-warning), 1);
      }
    }
  }
   */
}
.wbx-selector-item:last-child {
  border: 0px;
}
.wbx-selector-item > * {
  order: 10;
}
@media only screen and (max-width: 768px) {
  .wbx-selector-item {
    padding-left: calc(26px + var(--gutter));
    flex-direction: column;
  }
}
.wbx-selector-item.nearest .near-label {
  display: block;
}
.wbx-selector-item[disabled=true] {
  opacity: 0.3;
  pointer-events: none;
  background: rgba(var(--color-black), 0);
  user-select: none;
}
.wbx-selector-item input {
  position: absolute !important;
  opacity: 0;
}
.wbx-selector-item input ~ * {
  padding-left: 0 !important;
}
.wbx-selector-item input ~ *:before, .wbx-selector-item input ~ *:after {
  display: none;
}
.wbx-selector-item .check {
  position: absolute !important;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(var(--gutter) / 2);
  left: calc(var(--gutter) / 2);
  width: 26px;
  height: auto;
  aspect-ratio: 1/1;
  background: transparent;
  border: 2px solid rgba(var(--color-black), 0.1);
  border-radius: 50%;
  padding: 0;
  color: rgba(var(--color-white));
  transition: all ease-in-out 0.25s;
}
@media only screen and (max-width: 768px) {
  .wbx-selector-item .check {
    width: 20px;
    left: calc(var(--gutter) / 2 + 2px);
  }
}
.wbx-selector-item .check svg {
  width: 100%;
  height: 100%;
}
.wbx-selector-item:hover {
  color: rgba(var(--color-black), 1);
  background: rgba(var(--color-black), 0.04);
}
.wbx-selector-item.active {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  color: rgba(var(--color-black), 1);
  background: rgba(var(--color-black), 0);
  border: 1px solid rgba(var(--color-black), 0.1);
}
.wbx-selector-item.active .check {
  background: rgba(var(--color-black), 1);
  border: 2px solid rgba(var(--color-black), 1);
  animation: checked 0.5s ease-in-out forwards;
}
.wbx-selector-item .info {
  display: flex;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .wbx-selector-item .info {
    order: 20;
  }
}
.wbx-selector-item .info .distance {
  margin: 0 1em;
}
.wbx-selector-item .info .distance,
.wbx-selector-item .info .fees {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
@media only screen and (max-width: 992px) {
  .wbx-selector-item .info {
    flex-direction: column;
    gap: calc(var(--gutter));
    width: 80px !important;
    justify-content: right;
  }
  .wbx-selector-item .info .distance {
    padding: 0;
    margin: 0;
  }
  .wbx-selector-item .info .fees {
    margin-left: auto;
  }
}
@media only screen and (max-width: 768px) {
  .wbx-selector-item .info .fees {
    margin-left: 0;
    justify-content: left;
  }
}
.wbx-selector-item .details-more {
  color: rgba(var(--color-info));
}
.wbx-selector-item .details {
  display: none;
}
.wbx-selector-item header {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--gutter);
  margin-bottom: 4px;
  flex: 1;
}
.wbx-selector-item header .title {
  flex: 1;
}
.wbx-selector-item header .title h3 {
  font-size: 1.1em;
  font-weight: var(--fw-medium);
}
@media only screen and (max-width: 992px) {
  .wbx-selector-item header {
    display: flex;
    flex-wrap: wrap;
  }
  .wbx-selector-item header .title {
    width: 100%;
    flex: inherit;
    margin-bottom: 0.25em;
  }
}
.wbx-selector-item .wbx-selector-item-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.wbx-selector-item .wbx-selector-item-content > h3 {
  font-size: 1.2em;
  font-weight: var(--fw-bold);
}
.wbx-selector-item .wbx-selector-item-content > p {
  margin-bottom: 0.5em;
  width: 100%;
}
.wbx-selector-item .wbx-selector-item-content .address span {
  display: block;
}
.wbx-selector-item fieldset {
  width: 100%;
  margin-top: 1em;
}
.wbx-selector-item .image {
  margin-top: calc(var(--gutter) / 2);
}
.wbx-selector-item .image img {
  max-width: 100%;
  height: 60px;
  width: auto;
}
.wbx-selector-item .delivery-dates {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.wbx-selector-item .delivery-dates .shipping-extended {
  color: rgba(var(--color-warning));
  font-weight: var(--fw-medium);
}
.wbx-selector-item .delivery-dates p {
  margin: 0;
}
.wbx-selector-item .delivery-dates figure {
  margin-right: 0.5em;
}
.wbx-selector-item .delivery-dates strong {
  font-weight: var(--fw-bold);
}

.wbx-categories {
  font-size: 16px;
  font-size: 1rem;
}

.wbx-categories-list ul li > ul {
  display: none;
}
.wbx-categories-list ul li.expended > ul {
  display: block;
}

.wbx-categories-inline {
  position: relative;
  z-index: 20;
  flex: 1;
}
.wbx-categories-inline .wbx-categories-list {
  display: flex;
  gap: 1em;
}
@media only screen and (max-width: 992px) {
  .wbx-categories-inline .wbx-categories-list {
    display: none;
  }
}
.wbx-categories-inline .list {
  display: flex;
}
.wbx-categories-inline .list-link {
  padding: 0.5em;
}
.wbx-categories-inline .sublist {
  display: block;
  padding-left: 1em;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.wbx-categories-inline .sublist.level-2 {
  position: absolute;
}
.wbx-categories-inline .list-item:hover > .sublist {
  max-height: 300px;
  opacity: 1;
}

@media only screen and (max-width: 992px) {
  .wbx-categories-tree {
    order: -1;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .wbx-categories-tree {
    min-width: 250px;
    width: calc(25% - var(--gutter-w));
    display: flex;
    flex-direction: column;
    gap: calc(var(--gutter) / 2);
  }
}
.wbx-categories-tree .wbx-categories-title {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 992px) {
  .wbx-categories-tree .wbx-categories-list {
    display: none;
  }
}
.wbx-categories-tree .list-item.active > .list-link {
  font-weight: 900;
}
.wbx-categories-tree .list-item.expended > .sublist {
  display: block;
}
.wbx-categories-tree .list-item.expended.level-1 {
  margin-bottom: 0.5em;
}
.wbx-categories-tree .list-link {
  display: flex;
  justify-content: space-between;
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.wbx-categories-tree .list-link .icon, .wbx-categories-tree .list-link .choose-institut label span, .choose-institut label .wbx-categories-tree .list-link span {
  font-size: 0.75em;
}
.wbx-categories-tree .sublist {
  display: none;
  margin-left: 1em;
}

.wbx-categories-dropdown-search {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 576px) {
  .wbx-categories-dropdown-search {
    flex-direction: column;
    gap: calc(var(--gutter) / 2);
  }
}

.wbx-button-container .button-label {
  transform: translateY(0%);
}
.wbx-button-container .state-success {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all ease-in-out 500ms;
  transform: translateY(-200%);
}
.wbx-button-container .state-success .loader-icon {
  width: auto;
  height: 80%;
  aspect-ratio: 1/1;
}
.wbx-button-container .state-success .loader-check {
  stroke: currentColor;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.wbx-button-container.wbx-is-loading .button-label {
  transform: translateY(200%);
  opacity: 0;
}
.wbx-button-container.wbx-is-success .button-label {
  transform: translateY(200%);
  opacity: 0;
}
.wbx-button-container.wbx-is-success button {
  background-color: #4caf50;
  border-color: #4caf50;
  color: white;
}
.wbx-button-container.wbx-is-success .state-success {
  opacity: 1;
  transform: translateY(0%);
}
.wbx-button-container.wbx-is-success .state-success .loader-check {
  animation: checkmark 0.5s ease forwards 0.5s;
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 30;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

.wbx-cart-product-content-gift .form-checkbox .form-input {
  border: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.debug {
  border: 1px dotted red;
}

body {
  background: rgb(var(--color-white));
  scrollbar-gutter: stable;
}
body.has-modal {
  overflow-y: hidden;
  padding-right: 10px;
}

.wbx-selector-item .info .price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.wbx-selector-item .info .price i {
  font-style: normal;
  font-size: 0.8em;
  margin-right: 0.25em;
}
.wbx-selector-item .info .price span {
  margin-left: auto;
}
.wbx-selector-item .info .price span {
  font-size: 1em;
  font-weight: var(--fw-medium);
}
.wbx-selector-item .info .regular-price.price {
  text-decoration: line-through;
  font-size: 0.8em;
}

[data-clickable] {
  cursor: pointer;
}

.choose-institut {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: calc(var(--gutter) * 2);
}
.choose-institut > div:first-child {
  font-weight: var(--fw-extra-bold);
  margin: auto;
  margin-bottom: var(--gutter-h);
}
.choose-institut > div:last-child {
  margin: auto;
  display: flex;
}
.choose-institut > div:last-child > div {
  margin-left: var(--gutter-h);
}
@media only screen and (max-width: 768px) {
  .choose-institut > div:last-child > div {
    margin: 0 5px;
  }
}
.choose-institut label {
  position: relative;
  display: block;
  cursor: pointer;
}
.choose-institut label span {
  display: block;
  background: rgb(var(--color-main));
  color: rgb(var(--color-white));
  line-height: 2.5em;
  padding: 0 35px;
  padding-right: var(--gutter-h);
  border-radius: 6px;
}
.choose-institut label span:before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  opacity: 0.2;
}
.choose-institut label span:hover {
  background: rgb(var(--color-dark-grey));
}
.choose-institut label input {
  opacity: 0;
  position: absolute;
}
.choose-institut label input:checked ~ span {
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
  font-weight: var(--fw-extra-bold);
}
.choose-institut label input:checked ~ span:before {
  opacity: 1;
}

.wbx-filters-side .form-field.form-select .form-label, .wbx-filters-side .form-field.form-select-multiple .form-label {
  color: rgb(var(--color-black));
  font-weight: var(--fw-bold);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 1em;
  position: relative;
  display: block;
  overflow: hidden;
}
.wbx-filters-side .form-field.form-select .form-label:after, .wbx-filters-side .form-field.form-select-multiple .form-label:after {
  content: "";
  height: 1px;
  background: rgb(var(--color-black));
  width: 100%;
  position: absolute;
  top: 50%;
  margin-left: 10px;
  opacity: 0.2;
}

/*
 * FOR SVG
 */
[fill="#00b871"] {
  fill: rgb(var(--color-main));
}

[fill="#2fdf84"] {
  fill: rgb(var(--color-main-light));
}

img {
  max-width: 100%;
}

.swiper {
  max-width: 100%;
}

/***********************

  WEEBOX PRODUCT

************************/
.wbx-filters-side {
  display: flex;
  flex-direction: column;
}
.wbx-filters-side .form-field {
  width: auto;
  margin-bottom: var(--gutter);
}
.wbx-filters-side .form-field.form-select .form-label, .wbx-filters-side .form-field.form-select-multiple .form-label {
  display: block;
}

.form-panel {
  padding: var(--gutter-h);
  margin: 0;
  border-bottom: 1px solid #eee;
}
.form-panel .label {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
}
.form-panel ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.form-panel ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.form-panel ul li label {
  padding: calc(var(--gutter) / 2) 0;
  padding-right: 10px;
  padding-left: 0;
  border-bottom: 1px solid #eee;
  display: block;
}
.form-panel ul li:last-child label {
  border: 0;
}
.form-panel ul li.disabled {
  opacity: 0.3;
}

.wbx-cart-steps {
  position: relative;
  margin: auto;
  z-index: 100;
  width: 100%;
  display: flex;
  margin-bottom: var(--gutter);
}
.wbx-cart-steps ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  margin: auto;
  display: flex;
}
.wbx-cart-steps ul > * {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wbx-cart-steps ul li {
  position: relative;
  width: 70px;
  height: 70px;
  background: rgb(var(--color-white));
  color: #ddd;
  border-radius: 50%;
  text-align: center;
  border: 4px solid;
  margin-right: calc(var(--gutter) * 2);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wbx-cart-steps ul li svg {
  width: 30px;
  height: 30px;
}
.wbx-cart-steps ul li:last-child {
  margin-right: 0;
}
.wbx-cart-steps ul li .error {
  display: none;
}
@media only screen and (max-width: 576px) {
  .wbx-cart-steps ul li {
    width: 60px;
    height: 60px;
    line-height: 50px;
    font-size: 25px;
  }
}
.wbx-cart-steps ul:after {
  content: "";
  height: 4px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: calc(var(--gutter) / 2);
  width: 80%;
  z-index: 0;
}
.wbx-cart-steps ul.step-cart li:nth-child(1) {
  border-color: rgb(var(--color-success));
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  transform: scale(1.2);
}
.wbx-cart-steps ul.step-cart:before {
  content: "";
  height: 4px;
  background: rgb(var(--color-success));
  position: absolute;
  top: 50%;
  left: calc(var(--gutter) / 2);
  width: 50%;
  z-index: 5;
}
.wbx-cart-steps ul.step-checkout li:nth-child(1) {
  border-color: rgb(var(--color-success));
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
}
.wbx-cart-steps ul.step-checkout li:nth-child(2) {
  border-color: rgb(var(--color-success));
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  transform: scale(1.2);
}
.wbx-cart-steps ul.step-checkout:before {
  content: "";
  height: 4px;
  background: rgb(var(--color-success));
  position: absolute;
  top: 50%;
  left: calc(var(--gutter) / 2);
  width: 80%;
  z-index: 5;
}
.wbx-cart-steps ul.step-checkout-status-completed li:nth-child(1),
.wbx-cart-steps ul.step-checkout-status-completed li:nth-child(2) {
  border-color: rgb(var(--color-success));
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
}
.wbx-cart-steps ul.step-checkout-status-completed li:nth-child(3) {
  border-color: rgb(var(--color-success));
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  transform: scale(1.2);
}
.wbx-cart-steps ul.step-checkout-status-completed:before {
  content: "";
  height: 4px;
  background: rgb(var(--color-success));
  position: absolute;
  top: 50%;
  left: calc(var(--gutter) / 2);
  width: 80%;
  z-index: 5;
}
.wbx-cart-steps ul.step-checkout-status-canceled li:nth-child(1),
.wbx-cart-steps ul.step-checkout-status-canceled li:nth-child(2), .wbx-cart-steps ul.step-checkout-status-cancel li:nth-child(1),
.wbx-cart-steps ul.step-checkout-status-cancel li:nth-child(2), .wbx-cart-steps ul.step-checkout-status-error li:nth-child(1),
.wbx-cart-steps ul.step-checkout-status-error li:nth-child(2) {
  border-color: rgb(var(--color-success));
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
}
.wbx-cart-steps ul.step-checkout-status-canceled li:nth-child(3), .wbx-cart-steps ul.step-checkout-status-cancel li:nth-child(3), .wbx-cart-steps ul.step-checkout-status-error li:nth-child(3) {
  border-color: rgb(var(--color-danger));
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  transform: scale(1.2);
}
.wbx-cart-steps ul.step-checkout-status-canceled:before, .wbx-cart-steps ul.step-checkout-status-cancel:before, .wbx-cart-steps ul.step-checkout-status-error:before {
  content: "";
  height: 4px;
  background: rgb(var(--color-success));
  position: absolute;
  top: 50%;
  left: calc(var(--gutter) / 2);
  width: 80%;
  z-index: 5;
}
.wbx-cart-steps ul.step-checkout-status-canceled .success, .wbx-cart-steps ul.step-checkout-status-cancel .success, .wbx-cart-steps ul.step-checkout-status-error .success {
  display: none;
}
.wbx-cart-steps ul.step-checkout-status-canceled .error, .wbx-cart-steps ul.step-checkout-status-cancel .error, .wbx-cart-steps ul.step-checkout-status-error .error {
  display: block;
}

.weebox-cart-empty {
  color: rgba(var(--color-black), 1);
  padding: var(--gutter-h);
  text-align: center;
}
.weebox-cart-empty > span {
  display: block;
  font-size: 32px;
  margin-bottom: var(--gutter);
}
.weebox-cart-empty svg {
  height: 100px;
  width: 100px;
  margin-bottom: var(--gutter);
}

#weebox-login-or-guest > .wrapper {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  z-index: 10;
}
#weebox-login-or-guest > .wrapper > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}
#weebox-login-or-guest > .wrapper > * {
  flex-grow: inherit !important;
  flex: inherit !important;
  width: calc(100% / 2 - var(--gutter) * 1.5 / 2 * 1);
  width: calc(100% / 2 - var(--gutter) * 1.5 / 2 * 1);
}
#weebox-login-or-guest > .wrapper > *:nth-child(1n) {
  margin-right: calc(var(--gutter) * 1.5);
}
#weebox-login-or-guest > .wrapper > *:nth-child(2n) {
  margin-right: 0;
}
#weebox-login-or-guest > .wrapper > div {
  padding: var(--gutter-h);
  padding: var(--gutter-h);
  background: #f7f7f7;
  border: 1px solid #ddd;
}
#weebox-login-or-guest > .wrapper > div h2 {
  margin-bottom: calc(var(--gutter) * 1.5);
  margin-bottom: calc(var(--gutter) * 1.5);
  text-align: center;
  display: block;
}
#weebox-login-or-guest > .wrapper > div i {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
  margin-bottom: var(--gutter-h);
  margin-bottom: var(--gutter-h);
  text-align: center;
  opacity: 0.8;
  color: rgb(var(--color-main));
  height: 50px;
  line-height: 50px;
}
#weebox-login-or-guest > .wrapper > div footer {
  width: 100%;
  text-align: right;
}
#weebox-login-or-guest > .wrapper > div footer button.bt-reset {
  background: #f7f7f7;
  color: #555;
  float: left;
}
#weebox-login-or-guest > .wrapper > div.weebox-register-panel form {
  display: flex;
  flex-wrap: wrap;
}
#weebox-login-or-guest > .wrapper > div.weebox-register-panel .form-field[rel=firstname] {
  margin-right: 4%;
}
#weebox-login-or-guest > .wrapper > div.weebox-register-panel .form-field[rel=firstname],
#weebox-login-or-guest > .wrapper > div.weebox-register-panel .form-field[rel=lastname] {
  width: 48%;
}
#weebox-login-or-guest > .wrapper > div .form-field .form-label {
  padding-left: 15px;
  color: rgb(var(--color-main-dark));
  font-size: 14px;
  font-size: 0.875rem;
}
#weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper {
  border: 0;
}
#weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper select, #weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper option, #weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper input, #weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper textarea {
  padding: 15px;
  padding: 0.9375rem;
  border: 1px solid rgba(var(--color-main), 0.3);
}
#weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper select:focus, #weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper option:focus, #weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper input:focus, #weebox-login-or-guest > .wrapper > div .form-field .form-input .form-input-wrapper textarea:focus {
  outline: 0px;
  border: 1px solid rgb(var(--color-main));
}
#weebox-login-or-guest > .wrapper > div .form-field.form-error .form-label {
  color: rgb(var(--color-danger));
}
#weebox-login-or-guest > .wrapper > div .form-field.form-error .form-input-wrapper {
  border-color: rgb(var(--color-danger));
}

#weebox-login {
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: rgb(var(--color-main));
  padding: calc(var(--gutter) * 2) 0;
  padding: calc(var(--gutter) * 2) 0;
}
#weebox-login:before {
  content: "";
  background: url("../images/alpx-background.jpg") center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(10px);
  transform: scale(1.2);
  opacity: 0.8;
}
#weebox-login > .wrapper {
  display: flex;
  width: 100%;
  margin: auto;
  flex-grow: inherit !important;
  flex: inherit !important;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
#weebox-login > .wrapper > * {
  list-style: none !important;
  flex-grow: 1;
  width: auto;
}
#weebox-login > .wrapper > * {
  flex-grow: inherit !important;
  flex: inherit !important;
  width: calc(100% / 2 - var(--gutter) * 1.5 / 2 * 1);
  width: calc(100% / 2 - var(--gutter) * 1.5 / 2 * 1);
}
#weebox-login > .wrapper > *:nth-child(1n) {
  margin-right: calc(var(--gutter) * 1.5);
}
#weebox-login > .wrapper > *:nth-child(2n) {
  margin-right: 0;
}
#weebox-login > .wrapper > div {
  padding: calc(var(--gutter) * 2);
  padding: calc(var(--gutter) * 2);
  background: rgba(255, 255, 255, 0.9);
}
#weebox-login > .wrapper > div h2 {
  margin-bottom: calc(var(--gutter) * 1.5);
  margin-bottom: calc(var(--gutter) * 1.5);
  text-align: center;
  display: block;
}
#weebox-login > .wrapper > div i {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
  margin-bottom: var(--gutter-h);
  margin-bottom: var(--gutter-h);
  text-align: center;
  opacity: 0.8;
  color: rgb(var(--color-main));
  height: 50px;
  line-height: 50px;
}
#weebox-login > .wrapper > div footer {
  width: 100%;
  text-align: right;
}
#weebox-login > .wrapper > div footer button.bt-reset {
  background: #f7f7f7;
  color: #555;
  float: left;
}
#weebox-login > .wrapper > div.weebox-register-panel form {
  display: flex;
  flex-wrap: wrap;
}
#weebox-login > .wrapper > div.weebox-register-panel .form-field[rel=firstname] {
  margin-right: 4%;
}
#weebox-login > .wrapper > div.weebox-register-panel .form-field[rel=firstname],
#weebox-login > .wrapper > div.weebox-register-panel .form-field[rel=lastname] {
  width: 48%;
}
#weebox-login > .wrapper > div .form-field .form-label {
  padding-left: 15px;
  color: rgb(var(--color-main-dark));
  font-size: 14px;
  font-size: 0.875rem;
}
#weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper {
  border: 0;
}
#weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper select, #weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper option, #weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper input, #weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper textarea {
  padding: 15px;
  padding: 0.9375rem;
  border: 1px solid rgba(var(--color-main), 0.3);
}
#weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper select:focus, #weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper option:focus, #weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper input:focus, #weebox-login > .wrapper > div .form-field .form-input .form-input-wrapper textarea:focus {
  outline: 0px;
  border: 1px solid rgb(var(--color-main));
}

.wbx-loader-wrapper {
  position: relative;
  min-height: 200px;
}

.wbx-loader {
  min-width: 0px !important;
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
  height: 90%;
  max-height: 60px;
  aspect-ratio: 1/1;
}
.wbx-loader .wbx-loader-container {
  width: 100%;
  height: 100%;
  transition: all 200ms ease-in-out;
}
.wbx-loader .wbx-loader-container > div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transition: border 200ms ease-in-out;
}
.wbx-loader .wbx-loader-container > div:nth-child(1) {
  animation-delay: -0.45s;
}
.wbx-loader .wbx-loader-container > div:nth-child(2) {
  animation-delay: -0.3s;
}
.wbx-loader .wbx-loader-container > div:nth-child(3) {
  animation-delay: -0.15s;
}
.wbx-loader i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 20px;
}
.wbx-is-loading .wbx-loader {
  visibility: visible;
  opacity: 1;
}
.wbx-is-loading .wbx-loader .wbx-loader-container {
  border: none;
}
.wbx-is-loading .wbx-loader .wbx-loader-container > div {
  border-color: rgb(var(--color-black)) transparent transparent transparent;
}
.wbx-loader-container > .wbx-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  visibility: visible;
}

.wbx-button-container {
  position: relative;
}
.wbx-button-container button {
  overflow: hidden;
  width: 100%;
  transition: all ease-in-out 500ms;
  gap: 0.5em;
}
.wbx-button-container .button-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: all ease-in-out 500ms;
  transform: translateY(0%);
}
.wbx-button-container .wbx-loader {
  aspect-ratio: 1/1;
  height: 24px !important;
  width: auto !important;
}
.wbx-button-container .wbx-loader div {
  border-width: 3px;
}
.wbx-button-container.wbx-is-loading button {
  opacity: 0.1;
}

.wbx-is-loading .wbx-loader {
  z-index: 200;
  visibility: visible;
  opacity: 1;
}
.wbx-is-loading .wbx-loader div {
  border: 2px solid;
  border-radius: 100px;
  border-color: rgb(var(--color-white)) transparent transparent transparent;
}
.wbx-is-loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  background-blend-mode: darken, luminosity;
  z-index: 100;
}

.notice {
  display: none;
  padding: 1em;
  margin-bottom: 1em;
}
.notice .logs {
  padding-top: 0.5em;
}
.notice .logs p {
  font-size: 0.9em;
  margin-bottom: 0.5em;
}
.notice .logs p:last-child {
  margin: 0;
}
.notice.show {
  display: block;
}
.wbx-checkout-main-content .notice {
  margin-bottom: var(--gutter);
}
.notice.error {
  border-left: 3px solid red;
  color: red;
  background: rgba(255, 0, 0, 0.05);
}
.notice.success {
  background: #f0faef;
  border-left: 3px solid green;
  color: rgb(var(--color-black));
  background: rgba(0, 128, 0, 0.05);
}
.notice p:last-child {
  margin-bottom: 0;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.weebox-schedule-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
}
.weebox-schedule-modal > div {
  background: rgb(var(--color-white));
  padding: 40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  min-height: 300px;
  max-width: 800px;
  width: 100%;
  margin: auto;
  border-radius: 10px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .weebox-schedule-modal > div {
    padding: 20px;
  }
}
.weebox-schedule-modal .time-slots {
  border-radius: 10px;
  overflow: hidden;
  width: auto;
  margin: auto;
}
.weebox-schedule-modal .time-slots .time-slots-heading {
  width: 100%;
  text-align: center;
}
.weebox-schedule-modal .time-slots .time-slots-heading h2 {
  color: rgb(var(--color-dark-grey));
  font-size: 20px;
  margin: 0;
}
.weebox-schedule-modal .time-slots .time-slots-heading p {
  color: rgb(var(--color-black));
  font-size: 20px;
  margin-bottom: var(--gutter-h);
  font-weight: var(--fw-bold);
}
.weebox-schedule-modal .time-slots .time-slots-days {
  display: flex;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-right: 12px;
}
.weebox-schedule-modal .time-slots .time-slots-days > * {
  padding-bottom: 10px;
  padding-top: 10px;
  border-right: 1px solid #eee;
  flex: 1;
  font-size: 14px;
  font-weight: var(--fw-bold);
  background: #f7f7f7;
  color: #aaa;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
  display: none;
}
.weebox-schedule-modal .time-slots .time-slots-days > *.open-day {
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  display: block;
}
.weebox-schedule-modal .time-slots .time-slots-days > * span {
  display: block;
  margin-bottom: 0.1em;
  font-weight: var(--fw-regular);
}
.weebox-schedule-modal .time-slots .time-slots-days > *:last-child {
  border: 0;
}
.weebox-schedule-modal .time-slots .time-slots-hours {
  display: flex;
  width: 100%;
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #eee;
}
.weebox-schedule-modal .time-slots .time-slots-hours > * {
  flex: 1;
  padding-top: 10px;
  text-align: center;
  border-right: 1px solid #eee;
  background: #f7f7f7;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
  min-height: 200px;
  display: none;
}
.weebox-schedule-modal .time-slots .time-slots-hours > *.open-day {
  background: rgb(var(--color-white));
  display: flex;
  flex-direction: column;
}
.weebox-schedule-modal .time-slots .time-slots-hours > *.open-day.empty {
  background: #f7f7f7;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
}
.weebox-schedule-modal .time-slots .time-slots-hours > * span {
  border-radius: 20px;
  font-size: 12px;
  line-height: 2em;
  padding: 0 0.5em;
  margin: 0 auto;
  margin-bottom: 5px;
}
.weebox-schedule-modal .time-slots .time-slots-hours > * span.selectable {
  background: rgba(0, 0, 0, 0.1);
  color: rgb(var(--color-black));
  font-weight: var(--fw-bold);
  cursor: pointer;
}
.weebox-schedule-modal .time-slots .time-slots-hours > * span.selectable:hover {
  color: rgb(var(--color-white));
  background: rgb(var(--color-black));
}
.weebox-schedule-modal .time-slots .time-slots-hours > *:last-child {
  border: 0;
}
.weebox-schedule-modal .time-slots .time-slots-buttons {
  display: block;
  margin: auto;
  text-align: center;
  padding-top: var(--gutter-h);
  cursor: pointer;
}
.weebox-schedule-modal .time-slots .time-slots-buttons button {
  border-radius: 0px;
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
}
.weebox-schedule-modal .time-slots .time-slots-buttons button[data-action="weebox.calendar.previous"] {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%) translateX(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: block;
  padding: 0px;
  border: 0px;
  cursor: pointer;
}
.weebox-schedule-modal .time-slots .time-slots-buttons button[data-action="weebox.calendar.previous"]:hover {
  transform: translateY(-50%) translateX(-50%) scale(0.95);
}
.weebox-schedule-modal .time-slots .time-slots-buttons button[data-action="weebox.calendar.next"] {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) translateX(50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: block;
  padding: 0px;
  border: 0px;
  cursor: pointer;
}
.weebox-schedule-modal .time-slots .time-slots-buttons button[data-action="weebox.calendar.next"]:hover {
  transform: translateY(-50%) translateX(50%) scale(0.95);
}
.weebox-schedule-modal .time-slots .time-slots-buttons button[data-action="weebox.calendar.close"] {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  padding: 0px;
  background: rgb(var(--color-white));
  color: rgb(var(--color-black));
  font-size: 22px;
  border: 0px;
}

.weebox-branches-selection {
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  justify-content: center;
  padding: 1em;
}
@media only screen and (max-width: 768px) {
  .weebox-branches-selection {
    flex-direction: column;
  }
}
.weebox-branches-selection label {
  position: relative;
  margin: 1em;
  background: rgb(var(--color-white));
  border: 2px solid #ccc;
  color: rgb(var(--color-black));
  padding: calc(var(--gutter) / 2);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  transition: transform ease-in-out 250ms;
  max-width: 240px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .weebox-branches-selection label {
    max-width: 100%;
    width: auto;
  }
}
.weebox-branches-selection label .picture {
  text-align: center;
  margin: auto;
  margin-bottom: 0.5em;
}
.weebox-branches-selection label .picture svg, .weebox-branches-selection label .picture img {
  max-height: 80px;
  width: 100%;
}
.weebox-branches-selection label .address {
  text-align: center;
}
.weebox-branches-selection label .address span {
  display: block;
  line-height: 1.2em;
}
.weebox-branches-selection label .address strong {
  display: block;
  line-height: 1.1em;
  font-size: 1em;
}
.weebox-branches-selection label:hover {
  transform: scale(1.05);
  border-color: rgb(var(--color-black));
  color: rgb(var(--color-black));
}
.weebox-branches-selection label.active {
  transform: scale(1.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-color: rgba(var(--color-main), 1);
}

.weebox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 9999999999;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
  backdrop-filter: blur(10px);
  padding: var(--gutter);
  /*
   * Auto Height
   */
}
@media only screen and (max-width: 576px) {
  .weebox-modal {
    padding: calc(var(--gutter) / 2);
  }
}
.weebox-modal .weebox-modal-header-product {
  display: flex;
  font-size: 20px;
  text-align: left;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: var(--gutter);
}
.weebox-modal .weebox-modal-header-product figure {
  margin-right: 1em;
}
.weebox-modal .weebox-modal-header-product figure img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.weebox-modal .weebox-modal-header-product .wbx-product-brand-name {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
}
.weebox-modal .weebox-modal-header-product .wbx-product-name {
  font-weight: var(--fw-bold);
}
.weebox-modal .weebox-modal-header-product .wbx-product-name span {
  display: block;
}
.weebox-modal .weebox-modal-container {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: opacity 150ms ease-in-out 200ms, transform 150ms ease-in-out 200ms;
  transform: scale(0.8);
  max-width: 1000px;
  width: 100%;
  background: rgb(var(--color-white));
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  margin: auto;
  opacity: 0;
  padding: 0;
  max-height: calc(var(--app-height) - var(--gutter) * 2);
}
@media only screen and (max-width: 576px) {
  .weebox-modal .weebox-modal-container {
    max-height: calc(var(--app-height) - var(--gutter));
  }
}
.weebox-modal .weebox-modal-container .weebox-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: rgb(var(--color-black));
  display: flex;
  align-items: center;
  justify-content: center;
}
.weebox-modal .weebox-modal-container .weebox-modal-close svg {
  width: 80%;
  height: 80%;
}
.weebox-modal .weebox-modal-container .weebox-modal-message-error,
.weebox-modal .weebox-modal-container .weebox-modal-message-success {
  padding: 1em;
  margin: 0 var(--gutter);
  text-align: left;
  background: rgba(var(--color-success), 0.1);
  margin-bottom: var(--gutter);
}
.weebox-modal .weebox-modal-container .weebox-modal-message-error h1,
.weebox-modal .weebox-modal-container .weebox-modal-message-success h1 {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.weebox-modal .weebox-modal-container .weebox-modal-message-error p,
.weebox-modal .weebox-modal-container .weebox-modal-message-success p {
  font-size: 1em;
}
.weebox-modal .weebox-modal-container .weebox-modal-message-error {
  background: rgba(var(--color-danger), 0.1);
}
.weebox-modal .weebox-modal-container .weebox-modal-container-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding-bottom: var(--gutter);
}
.weebox-modal .weebox-modal-container .weebox-modal-container-body h2 {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.weebox-modal .weebox-modal-container .weebox-modal-container-form {
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--gutter);
}
.weebox-modal .weebox-modal-container .weebox-modal-container-form > [class^=form-] {
  width: calc(50% - var(--gutter) / 2);
}
.weebox-modal .weebox-modal-container .weebox-modal-container-form [rel=gender],
.weebox-modal .weebox-modal-container .weebox-modal-container-form [rel=comment] {
  width: 100%;
}
.weebox-modal .weebox-modal-container .weebox-modal-container-form-info {
  width: 100%;
  margin-bottom: var(--gutter);
}
@media only screen and (max-width: 576px) {
  .weebox-modal .weebox-modal-container {
    padding: calc(var(--gutter) / 2);
  }
}
.weebox-modal.auto-height {
  overflow-y: auto;
}
.weebox-modal.auto-height .weebox-modal-container {
  max-height: inherit;
}
.weebox-modal.auto-height .weebox-modal-container .weebox-modal-container-body {
  overflow-y: inherit;
}
.weebox-modal.active {
  animation: ModalFadeIn 1000ms forwards;
}
.weebox-modal.active .weebox-modal-container {
  animation: ModalContainerFadeIn 1000ms forwards;
}
.weebox-modal .weebox-modal-header {
  padding: var(--gutter);
  text-align: center;
}
.weebox-modal .weebox-modal-header h1 {
  font-size: 2em;
}
.weebox-modal .weebox-modal-header h2 {
  font-size: 1.4em;
  color: rgba(var(--color-main));
}
.weebox-modal .weebox-modal-header p {
  margin: auto;
  margin-top: 1em;
  max-width: 800px;
}
.weebox-modal .weebox-modal-footer {
  position: relative;
  text-align: right;
  padding: calc(var(--gutter) / 2) var(--gutter);
  display: flex;
  justify-content: center;
  box-shadow: 0px -4px 5px rgba(0, 0, 0, 0.075);
}
.weebox-modal .weebox-modal-footer button {
  margin: 0 0.5em;
}
.weebox-modal .weebox-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: rgb(var(--color-white));
}
.weebox-modal .weebox-modal-close:hover {
  background: #f3f3f3;
}

@keyframes ModalFadeIn {
  0% {
    visibility: visible;
  }
  99.9% {
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes ModalContainerFadeIn {
  0% {
    visibility: visible;
  }
  99.9% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
  }
}
.weebox-modal-validate-address {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}
.weebox-modal-validate-address > * {
  padding: 2em;
}
.weebox-modal-validate-address h3 {
  margin-bottom: 1em;
}
.weebox-modal-validate-address button {
  margin-top: 1em;
}
.weebox-modal-validate-address p {
  margin: 0;
}
.weebox-modal-validate-address p.notice-error {
  color: rgba(var(--color-warning));
  margin-top: 1em;
}
.weebox-modal-validate-address p span.has-error {
  color: rgba(var(--color-warning));
}
.weebox-modal-validate-address p span.has-changed {
  font-weight: var(--fw-medium);
}
@media only screen and (max-width: 992px) {
  .weebox-modal-validate-address {
    flex-direction: column;
  }
}

.catalog-title {
  font-size: 2em;
}

.catalog-results {
  font-size: 0.9rem;
  font-weight: var(--fw-regular);
  display: block;
}

.wbx-catalog-main-products-listing {
  flex: 1;
  margin-left: var(--gutter-w);
}

.wbx-catalog-main-spacer {
  width: 100%;
  margin: calc(var(--gutter-w) / 4) 0;
}

.wbx-component-account-resume-label,
.wbx-component-location-resume-label {
  text-transform: none;
  text-align: left;
  margin-left: 0.25em;
}
.wbx-component-account-resume-label strong,
.wbx-component-location-resume-label strong {
  display: block;
}
.wbx-component-account-resume-label span,
.wbx-component-location-resume-label span {
  display: block;
}

/*
.wbx-component-cart-resume,
.wbx-component-account-resume{
  $width: 50px;
  min-width: $width;
  height: $width;
  position: relative;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;

  .wbx-component-account-resume-info{
    line-height: 1em;
    white-space: nowrap;
    padding-left: 0.25em;
    text-align: left;
    display: flex;
    flex-direction: column;

    span{
      display: block;
      &.name{
        font-weight: var(--fw-bold);
        line-height: 1.2em;
      }
      &.info{
        opacity: 0.5;
      }
    }
  }

  svg{
    height: auto;
    width: $width * 0.6;
    margin: auto;
  }

  i{
    font-size: $width * 0.6;
    margin: auto;
  }

  span.bubble{
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: rgb(var(--color-black));
    color: rgb(var(--color-white));
    font-size: 12px;
    font-weight: var(--fw-regular);
  }
}
*/
.wbx-component-cart-resume.weebox-item-changed .bubble {
  animation: pulse 350ms ease-out;
}
.wbx-component-cart-resume.weebox-item-changed .bubble:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: rgb(76, 175, 80);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 1;
  animation: pulse-wave 500ms ease-out forwards;
  z-index: 0;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: translate(0, -100%);
  }
  25% {
    background-color: rgb(76, 175, 80);
    transform: translate(0, -100%) scale(1.8);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes pulse-wave {
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
  }
}
.wbx-is-loading {
  pointer-events: none;
}

.wbx-button.wbx-is-loading,
.wbx-button-primary.wbx-is-loading {
  pointer-events: none;
  transform: scale(0.9);
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
 * SELECT
 */
.search-input {
  background: rgb(var(--color-white));
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input {
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input.active input {
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.search-input.active .autocom-box {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}

.autocom-box li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li {
  display: block;
}

.autocom-box li:hover {
  background: #efefef;
}

.search-input .icon, .search-input .choose-institut label span, .choose-institut label .search-input span {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #644bff;
  cursor: pointer;
}

.sticky {
  position: sticky;
  top: var(--nav-height);
}

.css-loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  display: block;
  margin-left: 0.25em;
}

.css-loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 2px solid rgb(var(--color-black));
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
fieldset[disabled] .multiselect {
  pointer-events: none;
}

.multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 35px;
  background: rgb(var(--color-white));
  display: block;
}

.multiselect__spinner::before,
.multiselect__spinner::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border-color: #41b883 transparent transparent;
  border-style: solid;
  border-width: 2px;
  box-shadow: 0 0 0 1px transparent;
}

.multiselect__spinner::before {
  animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation-iteration-count: infinite;
}

.multiselect__spinner::after {
  animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  animation-iteration-count: infinite;
}

.multiselect__loading-enter-active,
.multiselect__loading-leave-active {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

.multiselect__loading-enter,
.multiselect__loading-leave-active {
  opacity: 0;
}

.multiselect,
.multiselect__input,
.multiselect__single {
  font-family: inherit;
  font-size: 16px;
  touch-action: manipulation;
}

.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  min-height: 40px;
  text-align: left;
  color: #35495e;
}

.multiselect * {
  box-sizing: border-box;
}

.multiselect:focus {
  outline: none;
}

.multiselect--disabled {
  background: #ededed;
  pointer-events: none;
  opacity: 0.6;
}

.multiselect--active {
  z-index: 50;
}

.multiselect--active:not(.multiselect--above) .multiselect__current,
.multiselect--active:not(.multiselect--above) .multiselect__input,
.multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.multiselect--active .multiselect__select {
  transform: rotateZ(180deg);
}

.multiselect--above.multiselect--active .multiselect__current,
.multiselect--above.multiselect--active .multiselect__input,
.multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.multiselect__input,
.multiselect__single {
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  border: none;
  border-radius: 5px;
  background: rgb(var(--color-white));
  padding: 0 0 0 5px;
  width: 100%;
  transition: border 0.1s ease;
  box-sizing: border-box;
  margin-bottom: 8px;
  vertical-align: top;
}

.multiselect__input::placeholder {
  color: #35495e;
}

.multiselect__tag ~ .multiselect__input,
.multiselect__tag ~ .multiselect__single {
  width: auto;
}

.multiselect__input:hover,
.multiselect__single:hover {
  border-color: #cfcfcf;
}

.multiselect__input:focus,
.multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none;
}

.multiselect__single {
  padding-left: 5px;
  margin-bottom: 8px;
}

.multiselect__tags-wrap {
  display: inline;
}

.multiselect__tags {
  min-height: 40px;
  display: block;
  padding: 8px 40px 0 8px;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  background: rgb(var(--color-white));
}

.multiselect__tag {
  position: relative;
  display: inline-block;
  padding: 4px 26px 4px 10px;
  border-radius: 5px;
  margin-right: 10px;
  color: rgb(var(--color-white));
  line-height: 1;
  background: #41b883;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.multiselect__tag-icon {
  cursor: pointer;
  margin-left: 7px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: var(--fw-extra-bold);
  font-style: initial;
  width: 22px;
  text-align: center;
  line-height: 22px;
  transition: all 0.2s ease;
  border-radius: 5px;
}

.multiselect__tag-icon::after {
  content: "×";
  color: #266d4d;
  font-size: 14px;
}

.multiselect__tag-icon:focus::after,
.multiselect__tag-icon:hover::after {
  color: rgb(var(--color-white));
}

.multiselect__current {
  line-height: 16px;
  min-height: 40px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  padding: 8px 12px 0;
  padding-right: 30px;
  white-space: nowrap;
  margin: 0;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  cursor: pointer;
}

.multiselect__select {
  line-height: 16px;
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 40px;
  height: 100%;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.multiselect__select::before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #999 transparent transparent transparent;
  content: "";
}

.multiselect__placeholder {
  color: #adadad;
  display: inline-block;
  margin-bottom: 10px;
  padding-top: 2px;
}

.multiselect--active .multiselect__placeholder {
  display: none;
}

.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: rgb(var(--color-white));
  width: 100%;
  max-height: 240px;
  overflow: auto;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
}

.multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top;
}

.multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  border-top: 1px solid #e8e8e8;
}

.multiselect__content::-webkit-scrollbar {
  display: none;
}

.multiselect__element {
  display: block;
}

.multiselect__option {
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 16px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.multiselect__option::after {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 40px;
  padding-right: 12px;
  padding-left: 20px;
  font-size: 13px;
}

.multiselect__option--highlight {
  background: #41b883;
  outline: none;
  color: rgb(var(--color-white));
}

.multiselect__option--highlight::after {
  content: attr(data-select);
  background: #41b883;
  color: rgb(var(--color-white));
}

.multiselect__option--selected {
  background: #f3f3f3;
  color: #35495e;
  font-weight: var(--fw-bold);
}

.multiselect__option--selected::after {
  content: attr(data-selected);
  color: silver;
}

.multiselect__option--selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: rgb(var(--color-white));
}

.multiselect__option--selected.multiselect__option--highlight::after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: rgb(var(--color-white));
}

.multiselect--disabled .multiselect__current,
.multiselect--disabled .multiselect__select {
  background: #ededed;
  color: #a6a6a6;
}

.multiselect__option--disabled {
  background: #ededed;
  color: #a6a6a6;
  cursor: text;
  pointer-events: none;
}

.multiselect__option--group {
  background: #ededed;
  color: #35495e;
}

.multiselect__option--group.multiselect__option--highlight {
  background: #35495e;
  color: rgb(var(--color-white));
}

.multiselect__option--group.multiselect__option--highlight::after {
  background: #35495e;
}

.multiselect__option--disabled.multiselect__option--highlight {
  background: #dedede;
}

.multiselect__option--group-selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: rgb(var(--color-white));
}

.multiselect__option--group-selected.multiselect__option--highlight::after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: rgb(var(--color-white));
}

.multiselect-enter-active,
.multiselect-leave-active {
  transition: all 0.15s ease;
}

.multiselect-enter,
.multiselect-leave-active {
  opacity: 0;
}

.multiselect__strong {
  margin-bottom: 8px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
}

*[dir=rtl] .multiselect {
  text-align: right;
}

*[dir=rtl] .multiselect__select {
  right: auto;
  left: 1px;
}

*[dir=rtl] .multiselect__tags {
  padding: 8px 8px 0 40px;
}

*[dir=rtl] .multiselect__content {
  text-align: right;
}

*[dir=rtl] .multiselect__option::after {
  right: auto;
  left: 0;
}

*[dir=rtl] .multiselect__clear {
  right: auto;
  left: 12px;
}

*[dir=rtl] .multiselect__spinner {
  right: auto;
  left: 1px;
}

@keyframes spinning {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(2turn);
  }
}
.debug-component {
  outline: 1px solid red;
}

@keyframes blink {
  50% {
    opacity: 0.2;
  }
}