/** Shopify CDN: Minification failed

Line 896:0 Unexpected "}"

**/

/* ========================
   DESKTOP & GLOBAL STYLES
   ======================== */

.expivi-page-container .sticky-container {
  z-index: 99999!important;
}

.v-popper__popper, .xpv-tooltip {
  z-index: 999!important;
}

/* show scroll bars for options */

.expivi-page-container .container {
  display: unset!important;
}
.xpv-app-container .container {
  display: unset!important;
  overflow: auto!important;
}



::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb  {
  background: rgba(0, 0, 0, .38)!important;
}

.horizontal-scroll-tiles {
    -webkit-overflow-scrolling: touch; 
}

/* Hide Page Header globally if needed */
#PageHeader, .expivi-header-container-backbutton button, div.ProductDesign.Grid>.icon-row {
  display: none!important;
}



.ProductSummary .Product__Block--price, .ProductSummary .Product__Block--app,
.ProductSummary .Product__Block--quantitySelector, .ProductSummary .Product__Block--buyButtons,
.ProductSummary .Product__Block--customLiquid {
  display: none;
}

/* Main container on desktop */
.expivi-single-product-container {
  display: flex;
  height: 75vh;
  width: 100%;
  max-width: 1920px;
  padding: 0 4%;
  margin: 2% 0;
  flex-direction: row;
  gap: 0px 32px;
}

/* Hide or style your expivi-header-container on desktop */
.expivi-header-container {
  display: none; /* Hidden on desktop, shown in mobile below */
  flex-direction: row;
}

/* Summary container (left side on desktop) */
.expivi-single-product-container .expivi-summary-container {
  /*display: none;*/
  width: 100px;
}

/* Viewer container (middle) */
.expivi-single-product-container .expivi-viewer-container {
  border-radius: 32px;
  width: 100%;
  min-width: 400px;
  height: 100%;
  background-color: #F7F7F7;
  box-shadow: 0px 0px 9.8px -1px rgba(0, 0, 0, 0.2);
  position: relative; /* Key: allows .expivi-info-panel to be absolutely positioned within */
  overflow: hidden;   /* Ensures the overlay doesn't exceed the container boundary */
}

/* Inner viewer container styling */
.expivi-single-product-container .expivi-viewer-container #viewerContainer {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #F7F7F7;
  border-radius: 32px;
}

/* Option container (right side on desktop) */
.expivi-single-product-container .expivi-option-container {
  height: 100%;
  width: 600px;
  min-width: 600px;
  background-color: #fff;
  padding: 0px 20px;
  /*border-radius: 20px;*/
  overflow: hidden;
  display: flex;
  flex-direction: column;

}

/* Options container inside the option container */
.expivi-single-product-container .options-container {
  flex-grow: 1;
  max-height: 100%;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.expivi-single-product-container .options-container .xpv-app-container {
    flex-grow: 1;
  overflow-y: auto;
  max-height: 100%;
}

/* Buttons row on desktop (optional to show/hide) */
.options-container-buttons {
  display: none; /* Hidden on desktop. Shown in mobile below */
}

/* SUMMARY CONTAINER */

.expivi-summary-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3%;
}
.expivi-summary-container .icon-row {
  flex-direction: column!important;
}

.expivi-option-container h1 {
  font-size: 2.8em;
  font-weight: bold;
}
.expivi-summary-container p.price {
  font-size: 1.8em;
  font-weight: 600;
}
.expivi-summary-container button#summaryLightbox {
  font-size: 1.2em;
  font-weight: bold;
}

/* END SUMMARY CONTAINER */

/* VIEWER CONTAINER */

#viewerContainer>div {
  border-radius: 32px;
}

/* Overlay panel */
.expivi-info-panel {
  position: absolute; 
  top: 20px;     /* Distance from top */
  left: 20px;    /* Distance from left */
  display: flex;
  gap: 16px;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  justify-content: flex-start; 
  padding-bottom: 32px;
}

/* Example styling for the images and text inside the panel */

#expivi-info-panel-button {
  /*display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px; 
  */
}

/* Initial circle (collapsed) */
#expivi-info-panel-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  align-content: center;
  overflow: hidden;
  transition: width 0.3s ease, border-radius 0.3s ease;
  cursor: pointer;
  gap: 10px; 
  
  background-color: #666666;
}

/* When hovered (and NOT .expanded), expand temporarily */
#expivi-info-panel-button:not(.expanded):hover {
  width: 180px;        /* adjust as needed */
  border-radius: 100px; /* becomes a pill shape */
}

#interactive-icon {
  width: 36px;
  height: 36px;
    display: flex;
  align-items: center;
  align-content: center;
  padding: 0 6px;
  
}
  
  /* The icon inside the circle */

#interactive-icon img {
  width: 24px;
  height: 24px;
 
}

/* Text is next to the icon; hidden if container is too small */
#interactive-icon-text {
  /*display: inline-block;*/
  /*margin-left: 8px;*/
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  gap: 16px;
  
}

/* If .expanded is added (by click), remain open even after hover ends */
#expivi-info-panel-button.expanded {
  width: 180px;
  border-radius: 100px;
}

#wrapper-info-buttons-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
  
#expivi-info-panel-image {
  display: flex;
  gap: 10px;
  align-items: center;
}

#expivi-info-panel-image #interactive-icon {
  
}

/* Default (off) state */
#interactive-icon-text a {
  display: inline-block;
  padding: 0px 10px;
  

  color: #fff;           /* Off text color */
  border-radius: 50px;
  text-decoration: none;
}

/* On state: via data-status or a class (e.g., .ui-button-active) */
#interactive-icon-text a[data-status="on"] {
  background-color: #788FF5; /* On background */
  color: #fff;               /* On text color */
}

#interactive-icon-text a[data-status="off"] {

}

/* Alternatively, if you prefer a class-based approach: */
.ui-button-active {
  background-color: #788FF5 !important;
  color: #fff !important;
}
  
  
.expivi-info-panel-right {
  display: none;
}
  
.expivi-info-panel img {
  width: 36px;
  height: auto;
}

.expivi-info-panel span {
  font-size: 0.9em;
}
  
/* END VIEWER CONTAINER */
  
/* OPTIONS CONTAINER */

div#options-container-minimize {
  display: none;
}

.easylockdown-content #shopify-section-template--18721552302334__main .Product__Title {
  font-size: unset;
}

#MainContent .easylockdown-content .expivi-option-container .options-container .Product__Block--title h1.Product__Title {
  font-size: 2.4em;
  font-weight: bold;
}


.options-container #priceContainer-wrapper p.price {
  font-size: 1.4em;
  font-weight: bold;
  
}

.options-container button#summaryLightbox {
  font-size: 1.2em;
  font-weight: bold;
}

  
.v-application .primary {
  background-color: #788FF5!important;
  border-color: #000!important;

}
.theme--light.v-application {
    /*background: #F7F7F7;*/
    color: #000;
}

.theme--light.v-sheet, .theme--light.v-label, .step-header-name {
  color: #000;
}

div[data-xpv-key="att-soda-can"], div[data-xpv-key="att-bottle"] {
  display: none;
}

.v-application * {
  font-family: var(--tg-sys-typescale-body-medium-font);
      font-style: var(--tg-sys-typescale-body-medium-style);
      font-weight: var(--tg-sys-typescale-body-medium-weight);
      /*font-size: var(--tg-sys-typescale-body-medium-size);*/
      font-size: 1em;
      line-height: var(--tg-sys-typescale-body-medium-line-height);
      letter-spacing: var(--tg-sys-typescale-body-medium-tracking);
}
.v-application .step-header-name {
  font-family: var(--tg-sys-typescale-title-medium-font);
      font-style: var(--tg-sys-typescale-title-medium-style);
      font-weight: var(--tg-sys-typescale-title-medium-weight);
      font-size: var(--tg-sys-typescale-title-medium-size);
      line-height: var(--tg-sys-typescale-title-medium-line-height);
      letter-spacing: var(--tg-sys-typescale-title-medium-tracking);
}



.v-application .theme--light.v-list {
  background: unset;
} 
.v-stepper__step--complete .v-stepper__step__step svg {
  fill: #000;
}

.theme--light.v-card--hover {
  background-color: #fff  ;
}
.theme--light.v-card--flat {
  background-color: #555  ;
}



.active-tile {
  border-bottom:none!important;
}

.horizontal-scroll-tiles {
  background-color: #f7f8ff;
  padding-left: 10px;
}
/* END OPTIONS CONTAINER */

  
/* Start lightbox */
  
/* Lightbox overlay */
#xpv-info-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9998;
  overflow-y: auto!important;
}

/* Lightbox content */
#xpv-info-lightbox-content {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

  display:flex;
    flex-direction: row;
    		width:60%;

		padding:16px 24px 16px 16px!important;
		max-height: 95vh!important;
		overflow-y: auto!important;
}

/* Optional: Ensure the left/right sections split the space */
#xpv-info-lightbox-content-left,
#xpv-info-lightbox-content-right {
  width: 50%;
}
  	#xpv-info-lightbox-content-1 {
		max-height: unset!important;
		overflow-y: scroll!important;
		width: 100%;
	}
	#xpv-info-lightbox-content-2 {
		margin-top: 10px;
      	display: flex;
	justify-content: flex-end;
	}
  #xpv-info-lightbox-content-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
  

/* Close button styling */
#xpv-info-lightbox-content-close {
  
  
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
}
  #xpv-info-lightbox #xpv-closeLightbox::before {
    content: "\f00d"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 600;
    font-size: 1.5rem;
    visibility: visible;
    width: 30px;

}

/* end lightbox */  

/* REST OF THE PAGE */

.shopify-section-group-header-group {
  z-index: 999;
}
.Accordion__Item.Product__Block {
  
}


.Accordion__Item.Product__Block, .ProductSummary .Product__Block.Product__Block--title {
  max-width: 1280px;
          padding-right: calc(var(--tg-container-gutter-x)* 4);
        padding-left: calc(var(--tg-container-gutter-x)* 4);

        margin: auto;
         margin-bottom: 1rem;
}

body .ProductSummary__Wrapper .ProductSummary .Product__Block.Product__Block--title h1 {
  font-size: 2em!important;
}

.Accordion__Item.Product__Block .Accordion__Button {

  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  text-align: left;
  background-color: transparent;
  border: 1px solid rgba(var(--tg-sys-color-on-background-rgb), .75);
  border-radius: 0;
  overflow-anchor: none;
  color: var(--tg-component-accordion-button-text-color);
  font-family: var(--tg-sys-typescale-title-medium-font);
  font-style: var(--tg-sys-typescale-title-medium-style);
  font-weight: var(--tg-sys-typescale-title-medium-weight);
  font-size: var(--tg-sys-typescale-title-medium-size);
  line-height: var(--tg-sys-typescale-title-medium-line-height);
  letter-spacing: var(--tg-sys-typescale-title-medium-tracking);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.Accordion__Item.Product__Block .Accordion__Collapse {
      border-left: 1px solid rgba(var(--tg-sys-color-on-background-rgb), .75);
    border-right: 1px solid rgba(var(--tg-sys-color-on-background-rgb), .75);
    border-bottom: 1px solid rgba(var(--tg-sys-color-on-background-rgb), .75);
  margin-left: unset;
  margin-right: unset;
}

.Product__Block--collapsibleInfoJS .Accordion__Collapse {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: unset; 
    margin-right: unset; 
    border-top: 1px dashed var(--tg-sys-color-outline);
}


  

/* ========================
   MOBILE VIEW
   ======================== */
@media (max-width: 600px) {
  /* Reset margins, etc. */
  .Grid {
    margin: unset;
  }
  body {
    border: none;
  }
  .needsclick, .stamped-rewards-init, body site-header#Header {
    display: none!important;
  }
  
  /* Show the expivi-header-container on mobile */
  .expivi-header-container {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    padding: 2%;
    background-color: #f7f7f7;
  }
  
  /* Header layout pieces */
  .expivi-header-container .expivi-header-container-backbutton {
    width: 25%;
    display: flex;
    align-items: center;
  }
  .expivi-header-container .expivi-header-container-logo {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .expivi-header-container .expivi-header-container-logo img {
    height: 36px;
  }
  .expivi-header-container .expivi-header-container-menu {
    width: 25%;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .expivi-header-container .expivi-header-container-menu button, 
  .expivi-header-container .expivi-header-container-backbutton button {
    background: #e9e9e9;
    border-radius: 4px;
    border: 1px solid #e2e2e2;
    padding: 0;
    width: 32px !important;
    height: 32px !important;
    min-height: unset !important;
  }
  .expivi-header-container .expivi-header-container-menu svg, 
  .expivi-header-container .expivi-header-container-backbutton svg {
    width: 16px;
    height: 16px;
    fill: #6D6D6D;
  }

  /* Hide the summary container on mobile */
  .expivi-single-product-container .expivi-summary-container {
    display: none;
  }

  /* Stack viewer container on mobile */
  .expivi-single-product-container {
    flex-direction: column;
    height: auto;
    padding: unset;
    margin: 0;
  }
  .expivi-single-product-container .expivi-viewer-container {
    z-index: 9998;
    width: 100%;
    height: 54vh;
    min-width: unset!important;
    box-shadow: unset !important;
    border-radius: unset !important;
    position: sticky!important;
    top: 0!important;
  }

  /* VIEWER CONTAINER */

  .expivi-single-product-container .expivi-viewer-container #viewerContainer  {
    height: 54vh!important;
  }

  #expivi-info-panel-button {
    width: 36px; /* Default width when collapsed */
    overflow: hidden;
    transition: width 0.3s ease, border-radius 0.3s ease;
  }
  
  #expivi-info-panel-button.expanded {
    width: 180px; /* Expanded state */
  }
  
    
  #viewerContainer>div {
    border-radius: unset;
  }

  button#xpv-toolbar-item-fullscreen {
    display: none;
  }

  
  .expivi-info-panel-right {
        position: absolute;
        top: 20px;
        right: 10px;
        display: flex;
        gap: 16px;
        flex-direction: column;
        height: 100%;
        align-items: center;
        justify-content: space-between;
    padding-bottom: 24px;
  }
  .expivi-info-panel-right i {
    font-size: 36px;
    color: #6D6D6D;
  }
  .expivi-info-panel-right #expivi-info-panel-image {
    width: 36px;
  }

  .expivi-info-panel {
    left: 10px;
  }
  #expivi-info-panel-image {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  #expivi-info-panel-image span {
    width: 48px;
  }
    
  .expivi-info-panel img {
    width: 24px;
    
  }
  .expivi-info-panel span {
    font-size: 0.8em;
  }

  /* END VIEWER CONTAINER */


  /* START OPTIONS CONTAINER */

  div#options-container-minimize {
    /*
    display: flex;

    z-index: 2;
    right: 20px;
    margin-top: -10px !important;
    justify-content: flex-end;
    */
  }

  .expivi-option-container {
    height: unset!important;
  }

  .expivi-option-container #priceContainer-wrapper p.price, .expivi-option-container button#summaryLightbox  {
    display: none!important;
  }
  .expivi-option-container .options-container .Product__Block--title h1.Product__Title {
    font-size: 1.4em;
    font-weight: bold;
    display: none;
  }
  .horizontal-scroll-tiles .thumbnail-item {
    width: 90px!important;
  }
  .horizontal-scroll-tiles .mb-t.mt-1 {
    width: 110px!important;
  }
  .horizontal-scroll-tiles span {
    font-size: 0.9em!important;
  }
  /* 
    Bottom "option container" - collapsed by default to show only buttons 
  */
  .expivi-single-product-container .expivi-option-container {
    /*position: fixed;
    bottom: 0;
    width: 98%;*/
    max-width: 100%!important;
    min-width: unset;
    /*background-color: #ffff;
    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
    padding: 6px 20px 10px 20px;
    z-index: 1000;
    overflow: hidden;*/
    display: flex;
    flex-direction: column;
    /*margin: 0 1%;*/
    padding: 0px!important;

    /* Collapsed height - only the button row is visible */
    /*height: 80px; 
    transition: height 0.3s ease-in-out;*/
  }

  /* Expanded state (toggled via JS) */
  .expivi-option-container.expanded {
    /* height: 45vh; *//* Adjust as needed */
  }

  /* 
    The "options-container" is the area above the buttons. 
    It grows to fill available space in the expanded state.
  */
  .expivi-single-product-container .options-container {
    flex-grow: 1;
    /* overflow-y: auto; */
    /*border: 1px dotted green;*/
    display: flex;
    flex-direction: column;
  }

  /* 
    Buttons row always at the bottom of the container. 
    Visible on mobile.
  */
  .options-container-buttons {
    position: fixed;
    bottom: 0;
    z-index: 9998;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    background: #fff;
    /*border-top: 1px solid #ddd;*/
    padding: 10px!important;
  }
  .options-container-buttons button {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
     cursor: pointer;
    margin: 5px;
    gap: 10px;
  }

  /* Customize It Button styling */
  .expivi-single-product-container #button-customize-it {
    display: none!important;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background-color: #788FF5;
    color: white;
    cursor: pointer;
  }
  .options-container-buttons #summaryLightbox2 {
    background-color: #000;


    color: white;
  }

    /* Icon rotation transition */
  #button-customize-it i {
    transition: transform 0.3s ease;
  }
  
  /* When the button is "expanded", rotate the icon 180 degrees */
  #button-customize-it.expanded i {
    transform: rotate(180deg);
  }

  /* When expanded, change background color */
  #button-customize-it.expanded {
    background-color: rgba(120, 143, 245, 0.36); /* or any color you want */
    color: #000;
  }

  .v-application * {
    font-size: 0.9rem!important;
  } 
  .x-p-v .container {
    padding: 0!important;
  }
  
  .v-stepper--vertical .v-stepper__step {
      padding: 14px 24px 10px!important;
  }

  /* LIGHTBOX */
  #xpv-info-lightbox {
    
  }
  #xpv-info-lightbox-content {
    flex-direction: column;
    width: 95%;
    max-height: 80vh!important;
  }
  #xpv-info-lightbox-content-left, #xpv-info-lightbox-content-right {
    width: 100%;
  }
  #xpv-info-lightbox-content-close {
    position: unset!important;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    }
  }
  /* END LIGHTBOX */

  /* rest of the page */
  .easylockdown-content #shopify-section-template--18721552302334__main .Product__Title {
    font-size: 1.8em;
  }

  .icon-row {
    padding: 20px;
  }
  .Template--product .ProductSummary {
    padding: 20px;
  }
  .Template--product .ProductSummary .Product__Block {
    padding: 0px;
  }
  .Product__Block--collapsibleInfoJS .Accordion__Collapse {
    padding-left: 1rem!important;
    padding-right: 1rem!important;
    margin-left: unset!important;
    margin-right: unset!important;
    
  }
  
}