/** Shopify CDN: Minification failed

Line 113:7 Expected ":"

**/
.products-bundle__content {
  margin-block-start: 3.2rem;
}
.products-bundle__button {
  margin-block-start: 4rem;
}
.no-js .products-bundle__button {
  display: none;
}

.product-bundle-card {
  padding-block: 1.5rem;
  border-block-start: 0.1rem solid rgb(var(--color-border));
  transition: opacity var(--animation-default);
  --color-border: 195, 192, 184;
}
.product-bundle-card:first-child {
  /* padding-block-start: 0;
  border-block-start: 0; */
}
.product-bundle-card:last-child {
  /* padding-block-end: 0; */
  border-block-end: 0.1rem solid rgb(var(--color-border));
}
.product-bundle-card__image {
  flex: 0 0 12rem;
}
.product-bundle-card__count {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgb(var(--color-border));
  background-color: rgb(var(--color-secondary-background));
  flex-shrink: 0;
}

.product-bundle-hotspot {
  left: var(--horizontal);
  top: var(--vertical);
  transition: all var(--animation-default);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}
@media (min-width: 1280px) {
  .product-bundle-hotspot:hover, .product-bundle-hotspot.is-active {
    transform: scale(1.5);
  }
}
.product-bundle-hotspot > motion-element {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

@media (min-width: 1280px) {
  products-bundle.is-hover .product-bundle-card:not(.is-active) {
    /* opacity: 0.3; */
  }
}

/* Media Queries */
@media (min-width: 1280px) {
  .products-bundle__content {
    padding-left: 4rem;
    margin-block-start: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279.98px) {
  .products-bundle__content {
    padding-inline: 5rem 0;
    margin-block-start: 0;
  }
}
@media (max-width: 767.98px) {
  .products-bundle__button {
    margin-block-start: 3.2rem;
  }
  .product-bundle-card__image {
    flex: 0 0 8rem;
  }
  .product-bundle-card {
    gap: 1.2rem;
  }
}

.product-bundle-card .custom-number {
  display: inline-flex;
  align-items: stretch;
  /* border: 1px solid #ccc; */
  /* border-radius: 6px; */
  overflow: hidden;
  width: max-content;
  position: absolute;
  right: 0px;
  top: 50%;
  transform:translateY(-50%);
}

.product-bundle-card .custom-number input {
  width: 50px;
  height: 47px;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  color
  outline: none;
  font-size: 16px;
  -moz-appearance: textfield;
}

.product-bundle-card .custom-number input::-webkit-outer-spin-button,
.product-bundle-card .custom-number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* spinner buttons */
.product-bundle-card .spinner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 3.5px;
  transform: translateY(-50%);
}

.product-bundle-card .spinner a {
  all: unset;
  width: 10px;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-bundle-card .spinner a.up::before {
  /* content: "▲"; */
  /* font-size: 7px; */
}
.product-bundle-card .spinner a.down::before {
  /* content: "▼"; */
  /* font-size: 7px; */
}
