#build-your-bundle {
  position: relative;
}
#build-your-bundle .btn-addtobag {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 0.3125rem;
  color: white;
  background-color: black;
  width: 100%;
  text-align: center;
}
#build-your-bundle .btn-addtobag--disabled {
  background-color: #c5c4c3;
  pointer-events: none;
}
#build-your-bundle .product-badge {
  position: absolute;
  margin: 0.9375rem 0 0 1px;
  font-size: 0.8125rem;
}
@media (min-width: 992px) {
  #build-your-bundle .product-badge {
    margin-left: 0px;
    font-size: 0.875rem;
  }
}

.byb--header {
  margin-bottom: 2rem;
}
.byb--title {
  font-family: KeysChiswickSansThin, sans-serif;
  text-transform: uppercase;
  line-height: 90%;
}
.byb--content__body {
  font-family: KeysPSans, serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
}
.byb--product-container {
  display: flex;
  flex-wrap: wrap;
}
.byb--products__item__skeleton {
  width: 23vw;
  height: 508px;
  background: #DED7E9;
  opacity: 0.25;
  margin-bottom: 10px;
}
.byb--cart-summary {
  font-family: KeysPSans, serif;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  background-color: #DED7E9;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  padding: 1rem 1.25rem;
}
.byb--cart-summary h3 {
  text-transform: uppercase;
  font-family: KeysChiswickSansThin, sans-serif;
  font-size: 2.25rem;
}
.byb--cart-summary--item-container__mobile-row {
  gap: 0.5rem;
}
.byb--cart-summary--item-container__desktop-row {
  gap: 1rem;
}
@media (min-width: 992px) {
  .byb--cart-summary {
    padding: 3rem 1.25rem;
  }
}
.byb--cart-summary--item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px dashed #000000;
}
@media (min-width: 992px) {
  .byb--cart-summary--item {
    width: 65px;
    min-width: 65px;
    grid-column: span 1;
  }
  .byb--cart-summary--item:nth-child(3), .byb--cart-summary--item:nth-child(4), .byb--cart-summary--item:nth-child(5) {
    grid-row: 2;
  }
}
@media (min-width: 1200px) {
  .byb--cart-summary--item {
    width: 80px;
  }
}
.byb--cart-summary--remove-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
  padding: 0;
}
.byb--modal {
  padding: 2rem 1rem;
  color: #ae2d24;
}
@media (min-width: 992px) {
  .byb--modal {
    flex-basis: 450px;
  }
}
.byb--modal .close {
  top: 0;
}

.cart-summary-wrapper {
  position: sticky;
  top: calc(var(100px, 0px) + 20px);
  align-self: flex-start;
  margin-top: 0;
  transform: translateY(0);
}

.cart-summary-wrapper.sticky {
  transition: transform 0.3s ease-in-out;
}

.cart-summary-mobile-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: position 0.3s ease-in-out;
}

.cart-summary-mobile-wrapper.fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
/*# sourceMappingURL=buildYourBundle.css.map*/