/** Shopify CDN: Minification failed

Line 31:15 Unexpected "{"
Line 31:24 Expected ":"
Line 32:19 Expected identifier but found whitespace
Line 32:21 Unexpected "{"
Line 32:30 Expected ":"
Line 32:81 Expected ":"
Line 33:22 Expected identifier but found whitespace
Line 33:24 Unexpected "{"
Line 33:33 Expected ":"
Line 33:87 Expected ":"
... and 10 more hidden warnings

**/
    quantity-input.quantity:before, quantity-input.quantity:after{
      content:none;
    }
     /* quantity-input.quantity{
       border:1px solid;
     } */
     @media screen and (max-width: 749px) {
       /* .product__media-list .product__media-item--variant_current .product__media {
         padding-top: {{ section.settings.mobvh }}vh !important;
       } */
       .product__media-wrapper .product__media-list.slider.slider--mobile .slider__slide {
         background-color: #cccccc;
       }
     }

     .section-{{ section.id }}-padding {
       padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
       padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
     }

     @media screen and (min-width: 750px) {
       .section-{{ section.id }}-padding {
         padding-top: {{ section.settings.padding_top }}px;
         padding-bottom: {{ section.settings.padding_bottom }}px;
       }
     }
/* Disable body scrolling when modal is active */
body.modal-active {
  overflow: hidden;
}

/* Enable scrolling within the modal */
/* Header row styles */
.modal-header {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}

.close {
  position: sticky;
  top: 10px; /* Adjust the top value as needed */
  right: 10px; /* Adjust the right value as needed */
  cursor: pointer;
  font-size: 3.5rem;;
}
    #selectWeightBtn > svg{
      width: 1.8rem;
      margin-left: 0.5rem;
    }
.modal-header-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.pairs-modal-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the alpha (last value) for transparency */
  z-index: 9; /* Ensure the overlay is above other elements */
  display: none; /* Initially hide the overlay */
}
.modal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 79vh; 
  background-color: #fff;
  overflow: auto;
  z-index: 9999; 
  border-radius: 10px;
  max-width: 800px;
  transition: bottom 0.5s ease-in-out;
}
.modal-header-text p {
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}
.modal-content {
  padding: 20px;
  position: relative;
  z-index: 1; /* Ensure it's above other elements */
}

/* Button Styles */
.floatingSelectWeightBtn{
  border-top-right-radius:0px;
}
    .modal-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #ffffff; /* Background color of the header */
  z-index: 2; /* Ensure it's above other elements */
}
.pair-product-form-modal-footer{
      position: sticky;
    bottom: 0;
    background-color: #ffffff;
    z-index: 2;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}
.pair-product-form{
      display: flex;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 13px;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    justify-content: center;
    row-gap: 12px;
}
.select-weight-button {
  display: none;
  cursor: pointer;
  padding: 24px 18px;
  --buttons-radius: 50px 50px 50px 50px;
}

.carrot-icon {
  margin-left: 5px;
}
.button.select-weight-button.floating-add-to-cart-btn.button--full-width.button--secondary:after {
  border-radius: 0;
}
.modal-header-text .close{
  display:none;
}