/** Shopify CDN: Minification failed

Line 87:4 Expected ":"
Line 87:5 Expected identifier but found "7px"

**/
:root{
	  --vpv-color-sale:          #71a7f4;
}

.section.pdp-section{margin-top:0;}
.pdp-product {
color: #000;
    margin: 0 auto;
    max-width: 100%;
    width: 1600px;}

.pdp-details{
	padding:0;
	width: 100%;}
	
	@media (max-width: 740px) {
		.pdp-details{padding:0 18px;}
}
	
	/* Breadcrumbs */
	.vpv-pdp-product-breadcrumbs{
		font-weight:300;
		margin-bottom:20px;}
		.vpv-pdp-product-breadcrumbs nav.breadcrumb a,
		.vpv-pdp-product-breadcrumbs nav.breadcrumb span{font-weight:300;}


.pdp-product .vpv-pdp-product-title{
	 font-size: 28px;
	 font-weight: 700;
	 line-height: 125%;
	 margin: 0 0 10px;}
	 
.pdp-product .vpv-pdp-product-subtitle{
	font-size: 18px;
	font-weight: 300;
	line-height: 150%;
	 margin: 0 0 25px;}
	 
.pdp-product .vpv-pdp-usps{margin-bottom:30px;}

.pdp-product .vpv-pdp-fits-shape{
	margin-bottom:30px;
	text-align:left;}
	
.shape-disclaimer{
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 2.4px;
		line-height: 125%;
		margin-bottom:0;
		text-transform: uppercase;}
		.shape-disclaimer-text{margin-top:0;}

.fits-title{
	align-items:center;
	display:flex;
	gap:7px;
	justify-content:center;
	margin-bottom:14px;
}		
.fits-title-text{
	font-weight: 500;
	font-size: 14px;
	line-height: 125%;}
	
.pdp-product .bowl-shapes{
	display:grid;
	 grid-template-columns: repeat(2, minmax(0, 1fr)); 
	 column-gap: 12px; 
	 padding-top:20px;
}
.pdp-product .single-bowl{
	border-radius:5px;
	padding:12px 10px;
	text-align:center;
}
.pdp-product .single-bowl .headline{
	align-items:center;
	display:flex;
	gap;7px;
}
.pdp-product .fits{
	border:1px solid #71A7F4;
	color:#000;
}
.pdp-product .doesnotfit{
	border:1px solid #595959;
	color:#595959;

}
.fits-check,
.fits-cross{
	height:15px;
	line-height:1;}
	
	.vpv-product-form .installments-message{
	    font-family: sofia-pro, sans-serif;
	    font-weight: 300;
		padding: 10px 0;}

	
/* Add to cart */
.vpv-pdp-add-to-cart{
	background: var(--blue);
	background: var(--blue);
	border-radius: 200px;
	color: var(--black);
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: .15em;
	line-height: 10px;
    max-height: 40px;
	max-width:340px;
	min-height: 40px;
	padding:14px 30px;
	position: relative;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
	width:100%;}
.vpv-price{
	color:var(--black);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .15em;
	line-height: 10px;}
	
.vpv-price-compare{   
	margin-right:10px;
    opacity: .7;
	 text-decoration: line-through;}

	 
	 .dealbreakers-wrapper {
	     display: flex;
	     justify-content: center;
	     width: 100%;
	     margin: 20px 0;
	 } 
	 .dealbreakers {
	     display: grid;
	     grid-template-columns: 1fr 1fr;
	     gap: 8px 18px;
	     font-family: sofia-pro, sans-serif;
	     font-size: 12px;
	     color: #111;
	     line-height: 1.4;
	 }
	 
	 .dealbreakers .point {
	     display: flex;
	     align-items: center;
	     gap: 6px;
	     min-width: 0;
	 }
	 .dealbreakers .icon {
	     flex: none;
	     font-size: 15px;
	     line-height: 1;
	     color: #7da5ed;
	 }	 
	 
	 .dealbreakers span:last-child {
	     font-size: clamp(10px, 2vw, 12px);
	     overflow: hidden;
	     text-overflow: ellipsis;
	     white-space: nowrap;
	 }
	 
	 @media (min-width: 740px) {
	 	
		 .dealbreakers-wrapper {justify-content: start;}
	 }

/* Accordions */
.pdp-accordion {border-bottom: 1px solid #ccc;}

.accordion-header {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
    display: flex;
   font-size: 12px;
     font-weight: 400;
  justify-content: space-between;
  letter-spacing: .15em;
   line-height: 125%;
    min-height: 48px;
  padding: 10px 0;
  text-transform: uppercase;
   width: 100%;}


.animated-plus {
    position: relative;
    width: 10px;
    height: 10px;
	margin-left:-5px;
}

.animated-plus:before,
.animated-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-90deg);
    background-color: currentColor;
    transition: transform .4s ease-in-out,opacity .4s ease-in-out
}

.animated-plus:before {
    width: 10px;
    height: 2px;
    opacity: 1
}

.animated-plus:after {
    width: 2px;
    height: 10px
}

.accordion-header.active .animated-plus:before {
    opacity: 0
}

.accordion-header.active .animated-plus:before,
.accordion-header.active .animated-plus:after {
    transform: translate(-50%,-50%) rotate(90deg)
}

/* Panel defaults */
.accordion-content {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
 	 max-height: 0;
  	overflow: hidden;
     padding-right: 20px;
  transition: max-height 0.35s ease;
}

.vpv-pdp-compare-bidets .content-inner,
.vpv-pdp-product-description .content-inner {padding-bottom:30px;}
.vpv-pdp-complementary .content-inner,
.vpv-pdp-specifications .content-inner,
.vpv-pdp-ingredients .content-inner{padding-bottom: 20px;}
.vpv-pdp-whats-included .content-inner{padding-bottom: 10px;}
.vpv-pdp-whats-included .metafield-rich_text_field li{
	padding: 4px 0 4px 5px;
}
.pdp-accordion .content-inner *{
	    text-wrap: wrap;
} 




.whats-included__title{
  color: var(--black);
font-family: 'sofia-pro', sans-serif;
font-size: 12px;
font-weight: 400;
line-height: 125%; 
letter-spacing: 1.8px;
margin-bottom:10px;
text-transform: uppercase;}

.whats-included__subtitle{
  color: var(--black);
font-family: 'sofia-pro', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 150%; 
margin: 0 0 20px 0;
}
.whats-included{margin-top:30px;}
.whats-included .whats-included__items{
  display:grid;
  column-gap: 20px;
  list-style-type:none;
  margin:0;
  padding:0;
  row-gap:20px;
}
.whats-included--2-columns .whats-included__items{
  grid-template-columns: repeat(2, 1fr);
  row-gap:10px;
}
.whats-included--2-columns .whats-included__item {
  align-items:center;
  display:flex;
gap:10px;
margin-bottom:0;}
.whats-included--2-columns .whats-included__item img{ width:48px;}
.whats-included--2-columns .whats-included__item .whats-included__item-title{     
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px;
    line-height: 150%;
    margin:0;
    width: calc(100% - 48px);}

.whats-included-content-wrap .whats-included--3-columns{
  border-top:0.5px solid var(--black);
  padding-top:30px;
}
.whats-included-content-wrap .whats-included--3-columns:first-of-type{border-top:none;}

.whats-included--3-columns .whats-included__items{
  grid-template-columns: repeat(3, 1fr);
}

.whats-included .whats-included--3-columns .whats-included__item{text-align:center;}
.whats-included .whats-included--3-columns .whats-included__item img{
  display:block;
  margin:0 auto;
  width:63px;
}
.whats-included .whats-included--3-columns .whats-included__item-title{margin-bottom:5px;}
.whats-included .whats-included--3-columns .whats-included__item-subtitle{
  font-size:12px;
  margin-bottom:10px;
  margin-top: 0;}

.vpv-pdp-nutritional-label .supplement-facts{
	background-color:#416AAE;
	color:#fff;
	border-radius:30px;
	margin: 0 auto 20px auto;
	padding:40px;

}

.vpv-pdp-nutritional-label .facts-header{padding-bottom:10px;}
.vpv-pdp-nutritional-label  .label-title{
	font-size:24px;
	margin-bottom:10px;}
.vpv-pdp-nutritional-label .supplement-facts table{
	border-bottom:6px solid #fff;
	border-top:8px solid #fff;
	font-weight:500;
	width:100%;}

.vpv-pdp-nutritional-label .supplement-facts table thead{border-bottom:4px solid #fff;}	
.vpv-pdp-nutritional-label .supplement-facts table thead th{padding-top:10px}	
.vpv-pdp-nutritional-label .supplement-facts table tfoot td{padding-bottom:5px}	

.vpv-pdp-nutritional-label .supplement-facts table tbody tr{border-bottom:1px solid #fff;}
.vpv-pdp-nutritional-label .supplement-facts table tbody tr.no-border{border-bottom:none;}
.vpv-pdp-nutritional-label .supplement-facts table thead th,
.vpv-pdp-nutritional-label .supplement-facts table tbody td{
	line-height:1;
	padding:4px 0 8px;}
.vpv-pdp-nutritional-label .supplement-facts table .amount,
.vpv-pdp-nutritional-label .supplement-facts table .dv,
	.vpv-pdp-nutritional-label .supplement-facts th.amount,
.vpv-pdp-nutritional-label .supplement-facts  th.dv{text-align:right;}

.vpv-pdp-nutritional-label .supplement-facts table tfoot{border-top:7px solid #fff;}	
.vpv-pdp-nutritional-label .supplement-facts .facts-label p,
.vpv-pdp-nutritional-label .supplement-facts tfoot p{margin:0;}

.vpv-pdp-nutritional-label .indent .ingredient{padding-left:10px;}
.vpv-pdp-nutritional-label .no-space td{padding-top:0!important;}
.vpv-pdp-nutritional-label  .stand-out td{padding-bottom:2px!important;}
.vpv-pdp-nutritional-label  .stand-out td.ingredient{font-weight:700;}

@media (min-width: 740px) {
	
/* Sticky images on scroll */
	
:root {
 --pdp-sticky-offset: 96px; /* fallback */
}

	.pdp-gallery {
	  position: sticky;
	  top: var(--pdp-sticky-offset);
	}
	
	
.pdp-sticky-wrap {
align-items: flex-start; 
column-gap: 32px;
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); /* tweak ratio */
margin: 0 auto;    
padding:0 120px; 

/* important so columns don’t stretch */
}

/* This is the sticky part */
.pdp-gallery {
position: sticky;
top: var(--pdp-sticky-offset, 96px); /* distance from top (nav height) */
align-self: flex-start;
}

/* Right column just scrolls normally */
.pdp-details {
align-self: flex-start;
}

	
	
.section.pdp-section{padding-top:40px;}
 
  
  .pdp-product .vpv-pdp-product-title{font-size: 48px;}
  .pdp-product .vpv-pdp-product-subtitle{font-size: 24px;}
  
 
  .vpv-pdp-complementary .content-inner{padding-bottom: 40px;}
}

/* Icons */

.vpv-pdp-feature-icons{margin: 30px 0 20px 0;}
	  .vpv-pdp-icons {
	    display: flex;
	    flex-wrap: nowrap;
	    gap: clamp(4px, 2vw, 30px);
	    justify-content: flex-start;
	    list-style-type: none;
	    padding: 0;
	    width: 100%;
	  }

	  .vpv-pdp-icon {
	    align-items: center;
	    display: flex;
	    flex-direction: column;
	    gap: 2px;
	    max-width: 90px;
	    min-width: 50px;
	    text-align: center;
	  }
    .vpv-pdp-icon-image {    
      display: block;
      height: 34px;
	  margin-bottom: 13px;
	   object-fit: contain;
      width: 45px;
     
    }
	
	.vpv-pdp-icon-name{
font-size: 10px;
font-weight: 400;
letter-spacing: 0.15em;
line-height: 125%;
text-align: center;
 text-transform: uppercase;
}
	@media (min-width: 990px) {
.vpv-pdp-icon-name{font-size: 12px;}
	}
/* Compare Chart */

.vpv-compare-products{
	  display: grid;
	  gap:4px;
	  grid-template-columns: 43% repeat(2, 1fr);}
 .vpv-compare-products .vpv-compare-product{
	 padding-bottom:10px;
	 text-align:center;}
	 
	 .vpv-compare-products .vpv-compare-product:nth-child(1) {grid-column: 2;}
	 .vpv-compare-products .vpv-compare-product:nth-child(2) {grid-column: 3;}
  

.vpv-compare-row {
	border-top: .5px solid #000;
	display: grid;
	  gap:4px;
	grid-template-columns: 43% repeat(2, 1fr);}
.products-in-chart-3 .vpv-compare-row{grid-template-columns: 43% repeat(3, 1fr);}

		
.vpv-compare-row .vpv-compare-title {
    align-items: center;
	color: #000;
	 display: flex;
    gap: 11.36px;
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    padding: 10px 20px 10px 0;}
	
.vpv-compare-row .vpv-compare-icon{    
    align-items: center;
    display: flex;
	justify-content: center;}
	
.vpv-compare-title img{
height: auto;
margin: unset;
width: 30px;}	

.vpv-compare-product-name{
font-size:10px;
font-weight: 700;
letter-spacing: 2px;
line-height: 150%;
margin-bottom:10px;
text-transform: uppercase;}
.vpv-compare-text{
    font-weight: 700;
    line-height: 1.2;
}	

@media (min-width: 550px) {
.vpv-compare-row,
.vpv-compare-products{grid-template-columns: 46% repeat(2, 1fr);}
.products-in-chart-3 .vpv-compare-row,
.products-in-chart-3 .vpv-compare-products{grid-template-columns: 40% repeat(3, 1fr);}
}

	@media (min-width: 1000px) {
.pdp-product.tushy-product-container .product__media {
        flex-shrink: unset;
        width: 100%;
    }
}
@media (min-width: 1280px) {
	.vpv-compare-products,
	.vpv-compare-row {
	      grid-template-columns: 42% repeat(2, 1fr);
	    }
	.products-in-chart-3 .vpv-compare-products,
	.products-in-chart-3 .vpv-compare-row {
	     grid-template-columns: 40% repeat(3, 1fr);
	    }
		
}

	.mobile-faq-link{display:none;}
@media (max-width: 740px) {
	.pdp-product .pdp-gallery{margin-bottom:20px;}
	.pdp-product .featured-images{display:none;}
	
	/* SHIM*/
	.product__info .vpv-pdp-product-title,
	.product__info .vpv-pdp-product-subtitle,
	.product__info .vpv-pdp-usps,
	.product__info .vpv-pdp-feature-icons,
	.product__info .vpv-pdp-whats-included,
	.product__info .vpv-pdp-whats-included,
	.product__info .vpv-pdp-compare-bidets,
	.product__info .vpv-pdp-complementary,
	.product__info .vpv-pdp-product-description,
	.product__info .bv_main_container{
	padding-left: 0;
	padding-right: 0;}


	
	.product__info .product-form .bv_main_container{

		
		display: flex !important;
		justify-self: start;
		padding-left: 0!important;
		padding-bottom: 1.8rem !important;
		position: relative !important;
	}
	
	.vpv-tabs {padding-top:40px!important;}
	.mobile-faq-link{display:block;}
}

.shopify-section--component-spotlight,
.vpv-pdp-product-map{background-color:#EBF3FE;}



@media (max-width: 576px) {
    .vpv-product-base-container .vpv-product-details .product-form__payment-container.show {
        z-index: 99;
        background-color: #fff;
        width: 100%;
        max-width: 100%;
        padding: 10px;
        transition: none;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        box-shadow: 0 0 20px 2px #00000024;
    }

    .vpv-product-base-container .vpv-product-details .product-form__payment-container.show .vpv-pdp-add-to-cart {
       
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
		 width: 100%;
    }
}


/** Gummies **/
.template-product-gummies recharge-subscription-widget::part(rc-purchase-option__discounted-price):after{
	content:'$0.74 per day';
	display:block;
	font-family: "sofia-pro";
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%;}

.template-product-gummies recharge-subscription-widget::part(rc-purchase-option__price):after{
	content:'$0.81 per day';
	display:block;
	font-family: "sofia-pro";
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%;}

.template-product-gummies recharge-subscription-widget::part(rc-plans-button__discount){display:none;}

@media screen and (max-width: 740px) {
    .product-tushy-aura .product__info .tolstoy-video-carousel-container .tolstoy-carousel-videos-container {
        display: flex;
    }
}



/* Sale Banner */
.vpv-sale-banner{
  align-items:center;
  background-color:var( --vpv-color-sale);
  border-top-left-radius:5px;
  border-bottom-left-radius:5px;
  color:var(--vpv-color-btn-text);
  display:flex;
  padding:18px 36px 18px 18px;
  justify-content:flex-start;
  width: fit-content;
  /* scalloped right edge */
  --r: 9px; /* notch radius */
  -webkit-mask:
    radial-gradient(var(--r) at right, #0000 98%, #000)
    right / 100% calc(2 * var(--r)) repeat-y;
  mask:
    radial-gradient(var(--r) at right, #0000 98%, #000)
    right / 100% calc(2 * var(--r)) repeat-y;
}

.vpv-sale-banner strong {display:block;}
.vpv-sale-banner p {
  font-size: 12px;
  margin:0;}

  .product__info .vpv-sale-banner{margin-bottom:18px;}
