/** Shopify CDN: Minification failed

Line 948:18 Expected identifier but found "!"
Line 1097:13 Unexpected "("

**/
/** BLACK FRIDAY **/

/* .announcement-bar {
      background: #000 !important;
    background-image: url(/cdn/shop/files/bf-sign-landscape.png?v=1731365773) !important;
    background-size: 250px !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    height: 50px;
    max-height: 50px !important;
}

.collection .card-information {
    border: 2px solid #411474;
    background-color: transparent;
    background: #000;
    background-image: url(/cdn/shop/files/bf-label.png?v=1731285817);
    background-size: 60px auto;
    background-position: right 10px center;
    background-repeat: no-repeat;
    color: #fff;
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 50px;
}


.collection .card-information>.price {
    color: white;
}

.collection .price--on-sale .price-item--regular {
    color: #E280F6;
}

.collection .card-information>*:not(.visually-hidden:first-child)+*:not(.rating) {
    margin-top: 0rem;
}  */


/** BLACK FRIDAY **/

.cart-item__savings {
  background-color: #411474;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 500;
  display: inline-block;
  margin-left: 4px;
}

.cart-item__old-price {
  color: #666;
  text-decoration: line-through;
}

.cart-item__final-price {
  color: #c41e3a;
  font-weight: 600;
}

:root {
  --preorder-notice-bg: #f0f7ff;
  --preorder-notice-border: #2196F3;
  --preorder-notice-text: #1565C0;
}

.preorder-notice {
  background-color: var(--preorder-notice-bg);
  border: 1px solid var(--preorder-notice-border);
  border-radius: 4px;
  padding: 12px 15px;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.preorder-notice p {
  margin: 0;
  color: var(--preorder-notice-text);
  font-size: 14px;
  line-height: 1.4;
}

.preorder-notice strong {
  font-weight: 600;
}


.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 0rem 2rem 3rem 2rem;
    position: relative;
}

.center-text {
  padding-top: 30px;
  text-align: center;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1;
    max-width: 320px;
}

.product-center {
    flex-shrink: 0;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-center img {
    width: 100%;
    height: auto;
    max-height: 500px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.features-left .feature-point {
    justify-content: flex-end;
}

.features-right .feature-point {
    justify-content: flex-start;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.features-left .feature-content {
    flex-direction: row;
}

.features-right .feature-content {
    flex-direction: row-reverse;
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, #6b2fa8 0%, #411474 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.features-left .feature-text {
    text-align: right;
}

.features-right .feature-text {
    text-align: left;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6b2fa8 0%, #411474 100%);
    position: relative;
    flex-shrink: 0;
}

.connector-line.left {
    background: linear-gradient(90deg, #411474 0%, #6b2fa8 100%);
}

.connector-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #411474;
    border-radius: 50%;
}

.connector-line.left::after {
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.connector-line.right::after {
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1200px) {
  
    .product-showcase {
        gap: 2rem;
    }
    
    .product-center {
        width: 280px;
    }
    
    .connector-line {
        width: 40px;
    }
}

@media (max-width: 900px) {
    .product-showcase {
        flex-direction: column;
        gap: 3rem;
    }
    
   .feature-content {
    width: 100%;
    padding: 0px;
    box-shadow: none;
   }

   .feature-icon-wrapper {
    width: 40px;
    height: 40px;
   }
   .feature-icon-wrapper img {
    width: 25px;
    height: 25px;
   }

   .feature-text {
    font-size: 14px !important;
    line-height: 1.2 !important;
}
    
    .features-left,
    .features-right {
        max-width: 100%;
        width: 100%;
    }
    
    .features-left .feature-point,
    .features-right .feature-point {
        justify-content: center;
    }
    
    .features-left .feature-content,
    .features-right .feature-content {
        flex-direction: row;
    }
    
    .features-left .feature-text,
    .features-right .feature-text {
        text-align: left;
    }
    
    .connector-line {
        display: none;
    }
    
    .product-center {
        order: -1;
        width: 300px;
    }
}  
        
        :root {
            --primary-color: #00b894;
            --primary-light: #e8f8f5;
            --text-dark: #2d3436;
            --text-medium: #636e72;
            --border-color: #dfe6e9;
            --header-bg: #f8f9fa;
        }

        .comparison-wrapper {
            max-width: 1000px;
            margin: 0 auto;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .comparison-header p {
            font-size: 1.1rem;
            color: var(--text-medium);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            overflow: hidden;
        }

        .comparison-table thead {
            background: var(--header-bg);
        }

        .comparison-table thead th {
            padding: 24px 20px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            border-bottom: 2px solid var(--border-color);
        }

        .comparison-table thead th:first-child {
            text-align: left;
            width: 30%;
        }

        .comparison-table thead th img {
            height: 40px;
            margin-bottom: 8px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid var(--border-color);
            transition: background 0.2s ease;
        }

        .comparison-table tbody tr:hover {
            background: var(--primary-light);
        }

        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table tbody td {
            padding: 20px;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .comparison-table tbody td:first-child {
            font-weight: 600;
            background: var(--header-bg);
            width: 30%;
        }

        .comparison-table tbody td:nth-child(2) {
          border-right: 1px solid var(--border-color);
          border-left: 1px solid var(--border-color);
        }

        .comparison-table tbody td:not(:first-child) {
            text-align: center;
        }

        .highlight-row {
            background: var(--primary-light) !important;
        }

        @media (max-width: 768px) {
            .comparison-header h2 {
                font-size: 1.5rem;
            }

            .comparison-table thead th,
            .comparison-table tbody td {
                padding: 16px 12px;
                font-size: 0.9rem;
            }

            .comparison-table thead th img {
                height: 30px;
            }
        }


recharge-subscription-widget {
    max-width: 100%;
}

.totals__subtotal-value .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.totals__subtotal-value .cart-item__final-price {
  order: 2;
}


.totals__subtotal-value .cart-item__savings {
  display: none;
}

/* Warranty Registration */

.warranty-info-banner {
  background: linear-gradient(135deg, #411474 0%, #5a1d99 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.warranty-info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.warranty-info-content h2 {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.warranty-info-content p {
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.warranty-info-content p:last-of-type {
  margin-bottom: 25px;
}

.warranty-info-content strong {
  font-weight: 700;
}

.warranty-info-content .button {
  background-color: white;
  font-weight: 600; 
}

.warranty-info-content .button:hover {
  color: #411474;
}

.warranty-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 40px 0 10px 0;
}

.warranty-divider::before,
.warranty-divider::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid #e5e7eb;
}

.warranty-divider span {
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .warranty-info-banner {
    padding: 25px 20px;
  }
  
  .warranty-info-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .warranty-info-content p {
    font-size: 15px;
  }
  
  .warranty-upgrade-button {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .warranty-divider span {
    font-size: 16px;
    padding: 0 15px;
  }
}


:root {
  --warranty-primary: #411474;
  --warranty-success: #22c55e;
  --warranty-border: #e5e7eb;
  --warranty-hover: #f9fafb;
  --warranty-text: #1f2937;
  --warranty-text-muted: #6b7280;
  --warranty-radius: 8px;
}

/* Warranty Selector Styles */
.warranty-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.warranty-selector input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.warranty-selector input:checked + .warranty-option-label {
  border-color: var(--warranty-success) !important;
  background: rgba(34, 197, 94, 0.05);
}

/* Hide old warranty styles when inside warranty selector */
.warranty-selector .slt,
.warranty-selector .t-price {
  display: none;
}

.warranty-selector .variant-name {
  display: none;
}

/* Override existing radio label styles within warranty selector */
.product-form__input .warranty-selector input[type="radio"] + .warranty-option-label {
  display: block !important;
  cursor: pointer;
  border: 2px solid var(--warranty-border) !important;
  border-radius: var(--warranty-radius);
  padding: 16px 20px;
  background: white;
  transition: all 0.3s ease;

  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  min-height: auto !important;
  text-align: left !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: normal !important;
  position: relative !important;
  flex-direction: row !important;
}

.product-form__input .warranty-selector input[type="radio"] + .warranty-option-label:hover {
  background: var(--warranty-hover);

}

.product-form__input .warranty-selector input[type="radio"]:checked + .warranty-option-label {
  border-color: var(--warranty-success) !important;
  background: rgba(34, 197, 94, 0.05);
}

.product-form__input .warranty-selector .warranty-option-content {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  flex-direction: row !important;
}

.product-form__input .warranty-selector .warranty-check-icon {
  width: 20px !important;
  height: 20px !important;
  border: 2px solid var(--warranty-border) !important;
  border-radius: 50% !important;
  position: relative !important;
  background: white !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
  display: block !important;
  order: 0 !important;
}

.product-form__input .warranty-selector input[type="radio"]:checked + .warranty-option-label .warranty-check-icon {
  border-color: var(--warranty-success) !important;
  background: var(--warranty-success) !important;
}

.product-form__input .warranty-selector input[type="radio"]:checked + .warranty-option-label .warranty-check-icon::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.product-form__input .warranty-selector .warranty-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  order: 1 !important;
}

.product-form__input .warranty-selector .warranty-title {
  font-weight: 600;
  color: var(--warranty-text);
  font-size: 14px;
}

.product-form__input .warranty-selector .warranty-price {
  color: var(--warranty-primary);
  font-weight: 700;
  font-size: 16px;
}

/* Warranty Info Tooltip (the "i" button) */
.warranty-info {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.warranty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #411474;
  color: white;
  font-size: 11px;
  font-weight: bold;
  font-style: italic;
  transition: opacity 0.2s ease;
}

.warranty-icon:hover {
  opacity: 0.8;
}

.warranty-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  width: 320px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.warranty-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #f8f9fa;
}

.warranty-info:hover .warranty-tooltip {
  opacity: 1;
  visibility: visible;
}

.warranty-content {
  padding: 16px;
}

.warranty-content h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.warranty-content p {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.warranty-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .warranty-tooltip {
    width: 280px;
    left: -50px;
    transform: none;
  }
  
  .warranty-tooltip::after {
    left: 60px;
    transform: none;
  }
}


.pro-and-go .product-form__input:nth-child(2){
  display: none;
}

img#mainDomainImage {
    position: absolute;
    margin: 0px 0px 0px 240px;
}

.trusted {
  margin-top: 40px !important;
  padding: 20px 40px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.04);
}

.CarouselWidget-prefix .CarouselWidget .CarouselWidget__header .header__inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.5rem;
}

.CarouselWidget-prefix .CarouselWidget .CarouselWidget__header .header__inner > div:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.CarouselWidget-prefix .CarouselWidget .CarouselWidget__header .header__inner > div:nth-child(2)  {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}


.CarouselWidget-prefix .CarouselWidget .CarouselWidget__header .header__inner > div:nth-child(3)  {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}


.CarouselWidget-prefix .CarouselWidget .CarouselWidget__header .header__inner > div:nth-child(4)  {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}


.CarouselWidget-prefix .CarouselWidget .CarouselWidget__header .header__inner > div:nth-child(5) 
 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  justify-self: center; /* Optional: centres the logo horizontally */
}

.CarouselWidget-prefix .CarouselWidget .CarouselWidget__header .header__inner > div {
  margin: 0px !important;
  justify-self: center;
}

.products-container {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            max-width: 1340px;
            margin: 0 auto;
        }
        
        .product-card {
            flex: 1 1 45%;
            min-width: 300px;
            background-color: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .product-header {
            text-align: center;
            padding-bottom: 10px;
        }
        
        .product-title {
            font-size: 28px;
            font-weight: bold;
            margin: 0;
            color: #000;
        }
        
        .product-subtitle {
            font-size: 16px;
            color: #888;
            margin: 5px 0 0;
        }
        
        .location-tag {
            text-align: center;
            font-size: 22px;
            font-weight: bold;
            margin: 15px 0;
            color: #000;
        }
        
        .product-image {
            width: 100%;
            height: auto;
            margin: 15px 0;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .feature-list {
            padding: 0;
            margin: 20px 0 0;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            margin-right: 10px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #411474;
            border: 2px solid #411474;
        }
        
        .feature-text {
            font-size: 16px;
            line-height: 1.4;
            color: #333;
        }
        
        .feature-title {
            font-weight: bold;
            color: #411474;
        }


div.rte {
    margin-bottom: 30px;
}



.hulk-powered-wrapper, .rte:after {
display: none !important}

.breadcrumbs {
    margin: 0em auto 2em auto !important;
}

.mobile-awards {
  max-width: 60%;
}

.mobile-awards2 {
  max-width: 80%;
}

.shopify-section-group-footer-group {
  border-top: none !important;
}


.R-flex-row.R-flex-row--noMargin.R-flex-middle-xxs.R-flex-center-xxs.u-marginTop--xxs {
      justify-content: flex-start;
}

.cvp span.vdc
{margin-top: 0px; !important}



/* All labels: border except top */
.product-form__input input[type=radio] + label {
  border: 2px solid #000 !important;
  border-top: none !important; /* Removes the top border */
}

/* First child label: add top border */
.product-form__input input[type=radio]:first-child + label {
  border-top: 2px solid #000 !important; /* Adds the top border */
}


.cvp-wrapper label:nth-child(4) {
  border-radius: unset !important;
}


.cvp-wrapper label:last-child
{
      border-radius: 0 0 20px 20px !important;
}


em.variant-name {
margin: 0px !important;
}


.img-banner {
  min-height: 70vh;
  background: radial-gradient(circle at -50% -200%, #545454, #000);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 20vw;
  height: 100%;
  position: relative;
}
.img-banner .banner-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  gap:40px;
}
.img-banner .banner-row > div {
  display: flex;
  flex-direction: column;
}
.img-banner span {
  color: white;
  font-size: 90px;
  line-height: 1;
  font-weight: 600;
}
.img-banner span.highlighted-text {
  color: #e782fd;
}
.img-banner .smaller {
  font-size: 63px;
}
.img-banner .larger {
  font-size: 140px;
}

.img-banner .black-friday-btn {
  background-color: white;
  color: #000;
  font-weight: 700;
  letter-spacing: 0px;
}
.img-banner .floating {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%); /* Centers the button horizontally */
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .img-banner .banner-row {
  justify-content: space-between;
}
    .img-banner {
  padding: 40px 10vw;
}

    .img-banner span {
  font-size: 70px;
}
.img-banner .smaller {
  font-size: 43px;
}
.img-banner .larger {
  font-size: 120px;
}
}

@media only screen and (max-width: 800px) {

  .products-container {
            gap: 20px;
        }

    .img-banner .banner-row {
  flex-direction: column;
          text-align: center;
      height: auto;
}

  .announcement-bar__message li:last-child {
    display: none !important;
  }
.product-form__input input[type=radio]:checked + label {
  background-position: right 5px top !important; /* Positions the image on the right */
  background-size: 70px !important;
}

  
.product-form__input input[type=radio]:checked+label > div:first-child::after {
  left: 33px
}
  .img-banner {
      min-height: auto;
  padding: 40px 10vw 120px 10vw;
}

  .img-banner .floating {
  bottom: 40px;
}
  .img-banner span {
  font-size: 45px;
}
.img-banner .smaller {
  font-size: 30px;
}
.img-banner .larger {
  font-size: 72px;
}


}


.slick-track (
width: max-content !important;
)

.sonic-dental-cleaning-tablets-30-tablets {

  .rc-template__legacy-radio {
    display: grid;
    grid-template-columns: 1fr 1fr;
        border: 2px solid #411474;
    border-radius: 50px;
    justify-content: center;
    margin: 0;
        font-size: 19px;
    font-weight: 600;
    background-color: #fff;
    font-family: Poppins, sans-serif;
    
}

  .rc-radio {
    height: 70px;
         border-radius: 50px;
    background-color: #ECE7F1; 
  }


  .rc-selling-plans {
    border: none;
  }
  
  /* Fix overflow issues */
  .cvp-wrapper label {
    overflow: unset !important;
  }

  /* Grid styling for the variant selector */
  .cvp-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 40px 0px;

    label {
      border-radius: 25px !important;
      justify-content: center !important;
      padding: 10px !important;
      margin: 0 !important;

      .variant-name {
        margin: 0;
      }

      &:nth-child(2) {
        border: 2px solid #411474 !important;
      }

      .t-price,
      div:first-child {
        display: none;
      }
    }
  }

  /* Add text above and below the second label (3 Boxes) */
  .cvp-wrapper label[for="template--16171215159353__main-1-1"]::before,
  .cvp-wrapper label[for="template--16171215159353__main-1-2"]::before,
  .cvp-wrapper label[for="template--16171215159353__main-1-1"]::after,
  .cvp-wrapper label[for="template--16171215159353__main-1-2"]::after {
    display: block !important;
    text-align: center;
    position: absolute !important;
  }


  .cvp-wrapper label[for="template--16171215159353__main-1-1"]::after {
    content: "Most Popular";
    top: -40px !important;
  }

  .cvp-wrapper label[for="template--16171215159353__main-1-2"]::before {
    content: "Best Value" !important;
    font-weight: bold;
    top: -40px !important;
  }
}

body.US.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-1"]::before,
body.GB.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-1"]::before,
body.AU.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-1"]::before,
body.CA.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-1"]::before {
  content: "Save over 30%!";
      width: 150px;
  top: 70px !important;
}

body.US.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-2"]::after,
body.GB.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-2"]::after,
body.AU.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-2"]::after,
body.CA.sonic-dental-cleaning-tablets-30-tablets .cvp-wrapper label[for="template--16171215159353__main-1-2"]::after {
  content: "Save over 40%!";
      width: 150px;
  top: 70px !important;
}



.about {
  display: flex;
  flex-direction: column;
  gap: 60px;
  font-size: 14px;
}

.about h3 {
  font-size: 32px;
  margin-top: 0;
}

.about .section-1 {
  height: 384px;
  background-image: url(/cdn/shop/files/Mask_group.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .subsection {
  padding: 60px;
  border-radius: 20px;
  width: 100%;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.about .subsection.one {
  background-color: black;
  color: white;
  background-image: url(/cdn/shop/files/Rectangle_8.png?v=1723327233);
}

.about .subsection.two {
  background-color: #f3f3f3;
  color: #362663;
  background-image: url(/cdn/shop/files/Rectangle_9.png?v=1723327234);
}

.about .subsection.three {
  background-color: #362663;
  color: white;
  background-image: url(/cdn/shop/files/Clip_path_group.png?v=1723327233);
}

.about .subsection.one h3,
.about .title-block .highlight-text {
  color: #2cad79;
}

.about .subsection.three h3,
.about .section-1 h3 {
  color: white;
}

.about .subsection.three .imgright {
  text-align: center;
  align-self: center;
}

.recommended {
    text-align: center;
    padding: 0px 30px;
}

.recommended img {
    max-width:100%;
}

.hold-the-press {
  padding-top: 30px;
  text-align: center;
  font-size: 28px;
}
.highlighted {
  font-weight: 600;
  color: #2cad79;
}

/* Media Queries */
@media only screen and (min-width: 800px) {
  .about .title-block {
    width: 75%;
  }

  .about .subsection.one p,
  .about .subsection.two p {
    width: 50%;
  }

  .about .subsection.three > div {
    width: 50%;
  }

  .about .subsection.three {
    display: flex;
    flex-direction: row;
  }
}

@media only screen and (max-width: 800px) {

  .hold-the-press {
  font-size: 20px;
}
  
  .about {
    gap: 30px;
  }

  .about .section-1 {
    height: auto;
    background-size: cover;
    background-position: right;
    background-image: url(/cdn/shop/files/Mask_group_mobile.png);
    background-color: #411474;
    align-items: start;
  }

  .about .section-1 h3 {
    width: 75%;
    padding-top: 35px;
    padding-bottom: 15px;
    font-size: 18px;
  }

  .about .subsection {
    padding: 30px;
    width: 90%;
    margin: auto;
  }

  .about .subsection.one,
  .about .subsection.two {
    background-position: top;
    background-size: contain;
    padding-top: 180px;
  }

  .about .subsection.three {
    background-position: top right;
  }

  .about .subsection.three img {
    margin-top: 20px;
    width: 200px;
  }
}



/* Grid Container for Partnership Blocks */
.partnerships {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0px;
}

/* Partnership Block Styling */
.partnership-block {
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.partnership-block:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.partnership-block:hover .partnership-footer {
    background-color: #2cad79;
}

/* Partnership Content Backgrounds */
.partnership-content {
    padding: 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    color: white;
}

.partnership-content.one {
    background-image: linear-gradient(rgba(20, 65, 116, 0.8), rgba(20, 65, 116, 0.8)), 
    url('/cdn/shop/files/SonicDentalPro2524.jpg');
}

.partnership-content.two {
    background-image: linear-gradient(rgba(20, 116, 65, 0.8), rgba(20, 116, 65, 0.8)), 
    url('/cdn/shop/files/SonicDentalPro2457.jpg');
}

.partnership-content.three {
    background-image: linear-gradient(rgba(116, 65, 20, 0.8), rgba(116, 65, 20, 0.8)), 
    url('/cdn/shop/files/SonicDentalPro2358.jpg');
}

/* Text Styling within Partnership Content */
.partnership-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

/* Footer and Arrow Styling */
.partnership-footer {
    background-color: #411474;
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.partnership-footer .arrow {
    color: white;
    font-size: 6rem;
    transition: 0.5s ease;
}

.partnership-block:hover .arrow {
    color: #411474;
    animation: scaleArrow 1s infinite alternate ease-in-out;
}

/* Arrow Animation */
@keyframes scaleArrow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 100px auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Close Button Styling */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Modal Title Styling */
.modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}


@media screen and (max-width: 749px) {

        .partnerships {
            grid-template-columns: 1fr;
        }

  
.list-menu li:nth-child(2)::before {
  display: inline;
  float: right;
  padding: 3px 10px;
  margin-top: 8px;
  margin-right: 20px;
  content: "Best Seller";
  font-size: 12px;
  background-color: #411474;
  color: white;
  font-weight: normal;
  border-radius: 10px;
  pointer-events: none;
}

  .menu-drawer__navigation {
padding: 0px !important;
  }

  .badge-ribbon iframe {
height: 50px !important;
  }
  
 .grid__item.product__media-wrapper #reviewsio-carousel-widget{
    display: none !important
  }
   
}
.product-form__input .flex-container+div{
  margin-bottom: 10px
}
#shopify-block-8c761730-5876-4a93-958d-a99f3615442f{
  width: max-content;
}



.product-form__input input[type=radio]+label.color {
     display: inline-block;
    width: auto;
    border: 1px solid;
    padding: 0!important;
    background: none!important;
border: none !important;
    margin-right: 10px;
    font-size: 0;
    margin-top: 5px;
    opacity: 0.6;
  text-align: center;
}

.product-form__input input[type=radio]+label.color em.variant-name {
    font-style: inherit;
    font-size: 12px !important;
    display: block;
    margin: -2px 0 0;
}

.product-form__input input[type=radio]+label.color img {

    width: 100px;
    
}
div#reviewsio-carousel-widget {
    margin-top: 30px;
}
@media screen and (min-width: 750px){
.header__payment .list-payment {
    justify-content: flex-start;
    margin: -0.5rem;
    padding-top: 0;
}}
.header__payment .list-payment__item {
  
   flex: 0 0 auto;
}
.list-payment__item {
    align-items: center;
    display: flex;
    padding: 0.5rem;
}
.header__payment .list-payment__item svg.icon.icon--full-color {
    height: auto;
    width: 48px;
}
.list-payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -0.5rem 0;
    padding-top: 1rem;
    padding-left: 0;
}
.t-price {
    font-size: 2.1rem;
    text-shadow: 0px 0px 1px black;
    font-weight: 500;
}
.product-form__input input[type=radio]+label .slt {
   width: 30px;
    height: 30px;
    transition: opacity 1s ease-out;

}

.product-form__input input[type=radio]+label .vdc {
  max-height: 0;
    transition: max-height 0.3s ease;
    overflow: hidden;
 position: relative;
 

}
.product-form__input input[type=radio]:checked+label .vdc {
    max-height: 500px;

   
   

}
.product-form__input input[type=radio]:checked+label .slt.b2 {
    opacity: 1;
    display: block;
}
.product-form__input input[type=radio]:checked+label .slt.b1 {
    opacity: 0;
    display: none;
}
.product-form__input input[type=radio]+label .slt.b2{
    display: none;
    opacity: 0;
}
.product-form__input input[type=radio]+label .slt.b1 {
    display: block;
    opacity: 1;
}
ul.footer-cicon {
    color: #000;
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: normal;
    align-items: flex-start;
    margin-right: 10px;
    margin-top: 30px;
    font-size: 15px;
}
.slick-list {
   
    padding: 0 !important;
}
ul.footer-cicon li{
  margin-top: 10px;
  display: inline-flex;
}
ul.footer-cicon li a {
color: black;
    text-decoration: none;
    margin-left: 10px;}
ul.footer-cicon li svg {
width: 23px;}

.banner__box > div:nth-last-child(2) strong,b.stri,em.stri,
#Details-d1e6c44b-42c7-4a54-b698-096b85302a38-template--15870216437817__16559157917ee141df strong,
#Details-291d5d6b-7f52-47fd-934a-d04241d782e3-template--15870216568889__e5ef2a02-d3e9-47da-a244-2ecd72174d63 strong
{
    font-weight: bold;
    font-style: normal;
    color: #411474;
  display: contents;
}
.ruk_rating_snippet i {
    letter-spacing: 3px !important;
    font-size: 18px !important;
   
}
.ruk_rating_snippet .ruk-rating-snippet-count{
    font-size: 14px !important}
.steribrite b.stri,.steribrite em.stri {
    
    color: #fff !important;
  
}
.badge.price__badge-sale {
  display: none !important;
}
.footer {
  border-top: 2px solid #fff !important;
}

:root,
.color-background-1 {
  --color-foreground: var(--color-base-text);
  --color-background: var(--color-base-background-1);
  --gradient-background: var(--gradient-base-background-1);
}

.color-background-2 {
  --color-foreground: var(--color-base-text);
  --color-background: var(--color-base-background-2);
  --gradient-background: var(--gradient-base-background-2);
}

.color-inverse {
  --color-foreground: var(--color-base-background-1);
  --color-background: var(--color-base-text);
  --gradient-background: rgb(var(--color-base-text));
}

.color-accent-1 {
  --color-foreground: var(--color-base-solid-button-labels);
  --color-background: var(--color-base-accent-1);
  --gradient-background: var(--gradient-base-accent-1);
}

.color-accent-2 {
  --color-foreground: var(--color-base-solid-button-labels);
  --color-background: var(--color-base-accent-2);
  --gradient-background: var(--gradient-base-accent-2);
}

.color-foreground-outline-button {
  --color-foreground: var(--color-base-outline-button-labels);
}

.color-foreground-accent-1 {
  --color-foreground: var(--color-base-accent-1);
}

.color-foreground-accent-2 {
  --color-foreground: var(--color-base-accent-2);
}

:root,
.color-background-1 {
  --color-link: var(--color-base-outline-button-labels);
  --alpha-link: 0.85;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-link: var(--color-foreground);
  --alpha-link: 0.7;
}

:root,
.color-background-1 {
  --color-button: var(--color-base-accent-1);
  --color-button-text: var(--color-base-solid-button-labels);
  --alpha-button-background: 1;
  --alpha-button-border: 1;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-button: var(--color-foreground);
  --color-button-text: var(--color-background);
}

.button--secondary {
  --color-button: var(--color-base-outline-button-labels);
  --color-button-text: var(--color-base-outline-button-labels);
  --color-button: var(--color-background);
  --alpha-button-background: 1;
}

.color-background-2 .button--secondary,
.color-accent-1 .button--secondary,
.color-accent-2 .button--secondary {
  --color-button: var(--color-background);
  --color-button-text: var(--color-foreground);
}

.color-inverse .button--secondary {
  --color-button: var(--color-background);
  --color-button-text: var(--color-foreground);
}

.button--tertiary {
  --color-button: var(--color-base-outline-button-labels);
  --color-button-text: var(--color-base-outline-button-labels);
  --alpha-button-background: 0;
  --alpha-button-border: 0.2;
}

.color-background-2 .button--tertiary,
.color-inverse .button--tertiary,
.color-accent-1 .button--tertiary,
.color-accent-2 .button--tertiary {
  --color-button: var(--color-foreground);
  --color-button-text: var(--color-foreground);
}

:root,
.color-background-1 {
  --color-badge-background: var(--color-background);
  --color-badge-border: var(--color-foreground);
  --alpha-badge-border: 0.1;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-badge-background: var(--color-background);
  --color-badge-border: var(--color-background);
  --alpha-badge-border: 1;
}

:root,
.color-background-1,
.color-background-2 {
  --color-card-hover: var(--color-base-text);
}

.color-inverse {
  --color-card-hover: var(--color-base-background-1);
}

.color-accent-1,
.color-accent-2 {
  --color-card-hover: var(--color-base-solid-button-labels);
}

:root,
.color-icon-text {
  --color-icon: rgb(var(--color-base-text));
}

.color-icon-accent-1 {
  --color-icon: rgb(var(--color-base-accent-1));
}

.color-icon-accent-2 {
  --color-icon: rgb(var(--color-base-accent-2));
}

.color-icon-outline-button {
  --color-icon: rgb(var(--color-base-outline-button-labels));
}

.product-card-wrapper .card,
.contains-card--product {
  --border-radius: var(--product-card-corner-radius);
  --border-width: var(--product-card-border-width);
  --border-opacity: var(--product-card-border-opacity);
  --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--product-card-shadow-blur-radius);
  --shadow-opacity: var(--product-card-shadow-opacity);
  --shadow-visible: var(--product-card-shadow-visible);
  --image-padding: var(--product-card-image-padding);
  --text-alignment: var(--product-card-text-alignment);
}

.collection-card-wrapper .card,
.contains-card--collection {
  --border-radius: var(--collection-card-corner-radius);
  --border-width: var(--collection-card-border-width);
  --border-opacity: var(--collection-card-border-opacity);
  --shadow-horizontal-offset: var(--collection-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--collection-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--collection-card-shadow-blur-radius);
  --shadow-opacity: var(--collection-card-shadow-opacity);
  --shadow-visible: var(--collection-card-shadow-visible);
  --image-padding: var(--collection-card-image-padding);
  --text-alignment: var(--collection-card-text-alignment);
}

.article-card-wrapper .card,
.contains-card--article {
  --border-radius: var(--blog-card-corner-radius);
  --border-width: var(--blog-card-border-width);
  --border-opacity: var(--blog-card-border-opacity);
  --shadow-horizontal-offset: var(--blog-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--blog-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--blog-card-shadow-blur-radius);
  --shadow-opacity: var(--blog-card-shadow-opacity);
  --shadow-visible: var(--blog-card-shadow-visible);
  --image-padding: var(--blog-card-image-padding);
  --text-alignment: var(--blog-card-text-alignment);
}

.contains-content-container,
.content-container {
  --border-radius: var(--text-boxes-radius);
  --border-width: var(--text-boxes-border-width);
  --border-opacity: var(--text-boxes-border-opacity);
  --shadow-horizontal-offset: var(--text-boxes-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--text-boxes-shadow-vertical-offset);
  --shadow-blur-radius: var(--text-boxes-shadow-blur-radius);
  --shadow-opacity: var(--text-boxes-shadow-opacity);
  --shadow-visible: var(--text-boxes-shadow-visible);
}

.contains-media,
.global-media-settings {
  --border-radius: var(--media-radius);
  --border-width: var(--media-border-width);
  --border-opacity: var(--media-border-opacity);
  --shadow-horizontal-offset: var(--media-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--media-shadow-vertical-offset);
  --shadow-blur-radius: var(--media-shadow-blur-radius);
  --shadow-opacity: var(--media-shadow-opacity);
  --shadow-visible: var(--media-shadow-visible);
}

/* base */

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.page-width.drawer-menu {
  max-width: 100%;
}

.page-width-desktop {
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 920px) {
  .page-width {
    padding: 0 5rem;
  }
    .banner__text.rte.body {
    color: #fff;
}
h2.banner__heading.inline-richtext.h0 {
    color: #fff;
}
.banner__box>div:nth-last-child(2) strong, b.stri, #Details-d1e6c44b-42c7-4a54-b698-096b85302a38-template--15870216437817__16559157917ee141df strong, #Details-291d5d6b-7f52-47fd-934a-d04241d782e3-template--15870216568889__e5ef2a02-d3e9-47da-a244-2ecd72174d63 strong{
color : #fff;
}
}
@media screen and (min-width: 750px) {
  /* .footer-block.grid__item.footer-block--menu {
    width: 57% !important;

  } 
  .footer-block.grid__item {
width: 20% !important;
} */
  .page-width {
    padding: 0 3rem;
  }

  .header.page-width {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }

  .page-width--narrow {
    padding: 0 9rem;
  }

  .page-width-desktop {
    padding: 0;
  }

  .page-width-tablet {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 990px) {
  .header:not(.drawer-menu).page-width {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }

  .page-width-desktop {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
}

.isolate {
  position: relative;
  z-index: 0;
}

.section + .section {
  margin-top: var(--spacing-sections-mobile);
}

@media screen and (min-width: 750px) {
  .section + .section {
    margin-top: var(--spacing-sections-desktop);
  }
}

.element-margin-top {
  margin-top: 5rem;
}

@media screen and (min-width: 750px) {
  .element-margin {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

body,
.color-background-1,
.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  color: rgba(var(--color-foreground), 1);
  background-color: rgb(var(--color-background));
}

.background-secondary {
  background-color: rgba(var(--color-foreground), 0.04);
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}

.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

::selection {
  background-color: rgba(var(--color-foreground), 0.2);
}

.text-body {
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  color: rgb(var(--color-foreground));
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  word-break: break-word;
}

.hxl {
  font-size: calc(var(--font-heading-scale) * 5rem);
}

@media only screen and (min-width: 750px) {
  .hxl {
    font-size: calc(var(--font-heading-scale) * 6.2rem);
  }
}

.h0 {
  font-size: calc(var(--font-heading-scale) * 4rem);
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: calc(var(--font-heading-scale) * 5.2rem);
  }
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3rem);
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 3.2rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

h4,
.h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

h6,
.h6 {
  color: rgba(var(--color-foreground), 0.75);
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}

blockquote {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.7 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.2rem;
  }
}

.caption-with-letter-spacing {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: uppercase;
}

.caption-with-letter-spacing--medium {
  font-size: 1.2rem;
  letter-spacing: 0.16rem;
}

.caption-with-letter-spacing--large {
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
}

.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  font-size: 1.3rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.04rem;
}

.color-foreground {
  color: rgb(var(--color-foreground));
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}
@media screen and (min-width: 750px) {
  .sdesc.wp{display: none;}

}
@media screen and (max-width: 749px) {
 
  em.variant-name, .t-price {
   
   
    font-size: 17px !important;
    
}
 
  /* .sdesc{display: none;} */
  .sdesc.wp {
    display: block !important;
    margin-bottom: 30px;
}
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.light {
  opacity: 0.7;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

.link,
.customer a {
  cursor: pointer;
  display: inline-block;
  border: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  color: rgb(var(--color-link));
  background-color: transparent;
  font-size: 1.4rem;
  font-family: inherit;
}

.link--text {
  color: rgb(var(--color-foreground));
}

.link--text:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.link-with-icon {
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  margin-bottom: 4.5rem;
  white-space: nowrap;
}

.link-with-icon .icon {
  width: 1.5rem;
  margin-left: 1rem;
}

a:not([href]) {
  cursor: not-allowed;
}

.circle-divider::after {
  content: "\2022";
  margin: 0 1.3rem 0 1.5rem;
}

.circle-divider:last-of-type::after {
  display: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: rgba(var(--color-foreground), 0.2);
  display: block;
  margin: 5rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

.placeholder {
  background-color: rgba(var(--color-foreground), 0.04);
  color: rgba(var(--color-foreground), 0.55);
  fill: rgba(var(--color-foreground), 0.55);
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}

:root {
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-long: 500ms;
}

.underlined-link,
.customer a,
.inline-richtext a {
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}

.underlined-link,
.customer a {
  color: rgba(var(--color-link), var(--alpha-link));
}

.inline-richtext a,
.rte.inline-richtext a {
  color: currentColor;
}

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.icon-arrow {
  width: 1.5rem;
}

h3 .icon-arrow,
.h3 .icon-arrow {
  width: calc(var(--font-heading-scale) * 1.5rem);
}

/* arrow animation */
.animate-arrow .icon-arrow path {
  transform: translateX(-0.25rem);
  transition: transform var(--duration-short) ease;
}

.animate-arrow:hover .icon-arrow path {
  transform: translateX(-0.05rem);
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.5rem);
}

summary::-webkit-details-marker {
  display: none;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: " ";
  background: transparent;
}

.disclosure-has-popup > summary::before {
  display: none;
}

.disclosure-has-popup[open] > summary + * {
  z-index: 100;
}

@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * {
    z-index: 4;
  }

  .facets .disclosure-has-popup[open] > summary + * {
    z-index: 2;
  }
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
.focused,
.no-js *:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* component-title */
.title,
.title-wrapper-with-link {
  margin: 3rem 0 2rem;
}

.title-wrapper-with-link .title {
  margin: 0;
}

.title .link {
  font-size: inherit;
}

.title-wrapper {
  margin-bottom: 3rem;
}

.title-wrapper-with-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.title--primary {
  margin: 0rem 0 3rem;
  text-align: center;
}

.title-wrapper--self-padded-tablet-down,
.title-wrapper--self-padded-mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 750px) {
  .title-wrapper--self-padded-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 990px) {
  .title,
  .title-wrapper-with-link {
    margin: 5rem 0 3rem;
  }

  .title--primary {
    margin: 0rem 0 3rem;
  }

  .title-wrapper-with-link {
    align-items: center;
  }

  .title-wrapper-with-link .title {
    margin-bottom: 0;
  }

  .title-wrapper--self-padded-tablet-down {
    padding-left: 0;
    padding-right: 0;
  }
}

.title-wrapper-with-link .link-with-icon {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.title-wrapper-with-link .link-with-icon svg {
  width: 1.5rem;
}

.title-wrapper-with-link a {
  margin-top: 0;
  flex-shrink: 0;
}

.title-wrapper--no-top-margin {
  margin-top: 0;
}

.title-wrapper--no-top-margin > .title {
  margin-top: 0;
}

.subtitle {
  font-size: 1.8rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.7);
}

.subtitle--small {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

.subtitle--medium {
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
}
.flosser .multicolumn-card__info .rte p{
 font-size: 14px;
    margin-top: 10px;
    padding: 0 25px;
}
.flosser .multicolumn .title-wrapper-with-link{
      justify-content: center;
}
.flosser .multicolumn .title-wrapper-with-link h2{
      text-align: center;
}
.flosser .multicolumn .title-wrapper-with-link h2 strong{
display: block;
    text-align: center;
    font-weight: normal;
    font-size: 17px;
    margin-top: 10px;
margin-bottom: 25px;}
.flosser .multicolumn-card__info .rte .videowrapper{
  max-width: none;
}
/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}

@media screen and (min-width: 750px) {
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}

.grid:last-child {
  margin-bottom: 0;
}

.grid__item {
  width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

.grid--gapless.grid {
  column-gap: 0;
  row-gap: 0;
}

@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}

.grid--2-col .grid__item {
  width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

@media screen and (max-width: 989px) {
  .grid--1-col-tablet-down .grid__item {
    width: 100%;
    max-width: 100%;
  }

  .slider--tablet.grid--peek {
    margin: 0;
    width: 100%;
  }

  .slider--tablet.grid--peek .grid__item {
    box-sizing: content-box;
    margin: 0;
  }
}

@media screen and (min-width: 990px) {
  .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
  }

  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

@media screen and (min-width: 990px) {
  .grid--1-col-desktop {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid--1-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .grid--peek.slider--mobile {
    margin: 0;
    width: 100%;
  }

  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin: 0;
  }

  .grid--peek .grid__item {
    min-width: 35%;
  }

  .grid--peek.slider .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .grid--peek.slider:after {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item,
  .grid--peek .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item,
  .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item,
  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--1-col-tablet-down.grid--peek .grid__item {
    width: calc(100% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
}

/* component-media */
.media {
  display: block;
  background-color: rgba(var(--color-foreground), 0.1);
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media > *:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sonic-odyssey .media > img {
  object-fit: contain;
}

.media--square {
  padding-bottom: 100%;
}

.media--portrait {
  padding-bottom: 125%;
}

.media--landscape {
  padding-bottom: 66.6%;
}

.media--cropped {
  padding-bottom: 56%;
}

.media--16-9 {
  padding-bottom: 56.25%;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}

.media.media--hover-effect > img + img {
  opacity: 0;
}

@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}

deferred-media {
  display: block;
}

/* component-button */
/* Button - default */

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded,
.shopify-payment-button [role="button"],
.cart__dynamic-checkout-buttons [role="button"],
.cart__dynamic-checkout-buttons iframe {
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
  --shadow-blur-radius: var(--buttons-shadow-blur-radius);
  --shadow-opacity: var(--buttons-shadow-opacity);
  --shadow-visible: var(--buttons-shadow-visible);
  --border-offset: var(
    --buttons-border-offset
  ); /* reduce radius edge artifacts */
  --border-opacity: calc(1 - var(--buttons-border-opacity));
  border-radius: var(--buttons-radius-outset);
  position: relative;
}

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  min-width: calc(12rem + var(--buttons-border-width) * 2);
  min-height: calc(4.5rem + var(--buttons-border-width) * 2);
}

.shopify-payment-button__button--branded {
  z-index: auto;
}

.cart__dynamic-checkout-buttons iframe {
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
    var(--shadow-blur-radius)
    rgba(var(--color-base-text), var(--shadow-opacity));
}

.button,
.shopify-challenge__button,
.customer button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  transition: box-shadow var(--duration-short) ease;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(var(--color-button), var(--alpha-button-background));
}

.button:before,
.shopify-challenge__button:before,
.customer button:before,
.shopify-payment-button__button--unbranded:before,
.shopify-payment-button [role="button"]:before,
.cart__dynamic-checkout-buttons [role="button"]:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--buttons-radius-outset);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset)
    var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity));
}

.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
  content: "";
  position: absolute;
  top: var(--buttons-border-width);
  right: var(--buttons-border-width);
  bottom: var(--buttons-border-width);
  left: var(--buttons-border-width);
  z-index: 1;
  border-radius: var(--buttons-radius);
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--buttons-border-width)
      rgba(var(--color-button), var(--alpha-button-background));
  transition: box-shadow var(--duration-short) ease;
}

.button:not([disabled]):hover::after,
.shopify-challenge__button:hover::after,
.customer button:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  --border-offset: 1.3px;
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--buttons-border-width) + 1px)
      rgba(var(--color-button), var(--alpha-button-background));
}

.button--secondary:after {
  --border-opacity: var(--buttons-border-opacity);
}

.button:focus-visible,
.button:focus,
.button.focused,
.shopify-payment-button__button--unbranded:focus-visible,
.shopify-payment-button [role="button"]:focus-visible,
.shopify-payment-button__button--unbranded:focus,
.shopify-payment-button [role="button"]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.button:focus:not(:focus-visible):not(.focused),
.shopify-payment-button__button--unbranded:focus:not(:focus-visible):not(
    .focused
  ),
.shopify-payment-button
  [role="button"]:focus:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
}

.button::selection,
.shopify-challenge__button::selection,
.customer button::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}

.button,
.button-label,
.shopify-challenge__button,
.customer button {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
}

.button--tertiary {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  min-width: calc(9rem + var(--buttons-border-width) * 2);
  min-height: calc(3.5rem + var(--buttons-border-width) * 2);
}

.button--small {
  padding: 1.2rem 2.6rem;
}

/* Button - other */

.button:disabled,
.button[aria-disabled="true"],
.button.disabled,
.customer button:disabled,
.customer button[aria-disabled="true"],
.customer button.disabled,
.quantity__button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button.loading {
  color: transparent;
  position: relative;
}

@media screen and (forced-colors: active) {
  .button.loading {
    color: rgb(var(--color-foreground));
  }
}

.button.loading > .loading-overlay__spinner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
}

.button.loading > .loading-overlay__spinner .spinner {
  width: fit-content;
}

.button.loading > .loading-overlay__spinner .path {
  stroke: rgb(var(--color-button-text));
}

/* Button - social share */

.share-button {
  display: block;
  position: relative;
}

.share-button details {
  width: fit-content;
}

.share-button__button {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: rgb(var(--color-link));
  margin-left: 0;
  padding-left: 0;
  min-height: 4.4rem;
}

details[open] > .share-button__fallback {
  animation: animateMenuOpen var(--duration-default) ease;
}

.share-button__button:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.share-button__button,
.share-button__fallback button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.share-button__button .icon-share {
  height: 1.2rem;
  margin-right: 1rem;
  min-width: 1.3rem;
}

.share-button__fallback {
  display: flex;
  align-items: center;
  position: absolute;
  top: 3rem;
  left: 0.1rem;
  z-index: 3;
  width: 100%;
  min-width: max-content;
  border-radius: var(--inputs-radius);
  border: 0;
}

.share-button__fallback:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width)
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.share-button__fallback:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}

.share-button__fallback button {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: var(--inputs-border-width);
}

.share-button__fallback button:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.share-button__fallback button:hover svg {
  transform: scale(1.07);
}

.share-button__close:not(.hidden) + .share-button__copy {
  display: none;
}

.share-button__close,
.share-button__copy {
  background-color: transparent;
  color: rgb(var(--color-foreground));
}

.share-button__copy:focus-visible,
.share-button__close:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.share-button__copy:focus,
.share-button__close:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.field:not(:focus-visible):not(.focused)
  + .share-button__copy:not(:focus-visible):not(.focused),
.field:not(:focus-visible):not(.focused)
  + .share-button__close:not(:focus-visible):not(.focused) {
  background-color: inherit;
}

.share-button__fallback .field:after,
.share-button__fallback .field:before {
  content: none;
}

.share-button__fallback .field {
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  transition: none;
}

.share-button__fallback .field__input:focus,
.share-button__fallback .field__input:-webkit-autofill {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.1rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.share-button__fallback .field__input {
  box-shadow: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  filter: none;
  min-width: auto;
  min-height: auto;
}

.share-button__fallback .field__input:hover {
  box-shadow: none;
}

.share-button__fallback .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button__message:not(:empty) {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0.8rem 0 0.8rem 1.5rem;
  margin: var(--inputs-border-width);
}

.share-button__message:not(:empty):not(.hidden) ~ * {
  display: none;
}

/* component-form */
.field__input,
.select__select,
.customer .field input,
.customer select {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  border-radius: var(--inputs-radius);
  height: 4.5rem;
  min-height: calc(var(--inputs-border-width) * 2);
  min-width: calc(7rem + (var(--inputs-border-width) * 2));
  position: relative;
  border: 0;
}

.field:before,
.select:before,
.customer .field:before,
.customer select:before,
.localization-form__select:before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}

.field:after,
.select:after,
.customer .field:after,
.customer select:after,
.localization-form__select:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width)
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.select__select {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.75);
}

.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.localization-form__select:focus {
  outline: 0;
  box-shadow: none;
}

.text-area,
.select {
  display: flex;
  position: relative;
  width: 100%;
}

/* Select */

.select .icon-caret,
.customer select + svg {
  height: 0.6rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: calc(var(--inputs-border-width) + 1.5rem);
}

.select__select,
.customer select {
  cursor: pointer;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  padding: 0 calc(var(--inputs-border-width) + 3rem) 0 2rem;
  margin: var(--inputs-border-width);
  min-height: calc(var(--inputs-border-width) * 2);
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow var(--duration-short) ease;
}

.customer .field {
  display: flex;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
}

.field__label,
.customer .field label {
  font-size: 1.6rem;
  left: calc(var(--inputs-border-width) + 2rem);
  top: calc(1rem + var(--inputs-border-width));
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--duration-short) ease,
    font-size var(--duration-short) ease;
  color: rgba(var(--color-foreground), 0.75);
  letter-spacing: 0.1rem;
  line-height: 1.5;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label {
  font-size: 1rem;
  top: calc(var(--inputs-border-width) + 0.5rem);
  left: calc(var(--inputs-border-width) + 2rem);
  letter-spacing: 0.04rem;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 2.2rem 1.5rem 0.8rem 2rem;
  margin: var(--inputs-border-width);
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

.field__button > svg {
  height: 2.5rem;
  width: 2.5rem;
}

.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  min-height: 10rem;
  resize: none;
}

input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message--large {
  font-size: 1.6rem;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: left;
}

.form__message .icon,
.customer .form__message svg {
  flex-shrink: 0;
  height: 1.3rem;
  margin-right: 0.5rem;
  width: 1.3rem;
}

.form__message--large .icon,
.customer .form__message svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message svg {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.6rem;
}

.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* component-quantity */
.quantity {
  color: rgba(var(--color-foreground));
  position: relative;
  width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
  display: flex;
  border-radius: var(--inputs-radius);
  min-height: calc((var(--inputs-border-width) * 2) + 4.5rem);
}

.quantity:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width)
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.quantity:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset)
    var(--inputs-shadow-vertical-offset) var(--inputs-shadow-blur-radius)
    rgba(var(--color-base-text), var(--inputs-shadow-opacity));
  z-index: -1;
}

.quantity__input {
  color: currentColor;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0 0.5rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}

.quantity__button {
  width: calc(4.5rem / var(--font-body-scale));
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
}

.quantity__button:first-child {
  margin-left: calc(var(--inputs-border-width));
}

.quantity__button:last-child {
  margin-right: calc(var(--inputs-border-width));
}

.quantity__button svg {
  width: 1rem;
  pointer-events: none;
}

.quantity__button:focus-visible,
.quantity__input:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.quantity__button:focus,
.quantity__input:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.quantity__button:not(:focus-visible):not(.focused),
.quantity__input:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity__input[type="number"] {
  -moz-appearance: textfield;
}

.quantity__rules {
  margin-top: 1.2rem;
  position: relative;
  font-size: 1.2rem;
}

.quantity__rules .caption {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}

.quantity__rules .divider + .divider::before {
  content: "\2022";
  margin: 0 0.5rem;
}

.quantity__rules-cart {
  position: relative;
}

product-info .loading-overlay:not(.hidden) ~ *,
.quantity__rules-cart .loading-overlay:not(.hidden) ~ * {
  visibility: hidden;
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.no-js details[open] .modal__toggle {
  position: absolute;
  z-index: 5;
}

.modal__toggle-close {
  display: none;
}

.no-js details[open] svg.modal__toggle-close {
  display: flex;
  z-index: 1;
  height: 1.7rem;
  width: 1.7rem;
}

.modal__toggle-open {
  display: flex;
}

.no-js details[open] .modal__toggle-open {
  display: none;
}

.no-js .modal__close-button.link {
  display: none;
}

.modal__close-button.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  height: 4.4rem;
  width: 4.4rem;
  background-color: transparent;
}

.modal__close-button .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-modal {
  cursor: zoom-out;
}

.media-modal .deferred-media {
  cursor: initial;
}

/* component-cart-count-bubble */
.cart-count-bubble:empty {
  display: none;
}

.cart-count-bubble {
  position: absolute;
    background-color: white;
    color: black;
    height: 1.2rem;
    width: 1.2rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9rem;
    bottom: 1.8rem;
    left: 2.2rem;
    line-height: calc(1 + .1 / var(--font-body-scale));
    box-shadow: 0px 0px 3px #ccc;
}
a.header__icon.header__icon--account.link.focus-inset.small-hide {
    margin: 0 10px;
}
/* section-announcement-bar */
.announcement-bar {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  color: rgb(var(--color-foreground));
      max-height: 35px;
    overflow: hidden;
}

.announcement-bar__link {
  display: block;
  width: 100%;
  padding: 1rem 0;
  text-decoration: none;
}

.announcement-bar__link:hover {
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-card-hover), 0.06);
}

.announcement-bar__link .icon-arrow {
  display: inline-block;
  pointer-events: none;
  margin-left: 0.8rem;
  vertical-align: middle;
  margin-bottom: 0.2rem;
}

.announcement-bar__link .announcement-bar__message {
  padding: 0;
}

.announcement-bar__message {
   padding: 1rem 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    text-align: left;
}
/* section-header */
.section-header.shopify-section-group-header-group {
  z-index: 3;
}


.shopify-section-header-sticky {
  position: sticky;
  top: 0;
}

.shopify-section-header-hidden {
  top: calc(-1 * var(--header-height)) !important;
}

.shopify-section-header-hidden.menu-open {
  top: 0;
}

.section-header.animate {
  transition: top 0.15s ease-out;
}

.shopify-section-group-header-group {
  z-index: 4;
}

.section-header ~ .shopify-section-group-header-group {
  z-index: initial;
}

/* Main Header Layout */
.header-wrapper {
  display: block;
  position: relative;
  background-color: rgb(var(--color-background));
}

.header-wrapper--border-bottom {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.header {
  display: grid;
  grid-template-areas: "left-icons heading icons";
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

@media screen and (max-width: 749px) {
  .header--has-app {
    grid-template-columns: auto 1fr auto;
  }
}

@media screen and (min-width: 990px) {
  .header {
    grid-template-columns: 1fr auto 1fr;
  }

  .header--top-left,
  .header--middle-left:not(.header--has-menu) {
    grid-template-areas:
      "heading icons"
      "navigation navigation";
    grid-template-columns: 1fr auto;
  }

  .header--top-left.drawer-menu,
  .header--middle-left.drawer-menu {
    grid-template-areas: "navigation heading icons";
    grid-template-columns: auto 1fr auto;
    column-gap: 1rem;
  }

  .header--middle-left {
    grid-template-areas: "heading navigation icons";
    grid-template-columns: auto auto auto;
    column-gap: 2rem;
  }

  .header--middle-center:not(.drawer-menu) {
    grid-template-areas: "navigation heading icons";
    grid-template-columns: 1fr auto 1fr;
    column-gap: 2rem;
  }

  .header--middle-center a.header__heading-link {
    text-align: center;
  }

  .header--top-center {
    grid-template-areas:
      "left-icons heading icons"
      "navigation navigation navigation";
  }

  .header--top-center.drawer-menu {
    grid-template-areas: "left-icons heading icons";
    grid-template-columns: 1fr auto 1fr;
  }

  .header:not(.header--middle-left, .header--middle-center)
    .header__inline-menu {
    margin-top: 1.05rem;
  }
}

.header *[tabindex="-1"]:focus {
  outline: none;
}

.header__heading {
  margin: 0;
  line-height: 0;
}

.header > .header__heading-link {
  line-height: 0;
}

.header__heading,
.header__heading-link {
  grid-area: heading;
  justify-self: center;
}

.header__heading-link {
  display: inline-block;
  padding: .75rem 0 .75rem 1.75rem;
  text-decoration: none;
  word-break: break-word;
}

.header__heading-link:hover .h2 {
  color: rgb(var(--color-foreground));
}

.header__heading-link .h2 {
  line-height: 1;
  color: rgba(var(--color-foreground), 0.75);
}

.header__heading-logo {
  height: auto;
  max-width: 100%;
}

.header__heading-logo-wrapper {
  width: 100%;
  display: inline-block;
  transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);
}

@media screen and (max-width: 989px) {
  .header__heading,
  .header__heading-link {
    text-align: center;
  }

  .header--mobile-left .header__heading,
  .header--mobile-left .header__heading-link {
    text-align: left;
    justify-self: start;
  }

  .header--mobile-left {
    grid-template-columns: auto 2fr 1fr;
  }
}

@media screen and (min-width: 990px) {
  .header--middle-left .header__heading-link,
  .header--top-left .header__heading-link {
    margin-left: -0.75rem;
  }

  .header__heading,
  .header__heading-link {
    justify-self: start;
  }

  .header--middle-center .header__heading-link,
  .header--middle-center .header__heading {
    justify-self: center;
    text-align: center;
  }

  .header--top-center .header__heading-link,
  .header--top-center .header__heading {
    justify-self: center;
    text-align: center;
  }
}

/* Header icons */
.header__icons {
  display: flex;
  grid-area: icons;
  justify-self: end;
}

.header__icons .shopify-app-block {
  max-width: 4.4rem;
  max-height: 4.4rem;
  overflow: hidden;
}

.header__icon:not(.header__icon--summary),
.header__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icon {
  color: rgb(var(--color-foreground));
}

.header__icon span {
  height: 100%;
}

.header__icon::after {
  content: none;
}

.header__icon:hover .icon,
.modal__close-button:hover .icon {
  transform: scale(1.07);
}

.header__icon .icon {
  height: 3rem;
  width: 3rem;
  fill: none;
  vertical-align: middle;
}

.header__icon,
.header__icon--cart .icon {
  height: 3rem;
  width: 3rem;
  padding: 0;
}

.header__icon--cart {
  position: relative;
  margin-right: -1.2rem;
}

.header__icon--menu[aria-expanded="true"]::before {
  content: "";
  top: 100%;
  left: 0;
  height: calc(
    var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%))
  );
  width: 100%;
  display: block;
  position: absolute;
  background: rgba(var(--color-foreground), 0.5);
}

/* Search */
menu-drawer + .header__search {
  display: none;
}

.header > .header__search {
  grid-area: left-icons;
  justify-self: start;
}

.header--top-center.drawer-menu > .header__search {
  margin-left: 3.2rem;
}

.header--top-center header-drawer {
  grid-area: left-icons;
}

.header:not(.header--has-menu) * > .header__search {
  display: none;
}

.header__search {
  display: inline-flex;
  line-height: 0;
}

.header--top-center > .header__search {
  display: none;
}

.header--top-center * > .header__search {
  display: inline-flex;
}

@media screen and (min-width: 990px) {
  .header:not(.header--top-center) * > .header__search,
  .header--top-center > .header__search {
    display: inline-flex;
  }

  .header:not(.header--top-center) > .header__search,
  .header--top-center * > .header__search {
    display: none;
  }
}

.no-js .predictive-search {
  display: none;
}

details[open] > .search-modal {
  opacity: 1;
  animation: animateMenuOpen var(--duration-default) ease;
}

details[open] .modal-overlay {
  display: block;
}

details[open] .modal-overlay::after {
  position: absolute;
  content: "";
  background-color: rgb(var(--color-foreground), 0.5);
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
}

.no-js details[open] > .header__icon--search {
  top: 1rem;
  right: 0.5rem;
}

.search-modal {
  opacity: 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  min-height: calc(
    100% + var(--inputs-margin-offset) + (2 * var(--inputs-border-width))
  );
  height: 100%;
}

.search-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 5rem 0 1rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  position: relative;
}

.search-modal__content-bottom {
  bottom: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__content-top {
  top: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__form {
  width: 100%;
}

.search-modal__close-button {
  position: absolute;
  right: 0.3rem;
}

@media screen and (min-width: 750px) {
  .search-modal__close-button {
    right: 1rem;
  }

  .search-modal__content {
    padding: 0 6rem;
  }
}

@media screen and (min-width: 990px) {
  .search-modal__form {
    max-width: 74.2rem;
  }

  .search-modal__close-button {
    position: initial;
    margin-left: 0.5rem;
  }
}

/* Header menu drawer */
.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 150ms ease, opacity 150ms ease;
}

details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close {
  visibility: hidden;
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

.js details > .header__submenu {
  opacity: 0;
  transform: translateY(-1.5rem);
}

details[open] > .header__submenu {
  animation: animateMenuOpen var(--duration-default) ease;
  animation-fill-mode: forwards;
  z-index: 1;
}

@media (prefers-reduced-motion) {
  details[open] > .header__submenu {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header menu */
.header__inline-menu {
  margin-left: -1.2rem;
  grid-area: navigation;
  display: none;
}

.header--top-center .header__inline-menu,
.header--top-center .header__heading-link {
  margin-left: 0;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
  }

  .header--top-center .header__inline-menu {
    justify-self: center;
  }

  .header--top-center .header__inline-menu > .list-menu--inline {
    justify-content: center;
  }

  .header--middle-left .header__inline-menu {
    margin-left: 0;
    text-align: center;
  }
}

.header__menu {
  padding: 0 1rem;
}

.header__menu-item {
  padding: 1.2rem;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
}

.header__menu-item:hover {
  color: rgb(var(--color-foreground));
}

.header__menu-item span {
  transition: text-decoration var(--duration-short) ease;
}

.header__menu-item:hover span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

details[open] > .header__menu-item {
  text-decoration: underline;
}

details[open]:hover > .header__menu-item {
  text-decoration-thickness: 0.2rem;
}

details[open] > .header__menu-item .icon-caret {
  transform: rotate(180deg);
}

.header__active-menu-item {
  transition: text-decoration-thickness var(--duration-short) ease;
  color: rgb(var(--color-foreground));
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.header__menu-item:hover .header__active-menu-item {
  text-decoration-thickness: 0.2rem;
}

.header__submenu {
  transition: opacity var(--duration-default) ease,
    transform var(--duration-default) ease;
}

.global-settings-popup,
.header__submenu.global-settings-popup {
  border-radius: var(--popup-corner-radius);
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-style: solid;
  border-width: var(--popup-border-width);
  box-shadow: var(--popup-shadow-horizontal-offset)
    var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  z-index: -1;
}

.header__submenu.list-menu {
  padding: 2.4rem 0;
}

.header__submenu .header__submenu {
  background-color: rgba(var(--color-foreground), 0.03);
  padding: 0.5rem 0;
  margin: 0.5rem 0;
}

.header__submenu .header__menu-item:after {
  right: 2rem;
}

.header__submenu .header__menu-item {
  justify-content: space-between;
  padding: 0.8rem 2.4rem;
}

.header__submenu .header__submenu .header__menu-item {
  padding-left: 3.4rem;
}

.header__menu-item .icon-caret {
  right: 0.8rem;
}

.header__submenu .icon-caret {
  flex-shrink: 0;
  margin-left: 1rem;
  position: static;
}

header-menu > details,
details-disclosure > details {
  position: relative;
}

@keyframes animateMenuOpen {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.overflow-hidden-mobile,
.overflow-hidden-tablet,
.overflow-hidden-desktop {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}

.badge {
  border: 1px solid transparent;
  border-radius: var(--badge-corner-radius);
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 0.5rem 1.3rem 0.6rem 1.3rem;
  text-align: center;
  background-color: rgb(var(--color-badge-background));
  border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
  color: rgb(var(--color-foreground));
  word-break: break-word;
}

.gradient {
  background: rgb(var(--color-background));
  background: var(--gradient-background);
  background-attachment: fixed;
}

@media screen and (forced-colors: active) {
  .icon {
    color: CanvasText;
    fill: CanvasText !important;
  }

  .icon-close-small path {
    stroke: CanvasText;
  }
}

.ratio {
  display: flex;
  position: relative;
  align-items: stretch;
}

.ratio::before {
  content: "";
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent);
}

.content-container {
  border-radius: var(--text-boxes-radius);
  border: var(--text-boxes-border-width) solid
    rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  position: relative;
}

.content-container:after {
  content: "";
  position: absolute;
  top: calc(var(--text-boxes-border-width) * -1);
  right: calc(var(--text-boxes-border-width) * -1);
  bottom: calc(var(--text-boxes-border-width) * -1);
  left: calc(var(--text-boxes-border-width) * -1);
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset)
    var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius)
    rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  z-index: -1;
}

.content-container--full-width:after {
  left: 0;
  right: 0;
  border-radius: 0;
}

@media screen and (max-width: 749px) {
  .content-container--full-width-mobile {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .content-container--full-width-mobile:after {
    display: none;
  }
}

.global-media-settings {
  position: relative;
  border: var(--media-border-width) solid
    rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  overflow: visible !important;
  background-color: rgb(var(--color-background));
}

.global-media-settings:after {
  content: "";
  position: absolute;
  top: calc(var(--media-border-width) * -1);
  right: calc(var(--media-border-width) * -1);
  bottom: calc(var(--media-border-width) * -1);
  left: calc(var(--media-border-width) * -1);
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset)
    var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  z-index: -1;
  pointer-events: none;
}

.global-media-settings--no-shadow {
  overflow: hidden !important;
}

.global-media-settings--no-shadow:after {
  content: none;
}

.global-media-settings img,
.global-media-settings iframe,
.global-media-settings model-viewer,
.global-media-settings video {
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

.content-container--full-width,
.global-media-settings--full-width,
.global-media-settings--full-width img,
.global-media-settings--full-width video,
.global-media-settings--full-width iframe {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .grid {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid__item {
    padding-left: var(--grid-mobile-horizontal-spacing);
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }

  @media screen and (min-width: 750px) {
    .grid {
      margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
    }

    .grid__item {
      padding-left: var(--grid-desktop-horizontal-spacing);
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
  }

  .grid--gapless .grid__item {
    padding-left: 0;
    padding-bottom: 0;
  }

  @media screen and (min-width: 749px) {
   
    .grid--peek .grid__item {
      padding-left: var(--grid-mobile-horizontal-spacing);
    }
  }

  .product-grid .grid__item {
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }

  @media screen and (min-width: 750px) {
    .product-grid .grid__item {
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
  }
}

.font-body-bold {
  font-weight: var(--font-body-weight-bold);
}

/* outline and border styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .button,
  .shopify-challenge__button,
  .customer button {
    border: transparent solid 1px;
  }

  .button:focus-visible,
  .button:focus,
  .button.focused,
  .shopify-payment-button__button--unbranded:focus-visible,
  .shopify-payment-button [role="button"]:focus-visible,
  .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button [role="button"]:focus {
    outline: solid transparent 1px;
  }

  .field__input:focus,
  .select__select:focus,
  .customer .field input:focus,
  .customer select:focus,
  .localization-form__select:focus.localization-form__select:after {
    outline: transparent solid 1px;
  }

  .localization-form__select:focus {
    outline: transparent solid 1px;
  }
}

.rte:after {
  clear: both;
  content: "";
  display: block;
}

.rte > p:first-child {
  margin-top: 0;
}

.rte > p:last-child {
  margin-bottom: 0;
}

.rte table {
  table-layout: fixed;
}

@media screen and (min-width: 750px) {
  .rte table td {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.rte img {
  height: auto;
  max-width: 100%;
  border: var(--media-border-width) solid
    rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset)
    var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  margin-bottom: var(--media-shadow-vertical-offset);
}


.rte ul,
.rte ol {
  list-style-position: inside;
  padding-left: 0rem;
}

.rte ul ul,
.rte ol ol {
  list-style-position: inside;
  padding-left: 2rem;
}

.rte li {
  list-style: inherit;
}

.rte li:last-child {
  margin-bottom: 0;
}

.rte a {
  color: rgba(var(--color-link), var(--alpha-link));
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.rte a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.rte blockquote {
  display: inline-flex;
}

.rte blockquote > * {
  margin: -0.5rem 0 -0.5rem 0;
}

/* Ambient animation */

@media (prefers-reduced-motion: no-preference) {
  .animate--ambient > img,
  .animate--ambient > svg {
    animation: animateAmbient 30s linear infinite;
  }

  @keyframes animateAmbient {
    0% {
      transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
    }
    100% {
      transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
    }
  }
}

.image-with-text__media {
  border: none;
}
.banner__buttons .button--primary {
  color: #fff;
  box-shadow: 3px 4px 1px #f9ff62;
  padding: 0px 50px 2px;
  line-height: 0;
}
.icon-block-f {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: stretch;
  justify-content: space-between;
  text-align: left;
  margin: 20px 0 0px 0;
}
.icon-block-f > div {
  flex: 33%;
  padding: 0 20px 0px 0px;
  zoom: 0.7;
  margin-bottom: 30px;
}
#ImageWithText--template--15990287368249__cb8da364-6399-4b0e-9b86-633e6d037c33 .icon-block-f > div {
  flex: 33%;
  padding: 0 20px 0px 0px;
  zoom: 1;
  margin-bottom: 30px;
}
.icon-block-f > div img {
  border: none;
  display: block;
  width: 120px;
  margin-left: 0px;
}
#ImageWithText--template--15990287368249__cb8da364-6399-4b0e-9b86-633e6d037c33 .icon-block-f > div img {
  border: none;
  display: block;
  width: auto;
  margin-left: 0px;
}
.icon-block-f > div span {
  color: #000;
}
#ImageWithText--template--15990287368249__cb8da364-6399-4b0e-9b86-633e6d037c33 .icon-block-f>div span {
    color: #000;
    font-size: 14px;
    text-shadow: 0 0 black;}
#shopify-section-template--15990287368249__cb8da364-6399-4b0e-9b86-633e6d037c33 .image-with-text__media img{
    /* object-fit: none !important;
    max-width: 680px; */
    margin: 0 auto;
}
.wctssc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.wctssc .c-text {
  flex: 0 0 30%;
}
.wctssc .c-icons {
  flex: 0 0 70%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: stretch;
  justify-content: space-between;
  text-align: center;
  padding-left: 30px;
}
.wctssc .c-icons > div {
  flex: 0 0 20%;
  padding: 0 10px;
}
.wctssc .c-icons > div img {
  border: none;
  display: block;
  width: 100%;
  max-width: 105px;
  margin: 0 auto;
}
.wctssc .c-icons > div span {
  color: white;
  zoom: 0.7;
}
div.color-accent-2:has(.steribrite) {
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/Steribrite-bg.jpg?v=1683895996");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
div.color-accent-2:has(.steribrite.cb) {
  background-image: url("/cdn/shop/files/Website-0sss1_02.jpg?v=1697637561");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
div.color-accent-2:has(.steribrite.ct) {
  background-image: none;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.steribrite {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.steribrite .c-text-icons {
  flex: 0 0 60%;
}
.steribrite.ct .c-text-icons {
    flex: 100%
}
.steribrite .c-text-icons .cwrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.steribrite .c-text-icons .cwrapper > div {
  flex: 0 0 30%;
}
.steribrite h2 span {
  max-width: 510px;
  display: block;
}
.yellow.button {
  border-radius: 0;
  margin-top: 15px;
  background-color: #f9ff62 !important;
  color: #000 !important;
  text-decoration: underline;
  border: none !important;
  padding: 10px;
  min-height: auto;
}
.yellow.button:before,
.yellow.button:after {
  border-radius: 0 !important;

  border: none !important;
}
.steribrite .c-text-icons .cwrapper > div .lwrapper {
  position: relative;
}
.steribrite .c-text-icons .cwrapper > div:not(:last-child) .lwrapper:before {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  font-size: 30px;
  font-family: 'Poppins';
}
.steribrite .c-text-icons .cwrapper > div .lwrapper span {
  font-size: 30px;
    color: #fff;
    height: 0;
    line-height: 0;
    text-align: left;
    display: block;
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
.flosser .steribrite.cb .c-text-icons .cwrapper > div .lwrapper span {
    font-size: 20px;
      margin-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
}
.flosser .steribrite.ct .c-text-icons .cwrapper > div .lwrapper span {
    font-size: 20px;
      margin-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
  position: relative;
  left: 25%;
}
.steribrite .c-text-icons .cwrapper > div lottie-player {
  filter: invert(0);
  width: 100%;
  max-width: 150px;
}
.lwrapper.third lottie-player {
    filter: invert(1) !important;
}
.steribrite .c-text-icons .cwrapper > div p {
  color: white;
  zoom: 0.7;
  margin-top: 0;
}
.steribrite.cb .c-text-icons .cwrapper > div p {
  color: white;
  zoom: 1;
  margin-top: 0;
  font-size: 14px;
}
.steribrite .c-text-icons .cwrapper p span {
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 white;
}
.steribrite .c-video {
  flex: 0 0 35%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.videowrapper {
  box-sizing: border-box;
  resize: horizontal;
  max-width: 400px;
  width: 100%;
}
.videoplayer {
  width: 100%;
  padding-top: 100%;

  background-color: #306;
  border-radius: 20px;
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/play-ybutton.png?v=1683917009");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
}
.videoplayer2 {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  display: inline-grid;
  position: relative;
}
body:not(.tablets) .multicolumn-card__info {
  padding-left: 0 !important;
}
#shopify-section-template--15870216568889__a98de939-b1dc-4cc1-8fd4-2edc88888bda
  > div,
#shopify-section-template--15870216339513__b7a16bb0-1585-42c7-8fe9-e4de0746e42e
  > div {
  background: #98d2cf !important;
}
#shopify-section-template--15870216568889__a98de939-b1dc-4cc1-8fd4-2edc88888bda
  h2.title.inline-richtext.h1,
#shopify-section-template--15870216339513__b7a16bb0-1585-42c7-8fe9-e4de0746e42e
  h2.title.inline-richtext.h1 {
  color: black;
  margin-bottom: 2rem;
}
.tp-text em {
  font-size: 60px;
  padding: 0;
  position: relative;
  top: 15px;
  font-family: monospace;
  font-weight: bold;
  line-height: 45px;
}

img.insta-tik {
  max-width: 30px;
    display: inline;
}
h2.insta-heading {
  text-align: center;
}
.insta-tikwrapper {
    gap: 20px 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.insta-tikwrapper a {
  display: flex;
  gap: 5px;
  text-decoration: none;
}

/* .videowrapper + p {
  color: #000 !important;
} */
.videoplayer2 img {
  margin: 0;
  border: none;
  position: relative;
}
.videoplayer2 .playbtn:before {
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/play-ybutton.png?v=1683917009");
  position: absolute;
  background-size: cover;
  content: "";
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
}
.table-container {
  display: block;
  margin: 2em auto;
  width: 100%;
  zoom: 0.7;
}
.table-container span.tcross {
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/cross.png?v=1684058166");
  width: 28px;
  height: 28px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  display: block;
}

.table-container span.tcircle {
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/tick.png?v=1684057782");
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  display: block;
}
.table-container span.tcirclet {
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/tick-plain.png?v=1684058165");
  width: 28px;
  height: 28px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  display: block;
}
.table-container .flag-icon {
  margin-right: 0.1em;
}

.table-container .flex-table {
  display: flex;
  flex-flow: row wrap;
  transition: 0.5s;
  margin: 0px 0;
  align-items: stretch;
}
.table-container .flex-table:first-of-type {
  padding: 0;

  font-size: 14px;
  color: #000;
  text-shadow: 0 0 #000;
}

.table-container .flex-table.row .flex-row.first {
  padding-top: 10px;
  padding-bottom: 10px;
  
}
.table-container .flex-table:hover {
  background: #f6f6f6;
  transition: 500ms;
  text-shadow: 0 0 black;
}

.table-container .flex-row {
  width: calc(70% / 4);
  text-align: center;
  padding: 1.1em 1.2em;
  position: relative;
  align-items: center;
  display: flex;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.table-container .flex-row.first {
  width: calc(30%);
  text-align: left;

}

.table-container .column .flex-row:hover {
  background: #f5f5f5;
  transition: 500ms;
}
.flex-row > div {
  display: none;
}
@media all and (max-width: 749px) {
  .table-container .flex-row {
    width: calc(60% / 4);
  }
  .table-container .flex-row.first {
    width: 40%;
  }

  .table-container .flex-table:first-of-type {
    font-size: 12px;
  }
}
@media all and (max-width: 650px) {
  .table-container {
  
    zoom: 0.8;
}
  .table-container .flex-row {
    width: calc(60% / 4);
  }
  .table-container .flex-row.first {
    width: 40%;
    padding: 0.7em 0 0.7em 1em !important;
  }

  .table-container .flex-table:first-of-type {
    font-size: 12px;
  }

  .table-container .flex-table {
   
    transition: 0.5s;
   
  }
}
@media all and (max-width: 480px) {
  .price-template .price.price--large {
    flex: 1 1 auto !important;
    /* display: flex !important;
    flex-direction: row !important;
    align-items: center !important; */
    justify-content: space-between;
    flex-wrap: wrap !important;
}
  .table-container .flex-table.header .flex-row:nth-child(2) {
 
    font-size: 13px !important;
}
  img.dsds {
   
  
max-width: 170px !important;
    margin-left: 0 !important;
margin: 5px 0 5px 0 !important
}
 .product .price--sold-out .price__badge-sold-out {
 
    font-size: 14px !important;
    font-weight: 300 !important;
    flex: 0 0 auto !important;
    padding: 0px 0 0 5px !important;
}
  .table-container .flex-row {
    width: calc(60% / 4);
  }
  .table-container .flex-row.first {
    width: 40%;

    font-size: 12px;
  }
  .table-container .flex-row {
    padding: 0.5em 0em;
  }
  .table-container .flex-table:first-of-type {
    font-size: 10px;
  }

  .table-container span.tcross {
    width: 22px;
    height: 22px;
  }
  .table-container span.tcircle {
    width: 22px;
    height: 22px;
  }
  .table-container span.tcirclet {
    width: 22px;
    height: 22px;
  }
}
@media all and (max-width: 400px) {
  .table-container .flex-row {
    width: calc(60% / 4);
  }
  .table-container .flex-row.first {
    width: 40%;

    font-size: 12px; 
  }
  .table-container .flex-row {
    padding: 0.5em 0em;
  }
  .table-container .flex-table:first-of-type {
    font-size: 7px;
  }
}
.header__heading-logo-m {
  display: none;
}
@media (max-width: 992px) {
  .table-container .header__heading-logo {
    display: none;
  }
  .header__heading-logo-m {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 35px;
  }
}
.table-container .flex-table.header .flex-row:nth-child(2) {
  border-radius: 25px 25px 0px 0px;
  font-size: 20px;

}
.table-container .flex-table.header .flex-row {
  
  display: block;
    text-align: center;
}
.table-container .flex-table.header .flex-row .header__heading-logo {
   width: auto;
    display: block;
    margin: 0 auto 9px;
    max-height: 85px;
}
.table-container .flex-table.row .flex-row:nth-child(2),
.table-container .flex-table.header .flex-row:nth-child(2) {
  background: #eaf6f5;
}
.table-container .flex-table.row > .flex-row > .flex-row {
  display: none !important;
}
.table-container .flex-table.header .flex-row {
  justify-content: center;
}
.table-container .flex-table.row .flex-row:nth-child(5),
.table-container .flex-table.header .flex-row:nth-child(5) {
  border-right: 1px solid #ddd;
}
.table-container .flex-table.header .flex-row:nth-child(-n + 3) {
  border-left: none !important;
}
.why-choose {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.why-choose .c-table {
  flex: 0 0 60%;
  padding: 0 25px 0 0px;
}
.why-choose .c-review {
  flex: 0 0 40%;
  padding: 0 0px 0 25px;
  color: white;
}
.why-choose .review-wrapper {
  max-width: 350px;
  width: 100%;
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/review-bg.jpg?v=1684077720");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  border-radius: 18px;
  padding: 20px 20px;
}

.why-choose .review-wrapper {
  max-width: 350px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  border-radius: 18px;
  padding: 20px 20px;
}

.why-choose .review-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  border-radius: 18px;
  z-index: 1;
}

.why-choose .review-wrapper > * {
  position: relative;
  z-index: 2; /* Make sure content appears above the overlay */
}

.why-choose .review-wrapper {
  background-image: url(/cdn/shop/files/Sonic_Dental_Pro2484.jpg?v=1739056808);
  background-size: cover;
  background-position: center;
}
.why-choose .review-quote.h2 {
  color: white;
}

.why-choose .review-quote.h2 em.opening {
  font-size: 65px;
  padding: 0;
  position: relative;
  top: 28px;
  line-height: 0;
  font-family: monospace;
}
.why-choose .review-quote.h2 em.closing {
  font-size: 65px;
  padding: 0;
  position: relative;
  top: 55px;
  line-height: 0;
  font-family: monospace;
}
.why-choose .review-quote span {
  width: 180px;
  display: block;
  margin: 40px 0 0 auto;

  font-size: 14px !important;
}
.why-choose .review-quote img {
  display: inline-block;
  width: 25px;
  margin-bottom: -7px;
}
.why-choose p.review-caption {
  font-size: 12px;
}
.why-choose .title-wrapper-with-link p {
  margin: -12px 0 10px 0 !important;
}
.footer-block__details-content.list-unstyled {
 /* display: flex;
    text-align: center;
    margin: 7px auto 0; */
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-start;
}
.footer-block__brand-info .footer__list-social.list-social {
  justify-content: flex-end !important;
}
.list-social__link {
  color: #33245e !important;
}
.footer-block__image-wrapper {
  margin-bottom: 0 !important;
}

.steribrite1 .c-text-icons .cwrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}
.steribrite1 .c-text-icons .cwrapper > div {
  flex: 0 0 20%;
}
.steribrite1 .c-text-icons h2 {
  margin: 0px 0px -15px 0px;
}

.steribrite1 .c-text-icons .cwrapper > div .lwrapper {
  position: relative;
}
.steribrite1 .c-text-icons .cwrapper > div:not(:last-child) .lwrapper:before {
  content: ">";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
 
}
.steribrite1 .c-text-icons .cwrapper > div .lwrapper span {
  font-size: 30px;
  color: #98d2cf;
  height: 0;
  line-height: 0;
  display: block;
  margin-top: 45px;
  position: relative;
  top: -25px;
  text-align: left;
}
.steribrite1 .c-text-icons .cwrapper > div lottie-player {
  filter: invert(1);
  width: 100%;
  max-width: 150px;
}
.steribrite1 .c-text-icons .cwrapper > div h3 {
  color: white;
  zoom: 0.7;
  margin-top: 0;
}
.steribrite1 .c-text-icons .cwrapper p span {
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 white;
}
.steribrite1 .lwrapper img {
  width: calc(100% - 30px);
  max-width: 110px;
  margin: 0 auto;
}
.steribrite1 .lwrapper div {
text-align: center;
  max-width: 130px;
 margin: 0 auto;
}
.steribrite1 .lwrapper + p {
  font-size: 1.4rem;
  padding: 0 15px 0;
}
div.color-accent-1:has(.wctssc) {
  background-color: #000 !important;
}

.wctssc1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.wctssc1 .c-text {
  flex: 0 0 30%;
}
.wctssc1 .c-text h2.title.h0 {
  line-height: 60px;
}
.wctssc1 .c-review {
  flex: 0 0 70%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;

  padding-left: 30px;
}
.wctssc1 .title-wrapper-with-link p {
  margin: 0px 0 10px !important;
}
.wctssc1 .review-quote.h2 em.opening {
  font-size: 75px;
  padding: 0;
  position: relative;
  top: 28px;
  line-height: 0;
  color: #97cbc8;
  font-family: monospace;
  font-weight: bold;
}
.wctssc1 .review-quote.h2 em.closing {
  font-size: 75px;
  padding: 0;
  position: relative;
  top: 55px;
  line-height: 0;
  color: #97cbc8;
  font-family: monospace;
  font-weight: bold;
}
.wctssc1 .review-quote span {
  display: block;
  margin: 40px 0 0 0;

  font-size: 14px !important;
}
.wctssc1 .review-quote img {
  display: inline-block;
  width: 150px;
  margin: 40px 0 20px 25px;
  float: right;
  border-radius: 81px;
}
.wctssc1 p.review-caption {
  font-size: 12px;
}

.is .bg-wrapper {
  background: #f3f3f3;
  border-radius: 35px;
  padding: 50px 70px 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.is .bg-wrapper .c-img-video {
  flex: 0 0 40%;
}
.is .bg-wrapper .c-text {
  flex: 0 0 58%;
}
.is.c .bg-wrapper .c-text {
  flex: 0 0 58%;
  width: 58%;
}
.is .c-img-video .title-wrapper-with-link p {
  margin: -5px 0 10px !important;
}
.is .c-img-video img {
  width: 100%;
  max-width: 400px;
}
.is .c-text .feature-wrapper ul {
  list-style: none;
  padding: 0;
}
.is .c-text .feature-wrapper li img {
  width: 90px;
  margin: 0 20px 0px 0;
}
.is .c-text .feature-wrapper li p {
  font-size: 14px;
}
.is .c-text .feature-wrapper span {
  text-shadow: 0px 0px 1px #fff;
    font-weight: bold;
}
.is .c-text .feature-wrapper li {
  display: grid;
  grid-template-columns: 0fr 1fr;
  margin-bottom: 15px;
}
.is .videoplayer2-is img {
  margin: 0;
  border: none;
  position: relative;
  max-width: 100%;
  width: 100%;
}
.is .videowrapper-is {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.is .videoplayer2-is {
  border-radius: 30px;
  overflow: hidden;
  display: inline-grid;
  position: relative;
  max-width: 400px;
  width: 100%;
  border: 1px solid #b6d8d6;
}
.is .videoplayer2-is .playbtn:before {
  background-image: url("https://cdn.shopify.com/s/files/1/0755/9351/5287/files/play-ybutton.png?v=1683917009");
  position: absolute;
  background-size: cover;
  content: "";
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
}
.is .bg-wrapper .c-textu {
  flex: 0 0 58%;
  display: flex;
  column-gap: 20px;
}
.is .bg-wrapper .c-textu .videowrapper-is {
  flex: 1 1 50%;
}
.is .bg-wrapper .c-textu span {
  text-shadow: 0 0 black;
  margin: 0px 0 10px 0px;
  display: block;
  font-size: 1.5rem;
}
.is .bg-wrapper .c-textu .videowrapper-is ul {
  padding-left: 20px;
  font-size: 13px;
  list-style: auto;
}
.is .c-textu .videowrapper-is {
  text-align: left;
}
.table-container2 {
  display: block;
  margin: 0em auto 2em;
  width: 100%;
  zoom: 0.7;
  position: relative;
}

.table-container2 img {
  position: absolute;
  right: 0px;
  width: 231px !important;
  top: -135px;
  z-index: 1;
  display: initial !important;
}
.table-container2 .flex-table {
  display: flex;
  flex-flow: row wrap;
  transition: 0.5s;
  margin: 0px 0;
  align-items: stretch;
}
.table-container2 .flex-table:first-of-type {
  padding: 0;
  font-size: 16px;
  color: #000;
}

.table-container2 .flex-table:hover {
  background: #fff;
  transition: 500ms;
}

.table-container2 .flex-row {
  width: calc(45% / 3);
  padding: 0.6em 0.8em 0.6em 0;
  position: relative;
  align-items: center;
  display: flex;
  border-bottom: 1px solid #b6d8d6;
}
.table-container2 .flex-row.first {
  width: calc(55%) !important;
  text-align: left;
  text-shadow: 0 0 black;
}

.table-container2 .column .flex-row:hover {
  background: #fff;
  transition: 500ms;
}
.table-container2 .flex-table.header .flex-row {
  width: 45%;
  text-shadow: 0 0 black;
  border-bottom: none;
}
p.small {
  font-size: 13px;
}
p.smallb {
  margin: 0;
}
.video {
  width: 100%;
}
.wrapper {
  display: inherit;
  position: relative;
}
.steribrite h2 {
  flex: 1 0 100%;
}
.image-with-text .grid {
  align-items: center;
}
.icon-block-f.b {
   
    text-align: center;
    flex-wrap: wrap;
  margin-top: 20px;
}
.icon-block-d.b.c {
    text-align: left;
 
    margin: 5px auto 0;
  max-width: 1260px;
  width: 100%;
}
.hicon-wrapper.page-width {
  display: flex;
    max-height: 52px;
    overflow: hidden;
  border-bottom: 0.1rem solid rgba(var(--color-foreground),.08);
}
.icon-block-f.b>div{
    flex: 20%;
    padding: 0;
    zoom: .8;
padding: 0 15px;
}
.icon-block-d.b.c div.sd {
   width:33%;
    padding: 0;
 display: inline-block;
padding: 0 15px;
  margin: 0;
  text-align: center;
  position: relative;
}
.icon-block-d.b.c  div.sd:nth-child(2)::before {
    content: '';
    border-left: 2px solid #ccc;
    position: absolute;
    height: 50%;
    left: 0;
    top: 25%;
}
.icon-block-d.b.c div.sd:nth-child(2)::after {
    content: '';
    border-left: 2px solid #ccc;
    position: absolute;
    height: 50%;
    right: 0;
    top: 25%;
}
@media screen and (max-width: 749px) {
  .icon-block-d.b.c div.sd {
   width:100%;
    
}
  .icon-block-d.b.c  div.sd:nth-child(2)::before,.icon-block-d.b.c div.sd:nth-child(2)::after{
    content: none;
  }
}
.announcement-bar__message li:last-child{
  text-align: right;
    float: right;
    display: inline-flex;
    /* margin-top: -4px; */
    align-items: center;
}
.announcement-bar__message li:last-child svg{width: 20px;
    margin-right: 7px;}
.icon-block-d.b.c div.item img {
    max-width: 48px;
     margin: 0;
    width: 100%;
  display: inline-block;
}
.icon-block-d.b.c h3 {
  margin: 0;
  text-shadow: 0 0 black;
}

.icon-block-f.b>div img {
    max-width: 90px;
    margin: 0 auto 10px;
    width: 100%;
}


.icon-block-d.b.c div.sd>div div {
   display: inline-block;
  margin-left: 12px;
}
.icon-block-d.b.c div.sd>div {
   text-align: left;
    display: inline-flex;
    margin: 0 auto;
    align-items: self-start;
  zoom: 0.8
}
header .hhidden, footer .licon,header .icon.icon-caret,.menu-drawer__localization.header__localization{
  display: none;
}
header .header__icons--localization .localization-form__select {
    padding: 0 1.2rem 0 1.2rem !important;
 
}
img.licon {
    max-width: 23px;
    margin-right: -2px;
    margin-left: auto;
    margin-top: 1px;
}

details-modal.header__search {
    display: none !important;
}
a.tile__image-toggler {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: none;
    right: 15px;
    top: 19px;
    min-height: unset;
    padding: 0;
    z-index: 1;
    cursor: help;
}
a.tile__image-toggler .icon {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translate(-50%,-50%);
    margin: 0;
    
}
a.tile__image-toggler .icon:not(.icon--active) {
    opacity: 0;
    visibility: hidden;

}
.flex-container a.no-border {
    display: none;

}
.rc-widget{
    margin-bottom: 15px;
}
.rc-selling-plans-dropdown{
    
    position: relative;
}
.rc-selling-plans-dropdown__select {
 -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position:relative
}
.rc-selling-plans-dropdown:after {
    content: "<>";
    font: 17px Poppins;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 11px;
    bottom: 7px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    position: absolute;
    pointer-events: none;
}
.rc-selling-plans-dropdown__select {
   
    background: transparent;
}
span.rc-radio__subscription {
    width: 90px;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
  font-size: 13.5px;
}
.rc-radio {
  
    align-items: flex-start !important;
   
}
.rc-radio__price,.rc-subscription-details{display: none !important}
.rc-radio .rc-radio__input{
    margin-top: 6px !important;
 
}

.onetime-radio .rc-radio__label{width: 132px;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
                               font-size: 13.5px;}
span.onetmsg2, span.onetmsg {
    display: block;
    font-size: 11px;
    position: relative;
    line-height: 15px;
    padding: 0px 0 5px 9px;
    margin-top: -3px;
}
.tablets .multicolumn-list.grid {
    justify-content: center;
}

div#shopify-block-29108d03-79ff-46f7-8aec-4cb620124187 {
    padding-top: 20px;
}


.dsct {
margin: 0 0 0 -2px!important;
    background: #411270;
    border-radius: 30px 0 0 30px;
    color: #fff;
    width: 185px;
    display: block;
    text-indent: 5px;
    padding: 4px 0px 5px 12px;
    position: relative;
    height: 32px;
}
.dsct:after {
  width: 0;
  height: 0;
  border: 16px solid transparent;
  position: absolute;
  content: "";
  border-top-color: #411270;
  right: -20px;
  top: 0px;
  border-left-color: #411270;
}
.dsct:before {
    width: 0;
    height: 0;
    border: 16px solid transparent;
    position: absolute;
    content: "";
    border-bottom-color: #411270;
    right: -19px;
    top: 0px;
}
.shopify-app-block {
  margin-bottom: 0 !important;
}
.multicolumn.color-background-2.gradient.background-none .multicolumn-card__image-wrapper--full-width {
   max-width: 130px;
    margin: 0 auto;
  background-color: #f3f3f3;
    position: relative;
}
.background-none .dfty+.multicolumn-card__info {
    padding-top: 2.5rem;
}
.multicolumn.color-background-2.gradient.background-none .dfty{
position: relative;
   
   overflow: visible;}
.multicolumn.color-background-2.gradient.background-none li:not(:last-child) .dfty:before {
       content: "";
    background: url(/cdn/shop/files/Sonic_TabletPage_03.png?v=1672654515);
    width: 91px;
    height: 13px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 91px;
  top: 50%;
    transform: translate(0%,-50%);
    right: -19%;
}
.multicolumn.color-background-2.gradient.background-none .multicolumn-card__info h3{
    font-size: 16px;

}
.multicolumn.color-background-2.gradient.background-none .multicolumn-card.content-container{

  padding-top: 30px;
}
.product__description{
font-size: 1.4rem;
}
img.dsds {
  display:none;
    width: 100%;
    border-radius: 13px;
    max-width: 200px;
  margin-left: auto;
}
.tablets .multicolumn .button {
    border-radius: 0;
  
    background-color: #f9ff62!important;
    color: #000!important;
    text-decoration: underline;
    border: none!important;
    padding: 10px;
    min-height: auto;
}
 em.variant-name {
  
    font-style: inherit;
    font-size: 19px;
    display: block;
    margin: 10px 0 0px;
}
.owl-theme .owl-nav {
    
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    margin-bottom: -20px !important;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font-family: 'Poppins'!important;
    font-size: 34px !important;
    line-height: 15px !important;
    overflow: hidden !important;
}
@media (max-width: 989px) {
.steribrite1 .lwrapper + p {
    font-size: 1.3rem;
    padding: 0 10px;
} 
 .steribrite1 .title-wrapper--no-top-margin {
    margin-top: 0;
    text-align: center;
}
  .steribrite {
    text-align: center;
  }
  .steribrite h2 span {
    max-width: 100%;
  }
  .steribrite .c-text-icons .cwrapper > div lottie-player {
    margin: 0 auto;
  }
  .steribrite .c-text-icons {
    order: 2;
  }
  .steribrite > div {
    flex: 1 0 100% !important;
    padding: 25px 0 0px 0px;
  }
  .wctssc .c-text {
    flex: 0 0 100%;
    text-align: center;
  }
  .wctssc .c-icons {
    flex: 0 0 100%;
    padding-left: 0px;
  }
  .multicolumn-card__info .rte {
    max-width: 400px;
    margin: 0 auto;
  }
  .multicolumn-card__info .rte .videowrapper + p {
    margin-top: -25px;
  }
  .title-wrapper-with-link {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .why-choose .c-table {
    flex: 0 0 100%;
    padding: 0 0px 0 0px;
  }
  .why-choose .c-review {
    flex: 0 0 100%;
    padding: 0 0px 0 0px;
    color: white;
  }
  .why-choose .review-wrapper {
    max-width: 400px;
    margin: 30px auto 0;
  }
  .is .bg-wrapper{
        padding: 50px 30px 40px;
  }
 .wctssc1 .title-wrapper-with-link,.is .bg-wrapper .title-wrapper-with-link{
   text-align: left;
  align-items: flex-start;
}
    .multicolumn.color-background-2.gradient.background-none li:nth-child(even) .dfty:before {
     display:none;
}
.multicolumn.color-background-2.gradient.background-none li:not(:last-child) .dfty:before {
  
    right: -50px;
}

}
@media (max-width: 749px) {
  .banner__media.media > img {

    object-position: 86% 0px;
  
} 

.icon-block-f.b.c {
    display: flex!important;
    margin-top: 40px;
}
  .icon-block-f.b{
    display: none;
  }
  .icon-block-f {
    align-items: stretch;
    justify-content: center;
    text-align: center;
  }
  .icon-block-f > div img {
    margin: 0 auto;
  }
  .icon-block-f > div {
    flex: 33.3%;
    padding: 0 15px 0;
    zoom: 0.8;
    margin-bottom: 25px;
  }
  .wctssc .c-icons {
    justify-content: center;
  }
  .wctssc .c-icons > div {
    flex: 0 0 33.3%;
    padding-bottom: 20px;
  }
  .footer-block__brand-info .footer__list-social.list-social {
    justify-content: center !important;
  }
  .footer-block__details-content.list-unstyled {
    flex-direction: column;
    align-items: center;
  }
  .steribrite .c-text-icons .cwrapper > div {
    flex: 0 0 100%;
    margin-bottom: 25px;
  }
  .steribrite .c-text-icons .cwrapper>div:not(:last-child) .lwrapper:before {
    content: none;
    
}
  .steribrite .c-text-icons .cwrapper p span {
    font-size: 18px;
}
footer .disclosure {
    left: -10px;
}
  .footer-block__details-content .list-menu__item--link {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
}
  .footer__copyright {
    margin-top: 2.5rem !important;
}
  .image-with-text.page-width {
   
    padding: 0 0rem;
}
  .image-with-text__text-item{padding: 0 2rem}
  .steribrite1 .lwrapper+p {
    max-width: 250px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.steribrite1 .c-text-icons .cwrapper {
    
    justify-content: normal;
    align-items: flex-start;
    margin-top: 90px;
}
  .steribrite1 .c-text-icons .cwrapper>div {
    flex: 0 0 50%;
      margin-bottom: 25px;
} 
  
  .steribrite1 .c-text-icons .cwrapper>div .lwrapper:before{content: none !important}
  .steribrite1 .c-text-icons .cwrapper>div:nth-child(odd){margin-top: -50px}
  
   .wctssc1 .title-wrapper-with-link,.is .bg-wrapper .title-wrapper-with-link{
   text-align: center;
  align-items: center;
}
 .wctssc1 > div {
    flex: 1 1 100%!important;
    padding-left: 0px !important;
}
  .is .bg-wrapper > div {
    flex: 1 1 100% !important;
  }
  .is.b .bg-wrapper .c-img-video {
order: 1;  }
    .is.c .bg-wrapper .c-img-video {
margin-bottom: 30px  }
.is .c-img-video img {
  
    margin: 0 auto 20px;
    display: block;
}
  .is .videowrapper-is {
    margin-top: 35px;
}
  .steribrite .c-text-icons .cwrapper>div p {
 
    zoom: .8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
    .steribrite.cb .c-text-icons .cwrapper>div p {
  font-size: 13px;
    zoom: 1;
    max-width: 500px;
  
}
   .tablets .multicolumn-list.grid--2-col-tablet-down .multicolumn-card__info {
    padding: 2.5rem 5px !important;
}
 .tablets .multicolumn .multicolumn-card__info h3 {
    font-size: 13px !important;
}
div.color-accent-2:has(.steribrite) {
    background-image: url('/cdn/shop/files/Homepage-Mobile_03.jpg?v=1684856547');
    background-size: cover;
    
} 
    
}
@media (max-width: 480px) {
  .cvp span {
    font-size: 1.3rem !important;
}
  .product-form__input input[type='radio']+label .slt {
    width: 25px;
    height: 25px;}
  a.tile__image-toggler {
 
    right: 10px  !important;
    top: 21px  !important;
    
}
.table-container2 .flex-row {
  width: calc(55% / 3);}
  .table-container2 .flex-row.first {
    width: 45%!important;

}
  .is .bg-wrapper .c-textu {
  
    flex-wrap: wrap;
}
  .is .bg-wrapper .c-textu .videowrapper-is {
    flex: 1 0 100%;
}
  .is .c-text .feature-wrapper li img {
    width: 75px;
    margin: 0 10px 0 0;
}
  .is .bg-wrapper {
    padding: 50px 15px 40px;
}
  .wctssc .c-icons > div {
    flex: 0 0 50%;
  }
  .icon-block-f > div {
    flex: 50%;
  }
  .icon-block-f.b>div{
    flex: 0 0 50%;
  }
}


.form__footer {
    display: flex;
   text-align: center;
    column-gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}
@media(max-width: 550px){
  .form__footer {
  
    justify-content: center;
    
}
}
.form__footer-text {

    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    font-weight: 500;
    margin-top: 0px;
    text-shadow: 0px 0px 0.08rem #000000;
}
em.sstri {
    font-size: 19px;
    text-transform: uppercase;
    font-style: normal;
    position: relative;
    top: -4px;
}
.header__icon--menu {
    position: initial;
    zoom: 0.7;
    opacity: 0.4;
}
.flosser .accordion__content ul {
    display: inline-block;
    
    padding: 0;
    line-height: normal;
  
}
.flosser .accordion__content ul li {
 list-style: none;
  
}
@media screen and (max-width: 550px) {
  .announcement-bar__message {text-align: center;}
  .announcement-bar__message li:last-child{float:none}
}


.article-template__content li p {
    margin-top: 0;
    display: inline;
}

.article-template__content li {
    margin-bottom: 15px;
}


/*------------------------space-reduce-css------*/

@media screen and (max-width: 550px) {

#shopify-section-template--16171214962745__0ba9325e-6122-4eea-bfb3-d8bfcb04b99b .is .c-img-video img {
    margin: -60px auto -50px;

}



}



/* .AU ul.list-menu.list-menu--inline li:nth-child(3) {
    display: none;
}
.AU ul.menu-drawer__menu li:nth-child(3){
    display: none;
} */


/*---css-logo-brand-css---*/

section#shopify-section-template--16171214798905__multicolumn_EmXBgG .multicolumn-card.content-container .media--adapt {
    padding: 0 !important;
}

section#shopify-section-template--16171214798905__multicolumn_EmXBgG .multicolumn-card.content-container .media--adapt img.multicolumn-card__image {
    position: relative;
    left: 0;
    top: 0;
    transform: inherit!important;
    display: block;
    margin: 0 auto;
    max-width: 215px;
    width: 100%;
}

#shopify-section-template--16188042215481__multicolumn_KYQQHQ .multicolumn-card.content-container .media--adapt {
    padding: 0 !important;
}

#shopify-section-template--16188042215481__multicolumn_KYQQHQ .multicolumn-card.content-container .media--adapt img.multicolumn-card__image {
    position: relative;
    left: 0;
    top: 0;
    transform: inherit!important;
    display: block;
    margin: 0 auto;
    max-width: 215px;
    width: 100%;
}

.multicolumn-list {
    align-items: center;
}

@media only screen and (max-width:989px){

section#shopify-section-template--16188042215481__multicolumn_KYQQHQ ul li.multicolumn-list__item {
    width: 25%;
    max-width: 25%;
}

section#shopify-section-template--16188042215481__multicolumn_KYQQHQ ul {
     gap: 0;
}

}

@media only screen and (max-width:749px){

  section#shopify-section-template--16171214798905__multicolumn_EmXBgG  .page-width {
    padding-top: 0;

}


  section#shopify-section-template--16171214798905__multicolumn_EmXBgG ul {
    gap: 0;
    padding-left: 6px;
    padding-right: 6px;
}
section#shopify-section-template--16171214798905__multicolumn_EmXBgG ul li.grid__item {
    width: 25%;
    padding: 0 5px;
}

section#shopify-section-template--16188042215481__multicolumn_KYQQHQ ul {
    gap: 0;
    padding-left: 6px;
    padding-right: 6px;
}
section#shopify-section-template--16188042215481__multicolumn_KYQQHQ ul li.multicolumn-list__item {
     padding: 0 5px;
}

section#shopify-section-template--16188042215481__multicolumn_KYQQHQ .page-width {
    padding-top: 0 !important;
}
  
}
.product .price__container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.product .price__container .cust-limit {
    font-weight: normal;
    font-size: 16px;
}



