/** Shopify CDN: Minification failed

Line 8891:3 Unexpected ";"
Line 10119:14 Unterminated string token
Line 11051:14 Unterminated string token
Line 11172:14 Unterminated string token
Line 11463:15 Expected identifier but found whitespace
Line 12510:14 Unterminated string token
Line 17758:7 Unexpected "@media"
Line 20773:15 Expected identifier but found whitespace

**/
* {
  box-sizing: border-box;
}

body {
  color: var(--color-foreground);
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
  font-variation-settings: 'slnt' 0;
}

:root {
  --hover-lift-amount: 4px;
  --hover-scale-amount: 1.03;
  --hover-subtle-zoom-amount: 1.015;
  --hover-shadow-color: var(--color-shadow);
  --hover-transition-duration: 0.25s;
  --hover-transition-timing: ease-out;
  --surface-transition-duration: 0.3s;
  --surface-transition-timing: var(--ease-out-quad);
}

html {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) var(--color-background);
  scroll-behavior: smooth;
}

html[scroll-lock] {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

input:hover {
  background-color: var(--color-input-hover-background);
}

/** override ios and firefox defaults */
select {
  background-color: var(--color-background);
  color: currentcolor;
}

.product-card,
.collection-card,
.resource-card,
.predictive-search-results__card--product,
.predictive-search-results__card {
  position: relative;
  transition: transform var(--hover-transition-duration) var(--hover-transition-timing),
    box-shadow var(--hover-transition-duration) var(--hover-transition-timing);
  will-change: transform, box-shadow;
  z-index: var(--layer-flat);
}

.product-card__link {
  position: absolute;
  inset: 0;
}

.product-card__content {
  position: relative;
}

.product-card__content {
  cursor: pointer;
}

.product-card__content slideshow-component {
  --cursor: pointer;
}

.predictive-search-results__card .product-card,
.predictive-search-results__card .collection-card,
.predictive-search-results__card .resource-card {
  transition: none;
  will-change: auto;
}

@media (any-pointer: fine) and (prefers-reduced-motion: no-preference) {
  .card-hover-effect-lift .product-card:hover,
  .card-hover-effect-lift .collection-card:hover,
  .card-hover-effect-lift .resource-card:hover,
  .card-hover-effect-lift .predictive-search-results__card:hover {
    transform: translateY(calc(-1 * var(--hover-lift-amount)));
  }

  .card-hover-effect-lift .header .product-card:hover,
  .card-hover-effect-lift .header .collection-card:hover,
  .card-hover-effect-lift .header .resource-card:hover,
  .card-hover-effect-lift .header-drawer .product-card:hover,
  .card-hover-effect-lift .header-drawer .collection-card:hover,
  .card-hover-effect-lift .header-drawer .resource-card:hover {
    transform: none;
  }

  .card-hover-effect-scale .product-card:hover,
  .card-hover-effect-scale .collection-card:hover,
  .card-hover-effect-scale .resource-card:hover,
  .card-hover-effect-scale .predictive-search-results__card:hover {
    transform: scale(var(--hover-scale-amount));
  }

  .card-hover-effect-scale .header .product-card:hover,
  .card-hover-effect-scale .header .collection-card:hover,
  .card-hover-effect-scale .header .resource-card:hover,
  .card-hover-effect-scale .header-drawer .product-card:hover,
  .card-hover-effect-scale .header-drawer .collection-card:hover,
  .card-hover-effect-scale .header-drawer .resource-card:hover {
    transform: none;
  }

  .card-hover-effect-subtle-zoom .card-gallery,
  .card-hover-effect-subtle-zoom .collection-card__image,
  .card-hover-effect-subtle-zoom .product-card__image,
  .card-hover-effect-subtle-zoom .resource-card__image {
    overflow: hidden;
    transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
  }

  .predictive-search-results__card .card-gallery,
  .predictive-search-results__card .collection-card__image,
  .predictive-search-results__card .product-card__image,
  .predictive-search-results__card .resource-card__image {
    transition: none;
  }

  .card-hover-effect-subtle-zoom .product-card:hover .card-gallery,
  .card-hover-effect-subtle-zoom .collection-card:hover .collection-card__image,
  .card-hover-effect-subtle-zoom .product-card:hover .product-card__image,
  .card-hover-effect-subtle-zoom .resource-card:hover .resource-card__image,
  .card-hover-effect-subtle-zoom .predictive-search-results__card:hover {
    transform: scale(var(--hover-subtle-zoom-amount));
  }

  .card-hover-effect-subtle-zoom .header .product-card:hover .card-gallery,
  .card-hover-effect-subtle-zoom .header .collection-card:hover .collection-card__image,
  .card-hover-effect-subtle-zoom .header .product-card:hover .product-card__image,
  .card-hover-effect-subtle-zoom .header .resource-card:hover .resource-card__image,
  .card-hover-effect-subtle-zoom .header-drawer .product-card:hover .card-gallery,
  .card-hover-effect-subtle-zoom .header-drawer .collection-card:hover .collection-card__image,
  .card-hover-effect-subtle-zoom .header-drawer .product-card:hover .product-card__image,
  .card-hover-effect-subtle-zoom .header-drawer .resource-card:hover .resource-card__image {
    transform: none;
  }

  .predictive-search-results__card .product-card:hover,
  .predictive-search-results__card .collection-card:hover,
  .predictive-search-results__card .resource-card:hover,
  .header .product-card:hover,
  .header .collection-card:hover,
  .header .resource-card:hover,
  .header-drawer .product-card:hover,
  .header-drawer .collection-card:hover,
  .header-drawer .resource-card:hover {
    transform: none;
    box-shadow: none;
  }
}

dialog {
  /* the ::backdrop inherits from the originating element, custom properties must be set on the dialog element */
  --backdrop-color-rgb: var(--color-shadow-rgb);

  background-color: var(--color-background);
  color: var(--color-foreground);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.wrap-text {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

p:empty {
  display: none;
}

:first-child:is(p, h1, h2, h3, h4, h5, h6),
:first-child:empty + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

/* Remove bottom margin from last text item, or previous to last if the last is empty */
:last-child:is(p, h1, h2, h3, h4, h5, h6),
:where(p, h1, h2, h3, h4, h5, h6):nth-child(2):has(+ :last-child:empty) {
  margin-block-end: 0;
}

/* view transitions */
@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }

  /* Keep page interactive while view transitions are running */
  :root {
    view-transition-name: none;
  }

  /* Have the root transition during page navigation */
  html:active-view-transition-type(page-navigation),
  html:active-view-transition-type(product-image-transition) {
    view-transition-name: root-custom;
  }

  ::view-transition {
    pointer-events: none;
  }

  html:active-view-transition-type(page-navigation) main[data-page-transition-enabled='true'] {
    view-transition-name: main-content;
  }

  html:active-view-transition-type(page-navigation) main[data-product-transition='true'][data-template*='product'] {
    view-transition-name: none;
  }

  ::view-transition-old(main-content) {
    animation: var(--view-transition-old-main-content);
  }

  ::view-transition-new(main-content) {
    animation: var(--view-transition-new-main-content);
  }

  html:active-view-transition-type(product-image-transition) {
    [data-view-transition-type='product-image-transition'] {
      view-transition-name: product-image-transition;
    }

    [data-view-transition-type='product-details'] {
      view-transition-name: product-details;
    }
  }

  ::view-transition-group(product-image-transition) {
    z-index: 1;
  }

  ::view-transition-group(product-image-transition),
  ::view-transition-group(product-details) {
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
  }

  ::view-transition-old(product-image-transition),
  ::view-transition-new(product-image-transition) {
    block-size: 100%;
    overflow: hidden;
    object-fit: cover;
    animation-duration: 0.25s;
    animation-timing-function: var(--animation-easing);
  }

  ::view-transition-new(product-details) {
    animation: var(--view-transition-new-main-content);
  }
}

/* Focus */
*:focus-visible {
  outline: var(--focus-outline-width) solid currentcolor;
  outline-offset: var(--focus-outline-offset);
}

@supports not selector(:focus-visible) {
  *:focus {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }
}

.focus-inset {
  outline-offset: calc(var(--focus-outline-width) * -1);
}

/* Layout */
.content-for-layout {
  flex: 1;
}

/* Set up page widths & margins */
.page-width-wide,
.page-width-normal,
.page-width-narrow,
.page-width-content {
  --page-margin: 16px;
}

@media screen and (min-width: 750px) {
  .page-width-wide,
  .page-width-normal,
  .page-width-narrow,
  .page-width-content {
    --page-margin: 40px;
  }
}

.page-width-wide {
  /* NOTE: This results in a page width of 2400px because of how we set up margins with grid */
  --page-content-width: var(--wide-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-normal {
  --page-content-width: var(--normal-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-narrow,
.page-width-content {
  /* NOTE: This results in a page width of 1400px because of how we set up margins with grid */
  --page-content-width: var(--narrow-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-content {
  --page-content-width: var(--normal-content-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

/* Section width full vs. page
   The reason we use a grid to contain the section is to allow for the section to have a
   full-width background image even if the section content is constrained by the page width. Do not try
   to rewrite this to max-width: --page-width; margin: 0 auto;, it doesn't work. */
.section {
  --full-page-grid-central-column-width: min(
    var(--page-width) - var(--page-margin) * 2,
    calc(100% - var(--page-margin) * 2)
  );
  --full-page-grid-margin: minmax(var(--page-margin), 1fr);
  --full-page-grid-with-margins: var(--full-page-grid-margin) var(--full-page-grid-central-column-width)
    var(--full-page-grid-margin);

  /* Utility variable gives the grid's first column width. Provides an offset width for components like carousels */
  --util-page-margin-offset: max(
    var(--page-margin),
    calc((100% - min(var(--page-content-width), calc(100% - (var(--page-margin) * 2)))) / 2)
  );

  /* Offset for full-width sections to account for the page margin,
  used for Marquee — note that --util-page-margin-offset doesn't work here */
  --full-page-margin-inline-offset: calc(((100vw - var(--full-page-grid-central-column-width)) / 2) * -1);

  width: 100%;

  /* This is required to make background images work, which are <img> rendered absolutely */
  position: relative;

  /* Set up the grid */
  display: grid;
  grid-template-columns: var(--full-page-grid-with-margins);
  min-height: var(--section-min-height, 'auto');
}

/* Place all direct children in the center column by default */
.section > * {
  grid-column: 2;
}

/* Make the actual section background transparent, and instead apply it to a separate sibling element to enable stacking with hero shadow  */
.shopify-section:not(.header-section) :is(.section, .cart__summary-container) {
  background: transparent;
}

.shopify-section:not(.header-section):has(.section) {
  position: relative;
}

.shopify-section:not(.header-section) .section-background {
  content: '';
  position: absolute;
  inset: 0;
  z-index: var(--layer-section-background);
}

/* For page-width sections, all content goes in the center column */
.section--page-width > * {
  grid-column: 2;
}

/* For full-width sections, content spans all columns */
.section--full-width > * {
  grid-column: 1 / -1;
}

/* Some page-width sections should still extend all the way to the right edge of the page, e.g. collection carousel */
.section--page-width.section--full-width-right > * {
  grid-column: 2 / 4;
}

/* For full-width sections with margin, content still spans full width but with space on the sides */
.section--full-width.section--full-width-margin > * {
  grid-column: 1 / -1;

  @media screen and (min-width: 750px) {
    padding-left: var(--page-margin);
    padding-right: var(--page-margin);
  }
}

/* Some section content break out to full width of the page */
.section > .force-full-width {
  grid-column: 1 / -1;
}

.section--height-small {
  --section-min-height: var(--section-height-small);
}

.section--height-medium {
  --section-min-height: var(--section-height-medium);
}

.section--height-large {
  --section-min-height: var(--section-height-large);
}

.section--height-full-screen {
  --section-min-height: 100svh;
}

.section-content-wrapper.section-content-wrapper {
  min-height: calc(var(--section-min-height, 'auto') - var(--section-height-offset, 0px));
  position: relative;
  width: 100%;
  height: 100%;
}

/* Utility */

.hidden {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

@media screen and (max-width: 749px) {
  .hidden--mobile,
  .mobile\:hidden {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  .hidden--desktop,
  .desktop\:hidden {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

.hide-when-empty:empty {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

.visually-hidden:not(:focus, :active) {
  /* stylelint-disable-next-line declaration-no-important */
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  /* stylelint-disable-next-line declaration-no-important */
  word-wrap: normal !important;
}

@media screen and (max-width: 749px) {
  .is-visually-hidden-mobile:not(:focus, :active) {
    /* stylelint-disable-next-line declaration-no-important */
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    /* stylelint-disable-next-line declaration-no-important */
    word-wrap: normal !important;
  }
}

.contents {
  display: contents;
}

.flex {
  display: flex;
  gap: var(--gap-md);
}

.grid {
  --centered-column-number: 12;
  --full-width-column-number: 14;
  --centered: column-1 / span var(--centered-column-number);
  --full-width: column-0 / span var(--full-width-column-number);

  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 750px) {
  .grid {
    display: grid;
    gap: 0;
    grid-template-columns: var(--margin-4xl) repeat(var(--centered-column-number), minmax(0, 1fr)) var(--margin-4xl);
    grid-template-areas: 'column-0 column-1 column-2 column-3 column-4 column-5 column-6 column-7 column-8 column-9 column-10 column-11 column-12 column-13';
  }
}

@media screen and (min-width: 1400px) {
  .grid {
    grid-template-columns:
      1fr repeat(
        var(--centered-column-number),
        minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
      )
      1fr;
  }
}

.flex {
  display: flex;
  gap: var(--gap-md);
}

.flip-x {
  scale: -1 1;
}

.flip-y {
  scale: 1 -1;
}

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

.skip-to-content-link {
  position: absolute;
  overflow: hidden;
  height: 1px;
  left: -99999px;
  /* stylelint-disable-next-line declaration-no-important */
  word-wrap: normal !important;
}

.skip-to-content-link:focus {
  z-index: var(--layer-temporary);
  overflow: auto;
  width: auto;
  height: auto;
  padding: var(--padding-lg) var(--padding-4xl);
  left: var(--margin-lg);
  top: var(--margin-lg);
  box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
}

.text-left {
  --text-align: left;

  text-align: left;
}

.text-center {
  --text-align: center;

  text-align: center;
}

.text-right {
  --text-align: right;

  text-align: right;
}

.text-inherit {
  color: inherit;
}

.user-select-text {
  user-select: text;
}

.justify-left {
  justify-content: left;
}

.justify-center {
  justify-content: center;
}

.justify-right {
  justify-content: right;
}

.title--aligned-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.background-image-container {
  overflow: hidden;
  position: absolute;
  inset: 0;
  opacity: var(--image-opacity);
}

.background-image-container img,
.background-image-container svg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.background-image-fit img,
.background-image-fit svg {
  object-fit: contain;
}

.svg-wrapper {
  color: currentcolor;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  pointer-events: none;
}

.svg-wrapper--smaller {
  width: var(--icon-size-2xs);
  height: var(--icon-size-2xs);
}

.svg-wrapper--small {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

.svg-wrapper > svg {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
}

.relative {
  position: relative;
}

/* Icons */
.icon-success,
.icon-error {
  width: var(--icon-size-md);
  height: var(--icon-size-md);
  flex-shrink: 0;
}

.icon-success {
  color: var(--color-success);
}

.icon-error {
  fill: var(--color-error);
}

placeholder-image {
  display: block;
  height: 100%;
  aspect-ratio: var(--ratio);
}

placeholder-image[data-type='product'] {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-15));
  width: 100%;
}

/** Placeholder background for the placeholder image, the dimensions are the same as the product images */
placeholder-image[data-type='product']:not(:has(> img)) {
  aspect-ratio: var(--ratio);
  height: 350px;
}

placeholder-image > img {
  object-fit: cover;
  aspect-ratio: var(--ratio);
  height: 100%;
}

[data-placeholder='true'] * {
  cursor: default;
}

slideshow-component [data-placeholder='true'] * {
  cursor: grab;
}

/* Base text and heading styles */
body,
.paragraph:not(.button),
.paragraph > * {
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-weight: var(--font-paragraph--weight);
  font-size: var(--font-paragraph--size);
  line-height: var(--font-paragraph--line-height);
  text-transform: var(--font-paragraph--case);
  -webkit-font-smoothing: antialiased;
  color: var(--color, var(--color-foreground));
}

.reviewer-name{
  color:white;
}

.product-info form{
    width:50%;
}

.product-info a{
    width:50%;
}

#performance-testing .sub-heading{
    color:white;
}

#product-sku{
        font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #088ED1;
}

#product-sku span{
    
color:#5D616A;
}

.product-details .text-block:nth-of-type(2) li{
        font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #5D616A;
}

.product-details .text-block:nth-of-type(2) li::marker{
    color:#088ED1;
}

/* Ensure inputs with type presets maintain minimum 16px on mobile to prevent iOS zoom */
@media screen and (max-width: 1200px) {
  input.paragraph.paragraph,
  input.paragraph.paragraph:not([type]),
  textarea.paragraph.paragraph,
  select.paragraph.paragraph {
    font-size: max(1rem, var(--font-paragraph--size));
  }
}

.paragraph > small {
  font-size: smaller;
}

/* Typography presets */

h1,
.h1.h1,
.text-block.h1 > * {
  font-family: var(--font-h1--family);
  font-style: var(--font-h1--style);
  font-weight: var(--font-h1--weight);
  font-size: var(--font-h1--size);
  line-height: var(--font-h1--line-height);
  letter-spacing: var(--font-h1--letter-spacing);
  text-transform: var(--font-h1--case);
  color: var(--color, var(--font-h1-color));
}

@media screen and (max-width: 1200px) {
  input.h1.h1,
  textarea.h1.h1,
  select.h1.h1 {
    font-size: max(1rem, var(--font-h1--size));
  }
}

h2,
.h2.h2,
.text-block.h2 > * {
  font-family: var(--font-h2--family);
  font-style: var(--font-h2--style);
  font-weight: var(--font-h2--weight);
  font-size: var(--font-h2--size);
  line-height: var(--font-h2--line-height);
  letter-spacing: var(--font-h2--letter-spacing);
  text-transform: var(--font-h2--case);
  color: var(--color, var(--font-h2-color));
}

@media screen and (max-width: 1200px) {
  input.h2.h2,
  textarea.h2.h2,
  select.h2.h2 {
    font-size: max(1rem, var(--font-h2--size));
  }
}

h3,
.h3,
.h3.h3,
.text-block.h3 > * {
  font-family: var(--font-h3--family);
  font-style: var(--font-h3--style);
  font-weight: var(--font-h3--weight);
  font-size: var(--font-h3--size);
  line-height: var(--font-h3--line-height);
  letter-spacing: var(--font-h3--letter-spacing);
  text-transform: var(--font-h3--case);
  color: var(--color, var(--font-h3-color));
}

@media screen and (max-width: 1200px) {
  input.h3,
  textarea.h3,
  select.h3 {
    font-size: max(1rem, var(--font-h3--size));
  }
}

h4,
.h4.h4,
.text-block.h4 > * {
  font-family: var(--font-h4--family);
  font-style: var(--font-h4--style);
  font-weight: var(--font-h4--weight);
  font-size: var(--font-h4--size);
  line-height: var(--font-h4--line-height);
  letter-spacing: var(--font-h4--letter-spacing);
  text-transform: var(--font-h4--case);
  color: var(--color, var(--font-h4-color));
}

@media screen and (max-width: 1200px) {
  input.h4.h4,
  textarea.h4.h4,
  select.h4.h4 {
    font-size: max(1rem, var(--font-h4--size));
  }
}

h5,
.h5.h5,
.text-block.h5 > * {
  font-family: var(--font-h5--family);
  font-style: var(--font-h5--style);
  font-weight: var(--font-h5--weight);
  font-size: var(--font-h5--size);
  line-height: var(--font-h5--line-height);
  letter-spacing: var(--font-h5--letter-spacing);
  text-transform: var(--font-h5--case);
  color: var(--color, var(--font-h5-color));
}

@media screen and (max-width: 1200px) {
  input.h5.h5,
  textarea.h5.h5,
  select.h5.h5 {
    font-size: max(1rem, var(--font-h5--size));
  }
}

h6,
.h6.h6,
.text-block.h6 > * {
  font-family: var(--font-h6--family);
  font-style: var(--font-h6--style);
  font-weight: var(--font-h6--weight);
  font-size: var(--font-h6--size);
  line-height: var(--font-h6--line-height);
  letter-spacing: var(--font-h6--letter-spacing);
  text-transform: var(--font-h6--case);
  color: var(--color, var(--font-h6-color));
}

@media screen and (max-width: 1200px) {
  input.h6.h6,
  textarea.h6.h6,
  select.h6.h6 {
    font-size: max(1rem, var(--font-h6--size));
  }
}

:first-child:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin-block-start: 0;
}

:last-child:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin-block-end: 0;
}

/* Links */
a {
  --button-color: var(--color, var(--color-primary));

  color: var(--button-color);
  text-decoration-color: transparent;
  text-decoration-thickness: 0.075em;
  text-underline-offset: 0.125em;
  transition: text-decoration-color var(--animation-speed) var(--animation-easing),
    color var(--animation-speed) var(--animation-easing);
}

:is(h1, h2, h3, h4, h5, h6, p) > a:hover {
  --button-color: var(--color, var(--color-primary-hover));
}

/* Add underline to text using our paragraph styles only. */
p:not(.h1, .h2, .h3, .h4, .h5, .h6) a:where(:not(.button, .button-primary, .button-secondary)),
.rte
  :is(p, ul, ol, table):not(.h1, .h2, .h3, .h4, .h5, .h6)
  a:where(:not(.button, .button-primary, .button-secondary)) {
  text-decoration-color: currentcolor;

  &:hover {
    text-decoration-color: transparent;
    color: var(--color-primary-hover);
  }
}

.container-background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

details[open] .summary-closed {
  display: none;
}

details:not([open]) .summary-open {
  display: none;
}

details[open] > summary .icon-animated > svg {
  transform: rotate(180deg);
}

/* iOS fix: hide the default arrow on the summary */
summary::-webkit-details-marker {
  display: none;
}

/* When header is transparent, pull the first main content section up to sit under the floating header */
body:has(.header[transparent]) .content-for-layout > .shopify-section:first-child {
  margin-top: calc(var(--header-group-height) * -1);
}

body:has(.header[transparent]) #header-group > *:not(.header-section) {
  z-index: 1;
}

body:has(.header[transparent]) #header-group > .header-section {
  z-index: var(--layer-sticky);
}

/* Featured collection block */
.featured-collection-block {
  width: 100%;
}

/* Product grid */
.product-grid-container {
  display: block;
  width: 100%;
  padding-block: var(--padding-block-start) var(--padding-block-end);

  @media screen and (min-width: 750px) {
    display: grid;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--product-grid-gap);
  margin: auto;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 750px) {
  .product-grid {
    grid-template-columns: var(--product-grid-columns-desktop);
  }
}

.product-grid :is(h3, p) {
  margin: 0;
}

.product-grid__item {
  border: var(--product-card-border-width) solid rgb(var(--color-border-rgb) / var(--product-card-border-opacity));
}

.product-grid--organic[product-grid-view='default'] .product-grid__item {
  height: fit-content;
}

.product-grid__card.product-grid__card {
  display: flex;
  flex-flow: column nowrap;
  gap: var(--product-card-gap);
  align-items: var(--product-card-alignment);
  text-decoration: none;
  color: var(--color, var(--color-foreground));
  padding-block: var(--padding-block-start) var(--padding-block-end);
  padding-inline: var(--padding-inline-start) var(--padding-inline-end);
  overflow: hidden;
}

[product-grid-view='zoom-out'] .product-grid__card {
  row-gap: var(--padding-xs);
}

[product-grid-view='default'] {
  --product-grid-gap: 16px;
  --padding-block-start: 24px;
  --padding-block-end: 24px;
  --padding-inline-start: 0px;
  --padding-inline-end: 0px;
}

[product-grid-view='default'] .product-grid__item {
  padding-block: 0;
}

[product-grid-view='mobile-single'],
.product-grid-mobile--large {
  @media screen and (max-width: 749px) {
    grid-template-columns: 1fr;
  }
}

.product-grid__card .group-block > * {
  @media screen and (max-width: 749px) {
    flex-direction: column;
  }
}

ul[product-grid-view='zoom-out'] .product-grid__card > * {
  display: none;
}

ul[product-grid-view='zoom-out'] .product-grid__card .card-gallery {
  display: block;
}

[product-grid-view='zoom-out']
  .card-gallery
  > :is(quick-add-component, .product-badges, slideshow-component > slideshow-controls) {
  display: none;
}

ul[product-grid-view='zoom-out'] .card-gallery > img {
  display: block;
}

[product-grid-view='zoom-out'] {
  --product-grid-columns-desktop: repeat(
    10,
    minmax(clamp(50px, calc(100% - 9 * var(--product-grid-gap)) / 10, 80px), 1fr)
  );
}

.product-grid-view-zoom-out--details {
  display: none;
}

.product-grid-view-zoom-out--details .h4,
.product-grid-view-zoom-out--details span,
.product-grid-view-zoom-out--details s {
  font-size: var(--font-size--xs);
  font-family: var(--font-paragraph--family);
}

.product-grid-view-zoom-out--details span {
  font-weight: 500;
}

.product-grid-view-zoom-out--details .h4 {
  line-height: 1.3;
  font-weight: 400;
}

.product-grid-view-zoom-out--details > span.h6,
.product-grid-view-zoom-out--details > div.h6 > product-price {
  display: inline-block;
  line-height: 0;
  margin-top: var(--margin-2xs);
}

.product-grid-view-zoom-out--details > span.h6 > *,
.product-grid-view-zoom-out--details > div.h6 > * > * {
  line-height: 1.2;
}

@media (prefers-reduced-motion: no-preference) {
  :root:active-view-transition-type(product-grid) {
    details[open] floating-panel-component {
      view-transition-name: panel-content;

      .checkbox *,
      .facets__pill-label {
        transition: none;
      }

      .facets--vertical & {
        view-transition-name: none;
      }
    }

    .product-grid {
      view-transition-name: product-grid;
    }

    footer {
      view-transition-name: footer;
    }

    .product-grid__item,
    floating-panel-component {
      transition: none;
    }
  }
}

::view-transition-group(panel-content) {
  z-index: 1;
}

::view-transition-new(product-grid) {
  animation-delay: 150ms;
  animation-name: fadeInUp;
  animation-duration: var(--animation-speed);
  animation-timing-function: var(--animation-easing);
}

results-list[initialized] {
  .product-grid__item {
    transition: opacity var(--animation-speed) var(--animation-easing),
      transform var(--animation-speed) var(--animation-easing);

    @starting-style {
      opacity: 0;
      transform: translateY(10px);
    }
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Collection and product list cards have equal heights */
:is(.product-grid__item, .resource-list__item) .product-card {
  display: grid;
  height: 100%;
}

/* Video background */
.video-background,
.video-background * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background--cover * {
  object-fit: cover;
}

.video-background--contain * {
  object-fit: contain;
}

.text-block {
  width: 100%;
}

.text-block > *:first-child,
.text-block > *:first-child:empty + * {
  margin-block-start: 0;
}

.text-block > *:last-child,
.text-block > *:has(+ *:last-child:empty) {
  margin-block-end: 0;
}

/* This is to deal with the margin applied to the p when custom styles are enabled. The p isn't the first child anymore due to the style tag */
.text-block > style + * {
  margin-block-start: 0;
}

/* Dialog */
.dialog-modal {
  border: none;
  box-shadow: var(--shadow-popover);

  @media screen and (min-width: 750px) {
    border-radius: var(--style-border-radius-popover);
    max-width: var(--normal-content-width);
  }

  @media screen and (max-width: 749px) {
    max-width: 100%;
    max-height: 100%;
    height: 100dvh;
    width: 100dvw;
    padding: var(--padding-md);
  }
}

.dialog-modal::backdrop {
  transition: backdrop-filter var(--animation-speed) var(--animation-easing);
  backdrop-filter: brightness(1);
  background: rgb(var(--backdrop-color-rgb) / var(--backdrop-opacity));
}

.dialog-modal[open] {
  animation: elementSlideInTop var(--animation-speed) var(--animation-easing) forwards;

  &::backdrop {
    animation: backdropFilter var(--animation-speed) var(--animation-easing) forwards;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }
}

.dialog-modal.dialog-closing {
  animation: elementSlideOutTop var(--animation-speed) var(--animation-easing) forwards;

  &::backdrop {
    opacity: 0;
  }
}

/* stylelint-disable value-keyword-case */
.dialog-drawer {
  --dialog-drawer-opening-animation: slideInLeft;
  --dialog-drawer-closing-animation: slideOutLeft;
}

.dialog-drawer--right {
  --dialog-drawer-opening-animation: slideInRight;
  --dialog-drawer-closing-animation: slideOutRight;
}
/* stylelint-enable value-keyword-case */

.dialog-drawer[open] {
  animation: var(--dialog-drawer-opening-animation) var(--animation-speed) var(--animation-easing) forwards;
}

.dialog-drawer.dialog-closing {
  animation: var(--dialog-drawer-closing-animation) var(--animation-speed) var(--animation-easing);
}

/* Buttons */
.button,
.button-secondary,
button.shopify-payment-button__button--unbranded {
  --text-align: center;

  display: grid;
  align-content: center;
  text-decoration: none;
  text-align: var(--text-align);
  color: var(--button-color);
  appearance: none;
  background-color: var(--button-background-color);
  border: none;
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-size: var(--font-paragraph--size);
  line-height: var(--font-paragraph--line-height);
  margin-block: 0;
  transition: color var(--animation-speed) var(--animation-easing),
    box-shadow var(--animation-speed) var(--animation-easing),
    background-color var(--animation-speed) var(--animation-easing);
  cursor: pointer;
  width: fit-content;
  box-shadow: inset 0 0 0 var(--button-border-width) var(--button-border-color);
  padding-block: var(--button-padding-block);
  padding-inline: var(--button-padding-inline);
}

.button {
  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
  border-radius: var(--style-border-radius-buttons-primary);
}

.button:not(.button-secondary, .button-unstyled) {
  outline-color: var(--button-background-color);
}

.button-secondary {
  font-family: var(--button-font-family-secondary);
  text-transform: var(--button-text-case-secondary);
  border-radius: var(--style-border-radius-buttons-secondary);
}

button.shopify-payment-button__button--unbranded {
  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
}

textarea,
input {
  background-color: var(--color-input-background);
  border-color: var(--color-input-border);
}

textarea::placeholder,
input::placeholder {
  color: var(--color-input-text);
}

textarea:not(:placeholder-shown)::placeholder,
input:not(:placeholder-shown)::placeholder {
  opacity: 0;
}

/* The declaration above is messing with buttons that have an attribute of hidden as it overwrites the display value */
.button[hidden] {
  display: none;
}

.button[aria-disabled='true'],
.button-secondary[aria-disabled='true'],
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button,
button.shopify-payment-button__button--unbranded {
  --button-color: var(--color-primary-button-text);
  --button-background-color: var(--color-primary-button-background);
  --button-border-color: var(--color-primary-button-border);
  --button-border-width: var(--style-border-width-primary);
}

.button:hover,
button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  --button-color: var(--color-primary-button-hover-text);
  --button-background-color: var(--color-primary-button-hover-background);
  --button-border-color: var(--color-primary-button-hover-border);
}

.button-secondary {
  --button-color: var(--color-secondary-button-text);
  --button-background-color: var(--color-secondary-button-background);
  --button-border-color: var(--color-secondary-button-border);
  --button-border-width: var(--style-border-width-secondary);
}

.button-secondary:hover {
  --button-color: var(--color-secondary-button-hover-text);
  --button-background-color: var(--color-secondary-button-hover-background);
  --button-border-color: var(--color-secondary-button-hover-border);
}

/* Needed to override the default Shopify styles */
button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: var(--button-background-color);
}

.button-unstyled {
  display: block;
  padding: 0;
  background-color: inherit;
  color: inherit;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-size: var(--font-paragraph--size);
}

.button-unstyled:hover {
  background-color: inherit;
}

.button-unstyled--with-icon {
  color: var(--color-foreground);
  display: flex;
  gap: var(--gap-2xs);
  align-items: center;
}

.button-unstyled--transparent {
  background-color: transparent;
  box-shadow: none;
}

/* Show more */

.show-more__button {
  color: var(--color-primary);
  cursor: pointer;
}

.show-more__button:hover {
  @media screen and (min-width: 750px) {
    color: var(--color-primary-hover);
  }
}

.show-more__label {
  text-align: start;
  font-size: var(--font-size--body-md);
  font-family: var(--font-paragraph--family);
}

.show-more__button .svg-wrapper {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

.show-more[data-expanded='true'] .show-more__label--more,
.show-more[data-expanded='false'] .show-more__label--less {
  display: none;
}

.link {
  display: inline-block;
  text-align: center;
}

shopify-accelerated-checkout,
shopify-accelerated-checkout-cart {
  --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-primary);
  --shopify-accelerated-checkout-button-block-size: var(--height-buy-buttons);
}

.product-form-buttons:has(.add-to-cart-button.button-secondary)
  :is(shopify-accelerated-checkout, shopify-accelerated-checkout-cart) {
  --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-secondary);
  --shopify-accelerated-checkout-button-block-size: var(--height-buy-buttons);
}

/* Collapsible row */

.icon-caret svg {
  transition: transform var(--animation-speed) var(--animation-easing);
}

.icon-caret--forward svg {
  transform: rotate(-90deg);
}

.icon-caret--backward svg {
  transform: rotate(90deg);
}

summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding-block: var(--padding-sm);
}

summary:hover {
  color: var(--color-primary-hover);
}

summary .svg-wrapper {
  margin-inline-start: auto;
  height: var(--icon-size-xs);
  width: var(--icon-size-xs);
  transition: transform var(--animation-speed) var(--animation-easing);
}

/* Shared plus/minus icon animations */
summary .icon-plus :is(.horizontal, .vertical),
.show-more__button .icon-plus :is(.horizontal, .vertical) {
  transition: transform var(--animation-speed) var(--animation-easing);
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  opacity: 1;
}

details[open] > summary .icon-plus .horizontal,
.details-open > summary .icon-plus .horizontal,
.show-more:where([data-expanded='true']) .show-more__button .icon-plus .horizontal {
  transform: rotate(90deg);
}

details[open] > summary .icon-plus .vertical,
.details-open > summary .icon-plus .vertical,
.show-more:where([data-expanded='true']) .show-more__button .icon-plus .vertical {
  transform: rotate(90deg);
  opacity: 0;
}

/* Product Media */
media-gallery {
  display: block;
  width: 100%;
}

:where(media-gallery, .product-grid__item) {
  .media-gallery__grid {
    grid-template-columns: 1fr;
    gap: var(--image-gap);
  }
}

.product-media-gallery__slideshow--single-media slideshow-container {
  @media screen and (max-width: 749px) {
    grid-area: unset;
  }
}

:not(.dialog-zoomed-gallery) > .product-media-container {
  /* width and overflow forces children to shrink to parent width */
  --slide-width: round(up, 100%, 1px);

  display: flex;
  aspect-ratio: var(--gallery-aspect-ratio, var(--media-preview-ratio));
  max-height: var(--constrained-height);
  width: 100%;

  /* Relative position needed for video and 3d models */
  position: relative;
  overflow: hidden;

  &:where(.constrain-height) {
    /* arbitrary offset value based on average theme spacing and header height */
    --viewport-offset: 400px;
    --constrained-min-height: 300px;
    --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));

    margin-right: auto;
    margin-left: auto;
  }
}

media-gallery:where(.media-gallery--grid) .media-gallery__grid {
  display: none;
}

media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
  /* Needed for safari to stretch to full grid height */
  height: 100%;
}

.product-media :is(deferred-media, product-model) {
  position: absolute;
}

@media screen and (max-width: 749px) {
  .product-media-container.constrain-height {
    max-height: none;
  }
}

@media screen and (min-width: 750px) {
  .product-media-container.constrain-height {
    --viewport-offset: var(--header-height, 100px);
    --constrained-min-height: 500px;
  }

  .media-gallery--two-column .media-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-gallery--large-first-image .product-media-container:first-child,
  .media-gallery--two-column .product-media-container:only-child {
    /* First child spans 2 columns */
    grid-column: span 2;
  }

  /* Display grid view as a carousel on mobile, grid on desktop */
  media-gallery:is(.media-gallery--grid) slideshow-component {
    display: none;
  }

  media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: grid;
  }
}

.product-media-container--model {
  /* Usefull when view in your space is shown */
  flex-direction: column;
}

.shopify-model-viewer-ui__controls-area {
  bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
}

.product-media-container img {
  aspect-ratio: inherit;
  object-fit: contain;
}

.product-media-container.media-fit-contain img {
  object-position: center center;
}

.product-media-container.media-fit {
  --product-media-fit: cover;

  img {
    object-fit: var(--product-media-fit);
  }
}

/* Media gallery zoom dialog */
.product-media-container__zoom-button {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: var(--layer-flat);
  cursor: zoom-in;
  background-color: transparent;

  &:hover {
    background-color: transparent;
  }
}

zoom-dialog dialog {
  width: 100vw;
  height: 100vh;
  border: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity var(--animation-speed) var(--animation-easing);
  scrollbar-width: none;

  &[open] {
    opacity: 1;
  }

  @media (prefers-reduced-motion: no-preference) {
    scroll-behavior: smooth;
  }

  &::backdrop {
    background: transparent;
  }
}

/* Animate the UI elements in only after the view transition is complete */
.close-button {
  position: fixed;
  top: var(--margin-lg);
  right: var(--margin-lg);
  width: var(--minimum-touch-target);
  height: var(--minimum-touch-target);
  z-index: var(--layer-flat);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;

  /* For the outline radius */
  border-radius: 50%;
}

/* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */

@supports not (background-color: rgb(from red 150 g b / alpha)) {
  /**
    There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround.
    Using element selector to increase specificity.
  **/

  .close-button:focus-visible {
    outline: none;
    overflow: visible;
  }

  .close-button:focus-visible::after {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--focus-outline-offset));
    border: var(--focus-outline-width) solid currentColor;
    border-radius: 50%;
    display: inherit;
  }
}

.dialog--closed .close-button {
  animation: elementSlideOutBottom calc(var(--animation-speed) * 0.5) var(--animation-easing) forwards;
}

.dialog-thumbnails-list-container {
  position: fixed;
  width: 100%;
  bottom: 0;
  display: flex;
  z-index: var(--layer-raised);
}

.dialog-thumbnails-list {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  gap: 8px;
  bottom: 0;
  overflow-x: auto;
  opacity: 0;
  padding: var(--padding-lg);
  margin-inline: auto;
  scrollbar-width: none;
  animation: thumbnailsSlideInBottom calc(var(--animation-speed) * 0.75) var(--animation-easing) forwards;
  animation-delay: calc(var(--animation-speed) * 1.5);
}

.dialog--closed .dialog-thumbnails-list {
  animation: thumbnailsSlideOutBottom var(--animation-speed) var(--animation-easing) forwards;
}

@media screen and (min-width: 750px) {
  .dialog-thumbnails-list {
    position: fixed;
    flex-direction: column;
    inset: 50% var(--margin-lg) auto auto;
    right: 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    animation: thumbnailsSlideInTop calc(var(--animation-speed) * 0.5) var(--animation-easing) forwards;
    animation-delay: calc(var(--animation-speed) * 2);
  }

  .dialog--closed .dialog-thumbnails-list {
    animation: thumbnailsSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }
}

.dialog-thumbnails-list__thumbnail {
  width: var(--thumbnail-width);
  height: auto;
  transition: transform var(--animation-speed) var(--animation-easing);
  flex-shrink: 0;
  border-radius: var(--media-radius);

  img {
    height: 100%;
    object-fit: cover;
    border-radius: var(--media-radius);
    aspect-ratio: var(--aspect-ratio);
  }

  &:is([aria-selected='true']) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: calc(var(--focus-outline-offset) / 2);
    border: var(--style-border-width) solid rgb(var(--color-border-rgb) / var(--media-border-opacity));
  }
}

.close-button:hover {
  background-color: transparent;
  opacity: 0.8;
}

.close-button svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

/* Product media */
.product-media {
  display: flex;
  flex: 1;
}

/* If the product media is already providing an image cover, hide images provided by sibling deferred-media */
.product-media__image ~ * .deferred-media__poster-image {
  display: none;
}

/* If the product media is playing, hide the preview image */
.product-media-container:has(.deferred-media__playing) .product-media__image {
  opacity: 0;
  transition: opacity var(--animation-speed) var(--animation-easing);
}

/* Deferred media & Product model  */
:is(product-model, deferred-media) {
  /* Height needed to make sure when it's set to be stretched, it takes the full height */
  height: 100%;
  width: 100%;
  position: relative;
}

product-model model-viewer,
/* Media that have a poster button sibling providing the size should be absolute-positioned.
Otherwise, it should be a block to rely on its own size */
:is(deferred-media, product-model) > .deferred-media__poster-button ~ *:not(template) {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  /* Required to make sure the absolute position respects the padding of the wrapper: */
  padding: inherit;
}

slideshow-slide .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
  bottom: var(--padding-sm);
  right: var(--padding-sm);
}

.dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
  /* Move the controls above the thumbnails. Need to calculate the height of the thumbnails list */
  bottom: calc(var(--thumbnail-width) / calc(var(--media-preview-ratio)) + var(--padding-lg) * 2);
  right: var(--padding-lg);
}

@media screen and (max-width: 749px) {
  slideshow-component:has(:not(.mobile\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
    .shopify-model-viewer-ui__controls-area {
    /* Position the controls just above the counter */
    bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
  }
}

@media screen and (min-width: 750px) {
  slideshow-component:has(:not(.desktop\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
    .shopify-model-viewer-ui__controls-area {
    /* Position the controls just above the counter */
    bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
  }

  .dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
    /* Move the controls up to match the padding on the thumbnails */
    bottom: var(--padding-lg);

    /* Move the controls to the left of the thumbnails list on the right */
    right: calc(var(--thumbnail-width) + var(--padding-lg) * 2);
  }
}

:is(deferred-media, .video-placeholder-wrapper).border-style {
  /* Apply the border radius to the video */
  overflow: hidden;
}

deferred-media {
  /* The overflow hidden in the deferred-media won't let the button show the focus ring */
  &:has(:focus-visible) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  @supports not selector(:focus-visible) {
    &:has(:focus) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: var(--focus-outline-offset);
    }
  }
}

.deferred-media__poster-button {
  width: 100%;
  height: 100%;
  aspect-ratio: var(--video-aspect-ratio, auto);
}

.deferred-media__poster-button.deferred-media__playing {
  opacity: 0;
  transition: opacity 0.3s ease;
}

deferred-media img {
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

deferred-media iframe {
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: var(--size-style-aspect-ratio, auto);
}

deferred-media[data-media-loaded] img {
  opacity: 0;
}

.deferred-media__poster-icon,
.video-placeholder-wrapper__poster-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deferred-media__poster-icon svg,
.video-placeholder-wrapper__poster-icon svg {
  width: var(--button-size);
  height: var(--button-size);
  color: var(--color-white);
  filter: drop-shadow(var(--shadow-button));

  &:hover {
    color: rgb(var(--color-white-rgb) / var(--opacity-80));
  }

  @media screen and (min-width: 750px) {
    width: 4rem;
    height: 4rem;
  }
}

deferred-media[class] :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
  /* only apply this on the video block not product media */
  object-fit: cover;
  height: 100%;
  aspect-ratio: var(--size-style-aspect-ratio, auto);
}

.button-shopify-xr {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--padding-md);
}

.button-shopify-xr > svg {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  fill: currentcolor;
  margin-inline-end: var(--margin-md);
}

.button-shopify-xr[data-shopify-xr-hidden] {
  display: none;
}

/* Swatches */
.swatch {
  --color-border: rgb(var(--color-foreground-rgb) / var(--style-border-swatch-opacity));
  --min-width-unitless: 15.9999; /* want to avoid division by 0 */
  --min-height-unitless: 15.9999; /* want to avoid division by 0 */
  --min-height: 16px;
  --min-width: 16px;

  /* mobile values */
  --scaling-factor: 0.5;
  --max-swatch-size: 28px;
  --max-pill-size: 20px;
  --max-filter-size: 32px;

  /* From the settings */
  --offset-swatch-width: calc(var(--variant-picker-swatch-width-unitless) - var(--min-width-unitless));
  --offset-swatch-height: calc(var(--variant-picker-swatch-height-unitless) - var(--min-height-unitless));

  /**
    Offset values are obtained from the following formulas:
      offset-width = width - min-width
      offset-height = height - min-height

    The offset-scaled-width and heigth are obtained by extending the line from
    [min,min] to [W,H] and taking the intersection with a square that starts at
    [min,min] and ends at [max,max].

    The extending line forms right angle triangles with the [min,min]->[max,max]
    box that enable us to derive the following formulas

    We also want the result to always be smaller than the input (pdp > everywhere else)
    by some scaling factor.
  */
  --offset-scaled-width: calc(
    var(--scaling-factor) * var(--offset-swatch-width) / var(--offset-swatch-height) * var(--offset-max-swatch-size)
  );
  --offset-scaled-height: calc(
    var(--scaling-factor) * var(--offset-swatch-height) / var(--offset-swatch-width) * var(--offset-max-swatch-size)
  );
  --offset-max-swatch-size: calc(var(--max-swatch-size) - var(--min-width));

  /* width = min(m + sU, (m + s * W'/H' * M'), M) */
  --swatch-width: min(
    calc(var(--min-width) + calc(var(--scaling-factor) * var(--offset-swatch-width) * 1px)),
    calc(var(--min-width) + var(--offset-scaled-width)),
    var(--max-swatch-size)
  );

  /* height = min(m + sV, (m + s * H'/W' * M'), M) */
  --swatch-height: min(
    calc(var(--min-height) + calc(var(--scaling-factor) * var(--offset-swatch-height) * 1px)),
    calc(var(--min-height) + var(--offset-scaled-height)),
    var(--max-swatch-size)
  );

  display: block;
  background: var(--swatch-background);
  background-position: var(--swatch-focal-point, center);
  border-radius: var(--variant-picker-swatch-radius);
  border: var(--style-border-swatch-width) var(--style-border-swatch-style) var(--color-border);
  width: var(--swatch-width);
  height: var(--swatch-height);

  /* This is different than `background-size: cover` because we use `box-sizing: border-box`,
   * doing it like makes the background clip under the border without repeating.
   */
  background-size: var(--swatch-width) var(--swatch-height);

  &.swatch--unavailable {
    border-style: dashed;
  }

  &.swatch--unscaled {
    /* for when you want fixed sizing (e.g. pdp) */
    --swatch-width: var(--variant-picker-swatch-width);
    --swatch-height: var(--variant-picker-swatch-height);
  }

  &.swatch--filter {
    --swatch-width: var(--max-filter-size);
    --swatch-height: var(--max-filter-size);

    border-radius: var(--variant-picker-swatch-radius);
  }

  &.swatch--pill {
    --swatch-width: var(--max-pill-size);
    --swatch-height: var(--max-pill-size);

    border-radius: var(--variant-picker-swatch-radius);
  }

  /* swatches in filters and pills always have a border  */
  &.swatch--filter,
  &.swatch--pill {
    --style-border-swatch-width: var(--variant-picker-border-width);
    --style-border-swatch-style: var(--variant-picker-border-style);
    --color-border: rgb(var(--color-foreground-rgb) / var(--variant-picker-border-opacity));
  }

  @media screen and (min-width: 750px) {
    /* desktop values */
    --max-swatch-size: 32px;
    --max-pill-size: 16px;
    --max-filter-size: 28px;
    --scaling-factor: 0.65;
  }
}

.variant-picker .variant-option--buttons label:has(.swatch) {
  border-radius: var(--variant-picker-swatch-radius);
}

.sticky-content {
  position: sticky;
  top: var(--sticky-header-offset, 0);
  z-index: var(--layer-flat);
}

@media screen and (min-width: 750px) {
  .sticky-content--desktop,
  .sticky-content--desktop.full-height--desktop > .group-block {
    position: sticky;
    top: var(--sticky-header-offset, 0);
    z-index: var(--layer-flat);
  }
}

.price,
.compare-at-price,
.unit-price {
  white-space: nowrap;
}

.unit-price {
  display: block;
  font-size: min(0.85em, var(--font-paragraph--size));
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
}

.tax-note.tax-note.tax-note {
  font-size: min(0.85em, var(--font-paragraph--size));
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
}

product-price.text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) > *:not(.tax-note) {
  margin-block: 0;
}

.compare-at-price {
  opacity: 0.4;
  text-decoration-line: line-through;
  text-decoration-thickness: 1.5px;
}

.card-gallery {
  position: relative;
}

@media screen and (min-width: 750px) {
  product-card:focus-within .quick-add__button,
  .card-gallery:hover .quick-add__button {
    display: grid;
    will-change: margin, opacity;
    animation: elementSlideInTop var(--animation-speed) var(--animation-easing);
  }
}

@container (max-width: 70px) {
  .card-gallery:hover .quick-add__button {
    display: none;
  }
}

/* Drawer */
.drawer {
  background-color: var(--color-background);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  z-index: var(--layer-raised);
  transform: translateX(-120%);
  transition: transform var(--animation-speed) var(--animation-easing);
}

.drawer[data-open='true'] {
  transform: translateX(0);
}

.drawer-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--drawer-header-block-padding) var(--drawer-inline-padding);
}

.drawer__title {
  font-size: var(--font-h2--size);
  margin: 0;
}

.drawer__close {
  width: var(--minimum-touch-target);
  height: var(--minimum-touch-target);
}

.drawer__content {
  display: block;
  padding: var(--drawer-content-block-padding) var(--drawer-inline-padding);
  width: 100%;
}

/* Background overlay */
.background-overlay {
  position: relative;

  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-overlay-color, rgb(0 0 0 / 15%));
  }
}

/* Spacing style */
.spacing-style {
  --spacing-scale: var(--spacing-scale-md);

  @media screen and (min-width: 990px) {
    --spacing-scale: var(--spacing-scale-default);
  }

  /* Must disable this, when you use these with calc and another unit type, things break — see logo.liquid */
  /* stylelint-disable length-zero-no-unit */
  --padding-block: 0px;
  --padding-block-start: var(--padding-block, 0px);
  --padding-block-end: var(--padding-block, 0px);
  --padding-inline: 0px;
  --padding-inline-start: var(--padding-inline, 0px);
  --padding-inline-end: var(--padding-inline, 0px);
  --margin-block: 0px;
  --margin-block-start: var(--margin-block, 0px);
  --margin-block-end: var(--margin-block, 0px);
  --margin-inline: 0px;
  --margin-inline-start: var(--margin-inline, 0px);
  --margin-inline-end: var(--margin-inline, 0px);
}

.spacing-style,
.inherit-spacing {
  padding-block: calc(var(--padding-block-start) + var(--section-top-offset, 0px)) var(--padding-block-end);
  padding-inline: var(--padding-inline-start) var(--padding-inline-end);
  margin-block: var(--margin-block-start) var(--margin-block-end);
  margin-inline: var(--margin-inline-start) var(--margin-inline-end);
}

/* Size style */
.size-style {
  width: var(--size-style-width-mobile, var(--size-style-width));
  height: var(--size-style-height-mobile, var(--size-style-height));

  @media screen and (min-width: 750px) {
    width: var(--size-style-width);
    height: var(--size-style-height);
  }
}

/* Custom Typography style */
.custom-typography,
.custom-typography > * {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  text-transform: var(--text-transform);
  text-wrap: var(--text-wrap);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

.custom-typography {
  h1 {
    line-height: var(--line-height--display, var(--line-height));
  }

  h2,
  h3,
  h4 {
    line-height: var(--line-height--heading, var(--line-height));
  }

  p {
    line-height: var(--line-height--body, var(--line-height));
  }
}

.custom-font-size,
.custom-font-size > * {
  font-size: var(--font-size);
}

.custom-font-weight,
.custom-font-weight > * {
  font-weight: var(--weight);
}

/* Border override style */
.border-style {
  border-width: var(--border-width);
  border-style: var(--border-style);
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}

/* Gap scaling style */
.gap-style,
.layout-panel-flex {
  --gap-scale: var(--spacing-scale-md);

  @media screen and (min-width: 990px) {
    --gap-scale: var(--spacing-scale-default);
  }
}

.layout-panel-flex {
  display: flex;
  gap: var(--gap);
  height: 100%;
}

.layout-panel-flex--row {
  flex-flow: row var(--flex-wrap);
  justify-content: var(--horizontal-alignment);
  align-items: var(--vertical-alignment);
}

.layout-panel-flex--column {
  flex-flow: column var(--flex-wrap);
  align-items: var(--horizontal-alignment);
  justify-content: var(--vertical-alignment);
}

@media screen and (max-width: 749px) {
  .mobile-column {
    flex-flow: column nowrap;
    align-items: var(--horizontal-alignment);
    justify-content: var(--vertical-alignment-mobile);
  }

  .layout-panel-flex--row:not(.mobile-column) {
    flex-wrap: var(--flex-wrap-mobile);

    > .text-block {
      flex: 1 1 var(--max-width--display-tight);
    }

    > .image-block {
      flex: 1 1 var(--size-style-width-mobile-min);
    }

    > .button {
      flex: 0 0 fit-content;
    }
  }
}

@media (min-width: 750px) {
  .layout-panel-flex {
    flex-direction: var(--flex-direction);
  }
}

/* Form fields */
.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow var(--animation-speed) ease;
}

.field__input {
  flex-grow: 1;
  text-align: left;
  border-radius: var(--style-border-radius-inputs);
  transition: box-shadow var(--animation-speed) ease, background-color var(--animation-speed) ease;
  padding: var(--input-padding);
  box-shadow: var(--input-box-shadow);
  background-color: var(--color-input-background);
  color: var(--color-input-text);
  border: none;
  outline: none;
  font-size: var(--font-paragraph--size);

  &:autofill {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
  }
}

.field__input:is(:focus, :hover) {
  box-shadow: var(--input-box-shadow-focus);
  background-color: var(--color-input-hover-background);
}

.field__input--button-radius {
  border-radius: var(--style-border-radius-buttons-primary);
}

.field__input--button-padding {
  padding-inline: var(--padding-3xl);
}

.field__label {
  color: rgb(var(--color-input-text-rgb) / var(--opacity-80));
  font-size: var(--font-paragraph--size);
  left: var(--input-padding-x);
  top: 50%;
  transform: translateY(-50%);
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--animation-speed) ease, font-size var(--animation-speed) ease;
}

/* RTE styles */
.rte,
.shopify-policy__title {
  :is(h1, h2, h3, h4, h5, h6) {
    margin-block: clamp(1.5rem, 1em * 3.3, 2.5rem) clamp(1rem, 1em * 0.25, 2rem);
  }

  :first-child:is(p, h1, h2, h3, h4, h5, h6),
  :first-child:empty + :is(p, h1, h2, h3, h4, h5, h6) {
    margin-block-start: 0;
  }

  ul,
  ol {
    margin-block-start: 0;
    padding-inline-start: 1.5em;
  }

  /* Only apply margin-block-end to the higher level list, not nested lists */
  :is(ul, ol):not(:is(ul, ol) :is(ul, ol)) {
    margin-block-end: 1em;
  }

  blockquote {
    margin-inline: 1.5em 2.3em;
    margin-block: 3.8em;
    padding-inline-start: 0.8em;
    border-inline-start: 1.5px solid rgb(var(--color-foreground-rgb) / var(--opacity-25));
    font-style: italic;
    font-weight: 500;
  }

  .rte-table-wrapper {
    overflow-x: auto;
  }

  table {
    /* stylelint-disable-next-line declaration-no-important */
    width: 100% !important;
    border-collapse: collapse;
  }

  tr:not(:has(td)),
  thead {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    font-weight: bold;
    text-transform: uppercase;
  }

  tr:has(td) {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
  }

  th,
  td {
    text-align: start;
    padding-inline: var(--padding-md);
    padding-block: var(--padding-sm);
  }
}

.shopify-policy__container {
  padding-block: var(--padding-xl);
}

.checkbox {
  --checkbox-size: 22px;
  --checkbox-top: 50%;
  --checkbox-left: 1.5px;
  --checkbox-offset: 3px;
  --checkbox-border-radius: 7px;
  --checkbox-label-padding: 8px;
  --checkbox-path-opacity: 0;
  --checkbox-cursor: pointer;
  --checkbox-border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-35-55));

  position: relative;
  display: flex;
  align-items: center;

  @media screen and (min-width: 750px) {
    --checkbox-size: 16px;
    --checkbox-border-radius: 5px;
    --checkbox-label-padding: 6px;
  }

  &:has(.checkbox__input:checked) {
    --checkbox-path-opacity: 1;
  }

  &:has(.checkbox__input:disabled) {
    --checkbox-cursor: not-allowed;
  }
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  margin: 0;
  width: var(--checkbox-size);
  height: var(--checkbox-size);

  /* Outline is on the SVG instead, to allow it to have border-radius */
  &:focus-visible {
    outline: none;
  }

  &:focus-visible + .checkbox__label .icon-checkmark {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  &:checked + .checkbox__label .icon-checkmark {
    background-color: var(--color-foreground);
    border-color: var(--color-foreground);
  }

  &:disabled + .checkbox__label .icon-checkmark {
    background-color: var(--input-disabled-background-color);
    border-color: var(--input-disabled-border-color);
  }
}

.checkbox__label {
  position: relative;
  display: inline-flex;
  cursor: var(--checkbox-cursor);
  line-height: var(--checkbox-size);
  min-width: var(--minimum-touch-target);
}

.checkbox .icon-checkmark {
  height: var(--checkbox-size);
  width: var(--checkbox-size);
  flex-shrink: 0;
  border: var(--checkbox-border);
  border-radius: var(--checkbox-border-radius);
  background-color: var(--color-background);
}

.checkbox__label-text {
  padding-inline-start: var(--checkbox-label-padding);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkbox .icon-checkmark path {
  stroke: var(--color-background);
  opacity: var(--checkbox-path-opacity);
  transition: opacity var(--animation-speed) var(--animation-easing);
}

.checkbox__input:disabled + .checkbox__label {
  color: var(--input-disabled-text-color);
}

/* Add to cart button */
.button[id^='BuyButtons-ProductSubmitButton-'] {
  position: relative;
  overflow: hidden;
}

/* Cart bubble */
.cart-bubble {
  --cart-padding: 0.2em;

  position: relative;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border-width: 0;
  display: flex;
  line-height: normal;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-button-text);
  padding-inline: var(--cart-padding);
}

.cart-bubble__background {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary-button-background);
  border-radius: var(--style-border-radius-lg);
}

.cart-bubble__text {
  font-size: var(--font-size--2xs);
  z-index: var(--layer-flat);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quantity selector */
.quantity-selector {
  --quantity-selector-width: 124px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-input-text);
  background-color: var(--color-input-background);
  border: var(--style-border-width-inputs) solid var(--color-input-border);
  border-radius: var(--style-border-radius-inputs);
  flex: 1 1 var(--quantity-selector-width);
  align-self: stretch;
  transition: background-color var(--animation-speed) var(--animation-easing);

  &:hover {
    background-color: var(--color-input-hover-background);
  }
}

.product-form-buttons:has(.add-to-cart-button.button-secondary) .quantity-selector {
  border-radius: var(--style-border-radius-buttons-secondary);
}

.quantity-selector :is(.quantity-minus, .quantity-plus) {
  /* Unset button styles */
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: var(--minimum-touch-target);
  height: var(--minimum-touch-target);
  flex-shrink: 0;
  color: var(--color-input-text);
}

.quantity-selector .quantity-minus {
  border-start-start-radius: var(--style-border-radius-inputs);
  border-end-start-radius: var(--style-border-radius-inputs);
}

.quantity-selector .quantity-plus {
  border-start-end-radius: var(--style-border-radius-inputs);
  border-end-end-radius: var(--style-border-radius-inputs);
}

.product-details .quantity-selector {
  border-radius: var(--style-border-radius-buttons-primary);
}

.product-details .quantity-selector .quantity-minus {
  border-start-start-radius: var(--style-border-radius-buttons-primary);
  border-end-start-radius: var(--style-border-radius-buttons-primary);
}

.product-details .quantity-selector .quantity-plus {
  border-start-end-radius: var(--style-border-radius-buttons-primary);
  border-end-end-radius: var(--style-border-radius-buttons-primary);
}

.quantity-selector .svg-wrapper {
  transition: transform var(--animation-speed) var(--animation-easing);
}

.quantity-selector svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

:is(.quantity-minus, .quantity-plus):active .svg-wrapper {
  transform: scale(0.9);
}

.quantity-selector input[type='number'] {
  margin: 0;
  text-align: center;
  border: none;
  appearance: none;
  max-width: calc(var(--quantity-selector-width) - var(--minimum-touch-target) * 2);
  border-radius: var(--style-border-radius-buttons);
  color: var(--color-input-text);
  background-color: transparent;
}

/* Chrome, Safari, Edge, Opera */
.quantity-selector input[type='number']::-webkit-inner-spin-button,
.quantity-selector input[type='number']::-webkit-outer-spin-button {
  appearance: none;
}

/* Firefox */
.quantity-selector input[type='number'] {
  appearance: textfield;
}

/* Pills (used in facets and predictive search) */

.pills__pill {
  --pills-pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5-15));

  color: var(--color-foreground);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-sm);
  min-width: 48px;
  padding: 6px 12px;
  border-radius: var(--style-border-radius-pills);
  cursor: pointer;
  background-color: var(--pills-pill-background-color);
  transition: background-color var(--animation-speed) var(--animation-easing);

  &:hover {
    --pills-pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  @media screen and (max-width: 749px) {
    padding: var(--padding-xs) var(--padding-md);
  }
}

.pills__pill > .svg-wrapper {
  --close-icon-opacity: 0.4;
  --icon-stroke-width: 1px;

  color: var(--color-foreground);
}

.pills__pill--swatch {
  @media screen and (max-width: 749px) {
    padding-inline-start: var(--padding-sm);
  }
}

.pills__pill--swatch .swatch {
  margin-right: -4px;
}

.pills__pill--desktop-small {
  @media screen and (min-width: 750px) {
    font-size: var(--font-size--xs);
  }
}

/* Fly to cart animation */
fly-to-cart {
  position: fixed;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: calc(infinity);
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  transition: opacity 0.3s ease;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-foreground);
  transform: translate(var(--x, 0), var(--y, 0)) scale(var(--scale, 1));
}

/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */

/* Animation declarations - to be kept at the bottom of the file for ease of find */
@keyframes grow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(var(--custom-transform-from, 100%));
  }

  to {
    transform: translateX(var(--custom-transform-to, 0));
  }
}

@keyframes slideInLeftViewTransition {
  from {
    transform: translateX(100px);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--custom-transform-to, -100%));
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes slideInTop {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideInTopViewTransition {
  from {
    transform: translateY(100px);
  }
}

@keyframes slideOutBottom {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

@keyframes slideInBottom {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideOutTop {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes cartBubbleSlideIn {
  from {
    transform: translateY(-1em);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes elementSlideInTop {
  from {
    margin-top: var(--padding-sm);
    opacity: 0;
  }

  to {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes elementSlideOutTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }
}

@keyframes elementSlideInBottom {
  from {
    transform: translateY(calc(-1 * var(--padding-sm)));
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes elementSlideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(calc(-1 * var(--padding-sm)));
    opacity: 0;
  }
}

@keyframes thumbnailsSlideInTop {
  from {
    transform: translateY(calc(-50% + var(--margin-lg)));
    opacity: 0;
  }

  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

@keyframes thumbnailsSlideOutTop {
  from {
    transform: translateY(-50%);
    opacity: 1;
  }

  to {
    transform: translateY(calc(-50% + var(--margin-lg)));
    opacity: 0;
  }
}

@keyframes thumbnailsSlideInBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes thumbnailsSlideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

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

@keyframes search-element-slide-in-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

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

@keyframes search-element-slide-out-bottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

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

@keyframes dialogZoom {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  to {
    opacity: 0;
    transform: scale(0.95) translateY(1em);
  }
}

@keyframes thumbnail-selected {
  0%,
  100% {
    box-shadow: 0 0 0 2px transparent;
    scale: 0.9;
  }

  50% {
    box-shadow: 0 0 0 2px #000;
    scale: 1;
  }
}

@keyframes backdropFilter {
  from {
    backdrop-filter: brightness(1);
  }

  to {
    backdrop-filter: brightness(0.75);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideInTop {
  from {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalSlideOutTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }
}

.bubble {
  display: inline-flex;
  height: calc(var(--variant-picker-swatch-height) / 1.5);
  font-size: var(--font-size--xs);
  border-radius: 20px;
  min-width: 20px;
  padding: 0 6px;
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  color: var(--color-foreground);
  align-items: center;
  justify-content: center;
}

.bubble svg {
  width: 12px;
  height: 12px;
}

.top-shadow::before {
  content: '';
  box-shadow: 0 0 10px var(--color-shadow);
  position: absolute;
  z-index: var(--layer-lowest);
  inset: 0;
  clip-path: inset(-50px 0 0 0); /* stylelint-disable-line */
}

@media (min-width: 750px) {
  .top-shadow--mobile::before {
    display: none;
  }
}

.bottom-shadow::before {
  content: '';
  box-shadow: 0 0 10px var(--color-shadow);
  position: absolute;
  z-index: var(--layer-lowest);
  inset: 0;
  clip-path: inset(0 0 -50px 0); /* stylelint-disable-line */
}

@media (min-width: 750px) {
  .bottom-shadow--mobile::before {
    display: none;
  }
}

.video-placeholder-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: var(--size-style-aspect-ratio, auto);
}

:not(deferred-media) > .video-placeholder-wrapper {
  width: var(--video-placeholder-width);
}

.video-placeholder-wrapper > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*
 * Slideshow Component
 */
slideshow-component {
  --cursor: grab;

  position: relative;
  display: flex;
  flex-direction: column;
  timeline-scope: var(--slideshow-timeline);
}

.slideshow--single-media {
  --cursor: default;
}

a slideshow-component {
  --cursor: pointer;
}

/*
 * Slideshow Slides
 */
slideshow-slides {
  width: 100%;
  position: relative;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-color: transparent transparent;
  scrollbar-width: none;
  gap: var(--slideshow-gap, 0);
  cursor: var(--cursor);

  @media (prefers-reduced-motion) {
    scroll-behavior: auto;
  }

  &::-webkit-scrollbar {
    width: 0;
  }

  &::-webkit-scrollbar-track {
    background: transparent;
  }

  &::-webkit-scrollbar-thumb {
    background: transparent;
    border: none;
  }

  &[size='small'] {
    min-height: 17.5rem;
  }

  &[size='medium'] {
    min-height: 21.25rem;
  }

  &[size='large'] {
    min-height: 25rem;
  }

  @media screen and (min-width: 750px) {
    &[size='small'] {
      min-height: 26.25rem;
    }

    &[size='medium'] {
      min-height: 35rem;
    }

    &[size='large'] {
      min-height: 45rem;
    }
  }
}

slideshow-component[disabled='true'] slideshow-slides {
  overflow: hidden;
}

slideshow-component[mobile-disabled] slideshow-slides {
  @media screen and (max-width: 749px) {
    overflow: hidden;
  }
}

slideshow-slide {
  position: relative;
  scroll-snap-align: start;
  width: var(--slide-width, 100%);
  max-height: 100%;
  flex-shrink: 0;
  view-timeline-axis: inline;
  content-visibility: auto;
  contain-intrinsic-size: auto none;

  slideshow-component[actioned] &,
  &[aria-hidden='false'] {
    content-visibility: visible;
  }

  slideshow-component slideshow-slide:not([aria-hidden='false']) {
    content-visibility: hidden;
  }

  &[hidden]:not([reveal]) {
    display: none;
  }
}

slideshow-slide.product-media-container--tallest {
  content-visibility: visible;
}

@media screen and (max-width: 749px) {
  /* Media gallery has a peeking slide on the right side always, and on the left side when the current slide is the last one */
  .media-gallery--hint
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']:last-of-type),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
}

/*
 * Collection and Resource list carousels have peeking slides on both sides.
 * Card galleries preview the next or previous images on 'pointerenter', so we
 * try to kick load them beforehand (they are lazy loaded otherwise).
 */
:is(.resource-list__carousel, .card-gallery)
  :is(
    slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
    slideshow-slide[aria-hidden='false'] + slideshow-slide
  ) {
  content-visibility: auto;

  slideshow-component[actioned] & {
    content-visibility: visible;
  }
}

/*
 * Be specific about HTML children structure to avoid targeting nested slideshows.
 * Ensure that the content is 'visible' while scrolling instead of 'auto' to avoid issues in Safari.
 */
slideshow-component:is([dragging], [transitioning], :hover) > slideshow-container > slideshow-slides > slideshow-slide {
  content-visibility: visible;
}

slideshow-slides[gutters*='start'] {
  padding-inline-start: var(--gutter-slide-width, 0);
  scroll-padding-inline-start: var(--gutter-slide-width, 0);
}

slideshow-slides[gutters*='end'] {
  padding-inline-end: var(--gutter-slide-width, 0);
}

slideshow-component[dragging] {
  --cursor: grabbing;

  * {
    pointer-events: none;
  }
}

slideshow-component[dragging] slideshow-arrows {
  display: none;
}

slideshow-container {
  width: 100%;
  display: block;
  position: relative;
  grid-area: container;
  container-type: inline-size;
}

/*
 * Slideshow Controls
 */
slideshow-controls {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  scrollbar-width: none;
  min-height: var(--minimum-touch-target);
  grid-area: controls;

  &[controls-on-media] {
    position: absolute;
    bottom: 0;
  }
}

slideshow-controls::-webkit-scrollbar {
  display: none;
}

slideshow-controls button {
  --color: rgb(var(--color-foreground-rgb) / var(--opacity-30));
  --color-active: var(--color-foreground);
  --color-hover: rgb(var(--color-foreground-rgb) / var(--opacity-50));

  display: inline-block;
  height: var(--minimum-touch-target);
  width: var(--minimum-touch-target);
  cursor: pointer;
}

slideshow-controls .icon {
  width: var(--icon-size-sm);
  height: var(--icon-size-xs);
}

slideshow-controls[pagination-position='center'] {
  align-items: center;
  justify-content: center;
}

slideshow-controls[pagination-position='center'][thumbnails] {
  width: 100%;
}

slideshow-controls[pagination-position='center']:not([controls-on-media], [thumbnails], [icons-on-media]) {
  justify-content: space-between;
}

slideshow-component:has(slideshow-controls[thumbnails]) {
  &:has(slideshow-controls[pagination-position='right']) {
    display: grid;
    grid-template:
      'container controls' auto
      'arrows controls' min-content
      / 1fr auto;
  }

  &:has(slideshow-controls[pagination-position='left']) {
    display: grid;
    grid-template:
      'controls container' auto
      'controls arrows' min-content
      / auto 1fr;
  }

  slideshow-controls[pagination-position='left'] {
    order: -1;
  }
}

slideshow-controls[thumbnails]:is([pagination-position='right'], [pagination-position='left']) {
  display: flex;
  flex-direction: column;
  height: 0;
  min-height: 100%;

  .slideshow-controls__thumbnails-container {
    overflow: hidden auto;
  }

  &:not([controls-on-media]) {
    .slideshow-controls__thumbnails-container {
      position: sticky;
      top: var(--sticky-header-offset, 0);
    }

    .slideshow-controls__thumbnails {
      padding-block-start: var(--focus-outline-offset);
    }
  }
}

slideshow-controls:not([controls-on-media])[icons-on-media] {
  &[pagination-position='right'] {
    justify-content: flex-end;
  }

  &[pagination-position='left'] {
    justify-content: flex-start;
  }
}

slideshow-controls:not([controls-on-media]):is([pagination-position='left'], [pagination-position='right'])
  .slideshow-controls__thumbnails {
  padding-block: var(--padding-2xs);
}

slideshow-controls:not([controls-on-media]) {
  &:is([pagination-position='right']) {
    .slideshow-controls__thumbnails {
      padding-inline-end: var(--slideshow-thumbnails-padding-inline, var(--focus-outline-offset));
    }
  }

  &:is([pagination-position='left']) {
    .slideshow-controls__thumbnails {
      padding-inline-start: var(--slideshow-thumbnails-padding-inline, var(--focus-outline-offset));
    }
  }
}

slideshow-controls[controls-on-media] {
  z-index: var(--layer-raised);

  &:has(.slideshow-controls__dots, .slideshow-controls__counter) {
    --color-foreground: #fff;
    --color-foreground-rgb: var(--color-white-rgb);
  }

  &[pagination-position='right'] {
    right: 0;
  }

  &[pagination-position='left'] {
    left: 0;
  }

  &[pagination-position='center'] {
    width: 100%;
  }

  &:not([thumbnails])[pagination-position='left'] {
    width: fit-content;
    align-self: flex-start;
  }

  &:not([thumbnails])[pagination-position='right'] {
    width: fit-content;
    align-self: flex-end;
  }
}

slideshow-controls:is([pagination-position='right'], [pagination-position='left']) {
  .slideshow-controls__thumbnails {
    flex-direction: column;
  }
}

.slideshow-controls__arrows {
  display: flex;
  justify-content: space-between;
  height: var(--minimum-touch-target);
  grid-area: arrows;

  button {
    padding: 0 var(--padding-xs);
  }
}

.slideshow-controls__dots,
.slideshow-controls__counter {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  list-style: none;

  button {
    --color: rgb(var(--color-foreground-rgb) / var(--opacity-30));
    --color-active: var(--color-foreground);
    --color-hover: rgb(var(--color-foreground-rgb) / var(--opacity-50));
  }
}

slideshow-controls:has(.slideshow-controls__dots),
slideshow-component[autoplay] slideshow-controls {
  mix-blend-mode: difference;
}

.slideshow-controls__dots {
  gap: 0.6rem;
  padding: var(--padding-sm) var(--padding-lg);
  border-radius: 3rem;
  overflow: hidden;

  button {
    --size: 0.5rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--size) * 2);
    height: calc(var(--size) * 2);
    margin: calc(var(--size) / -2);
    font-size: 0;
    border-radius: calc(var(--size));

    &::after {
      content: '';
      display: block;
      background-color: var(--color);
      height: var(--size);
      width: var(--size);

      /* This is at --size / 2 to remove a visual regression on subpixel rendering displays */
      border-radius: calc(var(--size) / 2);

      @supports not (view-timeline-axis: inline) {
        &[aria-selected='true'] {
          --color: var(--color-active);
        }
      }

      &:hover {
        --color: var(--color-hover);
      }
    }

    &[aria-selected='true'] {
      --color: var(--color-active);
    }
  }
}

.slideshow-controls__dots,
.slideshow-controls__counter {
  &:only-child {
    margin-inline: auto;
  }
}

.slideshow-controls__counter {
  color: var(--color-foreground);
  background-color: rgb(0 0 0 / 40%);
  width: auto;
  border-radius: 2rem;
  padding: 0.3rem var(--padding-sm);
  margin-inline: var(--margin-sm);
  backdrop-filter: blur(10px);
  font-variant-numeric: tabular-nums;
  font-size: var(--font-size--xs);

  .slash {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-40));
    padding-inline: var(--padding-2xs);
    margin-block-start: -0.1rem;
  }
}

.slideshow-control[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.slideshow-control--large {
  .icon-caret {
    --icon-stroke-width: 1px;
  }

  .icon-caret {
    --icon-stroke-width: 1px;
  }

  .svg-wrapper,
  svg {
    width: var(--slideshow-controls-icon);
    height: var(--slideshow-controls-icon);
  }
}

/* Slideshow control shape styles */
.button-unstyled.slideshow-control.slideshow-control--shape-square,
.button-unstyled.slideshow-control.slideshow-control--shape-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background-color: var(--color-primary-button-background);
  color: var(--color-primary-button-text);
}

.button-unstyled.slideshow-control.slideshow-control--shape-circle {
  border-radius: 50%;
}

.button-unstyled.slideshow-control.slideshow-control--shape-square {
  border-radius: 0;
}

.slideshow-control .icon-caret {
  rotate: -90deg;
}

/* Slideshow Thumbnails */
.slideshow-controls__thumbnails-container {
  display: flex;
  width: 100%;
  max-height: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
}

.slideshow-controls__thumbnails {
  display: inline-flex;
  padding-inline: var(--slideshow-thumbnails-padding-inline, var(--padding-sm));
  padding-block: var(--slideshow-thumbnails-padding-block, var(--padding-sm));
  gap: var(--gap-xs);
  margin-inline: auto;
  height: fit-content;

  .slideshow-control {
    border-radius: var(--media-radius);
    width: clamp(44px, 7vw, var(--thumbnail-width));
    height: auto;
    aspect-ratio: var(--aspect-ratio);

    img {
      height: 100%;
      object-fit: cover;
      border-radius: var(--media-radius);
    }

    &:is([aria-selected='true']) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: calc(var(--focus-outline-offset) / 2);
      border: var(--style-border-width) solid rgb(var(--color-border-rgb) / var(--media-border-opacity));
    }
  }
}

.slideshow-controls__thumbnail {
  position: relative;
}

.slideshow-controls__thumbnail-badge {
  position: absolute;
  top: var(--padding-2xs);
  right: var(--padding-2xs);
  width: clamp(16px, 10%, 20px);
  height: clamp(16px, 10%, 20px);
  background-color: var(--color-background);
  border-radius: var(--style-border-radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgb(var(--color-foreground-rgb) / var(--opacity-5));
}

.slideshow-controls__thumbnail-badge svg {
  width: 60%;
  height: 60%;
  fill: var(--color-foreground);
  opacity: 0.6;
}

/* Slideshow Play/Pause */
.slideshow-control:is(.icon-pause, .icon-play) {
  color: var(--color-active);

  &:hover {
    color: var(--color-hover);
  }

  svg {
    display: none;
  }
}

slideshow-component:is([autoplay]) {
  &:is([paused]) {
    .icon-play > svg {
      display: block;
    }
  }

  &:not([paused]) {
    .icon-pause > svg {
      display: block;
    }
  }
}

/* Slideshow Arrows */
slideshow-arrows {
  --cursor-previous: w-resize;
  --cursor-next: e-resize;

  position: absolute;
  inset: 0;
  display: flex;
  z-index: var(--layer-heightened);
  pointer-events: none;
  mix-blend-mode: difference;
  align-items: flex-end;

  &[position='left'] {
    justify-content: flex-start;
    padding-inline: var(--padding-xs);
  }

  &[position='right'] {
    justify-content: flex-end;
    padding-inline: var(--padding-xs);
  }

  &[position='center'] {
    justify-content: space-between;
    align-items: center;
  }
}

slideshow-arrows:has(.slideshow-control--shape-square),
slideshow-arrows:has(.slideshow-control--shape-circle) {
  mix-blend-mode: normal;
}

slideshow-component[disabled='true'] slideshow-arrows {
  display: none;
}

slideshow-arrows .slideshow-control {
  pointer-events: auto;
  opacity: 0;
  min-height: var(--minimum-touch-target);
  padding: 0 var(--padding-xs);
  color: var(--color-white);
}

slideshow-arrows .slideshow-control.slideshow-control--style-none {
  display: none;
}

.media-gallery--carousel slideshow-arrows .slideshow-control {
  padding-inline: 0 var(--padding-md);
}

.card-gallery slideshow-arrows .slideshow-control {
  /* Align icons with quick-add button */
  padding-inline: var(--padding-xl);

  @container (max-width: 249px) {
    padding-inline: 0 var(--padding-sm);
  }
}

.media-gallery--carousel slideshow-arrows .slideshow-control {
  opacity: 1;
}

:not(.media-gallery--carousel)
  > :is(slideshow-component:hover, slideshow-component:focus-within):not(:has(slideshow-controls:hover))
  > slideshow-container
  > slideshow-arrows
  .slideshow-control {
  animation: arrowsSlideIn var(--animation-speed) var(--animation-easing) forwards;
}

@keyframes arrowsSlideIn {
  from {
    transform: translate(var(--padding-sm), 0);
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.block-resource-list {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap);
  min-width: 0;
  min-height: 0;
  container-type: inline-size;
  container-name: resource-list;
}

.section-resource-list {
  row-gap: var(--gap);
}

.section-resource-list__content {
  display: flex;
  flex-direction: column;
  align-items: var(--horizontal-alignment);
  gap: var(--gap);
  width: 100%;
}

.section-resource-list__content:empty {
  display: none;
}

.section-resource-list__header:is(:empty, :has(.group-block-content:empty)),
.section-resource-list__content:empty {
  display: none;
}

.section-resource-list.section--full-width product-card-link > .group-block {
  @media screen and (max-width: 749px) {
    padding-inline: max(var(--padding-xs), var(--padding-inline-start))
      max(var(--padding-xs), var(--padding-inline-end));
  }
}

.resource-list--carousel-mobile {
  display: block;

  @media screen and (min-width: 750px) {
    display: none;
  }
}

.resource-list {
  --resource-list-mobile-gap-max: 9999px;
  --resource-list-column-gap: min(var(--resource-list-column-gap-desktop), var(--resource-list-mobile-gap-max));
  --resource-list-row-gap: min(var(--resource-list-row-gap-desktop), var(--resource-list-mobile-gap-max));

  width: 100%;

  @media screen and (max-width: 749px) {
    --resource-list-mobile-gap-max: 12px;
  }

  @container resource-list (max-width: 749px) {
    --resource-list-mobile-gap-max: 12px;
  }
}

.resource-list--grid {
  display: grid;
  gap: var(--resource-list-row-gap) var(--resource-list-column-gap);
  grid-template-columns: var(--resource-list-columns-mobile);

  @media screen and (min-width: 750px) {
    grid-template-columns: var(--resource-list-columns);
  }

  @container resource-list (max-width: 449px) {
    grid-template-columns: var(--resource-list-columns-mobile);
  }

  @container resource-list(min-width: 450px) and (max-width: 749px) {
    --resource-list-columns-per-row: 3;

    grid-template-columns: repeat(var(--resource-list-columns-per-row), 1fr);

    /* Avoid orphan in last row when there are 4, 7, or 10 items */
    &:has(.resource-list__item:first-child:nth-last-child(3n + 1)),
    /* Clean two full rows when there are 8 items */
    &:has(.resource-list__item:first-child:nth-last-child(8n)) {
      --resource-list-columns-per-row: 4;
    }
  }

  @container resource-list (min-width: 750px) {
    grid-template-columns: repeat(var(--resource-list-columns-per-row), 1fr);

    &:has(.resource-list__item:first-child:nth-last-child(n + 9)) {
      --resource-list-columns-per-row: 5;
    }

    &:has(.resource-list__item:first-child:nth-last-child(n + 7):nth-last-child(-n + 8)) {
      --resource-list-columns-per-row: 4;
    }

    &:has(.resource-list__item:first-child:nth-last-child(6)) {
      --resource-list-columns-per-row: 3;
    }

    &:has(.resource-list__item:first-child:nth-last-child(5)) {
      --resource-list-columns-per-row: 5;
    }

    &:has(.resource-list__item:first-child:nth-last-child(-n + 4)) {
      --resource-list-columns-per-row: 4;
    }
  }

  @container resource-list (min-width: 1200px) {
    &:has(.resource-list__item:first-child:nth-last-child(6)) {
      --resource-list-columns-per-row: 6;
    }
  }
}

.resource-list__item {
  height: 100%;
  color: var(--color-foreground);
  text-decoration: none;
}

.resource-list__carousel {
  --slide-width: 60vw;

  width: 100%;
  position: relative;
  container-type: inline-size;
  container-name: resource-list-carousel;

  .slideshow-control[disabled] {
    display: none;
  }

  .slideshow-control--next {
    margin-inline-start: auto;
  }
}

@container resource-list-carousel (max-width: 749px) {
  .resource-list__carousel .resource-list__slide {
    --slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
  }
}

@container resource-list-carousel (min-width: 750px) {
  .resource-list__carousel .resource-list__slide {
    --section-slide-width: calc(
      (100% - (var(--resource-list-column-gap) * (var(--column-count) - 1)) - var(--peek-next-slide-size)) /
        var(--column-count)
    );
    --fallback-slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
    --slide-width: var(--section-slide-width, var(--fallback-slide-width));
  }
}

.resource-list__carousel slideshow-slides {
  gap: var(--resource-list-column-gap);

  /* Add padding to prevent hover animations from being clipped in slideshow
     15px accommodates:
     - Scale effect (9px on each side from 1.03 scale)
     - Lift effect (4px upward movement)
     - Shadow (15px spread with -5px offset)
     Using 16px for better alignment with our spacing scale */

  margin-block: -16px;
  padding-block: 16px;
}

.resource-list__carousel slideshow-arrows {
  padding-inline: var(--util-page-margin-offset);
}

.resource-list__carousel .resource-list__slide {
  width: var(--slide-width);
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 0;
}

/* Base styles */
.group-block,
.group-block-content {
  position: relative;
}

.group-block:has(> video-background-component),
.group-block:has(> .background-image-container) {
  overflow: hidden;
}

.group-block-content {
  height: 100%;
  width: 100%;
}

/* Container styles */
.section-content-wrapper.section-content-wrapper:where(.layout-panel-flex) .group-block--fill {
  flex: 1;
}

/* Flex behavior for width variants */
.layout-panel-flex--row > .group-block--width-fit {
  flex: 0;
}

.layout-panel-flex--row > .group-block--width-fill {
  flex: 1;
}

.layout-panel-flex--row > .group-block--width-custom {
  flex-basis: var(--size-style-width);
}

/* Dimension utilities - Height */
.group-block--height-fit {
  height: auto;
}

.group-block--height-custom,
.group-block--height-fill {
  height: var(--size-style-height);
}

/* Flex behavior for height variants */
.layout-panel-flex--column > .group-block--height-fit {
  flex: 0 1 auto;
}

.layout-panel-flex--column > .group-block--height-fill {
  flex: 1;
}

.layout-panel-flex--column > .group-block--height-custom {
  flex-basis: var(--size-style-height);
}

accordion-custom {
  details {
    &::details-content,
    .details-content {
      block-size: 0;
      overflow-y: clip;
      opacity: 0;
      interpolate-size: allow-keywords;
      transition: content-visibility var(--animation-speed-slow) allow-discrete,
        padding-block var(--animation-speed-slow) var(--animation-easing),
        opacity var(--animation-speed-slow) var(--animation-easing),
        block-size var(--animation-speed-slow) var(--animation-easing);
    }

    &:not([open]) {
      &::details-content,
      .details-content {
        padding-block: 0;
      }
    }

    &[open] {
      &::details-content,
      .details-content {
        opacity: 1;
        block-size: auto;

        @starting-style {
          block-size: 0;
          opacity: 0;
          overflow-y: clip;
        }

        &:focus-within {
          overflow-y: visible;
        }
      }
    }
  }
}

accordion-custom[data-disable-on-mobile='true'] summary {
  @media screen and (max-width: 749px) {
    cursor: auto;
  }
}

accordion-custom[data-disable-on-desktop='true'] summary {
  @media screen and (min-width: 750px) {
    cursor: auto;
  }
}

text-component {
  --shimmer-text-color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
  --shimmer-color-light: rgb(var(--color-foreground-rgb) / var(--opacity-10));
  --shimmer-speed: 1.25s;

  display: inline-block;
  position: relative;
  transition: color var(--animation-speed-slow) ease;
  line-height: 1;

  &::after {
    content: attr(value);
    position: absolute;
    inset: 0;
    color: transparent;
    opacity: 0;
    transition: opacity var(--animation-speed-slow) var(--animation-easing);
    pointer-events: none;
    background-image: linear-gradient(
      -85deg,
      var(--shimmer-text-color) 10%,
      var(--shimmer-color-light) 50%,
      var(--shimmer-text-color) 90%
    );
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100% 0;
    place-content: center;
  }

  &[shimmer] {
    color: transparent;

    &::after {
      opacity: 1;
      animation: text-shimmer var(--shimmer-speed) infinite linear;
    }
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

/* Animation transitions */
.transition-background-color {
  transition: background-color var(--animation-speed-medium) ease-in-out;
}

.transition-transform {
  transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
}

.transition-border-color {
  transition: border-color var(--animation-speed-medium) var(--animation-timing-hover);
}

/* Global scrollbar styles */

/* Webkit browsers */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-40));
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
  transition: background-color 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Product card title truncation - applied only to zoom-out view */
[product-grid-view='zoom-out'] :is(.product-card, .product-grid__card) :is(h4, .h4) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

/* Product card title truncation - applied on mobile regardless of view */
@media screen and (max-width: 749px) {
  :is(.product-card, .product-grid__card) :is(h4, .h4) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
  }
}

.product-card:hover,
.collection-card:hover,
.resource-card:hover,
.predictive-search-results__card--product:hover,
.predictive-search-results__card:hover {
  position: relative;
  z-index: var(--layer-raised);
  transition: transform var(--hover-transition-duration) var(--hover-transition-timing),
    box-shadow var(--hover-transition-duration) var(--hover-transition-timing);
}

.header .product-card:hover,
.header .collection-card:hover,
.header .resource-card:hover,
.header-drawer .product-card:hover,
.header-drawer .collection-card:hover,
.header-drawer .resource-card:hover {
  z-index: auto;
  transform: none;
  box-shadow: none;
}

/* Prevent iOS zoom on input focus by ensuring minimum 16px font size on mobile */
@media screen and (max-width: 1200px) {
  input,
  textarea,
  select,
  /* Higher specificity to override type preset classes like .paragraph, .h1, etc. */
  .paragraph.paragraph input,
  .paragraph.paragraph textarea,
  .paragraph.paragraph select,
  .h1.h1 input,
  .h1.h1 textarea,
  .h1.h1 select,
  .h2.h2 input,
  .h2.h2 textarea,
  .h2.h2 select,
  .h3.h3 input,
  .h3.h3 textarea,
  .h3.h3 select,
  .h4.h4 input,
  .h4.h4 textarea,
  .h4.h4 select,
  .h5.h5 input,
  .h5.h5 textarea,
  .h5.h5 select,
  .h6.h6 input,
  .h6.h6 textarea,
  .h6.h6 select {
    font-size: max(1rem, 100%);
  }
}


/* my custom css */

body{
    background:#F6F6F6;
}
.container {
    max-width: 1450px;
    margin: auto;
        padding: 0 20px;

}


 .header-top {
    background: #231F20;
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 5px 0;
  }

  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
  }

  .header-logo img {
    max-height: 65px;
  }

  .vehicle-selector {
       display: flex;
    align-items: center;
    gap: 8px;
    background: #088ED1;
    padding: 11px 13px 10px 22px;
    border-radius: 50px;
    width: 56%;
    justify-content: space-between;

  }

  span.vehicle-label {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white;
}

  .vehicle-selector select,
  .vehicle-selector button {
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .vehicle-selector select {
    appearance: none;
        -webkit-appearance: none;
    appearance: none;
    width: 16%;
    background: transparent;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 16px;
    padding: 6px 14px;
  }

  .vehicle-selector button {
      background: white;
    cursor: pointer;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 18px;
    color: #088ED1;
    border-radius: 30px;
    padding: 11px 32px 8px 15px;
       width: 14%;
      position:relative;
  }


  .vehicle-selector button:after{
   content: "";
    background: url(/cdn/shop/files/Group_117.png?v=1762450939);
    padding: 10px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 70%;
    top: 37%;
    right: 12%;
}

.header-icons .search-action img{
    width: 56%;
    transition:0.3s;
}

.header-icons .header-actions__cart-icon img{
    width:60%;
    
}
.header-icons .search-action,.header-icons .header-actions__cart-icon{
    border:1px solid #ffffff;
    border-radius:50%;
}
.header-icons .search-action:hover,.header-icons .header-actions__cart-icon:hover{
    border:1px solid #088ED1;
    border-radius:50%;
}


  .header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-icons svg {
    width: 22px;
    height: 22px;
    stroke: #0095d9;
    cursor: pointer;
  }

  .hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  padding-top: 200px;

}

.banner-breadcrumb img{
    width:6px;
    display:inline;
    margin-left:10px;
    margin-right:5px;
}

.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  /* max-width: 600px; */
  padding: 20px;
}
.hero-slide .slide-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  width: 69%;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 100px;
  line-height: 90px;
  margin-bottom:30px;
}
.hero-slide .slide-subtitle {
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
}
.my_btn {
  display: inline-block;
  background: #088ED1;
  color: #fff;
  padding: 15px 50px 10px 30px;
  border-radius: 0px 0px 20px 0px;
  font-weight: 600;
  text-decoration: none;
  font-family: Bebas Neue;
font-weight: 400;
font-size: 22px;
line-height: 26px;
transition:0.6s;
}
a.black_hover:hover {
    background:black;
}

.header_bottom{
    background:#F6F6F6;
}

.account-button{
        background: white!important;
    border-radius: 50%;
    margin-right: 10px;
}
.account-button:hover{
      border:1px solid #088ed1;
}
.header-icons .search-action, .header-icons .header-actions__cart-icon {
    border: 1px solid #ffffff;
    border-radius: 50%;
     background: white;
}

search-button.search-action {
    background: white;
     border-radius: 50%;
}

.search-modal__button{
    border-radius: 50%;
}


.hero-slide video,
.hero-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.owl-dots {
      position: absolute;
    bottom: 25%;
    right: 10%;
    transform: translate(0%);

}

.owl-dots .owl-dot{
    background: white!important;
    height: 6px;
    width: 11px;
    border-radius: 0px 0px 20px 0px;
    margin-right: 6px;
}

.owl-dots .active{
    background: #4780FF!important;
    height: 6px;
    width: 21px;
    border-radius: 0px 0px 20px 0px;
    margin-right: 6px;
}


    .stats-banner {
      text-align: center;
      color:#111113;
      border-bottom:1px solid #FFFFFF26;
      border-top:1px solid #FFFFFF26;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      align-items: center;
      gap: 20px;
    }

    .stats-item h2 {
      font-size: 32px;
      margin: 0;
      font-weight: 700;
      display: flex;
      justify-content: left;
      align-items: baseline;
      gap: 2px;
    }

    .stats-item .postfix {
      font-size: 28px;
      font-weight: 700;
    }

    .stats-item p {
      margin: 5px 0 0;
      font-size: 14px;
    }

   .image-item img {
    max-width: 146px;
    display: block;
}

   .stats-item h3{
        color: #fff;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 34px;
    text-align: left;

   }

   .stats-item h2{
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 60px;
    color:white;
    text-align: left;
   }
.stats-item p{
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color:white;
  text-align: left;
}

    @media (max-width: 992px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }



    /* tabs css */

    .featured-products-tabs { padding: 60px 0; background: #fff; }
  .featured-products-tabs .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  .featured-products-tabs .section-title {
    font-size: 36px; font-weight: 800; letter-spacing: 0.5px;
  }
  .featured-products-tabs .view-all-btn {
    background: #007bff; color: #fff; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 600;
  }
  .featured-products-tabs .tabs {
    display: flex; gap: 30px; border-bottom: 2px solid #eee; margin-bottom: 25px;
  }
  .featured-products-tabs .tab {
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
    margin-right: 0px;
  }
  .featured-products-tabs .tab.active {
    color: #088ED1;
    border-bottom: 2px solid #088ED1;
    font-weight: 600;
  }
  .featured-products-tabs .product-grid {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    margin-top: 60px;
  }

  .vehicle-selector option{
    color:black;
        font-size: 13px;
}
  .featured-products-tabs .product-card {
    border: 1px solid #E8E8E8;
    padding: 0;
    text-align: center;
    transition: 0.3s;
    width: 25%;
    overflow: hidden;
        height: 427px;

  }
  .featured-products-tabs .product-card:hover {
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  }
  .featured-products-tabs .product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    margin: auto;
    transition: 0.5s;
  }
  .product-title {
    margin-bottom: 5px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-align: left;
    text-transform: uppercase;
    color: black;
    padding:20px;
    height: 85px;
  }
  .product-price {
    font-size: 15px; font-weight: 600; color: #111; margin-bottom: 10px;
  }
  .buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 10px;
    width: 100%;
  }
    .buttons  .btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    width: 52%;
    transition: 0.3s;
  }
  .btn.view {background: #111113;color: #fff;font-family: Bebas Neue;font-weight: 400;font-style: Regular;font-size: 22px;line-height: 26px;letter-spacing: 0%;}
  .btn.cart {background: #088ED1;color: #fff;font-family: Bebas Neue;font-weight: 400;font-style: Regular;font-size: 22px;leading-trim: NONE;line-height: 26px;letter-spacing: 0%;}
  .btn:hover { opacity: 0.85; }
  .tab-content { display: none; }
  .tab-content.active { display: block; }

h2.left-title {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 70px;
    line-height: 70px;
    color: black;
    margin: 0;
}

.buttons .cart{
      width: 100%;

}

.buttons .cart-form{
   width: 50%;
}

.product-info {
    margin-bottom: 0px;
    position: relative;
    top: 50px;
    transition: 0.5s;
}


.featured-products-tabs .product-card:hover .product-info{
   position: relative;
    top: 0;
}

.featured-products-tabs .product-card:hover img{
  width:86%;
}


/* two col banner */

.two-col-banner__wrapper {
    display: flex;
    width: 100%;
}

.two-col-banner__col {
    width:50%;
    height: 700px;
    display:flex;
    align-items: end;
    padding: 100px 40px;
}

.two-col-banner__content {
    height: 30%;
}

.two-col-banner__content h2 {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 70px;
    color:white;
    margin-bottom: 15px;
    width: 90%;
}

/* image with text */

.home_two_col {
    display:flex;
    width:90%;
    margin:8% auto;
    align-items: center;
}

.image-and-text__col{
    width:50%;
}

.home_two_col h2.title {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 20px;
    color: black;
    width: 96%;
    margin:0;
}

.home_two_col .subtitle {
    margin-bottom: 20px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    color: #088ED1FA;
}

.home_two_col .description {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    color: #5D616A;
    line-height: 29px;
    margin-bottom: 30px;
}


.image-and-text__col2 img{
    width:80%;
    margin:auto;
    margin-right: 0;
}

/* about us two col */

.about_two_col .image-and-text__col1{
    
    padding-right: 7%;
}

.about_two_col img{
    width:100%;
}


/* home review css */

  .testimonial-video-section {
    background: url(/cdn/shop/files/Group_113_3.png?v=1761049713);
    color: #fff;
    padding: 60px 0;
    position: relative;
    background-size: 100%;
  }



  .testimonial-carousel .testimonial-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
  }

  .testimonial-video a {
    position: relative;
    display: inline-block;
  }

  .testimonial-video img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: rgba(255,255,255,0.2); */
    /* border: 2px solid #fff; */
    /* border-radius: 50%; */
    font-size: 32px;
    /* padding: 8px 16px; */
    /* color: #fff; */
    transition: 0.3s;
  }

  .play-button:hover {
    background: #fff;
    color: #000;
  }

  .testimonial-content {
    max-width: 650px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 44px;
    letter-spacing: 0%;
  }

  .timeline-year,.timeline-heading,.timeline-text{
     -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}

  .reviewer-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 52px;

  }

  .model-text {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 20px;
  }

  .review-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .testimonial-bottom {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }

  .testimonial-controls {
    display: flex;
    align-items: end;
    /* justify-content: flex-end; */
    gap: 20px;
    margin-bottom: 30px;
    flex-direction: column;
    width: 50%;
  }

  .testimonial-controls button {
    background: none;
    border: navajowhite;
    /* color: #fff; */
    font-size: 20px;
    padding: 6px 14px;
    cursor: pointer;
    box-shadow: none;
    transition: 0.3s;
  }

  .testimonial-controls button:hover {
    /* background: #fff; */
    /* color: #000; */
  }

  .progress-line {
    width: 100%;
    height: 2px;
    background: #585858;
    position: relative;
    overflow: hidden;
  }

  .progress-bar {
    display: block;
    height: 100%;
    background: #ffffff;
    width: 0%;
    transition: width 0.6s ease;
  }

  .testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 50%;
  }



  .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
  }

  .rating-value {
    font-weight: 700;
    font-family: Bebas Neue;
    font-weight: 400;
    font-style: Regular;
    font-size: 25px;
    leading-trim: CAP_HEIGHT;
    line-height: 23px;
    letter-spacing: 0%;
    color: black;
    background: wheat;
    padding: 13px;
    border-radius: 50%;
  }

  .stars {
    color: #ffcc00;
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .testimonial-carousel .testimonial-item {
      flex-direction: column;
      text-align: center;
    }
    .testimonial-content {
      max-width: 100%;
    }
  }

.youtube_bottom {
  display:flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 17px;
}

.youtube_bottom img{
width: 120% !important;
    height: auto;
    object-fit: contain;
    border-radius: revert-layer;
    margin-top: 5px;
}

.popup-video:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius:50%;
    background: #088ed16e;
    opacity:0;
    transition:0.8s;
}

.popup-video:hover:after{
    opacity:1;
}


p.review-text {
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 44px;
    letter-spacing: 0%;
}

.youtube_bottom p{
  font-family: Host Grotesk;
font-weight: 700;
font-style: Bold;
font-size: 24px;
line-height: 32px;

}

.control-wrap {
    display: flex;
    justify-content: end;
    float: right;
}

img {}

.play-button img{
  width: 10%;
  height:10%;
}

img.review_thumbnail {
    width: 80%;
    height: 80%;
  position:relative;
}

img.review_thumbnail:after {
  content:"";
  background:red;
  position:absolute;
  top:0;
  width:100%;
  height:100%;
  display: block;
}

.star_wrap {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin-left: 12px;
}

span.rating-text {
    /* font-family: DM Sans; */
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
}

img.review_quote {
    width: 10%!important;
    position: relative;
    bottom: 29px;
}

/* home gallery css */

.image-gallery-section {
  padding: 60px 0;
  text-align: center;
}

.center-title {
font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;
text-align: center;
color:black;
  margin-bottom:20px;
}

.image-gallery-section .gallery-description {
  max-width: 800px;
  margin: 0 auto 30px;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
text-align: center;
color:#5D616A;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 80%;
  margin: auto;
}

.gallery-image-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  margin: auto;
}

.gallery-image-item img:hover {
  transform: scale(1.05);
}

.gallery-image-item {
    display: flex;
}

.gallery-images .gallery-image-item:nth-of-type(1) img{
  width:100%;
} 


/* accordian/faq css */

    .faq-with-contact {
      padding: 90px 0;
      background: #F6F6F6;
    }
    .faq-grid {
      display: flex;
      grid-template-columns: 2fr 1fr;
      gap: 10%;
      align-items: start;
    }
    .faq-subtitle {
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 28px;
      margin-bottom: 20px;
      color:#088ED1FA;
    }
    .faq-title {
     font-family: Bebas Neue;
     font-weight: 400;
     font-size: 70px;
     line-height: 70px;
     margin-bottom:30px;
     margin-top: 20px;
    }
    .faq-item {
      border-bottom: 1px solid #D9D9D9;
      margin-bottom: 10px;
      padding: 20px 0px;
    }
    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 15px 0;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: Host Grotesk;
      font-weight: 500;
      font-size: 24px;
      line-height: 100%;
      text-transform: capitalize;
    }
    .faq-icon {
      font-size: 22px;
      font-weight: bold;
      color: #007aff;
      transition: transform 0.3s ease;
    }
    .faq-answer {
      display: none;
      padding-bottom: 10px;
     font-family: Host Grotesk;
    font-weight: 400;
     font-size: 18px;
     line-height: 28px;
    color:#5D616A;
    }
   .faq-question img.faq-icon {
  /* width: 20px; */
  /* height: 20px; */
  transition: all 0.3s ease;
}

.faq-question.active img.faq-icon {
  content: url('/cdn/shop/files/Line_15.png?v=1761058757');
}

.faq-question.active .icon-wrap{
  background:#088ED1;
  padding: 20px 15px;
}

.faq-question .icon-wrap{
  border:1px solid #088ED1;
  padding: 15px;
}

    .faq-contact {
      display: flex;
      width: 35%;
      height: 735px;
      padding: 0px 17px;
      background-size: 100%!important;
    }
    .contact-image img {
      width: 100%;
      border-radius: 6px;
    }
    .contact-box {
      /* position: absolute; */
      bottom: 0;
      /* color: #fff; */
      padding: 20px;
      width: 90%;
      transform: translateY(50%);
    }
    .contact-title {
      font-size: 18px;
      font-weight: 700;
      font-family: Bebas Neue;
      font-weight: 400;
      font-style: Regular;
      font-size: 52px;
      line-height: 100%;
      color: white;
      margin-bottom: 20px;
    }
    .contact-subtext {
      margin: 10px 0;
      color: #D1D1D1;
      font-family: Host Grotesk;
      font-weight: 400;
      font-style: Regular;
      font-size: 20px;
      line-height: 100%;
    }
    .contact-details a {
      color: #fff;
      text-decoration: none;
      font-family: Host Grotesk;
      font-weight: 400;
      font-size: 18px;
      line-height: 100%;
      margin-top: 0px;
    }
    .contact-details li {
      list-style: none;
      margin: 5px 0;
      display: flex;
      gap: 17px;
      margin-top: 25px;
    }

    .contact-details li img{
      width: 13%;
      object-fit: contain;
    }



    @media (max-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .contact-box {
        position: relative;
        transform: none;
        width: 100%;
        margin-top: 20px;
      }
    }

.faq-left {
    width: 55%;
}

.li_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul.contact-details {
    /* margin-top: 19px; */
    padding: 29px 0px 0px 0px;
    border-top: 1px solid #FFFFFF2E;
}

.li_wrap span {
    font-family: Bebas Neue;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: CAP_HEIGHT;
    line-height: 100%;
    letter-spacing: 0%;
  color:#088ED1;
}



/* footer css */

.mobile_footer{
  display:none;
}

.footer-9col {
  background: url(/cdn/shop/files/Frame_427320745.png?v=1761071331);
  background-size: 100% 100%;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 0px 0px 1px 0px;
}


.footer-wrapper {
  /* max-width: 1400px; */
  /* margin: 0 auto; */
}
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-col {
  flex: 1 1 30%;
  min-width: 200px;
  padding: 50px;
}


.footer-wrapper .footer-row:nth-of-type(1){
    margin-bottom:0;
}

.footer-wrapper .footer-row:nth-of-type(2){
    margin:0;
    padding-top:0;
}

.footer-wrapper .footer-row:nth-of-type(1) .footer-col:nth-of-type(2){
    border-left:1px solid #363434;
    padding-left:20px;
}

.footer-wrapper .footer-row:nth-of-type(1) .footer-col:nth-of-type(3){
    border-left:1px solid #363434;
    padding-left:20px;
}

.footer-wrapper .footer-row:nth-of-type(2) .footer-col:nth-of-type(2){
    border-left:1px solid #363434;
    padding-left:20px;
}

.footer-wrapper .footer-row:nth-of-type(2) .footer-col:nth-of-type(3){
    border-left:1px solid #363434;
    padding-left:20px;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 32px;
  text-transform: capitalize;
  color: white;
}

.footer-social h4{
  width:100%;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 25px;
}
.footer-links li {
  margin: 6px 0;
}
.footer-links li a {
  color: #C7C7C7;
  text-decoration: none;
  transition: color 0.3s;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 16px;
}
.footer-links li a:hover {
  color: #fff;
}
.footer-logo {
  margin-top: 15px;
  max-width: 85px;
  width: 85;
  height: 93;
  angle: 0 deg;
  opacity: 1;
}
.footer-newsletter input[type="email"] {
  background: #292929;
  border: none;
  padding: 10px;
  color: #fff;
  width: 100%;
  margin-right: 10px;
  border-radius: 0;
}
.footer-newsletter button {
  background: transparent;
  color: #fff;
  border: navajowhite;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
  position: absolute;
  right: 0%;
  top: 4px;
}
.footer-newsletter button:hover {
  background: #fff;
  color: #111;
  /* border-radius: 0 0 20px; */
}
.social-icons {
  margin: 21px 0;
  display: flex;
  margin-right: 100px;
  gap: 17px;
}
.social-icons a img {
  width: 22px;
  object-fit: contain;
  height: 22px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}
.social-icons a img:hover {
  transform: scale(1.2);
}
.policy-links li{
  list-style:none;
  padding:0;
}

.policy-links li a{
  color:#6B6B6B;
  font-family: Host Grotesk;
font-size: 16px;
line-height: 100%;
text-decoration: underline;

  
}

.footer-copyright {
  color: #777;
  font-size: 13px;
  margin-top: 10px;
}
/* @media(max-width: 1024px){
  .footer-col { flex: 1 1 45%; margin-bottom: 20px; }
}
@media(max-width: 768px){
  .footer-row { flex-direction: column; }
  .footer-col { flex: 1 1 100%; }
} */

.my-flex {
  display:flex;
  justify-content: space-between;
  width: 100%;
}

.footer-col.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

img.footer-logo-bottom {
    width: 49%;
}

ul.policy-links {
    display: flex;
    gap: 20px;
    padding-left: 0;
}

.footer-wrapper .footer-row:nth-of-type(2){
  border-top:1px solid #363434;
  padding-top:0px;
}

.footer-wrapper .footer-row:nth-of-type(3){
  border-top:1px solid #363434;
  padding-top:30px;
}

.footer-wrapper .footer-row:nth-of-type(3) .my-flex{
 align-items:center;
}

p.footer-copyright {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #6B6B6B;
}

form#FooterNewsletter {
    position: relative;
    margin-top: 25px;
}

.footer-newsletter input[type="email"]::placeholder{
  color:#999999;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;

}

.my_btn:after {
      content: "";
    background: url(/cdn/shop/files/Frame_4.png?v=1761922120);
    position: absolute;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 73%;
    top: 12px;
    right: 4px;

}

.my_btn{
    position:relative;
}

/* inner banner */

.banner-content {
    padding: 6% 3%;
        position: relative;
    z-index: 1;
}

p.banner-subtitle {
    font-family: Bebas 'Bebas Neue';
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 100%;
    color: white;
}



h1.banner-title {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 64px;
    line-height: 64px;
    color: white;
    margin-top: 0;
    margin-bottom:10px;
}

.banner-breadcrumb a{
    font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;
line-height: 100%;
color:white
}

.banner-breadcrumb{
    font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;
line-height: 100%;
color:white
}

section.custom-banner{
    position:relative;
}

section.custom-banner:before {
    content:"";
    background:url(/cdn/shop/files/Mask_group_3.png?v=1761139032);
    position:absolute;
    width:100%;
    height:100%;
    background-size:100% 100%;
    background-repeat:no-repeat;
    
}


/* mission css */

.mission-section {
  background: url(/cdn/shop/files/Group_114_1_01418ab4-3f7e-4d70-bac1-90d64f03eb88.png?v=1761141930);
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  padding: 6% 4%;
}
.mission-header {
  margin: 0 auto;
  text-align: center;
}
.mission-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;
margin:0;
}
.mission-description {
  font-family: Host Grotesk;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #C7C7C7;
  width:90%;
  margin:50px auto;
  position: relative;
  text-align: left;
}

.mission-description:before{
  content:"";
  background:url(/cdn/shop/files/Group_4.png?v=1761143141);
  position:absolute;
  padding:20px;
  left: -5%;
  background-size:100%;
  background-repeat:no-repeat;
}

.mission-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 120px;
}
.mission-feature-item h4 {
  border-left: 2px solid #088ED1;
  padding-left: 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
}
.mission-feature-item p {
  color: #C7C7C7;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 768px) {
  .mission-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .mission-features {
    grid-template-columns: 1fr;
  }
}

.mission-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


.faq-deal .banner-breadcrumb {
    margin-top:40px;
}

/* why choose us */


    .why-choose-us-section {
      padding: 60px 0;
      background: #fff;
      text-align: center;
    }

    .why-choose-us-section .container {
     
      padding: 0 4%;
    }

 

    .why-choose-us-section .section-header .title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 40px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 30px;
    }

    .feature-item {
      display: flex;
      background: #f7f7f7;
      text-align: left;
      padding: 20px;
      border-radius: 0px;
      align-items: center;
      gap: 20px;
    }

    .feature-image img {
      width: 100%;
      height: auto;
    }

    .feature-content h3 {
      text-transform: uppercase;
      margin-bottom: 8px;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 32px;
      line-height: 32px;
      color: #111113;
    }

    .feature-content p {
      color: #5D616A;
      font-family: Host Grotesk;
      font-weight: 400;
      font-size: 18px;
      line-height: 100%;
    }

    .why-choose-us-section .center-title{
    margin:0;
    margin-bottom:50px;
}

.why-choose-us-section .subheading{
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    color:#088ED1FA;
}

    @media (max-width: 768px) {
 
      .feature-image img {
        width: 100%;
      }
    }

.feature-image {
    width: 50%;
}

.feature-content {
    width: 50%;
}

/* timeline css */

 .timeline-section {
      padding: 80px 0;
      text-align: center;
      position: relative;
      background: linear-gradient(180deg, #131313 0%, #2D2D2D 100%);

    }
    .timeline-header {
      /* max-width: 700px; */
      margin: 0 auto 60px;
    }
  .timeline-section .center-title{
    color:white;
    margin: 0;
    margin-top: 20px;
  }
    .timeline-desc {
      color: #C7C7C7;
     font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
text-align: center;

    }
    .timeline-wrapper {
      position: relative;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      padding: 11% 0;
    }
    .timeline-line {
      position: absolute;
      top: 57%;
      left: 0;
      width: 100%;
      height: 2px;
      background: rgba(255,255,255,0.15);
      transform: translateY(-50%);
      z-index: 0;
    }
    .timeline-item {
      position: relative;
      width: 22%;
      min-width: 180px;
      z-index: 2;
      padding: 20px 0px 0px 20px;
    }
    .timeline-item.top .timeline-content {
      margin-bottom: 60px;
    }
    .timeline-item.bottom .timeline-content {
      margin-top: 60px;
    }
    .timeline-dot {
      width: 16px;
      height: 16px;
      border: 3px solid;
      border-radius: 50%;
      background: #000;
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }
    .timeline-year {
      margin-bottom: 10px;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 24px;
      color: #088ED1FA;
      line-height: 100%;
      text-align:left;
    }
    .timeline-heading {
      margin-bottom: 10px;
      font-family: Bebas Neue;
      font-weight: 400;
      font-style: Regular;
      font-size: 32px;
      line-height: 32px;
      color: white;
      text-align:left;
      margin: 0;
    }
    .timeline-text {
        font-family: Host Grotesk;
        font-weight: 400;
       font-style: Regular;
       font-size: 18px;
       line-height: 26px;
      color:#C7C7C7;
       text-align:left;      
    }

    @media (max-width: 768px) {
      .timeline-wrapper {
        flex-direction: column;
        align-items: center;
      }
      .timeline-item {
        width: 100%;
        text-align: center;
      }
      .timeline-item.top .timeline-content,
      .timeline-item.bottom .timeline-content {
        margin: 20px 0;
      }
      /* .timeline-line {
        display: none;
      } */
    }

h4.timeline-subtitle {
    margin-bottom: 0;
}

.timeline-wrapper .top {
    top: 218px;
    position: relative;
}

.timeline-wrapper .bottom{
  bottom: 229px;
}

.timeline-wrapper .top:before {
    content: "";
    background: url(/cdn/shop/files/Frame_427320844.png?v=1761156236);
    padding: 20px;
    width: 11%;
    height: 70%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -2%;
    left: -7%;
}

.timeline-wrapper .bottom:before{
    content: "";
    background: url(/cdn/shop/files/Frame_427320849.png?v=1761156548);
    padding: 20px;
    width: 11%;
    height: 70%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 28%;
    left: -7%;
}


/* map css */

.map_sec{
    background:#111113;
    padding:1% 0;
}

.map_two_col {
    display:flex;
    width:90%;
    margin:8% auto;
}



.map_two_col h2.title {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 20px;
    color: #ffffff;
    width: 96%;
    margin:0;
    margin-bottom:20px;
}

.map_two_col .subtitle {
    margin-bottom: 20px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    color: #088ED1FA;
}

.map_two_col .description {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    color: white;
    line-height: 29px;
    margin-bottom: 30px;
}


.map_two_col .image-and-text__col2 img{
    width:100%;
    margin:auto;
}

.map_two_col .image-and-text__col1{
    padding-right:15%;
}



/* feature blog section css */

  .featured-blog-post-section {
    background-color: #111113;
    padding: 60px 0px;
    color: #fff;
  }

  .featured-blog-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 50px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .featured-blog-image img {
    width: 706px;
    height: 505px;
    object-fit: cover;
  }

  .featured-blog-content {
   width: 44%;
  }

  .featured-label {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #FFFFFF24;
    padding: 4px 10px;
    border-radius: 30px;
    margin-bottom: 10px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    padding: 10px 20px;
  }

  .featured-date {
    color: #F6F6F6;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 10px;
    margin-top: 89px;
  }

  .featured-title {
    color: #fff;
    text-transform: uppercase;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 64px;
    line-height: 64px;
    margin: 0;
    margin-top: 20px;
  }

  .featured-excerpt {
    color: white;
    font-size: 15px;
    margin-bottom: 25px;
    font-family: Host Grotesk;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 25px;

  }

 



  .featured-placeholder {
    text-align: center;
    color: #999;
    padding: 60px 0;
  }

  @media (max-width: 992px) {
    .featured-blog-inner {
      flex-direction: column;
      text-align: left;
    }

    .featured-blog-image img {
      width: 100%;
      height: auto;
    }

    .featured-blog-content {
      max-width: 100%;
    }
  }

.featured-blog-image {
    width: 49%;
}


/* blogs with search filter */


.blog-search-section {
  padding: 60px 0;
  background: #fff;
  color: #111;
}

.blog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.blog-controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.blog-search-input,
.blog-sort-select {
  padding: 10px 15px;
  border: 1px solid #E2E2E2;
  border-radius: 0px;
  min-width: 220px;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;
line-height: 100%;

}

.blog-search-input::placeholder{
  color:#908F8F;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;

}

.blog-posts-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}

.blog-post {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 20px);
  display: flex;
}

.post-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.post-inner:hover {
  transform: translateY(-5px);
}

.post-image img {
  width: 100%;
  height: 258px;
  display: block;
  object-fit:cover;
}

.post-content {
  padding: 20px 0px;
}

.post-date {
  color: #5D616A;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}

.post-title {
  margin: 10px 0;
}

.post-title a {
  text-decoration: none;
  color: #111113;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
}

.post-excerpt {
  color: #5D616A;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;
line-height: 25px;

}

.read-more_btn {
  margin-top: 15px;
  display: inline-block;
  color: black;
  font-family: Bebas Neue;
  font-weight: 400;
font-size: 24px;
line-height: 26px;
text-decoration: underline;

}


.blog-search-button{
  background:#088ED1;
  border: navajowhite;
  padding: 5px 13px;
  cursor:pointer;
}

.blog-search-button img{
      width: 70%;
    margin: auto;
}

  
  *:focus-visible{
    outline:none!important
  }
  
/* Responsive */
@media (max-width: 1024px) {
  .blog-post {
        flex: 1 1 calc(49% - 30px);
        max-width: calc(50% - 16px);
  }
}

@media (max-width: 767px) {
  .blog-post {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.search-wrapper {
    display: flex;
}

/* most viewed css */

.mostly-viewed-section {
  padding: 80px 0;
  background:#F6F6F6;
}
.mostly-viewed-title {
font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;
margin-bottom:20px;
}
.mostly-viewed-divider {
  margin-bottom: 30px;
  border: none;
  border-top: 1px solid #D9D9D9;
}
.mostly-viewed-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}
.main-article {
  width: 50%;
}
.main-article img {
  width: 100%;
  height: auto;
  display: block;
}
.main-article .article-date {
  color: #5D616A;
  margin-top: 15px;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.main-article .article-title {
  margin: 10px 0;
  color:#111113;
  font-family: Bebas Neue;
  font-weight: 400;
   font-size: 44px;
   line-height: 44px;

}
.main-article .article-excerpt {
  color: #5D616A;
 font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;

}
.main-article .read-more {
  color: #000;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  text-decoration: underline;
  margin-top: ;
}
.read-more span {
  margin-left: 5px;
}

.side-articles {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.side-article {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.side-article img {
  width: 215px;
  height: 197px;
  width: 215;
  height: 210;
  angle: 0 deg;
  opacity: 1;
  object-fit: cover;
}
.side-article .article-date {
  color: #5D616A;
  margin-bottom: 3px;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 100%;

}
.side-article .article-title {
  color:#111113;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  margin-top:15px;
  margin-bottom: 50px;
}
.side-article .read-more {
  color: #000;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  text-decoration: underline;

}
@media(max-width: 600px) {
  .mostly-viewed-wrapper {
    flex-direction: column;
  }
  .main-article, .side-articles {
    flex: 1 1 100%;
  }
}


/* blog recommended css */


.recommended-blogs {
  padding: 50px 0;
}
.recommended-heading {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;

}
.recommended-grid {
  display: flex;
  flex-wrap:wrap;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.recommended-item {
  border: 1px solid #E8E8E8;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease;
  width:32%;
}
.recommended-item:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.recommended-meta {
  width: 13%;
}
.recommended-icon {
  font-size: 14px;
}
.recommended-title {
  text-transform: uppercase;
  color:#111113;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  margin-top:10px;
}

a.recommended-link {
    gap: 22px;
    display: flex;
}

.recommended-wrap {
    width: 80%;
}

.recommended-item img{
  height:50px;
  width:50px;
}

section.recommended-blogs {
    padding: 80px 0px;
}

.recommended-divider{
      margin-bottom: 50px;
    border: none;
    border-top: 1px solid #E8E8E8;
}


span.recommended-date {
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 100%;
color:#5D616A;
}

.article-feature-image {
  width: 100%;
  margin: 0;
  padding: 0;
}
.article-feature-image__wrapper {
  width: 100%;
}
.article-feature-image__img {
  display: block;
    width: auto;
    height: auto;
    object-fit: cover;
    margin: auto;
}

/* blog sinle layout css */

.blog-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.blog-sidebar {
  flex: 0 0 270px;
}

.blog-toc,
.blog-social {
  background: #F6F6F6;
  padding: 29px 31px;
  margin-bottom: 20px;
  /* border-radius: 10px; */
}

.blog-toc h4,
.blog-social h4 {
  margin-bottom: 20px;
  font-family: Host Grotesk;
font-weight: 500;
font-size: 24px;
text-transform: capitalize;
color:#212120;
}

.blog-toc ul,
.blog-social ul {
  list-style: none;
  padding: 0;
  margin: 0;

}
.blog-social ul{
  flex-wrap:Wrap;
}
.blog-social ul li i{
  color:#838383;
}

.blog-social ul li:hover i{
  color:black;
}


.blog-toc li {
  margin-bottom: 20px;
}

.blog-toc a {
  color:#212120;
  font-family: Host Grotesk;
font-weight: 500;
font-size: 18px;
line-height: 100%;
text-transform: capitalize;
text-decoration: underline;

}

.blog-toc a:hover {
  text-decoration: underline;
}

.blog-social ul {
  display: flex;
  gap: 10px;
}

.blog-social a {
  color: #333;
  font-size: 18px;
  transition: color 0.2s;
}

.blog-social a:hover {
  color: #007bff;
}

.blog-content {
  flex: 1;
      width: 100%;
}

.back-to-news {
  display: flex;
  margin-bottom: 50px;
  width: 20%;
  gap: 18px;
}
.back-to-news img{
  width: 4%;
}

.back-to-news span{
    font-size: 15px;
  text-decoration: none;
  color: black;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}



.back-to-news:hover {
  text-decoration: underline;
}

.blog-title {
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  margin-bottom: 10px;
  text-align: left;
  color: #111113;
}

.blog-meta {
  color: #5D616A;
  margin-bottom: 20px;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 100%;

}

.blog-body h3,.blog-body h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #000000;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
}

.blog-body p {
  margin-bottom: 20px;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #5D616A;
}

blockquote {
  font-family: Host Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 30px;
  color: #111113;
  margin: 0;
  position:relative;
  margin-top:70px;
}

.blog-body blockquote:before{
  content:"";
  background:url(/cdn/shop/files/Layer_1_2.png?v=1761757873);
  padding:20px;
  position:absolute;
  top:-40px;
  background-size:100%;
  background-repeat:no-repeat;
}
.blog-images {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  width: 50%;
}


.blog-images figure {
  flex: 1;
      padding: 0;
    margin: 0;
}

.blog-images img {
  width: 100%;
}

.blog-images figcaption {
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
  color: #666;
  text-align: left;
}

.blog-social li{
  background:white;
  padding: 5px 13px;
  border-radius:50%;
  /* height: 38px; */
}

.blog-social img{
  width:40px;
  height: 33px;
  object-fit: scale-down;
}

.blog-social a:hover img{
   filter: brightness(0) saturate(100%) invert(36%) sepia(86%) saturate(2787%) hue-rotate(182deg) brightness(96%) contrast(102%);
}

@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
  }
  .blog-sidebar {
    order: 2;
  }
}




.blog-images-wrap {
    display: flex;
}

.blog-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ===== LEFT SIDEBAR (Fixed TOC) ===== */
.blog-sidebar {
  width: 280px;
  position: sticky;
  top: 20px; /* Adjust if header height differs */
  align-self: flex-start;
}




#table-of-contents .active {
    border-left:3px solid #088ED1;
}

#table-of-contents .active a {
    color: #088ED1;
}

#table-of-contents li{
    padding-left:10px;
}

.blog-toc ul li.active a {
  color: #088ED1;
}

.blog-toc ul li a:hover {
  color: #088ED1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .blog-layout {
    flex-direction: column-reverse;
  }

  .blog-sidebar {
    position: relative;
    width: 100%;
    top: 0;
    margin-bottom: 30px;
  }

  .blog-toc {
    padding: 15px;
  }
}

/* Smooth scrolling for TOC links */
html {
  scroll-behavior: smooth;
}

/* recommended blog css */

section.related-blogs-section {
    padding: 80px 0px;
    background: #F6F6F6;
    margin-top: 60px;
}
.related-blogs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.related-blogs .blog-post {
  width: calc(33.333% - 20px);
}
.post-inner {
  background: #fff;
}
.post-image img {
  width: 100%;
  display: block;
  
}
.post-content {
  padding: 15px 0px;
}
.section-heading {
  margin-bottom: 25px;
  font-family: Bebas Neue;
font-weight: 400;
font-size: 50px;
line-height: 70px;
color: #000000;
}
.read-more_btn {
  display: inline-block;
  margin-top: 10px;
  color: #000;
  font-weight: 500;
}

.blog-post .post-inner{
  background: transparent;
}


@media (max-width: 767px) {
  .related-blogs .blog-post {
    width: 100%;
  }
}


/* product filter */

  .products-area .products-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .products-area .product-card {
    border: 1px solid #E8E8E8;
    padding: 0;
    text-align: center;
    transition: 0.3s;
    width: 32%;
    overflow: hidden;
        height: 420px;

  }
  
  .products-area .product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    margin: auto;
    transition: 0.5s;
  }


.products-area .product-card:hover .product-info{
   position: relative;
    top: 0;
}

.products-area .product-card:hover img{
  width: 81%;
}

.product-grid-wrapper .filters h4{
    font-family: Bebas Neue;
font-weight: 400;
font-size: 28px;
color:#111113;
}

.filtered-product-grid {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.product-grid-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
}

.filters {
  width: 18%;
  padding-right: 20px;
}

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

.filters li {
  margin-bottom: 10px;
}

.filters input[type="checkbox"] {
  appearance: none;
-webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #E2E2E2;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    margin-right: 8px;
    position: relative;
    top: 5px;
    transition: all .2s ease;
}

.filters input[type="checkbox"]:checked {
  background-color: #088ed1; /* or your brand color */
  border-color: #088ed1;
}

.filters input[type="checkbox"]:checked::after {
 content: "";
    position: absolute;
    top: 4px;
    left: 3.5px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

.filters .count {
  color: #5D616A;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

.products-area {
  flex: 1;
}

/* --- Top Bar --- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  /* border-bottom: 1px solid #eee; */
  padding-bottom: 10px;
}

.results-count {
  color: #908F8F;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 16px;
}

.sort-by label {
  font-size: 14px;
  margin-right: 5px;
}

.sort-by select {
  border: 1px solid #E2E2E2;
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
  border-radius: 0;
  color: #908F8F;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-top: 20px;
}


.pagination button:not(.my_btn) {
  margin: 0px;
  height:50px;
  width:50px;
  cursor: pointer;
   border:0;
  border-radius:50%;
  background:transparent;
  font-family: Host Grotesk;
font-weight: 500;
font-size: 20px;
  color:black;

}

.pagination button.active {
  background: #088ED1;
  color: #fff;
  border:0;
  border-radius:50%;
  
}

.pagination{
  margin-bottom:40px;
}

.pagination img{
  width:24px;
}


.pagination a,
.pagination span {
  padding: 6px 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
}

.pagination .current {
  background: #000;
  color: #fff;
}

.filters label{
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color:#1E1E1E;
}

.product-grid-wrapper .filters li{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* breadcrumb css */

.breadcrumb-section {
  text-align: left;
  padding: 0;
  color:#111113;
  margin-top: 80px;
  margin-bottom:10px;
}


.breadcrumb-nav a {
  text-decoration: none;
  font-family: Host Grotesk;
  font-size: 16px;
  line-height: 100%;
}

nav.breadcrumb-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

span.breadcrumb-current {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}


/* product sinle page css */

.product-information__grid{
  grid-template-columns: 1fr 1fr!important;
}

.pure-vertical-gallery {
  /* display: flex; */
  justify-content: space-between;
  margin: 30px auto;
  max-width: 100%;
}
.vg-row {
  display: flex;
  gap: 20px;
  width: 100%;
}
.vg-thumbs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vg-thumb-btn {
border: none;
    background: #fff;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    display:none;
}
.vg-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 700px;
  overflow-y: auto;
  margin: 10px 0;

  /* Hide scrollbar but keep scroll functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.vg-thumbs::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.vg-thumb {
  border: 2px solid #E2E2E2;
  border-radius: 0;
  cursor: pointer;
  transition: border 0.2s;
  padding: 73pxpx;
}
.vg-thumb img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 0;
  background: #F6F6F6;
  margin: 9px;
}
.vg-thumb.is-active {
  border-color: #007bff;
}
.vg-main-wrap {
  position: relative;
  width: 80%;
}
.vg-main {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: #F6F6F6;
  margin: auto;
}
.vg-slide {
  display: none;
  justify-content: center;
  align-items: center;
}
.vg-slide.is-active {
  display: flex;
}

.vg-main .is-active img{
  padding:50px;
}


.vg-slide img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.vg-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  display: none;
}
.vg-prev, .vg-next {
  border: 1px solid #ccc;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
}
.vg-counter {
  font-weight: 600;
}
@media(max-width: 768px){
  .vg-row{flex-direction:row;align-items:normal;}
  .vg-thumbs{flex-direction:row;overflow-x:auto;max-height:none;}
  .vg-thumb img{width:44px;height:38px;}

  
}


.media_counter {
    display: flex;
    justify-content: space-around;
    margin-top: 17px;
    background: #F6F6F6;
    padding: 20px;
    display:none;
}

p.counter_v {
    font-family: Bebas Neue;
    font-weight: 400;
    font-style: Regular;
    font-size: 58px;
    leading-trim: CAP_HEIGHT;
    line-height: 68px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 0;
}

p.counter_t {
    color: #088ED1;
    font-family: Host Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: auto;
}

.product-details {
    padding:40px 0px;
}

.product-details .text-block:nth-of-type(1) p {
    font-family: Bebas Neue;
font-weight: 400;
font-size: 28px;
line-height: 100%;
color:#088ED1FA;
}

.product-details .text-block:nth-of-type(1) h1 {
 font-family: Bebas Neue;
font-weight: 400;
font-size: 54px;
line-height: 60px;
color:#111113;
}

.product-information__grid{
    width:95%;
    margin:auto;
}

.product-details .price{
    color:#088ED1;
    font-family: Host Grotesk;
font-weight: 700;
font-size: 24px;
line-height: 100%;
}
.product-details .text-block:nth-of-type(2){
    margin-top:20px;
}
.product-details .text-block:nth-of-type(2) p {
font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 25px;
color:#5D616A;
}

.add-to-cart-button{
    background:#088ED1;
    border-radius:0px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 22px;
    width: 48%!important;
}

.product-details .add-to-cart-button .add-to-cart-icon{
    display:none;
}

.product-details .shopify-payment-button{
    display:none;
}


.quantity-selector .btn_w{
    display:flex;
    flex-direction:column-reverse;
    
}

.quantity-selector input{
    font-family: Bebas Neue;
font-weight: 400;
font-size: 20px;
line-height: 24px;
    padding-left:15px;

}

.quantity-selector{
    border:1px solid #E2E2E2;
    border-radius:0px!important;
    max-width: 16%!important;
}
.quantity-selector button{
    height:21px!important;
    position:relative;
    right:10px;
}

.quantity-selector button img{
    width:13px;
    object-fit:contain;
}


.quantity-selector .btn_w{
    display:flex;
    flex-direction:column-reverse;
    
}

.quantity-selector input{
    font-family: Bebas Neue;
font-weight: 400;
font-size: 20px;
line-height: 24px;
    padding-left:15px;

}

.quantity-selector{
    border:1px solid #E2E2E2;
    border-radius:0px!important;
    max-width: 16%!important;
}
.quantity-selector button{
    height:21px!important;
    position:relative;
    right:10px;
}

.quantity-selector button img{
    width:13px;
    object-fit:contain;
}

    p.estimated_date {
          border-top: 1px solid #E8E8E8;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #5d616a;
    padding-top: 23px;
    margin-top: -10px;
    }


    /* product single page tab css */

     .tabs-container {
      border-top: 1px solid #eee;
      margin-top: 40px;
    }
    .tabs-nav {
      display: flex;
      gap: 30px;
      border-bottom: 1px solid #E8E8E8;
      padding: 0;
      margin: 0 0 20px;
      list-style: none;
    }
    .tab-link {
      cursor: pointer;
      padding: 25px 0;
      position: relative;
      font-weight: 500;
      color: #5D616A;
      transition: color 0.3s ease;
      font-family: Host Grotesk;
      font-size: 32px;
      line-height: 100%;
      text-transform: capitalize;
    }
    .tab-link.active {
      color: #088ED1;
      font-family: Host Grotesk;
      font-weight: 600;
      font-size: 32px;
      line-height: 100%;
    }
    .tab-link.active::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 100%;
      height: 3px;
      background-color: #111113;
    }
    .tab-content {
      display: none;
      color: #444;
      line-height: 1.7;
    }
    .tab-content.active {
      display: block;
    }

.tabs-content {
    margin-top: 40px;
    width: 70%;
}

.tabs-content p{
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 28px;
color:#5D616A;
}


.recommended-products-section .product-grid {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    margin-top: 40px;
  
  }
  .recommended-products-section .product-card {
    border: 1px solid #E8E8E8;
    padding: 0;
    text-align: center;
    transition: 0.3s;
    width: 25%;
    overflow: hidden;
        height: 428px;
    background:white;

  }
  .featured-products-tabs .product-card:hover {
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  }
  .recommended-products-section .product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    margin: auto;
    transition: 0.5s;
  }

.recommended-products-section .product-card:hover .product-info{
   position: relative;
    top: 0;
}

.recommended-products-section .product-card:hover img{
  width:86%;
}

h2.section-heading {
    color: #111113;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 0!important;
}

section.recommended-products-section {
    background: #F6F6F6;
    padding: 80px 0px;
}

.faq_sec .banner-breadcrumb{
    margin-top:50px;
}

section.faq-section .faq-subtitle{
    text-align:center;
    margin-bottom: 0px;
}

section.faq-section .faq-title{
    text-align:center;
    margin-top:0px;
}

section.faq-section .faq-description{
    color:#5D616A;
    font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
text-align: center;
width:50%;
    margin:auto;
}

section.faq-section{
    padding:80px 0px;
}

section.faq-section .faq-accordion {
    width: 80%;
    margin: auto;
    margin-top: 35px;
}

section.faq-section .faq-answer{
    width: 87%;
}

.product-card .cart{
position:relative;
  padding-left:17%;
}

.product-card .cart:before{
  content:"";
  background:url("/cdn/shop/files/Frame_1_2.png?v=1761921909");
  padding:30px;
  position:absolute;
  top: 4px;
  left:20px;
  display:block;
  background-size: 45%;
  background-repeat: no-repeat;
  
}

.related-blogs-section .section-heading{
      margin-bottom: 60px !important;
      font-size:70px;
}


.read-more_btn:after {
        content: "";
        background: url(/cdn/shop/files/Group_117.png?v=1762450939);
        padding: 10px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 67%;
        top: 24%;
        right: -37%;
}

.read-more_btn{
    position:relative;
}

.read-more:after {
        content: "";
        background: url(/cdn/shop/files/Group_117.png?v=1762450939);
        padding: 10px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 67%;
        top: 26%;
        right: -37%;
}

.read-more{
    position:relative;
}



 .contact-support-section {
      position: relative;
      color: #fff;
      font-family: "Poppins", sans-serif;
      padding: 100px 8%;
      background-repeat: no-repeat;
    }

    /* Breadcrumb */
    .breadcrumb {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 40px;
    }
    .breadcrumb a {
      color: #FFFFFF;
      text-decoration: none;
      transition: color 0.3s ease;
      font-family: Host Grotesk;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;
      leading-trim: NONE;
      line-height: 100%;
      letter-spacing: 0%;
      text-align: center;
    }
    .breadcrumb a:hover {
      color: #fff;
    }
    .breadcrumb .separator {
      margin: 0 8px;
      color: rgba(255,255,255,0.5);
    }
    .breadcrumb .current {
      color: #fff;
      font-family: Host Grotesk;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;
      leading-trim: NONE;
      line-height: 100%;
      letter-spacing: 0%;
      text-align: center;
    }

    /* Layout */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 50px;
      align-items: center;
    }

    .contact-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-heading {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 100px;
      line-height: 100px;
      text-align: center;
      width: 76%;
      margin: auto;
      margin-bottom: 20px;
    }

   p.contact-p {
    font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 18px;
line-height: 100%;
text-align:center;
    margin-bottom:50px;
}

    .contact-address{
      margin-bottom: 10px;
      font-size: 16px;
      color: #e6e6e6;
      font-family: Host Grotesk;
      font-weight: 400;
      font-style: Regular;
      font-size: 20px;
      leading-trim: NONE;
      line-height: 100%;
      letter-spacing: 0%;
      width: 47%;
      line-height: 31px;
    }

    .contact-link {
      color: #e6e6e6;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-link:hover {
      color: #fff;
    }

    .contact-address {
      margin-top: 10px;
      color: #ccc;
    }

    /* Social Icons */
    .contact-social {
      display: flex;
      gap: 18px;
      margin-top: 15px;
    }

    .contact-details > p{
    margin-bottom:35px;
}

.left_h-follow{
  font-family: Host Grotesk;
font-weight: 600;
font-size: 20px;
line-height: 100%;
color:#B0B0B0;
}

    .contact-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #088ED1;
      transition: all 0.3s ease;
    }

    .contact-social a:hover {
      background-color: #fff;
    }

    .social-icon {
      width: 20px;
      height: 20px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter 0.3s ease;
    }

    .contact-social a:hover .social-icon {
      filter: brightness(0);
    }

    /* Hours */
    .contact-hours {
     padding-top: 60px;
    margin-top: 50px;
    border-top: 1px solid #FFFFFF33;
    }

    .contact-hours h4 {
     
      margin-bottom: 6px;
      color:#B0B0B0;
      font-family: Host Grotesk;
font-weight: 400;
font-size: 20px;
line-height: 100%;

    }

    .contact-hours p {
      color: #FFFFFF;
      font-family: Host Grotesk;
      font-weight: 400;
      font-size: 20px;
      line-height: 31px;
    }

    /* Form */
    .contact-right {
      background: #fff;
      color: #000;
      padding: 40px;
    }
    .contact-grid .contact-details a{
      font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 24px;
leading-trim: NONE;
line-height: 28px;
letter-spacing: 0%;
color:white;
      border-bottom:2px solid #088ED1;
    }

    .contact-grid .contact-details a:hover{
      color:#088ED1!important;
    }
    .form-note {
      color: #111113;
      margin-bottom: 25px;
      font-family: Host Grotesk;
      font-weight: 400;
      font-size: 19px;
      line-height: 26px;
    }

    .form-grid {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .form-label {
      font-weight: 600;
      font-size: 14px;
      color: #111113;
      margin-bottom: 4px;
      font-family: Host Grotesk;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;
      leading-trim: NONE;
      line-height: 26px;
      letter-spacing: 0%;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #DDDDDD;
      border-radius: 6px;
      font-size: 15px;
      outline: none;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: #000;
    }

 .form-input::placeholder,
    .form-textarea::placeholder{
      color:#5D616A;
      font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;

    }



    .form-button:hover {
      background: #333;
    }

    .success-message {
      color: green;
      font-weight: 600;
    }

    .error-list {
      color: red;
      list-style: none;
      padding: 0;
      margin-bottom: 15px;
    }

 



h3.left_h {
    margin-bottom: 0;
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    color: #B0B0B0;
}

.contact-form .my_btn{
  border:none;
  float:right;
}

.discover-elite-section {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.discover-elite-section .elite-header h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 70px;
  color: black;
  text-align: center;
}

.discover-elite-section .elite-header p {
  color: #5D616A;
  max-width: 800px;
  margin: 0 auto 50px;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
text-align: center;

}

.elite-columns {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.elite-column {
  flex: 1 1 45%;
  text-align: center;
  max-width: 500px;
}

.elite-logo {
  width: 500px;
  margin-bottom: 0;
  height: 330px;
  object-fit: contain;
}

.elite-column p {
  color: #5D616A;
  line-height: 1.7;
  margin-bottom: 25px;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
      height: 130px;
}

p.contact-p a{
    color:#088ED1;
}


.elite-column:nth-of-type(1) .elite-logo{
  width:300px;
 margin:auto;
  
}

#elite-carbon-section {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    padding-bottom:0px;
    
  }

  .elite-carbon-wrapper {
    max-width: 1300px;
    margin: 0 auto;
  }

  /* Back button */
  .back-button {
    text-align: left;
    margin-bottom: 20px;
  }

  .back-link {
    text-decoration: none;
    color: #161616;
    transition: color 0.3s ease;
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
  }

  .back-link:hover {
    color: #0073e6;
  }

  .elite-top-image img {
    max-width: 500px;
    margin: 0 auto 20px;
    display: block;
  }

  .elite-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  .elite-main-image {
    position: relative;
    display: inline-block;
  }

  .elite-main-image img {
    max-width: 100%;
    height: auto;
  }

  a.back-link {
    position:relative;
}

a.back-link:before {
    content:"";
    background:url(/cdn/shop/files/Group_113_7.png?v=1762957019);
    padding:20px;
    position:absolute;
    background-repeat:no-repeat;
    background-size: 36%;
    left: -17%;
    top: 4px;
}

.back-link:hover:before{
    background:url(/cdn/shop/files/Group_113_8.png?v=1762957018);
     padding:20px;
    position:absolute;
    background-repeat:no-repeat;
    background-size: 36%;
    left: -17%;
    top: 4px;
}



    .performance-testing {
      background: linear-gradient(180deg, #131313 0%, #2D2D2D 100%);

      color: #fff;
      padding: 80px 0;
    }

    /* .performance-testing .container {
      max-width: 1350px;
      margin: 0 auto;
    } */

    .performance-title{
      text-transform: uppercase;
      margin-bottom: 50px;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 70px;
      line-height: 70px;
      text-align: center;
    }

    .testing-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 60px;
     
    }

   .performace_wrap{
       border: 1px solid #4A4A53; 
      padding: 80px; 
   }

    .testing-left {
      width: 55%;
    }

    .testing-right {
      width: 40%;
    }

    .testing-left .sub-heading {
      margin-bottom: 15px;
      text-transform: uppercase;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 42px;
      line-height: 48px;
      width: 80%;
    }

    .testing-left .desc {
      color: #B0B0B0;
      font-family: Host Grotesk;
      font-weight: 400;
      font-size: 18px;
      leading-trim: NONE;
      line-height: 26px;
      width: 89%;
    }

    .testing-right img {
      width: 100%;
    }

    .divider {
      height: 1px;
      background-color: rgba(255, 255, 255, 0.15);
      margin: 60px 0;
    }

    .lower-flex {
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      width: 100%;
    }

    .lower-left {
      width: 100%;
      /* max-width: 800px; */
    }

    .lower-left .sub-heading {
      text-transform: uppercase;
      margin-bottom: 20px;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 42px;
      line-height: 100%;
      color: white;
    }

    .lower-left .points {
      color: #ddd;
      font-size: 15px;
      line-height: 1.7;
      width: 100%;
    }

    @media(max-width: 768px) {
      .testing-left,
      .testing-right {
        width: 100%;
        text-align: center;
      }
      .testing-right img {
        margin-top: 20px;
      }
    }

.points ul {
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  padding: 0;
  align-items: baseline;
}

.points ul li::marker{
  color:transparent;
}

.point-item p{
  color: #B0B0B0;
  font-family: Host Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 26px;
  margin-bottom:20px;
  padding-left:20px;
}

.lower-flex .sub-heading{
  font-family: Bebas Neue;
font-weight: 400;
font-style: Regular;
font-size: 42px;
line-height: 100%;

}

.bottom-points {
    display: flex;
    gap: 40px;
}

.left-points {
    width: 48%;
}

.right-points {width: 48%;}

.point-item{
  position:relative;
}

.point-item:before{
  content:"";
  background:url(/cdn/shop/files/Polygon_1.png?v=1762960695);
  padding:20px;
  background-repeat: no-repeat;
  position: absolute;
     background-size: 33%;
    left: 0%;
    top: 3%;
}



    .air-filters-section {
      padding: 80px 0;
      background: #fff;
    }
    .air-filters-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
    }
    .air-left {
      width: 45%;
    }
    .air-right {
      width: 50%;
      background: #F6F6F6;
      padding: 40px;
      /* border-radius: 8px; */
    }


    .main-heading {
      font-family: "Bebas Neue", sans-serif;
      font-size: 50px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .air-left .desc {
      font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color:#5D616A;
      margin-bottom: 30px;
    }
    .youtube-box {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
    }
    .youtube-thumb {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      cursor: pointer;
      border: 1px solid black;
    }
    .youtube-text span {
      display: block;
      font-family: "Host Grotesk";
      color: #292929;
      font-family: Host Grotesk;
      font-weight: 700;
      font-size: 24px;
      line-height: 32px;
    }
    .youtube-logo {
      width: 150px;
      margin-top: 5px;
    }
    .points {
      list-style: none;
      margin: 0;
      padding: 0;
    }
   .air-right .point-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 15px;
      font-family: Host Grotesk;
      font-weight: 400;
      font-size: 18px;
      line-height: 26px;
      color: #5D616A;
     padding-left:20px;
     margin-bottom: 20px;
    }
    
    .air-right .point-item p {
      color: #333;
      font-size: 16px;
      line-height: 1.6;
      font-family: "Host Grotesk", sans-serif;
      margin: 0;
    }

    @media(max-width: 991px) {
      .air-left, .air-right {
        width: 100%;
      }
    }


p.top-text {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #5D616A;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

a.popup-youtube {
    display: flex;
    gap: 20px;
    align-items: center;
}

.air-left .main-heading{
    color:black;
    font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;

}

.air-right .point-item:before{
    top:11%;
}


  
    .elite-carbon-intake {
      background-color: #F6F6F6;
      padding: 80px 0;
    }

    .elite-carbon-intake .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .elite-carbon-intake .main-heading {
      text-transform: uppercase;
      margin-bottom: 30px;
      color: #000;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 70px;
      line-height: 70px;
    }

    .elite-carbon-intake .description p {
      color: #5D616A;
      margin-bottom: 20px;
      font-family: Host Grotesk;
      font-weight: 400;
      font-size: 18px;
      line-height: 26px;

    }

    .elite-carbon-intake .content-wrap {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .elite-carbon-intake .image-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
    }

    .elite-carbon-intake .image-item {
      width: 49%;
      text-align: center;
    }

    .elite-carbon-intake .image-item img {
      width: 100%;
      height: auto;
      border-radius: 0px;
      object-fit: cover;
      max-width: 100%;
    }


  


    .why-work-with-us {
      padding: 80px 0;
      background: #fff;
    }

    .why-work-with-us .container {
      max-width: 1350px;
      margin: 0 auto;
      background:#F6F6F6;
      padding: 0;
    }

    .why-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .why-left {
      width: 50%;
      padding-left: 40px;
    }

    .why-right {
      width: 45%;
    }

    .why-left .main-heading {
      margin-bottom: 25px;
      color: #000;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 70px;
      line-height: 70px;
    }

    .why-left .desc {
      font-family: "Host Grotesk", sans-serif;
      font-size: 18px;
      line-height: 26px;
      color: #5D616A;
      margin-bottom: 30px;
    }

    .why-left .btn {
      display: inline-block;
      background: #0095d9;
      color: #fff;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
      padding: 12px 22px;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .why-left .btn:hover {
      background: #007bb3;
    }

    .why-left .btn .arrow {
      margin-left: 5px;
      font-size: 14px;
    }

    .why-right img {
      width: 100%;
      border-radius: 0px;
      object-fit: cover;
    }

    @media (max-width: 992px) {
      .why-left, .why-right {
        width: 100%;
      }
      .why-wrap {
        flex-direction: column-reverse;
      }
    }

  
    .perks-benefits {
      background: url(/cdn/shop/files/Group_115_3.png?v=1762972534);
      background-size:100% 100%;
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }
    .perks-benefits .container {
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .perks-benefits .section-title {
      margin-bottom: 10px;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 70px;
      line-height: 70px;
      text-align: center;
    }
     .perks-benefits .section-subtitle {
         font-family: Host Grotesk;
         font-weight: 700;
         font-style: Bold;
         font-size: 18px;
        line-height: 26px;
         text-align: center;
         color:#C7C7C7;
      margin-bottom: 50px;
    }
    .benefits-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
          margin-top: 40px;
    }
    .benefit-item {
      background: #29292B;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      padding: 15px;
      /* border-radius: 4px; */
      /* width: 23%; */
      min-width: 300px;
      justify-content: flex-start;
      transition: background 0.3s ease;
    }
    .benefit-item:hover {
      background: rgba(255,255,255,0.1);
    }
    .benefit-item .icon-wrap img {
      width: 45px;
      height: 45px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }
    .benefit-title {
      font-family: 'Host Grotesk', sans-serif;
      color: #fff;
      text-transform: uppercase;
      margin: 0;
      font-family: Bebas Neue;
      font-weight: 400;
      font-size: 28px;
    }


.benefit-item .icon-wrap {
    background:#088ED1;
    height:70px;
    width:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 0px 0px 20px 0px;
}



  .career-openings {
    padding: 80px 0;
  }

  .career-title {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 70px;
    line-height: 70px;
    color:#000000;
    margin-bottom: 0;
  }

  .career-subtitle {
    color: #5D616A;
    margin-bottom: 40px;
    max-width: 700px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }

  .career-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border: 1px solid #DEDEDE;
    padding: 5px;
    
    
  }
    
    
    
    
    
    
    
    
    
  .career-openings {
    padding: 80px 0;
  }

  .career-title {
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 70px;
    line-height: 70px;
    color:#000000;
    margin-bottom: 0;
  }

  .career-subtitle {
    color: #5D616A;
    margin-bottom: 40px;
    max-width: 700px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }

  .career-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }

  .career-filters
    input,
  .career-filters select {
    padding: 10px 14px;
    border: none;
    flex: 1;
    min-width: 150px;
    background: #F6F6F6;
    border-radius: 0;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
  }

  .career-btn {
    background: #009EE3;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .career-btn:hover {
    background: #007bbf;
  }

  .career-list {
    border-top: 1px solid #ddd;
  }

  .career-item {
    padding: 30px 0;
  }

  .career-job-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .career-job-desc {
    color: #555;
    margin-bottom: 15px;
  }

  .career-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
  }

  .career-type,
  .career-location {
    font-size: 14px;
    color: #009EE3;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .career-apply {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    float: right;
    transition: all 0.3s ease;
  }

  .career-apply:hover {
    color: #009EE3;
  }

  .career-divider {
    border: none;
    border-bottom: 1px solid #eee;
    margin: 0;
  };
  

  .career-filters input,
  .career-filters select {
    padding: 10px 14px;
    border: none;
    flex: 1;
    min-width: 150px;
    background: #F6F6F6;
    border-radius: 0;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    width:100%;
  }

  .career-btn {
   font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    letter-spacing: 0%;
    border-radius: 0px!important;
    background: #088ED1;

  }

  .career-btn:hover {
    background: #007bbf;
  }

  .career-list {
    border-top: 1px solid #ddd;
  }

  .career-item {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .career-job-title {
    margin-bottom: 10px;
    color: #161616;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 32px;
  }

  .career-job-desc {
    color: #5D616A;
    margin-bottom: 15px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }

  .career-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
  }

  .career-type,
  .career-location {
    font-size: 14px;
    color: #009EE3;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .career-apply {
    text-decoration: none;
    color: #3B3F45;
    font-weight: 600;
    float: right;
    transition: all 0.3s ease;
    font-family: Host Grotesk;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    position:relative;
    padding-right:30px;
  }

  .career-apply:after{
    content:"";
    background:url(/cdn/shop/files/Group_115_4.png?v=1763043678);
    padding:20px;
    position:absolute;
    background-size:48%;
    background-repeat:no-repeat;
    right:-20px;
  }

  .career-apply:hover {
    color: #009EE3;
  }

  .career-divider {
    border: none;
    border-bottom: 1px solid #eee;
    margin: 0;
  }





.career-col2 {
    width: 70%;
}

.meta-wrap {
    display: flex;
    gap: 5px;
    align-items:center;
    justify-content: space-between;
    border: 1px solid #DEDEDE;
    border-radius:40px;
    /* width: 20%; */
    /* height: 49px; */
    padding: 14px;
    padding-left: 42px;
    position:relative;
}

.meta-wrap:nth-of-type(1):before{
  content:"";
  background:url(/cdn/shop/files/Icon_30acb18f-9ca5-49bb-9fe5-1fe2617b51ba.png?v=1763041045);
  padding:20px;
  position:absolute;
  background-repeat:no-repeat;
  background-size:50%;
  left: 12px;
  top: 14px;
}

.meta-wrap:nth-of-type(2):before{
  content:"";
  background:url(/cdn/shop/files/Frame_10750.png?v=1763041140);
  padding:20px;
  position:absolute;
  background-repeat:no-repeat;
  background-size: 47%;
  left: 12px;
  top: 11px;
}



.meta-wrap span{
  font-family: Host Grotesk;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color:#212120;
}

.job_w {
    width: 37%;
    position:relative;
}



.job_w:after{content:"";background:url(/cdn/shop/files/Icons.png?v=1763043904);padding:20px;position:absolute;background-repeat:no-repeat;background-size:60%;right: 8px;top:10px;}

.job-posting-section {
  padding: 80px 0;
}
.job-posting-section .container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.job-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
}
.job-meta {
  display: flex;
  gap: 20px;
  color: #009EE3;
  font-weight: 600;
}
.job-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: baseline;
}
.job-description {
  width: 50%;
}
.job-form {
  width: 45%;
  background: #F6F6F6;
  padding: 30px;
  border-radius: 6px;
}
.section-heading, .sub-heading {
  font-weight: 700;
  margin-bottom: 15px;
}
.job-list {
  list-style: disc;
  margin-left: 0;
  margin-bottom: 30px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.form-row {
  display: flex;
  gap: 10px;
}
.form-row .half {
  flex: 1;
}
.job-form input[type="text"],.job-form input[type="email"],.job-form input[type="file"] ,.job-form select {
  padding: 15px 10px;
  border: none;
  border-radius: 4px;
  background: white;
}

.job-form input::placeholder{
  color:#5D616A;
  font-family: Host Grotesk;
font-weight: 300;
font-size: 18px;
line-height: 100%;

}

.job-form select{
  color:#5D616A;
  font-family: Host Grotesk;
font-weight: 300;
font-size: 18px;
line-height: 100%;
}
.submit-btn {
  background-color: #009EE3;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}
.submit-btn:hover {
  background-color: #007bbf;
}

h1.job-title {
    color: #161616;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 62px;
    line-height: 100%;
  margin-bottom:0px
}

.job-sub-heading {
    font-family: Host Grotesk;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #161616;
        margin-top: 20px;
}

.job-description p , .job-description li{
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 28px;
color:#5D616A;
}

 .job-description li::marker{
   color:#088ED1;
 }

.job-description li{
  margin-bottom:5px;
}

.job-form .form-title{
  color:#212120;
  font-family: Host Grotesk;
font-weight: 500;
font-size: 28px;
line-height: 100%;
text-align: center;
margin-bottom:20px;

}

.job-form label{
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color:#59545C;
}

.resume_wrap {
  position: relative;
  width: 100%;
  height: 60px; /* Adjust height to match your design */
  /* border: 2px dashed #009EE3; */
  border-radius: 6px;
  overflow: hidden;
 margin-top:0px;
}

.custom-file-upload-info {
    margin-top: 5px;
}

.resume_wrap input[type="file"] {
  position: relative;
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.resume_wrap::before {
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-size: 100% 100% !important;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url(/cdn/shop/files/Group_117_4.png?v=1775750290);
}

.job-application-form .my_btn{
        width: 100%;
    border: none;
}

.job-application-form .my_btn:after{
            right: 29%;
}

.job-posting-section a.back-link:before{
        left: -10px;
    top: 0px;
}

.job-posting-section .back-link{
    padding-left:20px;
}




/* judge me */

.jdgm-write-rev-link{
background:#088ed1!important;
font-family: "Bebas Neue"!important;
border:none!important;
    border-radius: 0 0 20px!important;
    font-weight: 400!important;
    font-size: 22px;
}

.jdgm-rev-widg {
    font-family: "Bebas Neue"!important;
    font-weight: 400!important;
}

.jdgm-rev__author{
    color:#088ed1!important;
}

.jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown, .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown-arrow{
     color: #088ed1!important;
}

.jdgm-histogram__bar-content {
    background-color: #088ed1!important;
}

#judgeme_product_reviews{
        max-width: 1450px!important;

}

.jdgm-verified-checkmark{
    display:none!important;
}

.jdgm-rev__icon:before{
    color: #088ed1!important;
}

.jdgm-rev-widg__title{
      font-family: Bebas Neue;
    font-weight: 400;
    font-size: 70px!important;
    line-height: 70px!important;
    text-align: center;
    color: #000;
    margin-bottom: 50px!important;
}

 .three-steps-wrapper {
    padding: 60px 0;
    text-align: center;
    font-family: Inter, sans-serif;
    max-width: 1200px;
    margin: auto;
  }

  .three-steps-wrapper .steps-header h2 {
    font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;
text-align: center;

    margin-bottom: 10px;
    color: #111113;
  }

  .three-steps-wrapper .steps-header p {
    color: #5D616A;
    margin-bottom: 20px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }

  .steps-container {
       display: flex;
    justify-content: center;
    gap: 65px;
    flex-wrap: wrap;
    margin-top: 111px;
    margin-bottom: 80px;
  }

  .step-box {
    max-width: 244px;
    text-align: center;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: auto;
    margin-bottom: 20px;
  }

  .step-title {
    margin-bottom: 8px;
    color: #111113;
    font-family: Host Grotesk;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;

  }

  .step-text {
    color: #5D616A;
    font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 24px;
text-align: center;

  }

  .step-box{
    position:relative;
}

.step-box:nth-of-type(1):after{
    content:"";
    background:url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding:30px;
    width: 108%;
    height: 127%;
    position:absolute;
    background-repeat:no-repeat;
    background-size: 100% 100%;
    top: -37px;
    right: 0;
    left: -17px;
    bottom: 0;
    z-index: -1;
}

.step-box:nth-of-type(2):after{
    content:"";
    background:url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding:30px;
    width: 108%;
    height: 127%;
    position:absolute;
    background-repeat:no-repeat;
    background-size: 100% 100%;
    top: -37px;
    right: 0;
    left: -17px;
    bottom: 0;
    z-index:-2;
}

.step-box:last-child:after{
    content:"";
    background:url(/cdn/shop/files/Ellipse_1719.png?v=1764003831);
    padding:30px;
    width: 93%;
    height: 128%;
    position:absolute;
    background-repeat:no-repeat;
    background-size: 100% 100%;
    top: -37px;
    right: 0;
    left: -22px;
    bottom: 0;
    z-index:-3;
}

/* --- TOP FLEX WRAP FIX --- */
.ws-top-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap; /* This enables proper wrapping */
}

/* Left Text */
.ws-top-text {
  width: 60%; /* allows wrapping + minimum width */
}

/* Serial Box */
.ws-serial-box {
  flex: 1 1 250px;
  text-align: center;
}

.ws-serial-box img {
  max-width: 84%;
  height: auto;
  margin: auto;
}

.ws-divider {
  margin: 60px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

/* --- MIDDLE SECTION --- */
.ws-mid-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.ws-mid-img,
.ws-bottom-img {
  flex: 1 1 350px;
}

.ws-mid-text,
.ws-bottom-text {
  flex: 1 1 350px;
}

/* --- BOTTOM SECTION --- */
.ws-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .ws-top-flex,
  .ws-mid-flex,
  .ws-bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  .ws-top-text,
  .ws-serial-box,
  .ws-mid-img,
  .ws-mid-text,
  .ws-bottom-text,
  .ws-bottom-img {
    flex: 1 1 100%;
  }
}


h3.ws-title {
  color: #111113;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 70px;
  line-height: 70px;
  margin-top: 15px;
  margin-bottom: 0;
}

section.warranty-section {
    background: #F6F6F6;
    padding: 80px 0px;
}

h4.ws-subtitle {
    color: #088ED1FA;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}

.warranty-section p{
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color:#5D616A;
}

.warranty-wrapper {
  padding: 80px 20px;
  background: #fff;
}

.warranty-container {
  max-width: 900px;
  margin: 0 auto;
}

.warranty-title {
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 70px;
  line-height: 70px;
  text-align: center;
  color: #111113;
  margin-bottom:10px;
}

.warranty-subtitle {
  color: #5D616A;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  width: 90%;
  margin: auto;
  margin-bottom: 60px;
}

.warranty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 6px;
  color: #111113;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.form-group input {
  padding: 12px 14px;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #5D616A;
}
.form-group input::placeholder {
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color:#5D616A;
}

.form-group input:focus {
  outline: none;
  border-color: #088ED1;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: right;
  align-items: end;
}

.warranty-btn {
  background: #007bff;
  color: #fff;
  padding: 14px 50px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.warranty-btn:hover {
  background: #0056b3;
}

/*  */


@media (max-width: 768px) {
  .warranty-grid {
    grid-template-columns: 1fr;
  }
}


  .dealer-resources-section {
    text-align: center;
    padding: 100px;
  }

  .dealer-resources-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .dealer-resource-item {
    text-align: center;
    background: #F6F6F6;
    width: 32%;
  }

  .dealer-resource-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    /* border: 1px solid #ddd; */
    /* border-radius: 8px; */
    transition: background-color 0.3s;
  }

  .dealer-resource-link:hover {
    background-color: #f0f0f0;
  }

  .dealer-resource-icon {
    width: 80px;
    height: 80px;
    /* height: 100px; */
    margin-bottom: 0;
  }

.dealer-resources-section h2 {
    color:#111113;
    font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;
text-align: center;

  }



.resource_img_wrap {
    background: white;
    display: flex;
    justify-content: center;
    height: 160px;
    align-items: center;
}

.dealer-resource-item p{
  font-family: Bebas Neue;
font-weight: 400;
font-size: 32px;
line-height: 32px;
text-align: center;
color:#111113;
  width:60%;
  margin:auto;
  margin-top:30px;
}

.dealer-faq .banner-content{
  text-align:center;
}

section.faq-section.dealer-faq {
    background: #F6F6F6;
}

.dealer-faq .faq-item{
    background:white;
    padding:20px;
    border:none;
    transition: 0.3s;
}

.dealer-faq .faq-answer{
    border-top:1px solid #DDDDDD;
    padding-top:30px;
    width: 100%!important;
    padding-right: 50px;
}

.dealer-faq .faq-question.active .icon-wrap {
    background: #088ed1;
    padding: 21px 15px;
    border: 1px solid #088ED1;
}

.dealer-faq .faq-question .icon-wrap {
    padding: 15px;
    background: transparent;
    border: 1px solid #088ED1;
}


.dealer-faq .faq-question img.faq-icon {
    content: url(/cdn/shop/files/Frame_3.png?v=17610587567);
    /* filter: brightness(0) invert(1); */
}

.dealer-faq .faq-question.active img.faq-icon {
    content: url(/cdn/shop/files/Line_15.png?v=1761058757);
}

  .dealer-locator-section {
    padding: 40px;
    background-size: cover;
    background-position: center;
    text-align: left;
    margin-bottom:50px;
  }
  .dealer-locator-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .dealer-locator-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .dealer-locator-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }

.dealer-locator-section .container {
  display:flex;
}

.dealer-locator-row-one,.dealer-locator-row-two{
  width:50%;
}

.dealer-locator-row-one h2{
  font-family: Bebas Neue;
font-weight: 400;
font-size: 28px;
line-height: 100%;
color:#088ED1FA;
}

.dealer-locator-row-one  h3{
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 70px;
  line-height: 70px;
  color:#111113;
  margin-top: 0px;
}

.dealer-locator-row-two p{
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color:#5D616A;
  margin-bottom:40px;
}

.shopify-app-block{
  width:100%;
}

.tabs {
    background: #F6F6F6;
    padding:20px;
}

div#all-dealers-content {
    display: flex;
    flex-direction: column;
        border: 1px solid #0000001f;
    margin-top: 40px;
        height: 900px;
    overflow-y: scroll;
}
/* Custom scrollbar */
div#all-dealers-content::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
    height: 8px; /* Optional: horizontal scrollbar */
    border-radius:25px;
}

div#all-dealers-content::-webkit-scrollbar-thumb {
    background-color: #D5D5D5; /* Scrollbar color */
    border-radius: 10px;
}

div#all-dealers-content::-webkit-scrollbar-track {
    background: white; /* Track color */
    border-radius: 10px;
}

/* Firefox support */
div#all-dealers-content {
    scrollbar-width: thin;  /* Optional: Adjust the width of the scrollbar in Firefox */
    scrollbar-color: #D5D5D5 #f1f1f1; /* Thumb color and track color for Firefox */
}
ul.dealer-list {
    width: 97%;
}

li.dealer-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 25px;
    border-bottom: 1px solid #0000001f;
}

.tabs button{
    font-family: Bebas Neue;
font-weight: 400;
font-size: 36px;
line-height: 100%;
border:none;
    background:none;
    color:#B0B0B0;
    transition:0.5s;
    margin-right: 50px;

}

#dealer-locator-tab:after{
    content:"";
    background:#D1D1D1;
    height:50px;
    width:1px;
    position:absolute;
    right:-30px;
    top: -5px;
}

#dealer-locator-tab{
    position:relative;
}

.tabs button:hover{
    color:#088ED1;
}

.tabs .active{
    color:#088ED1;
}

.store-list-col-1 h3{
    color:#111113;
    font-family: Host Grotesk;
font-weight: 600;
font-size: 22px;
line-height: 100%;

}

.store-list-col-2 p{
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color:#5D616A;
    width: 68%;
    margin-bottom: 20px;
    margin-top: 0;
}

.store-list-col-4 a{
    color:#088ED1;
    font-family: Host Grotesk;
font-weight: 500;
font-size: 20px;
line-height: 100%;

}

.dealer-item .store-list-col-1{
    width: 25%;
}

.locator-tabs .liq{
    width:100%;
}

.gr-search-slt {
    position:relative;
    margin-top:117px;
}

.inner-item .item-content .store-name{
    font-family: Host Grotesk;
font-weight: 500;
font-size: 28px;
line-height: 38px;
    text-transform:capitalize;
    

}

.storeify-sl-item-row a{
    font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color:#5D616A;
}

.linkdetailstore,.getdirectionstore{
    color:#088ED1!important;
    font-family: Host Grotesk;
font-weight: 500;
font-size: 16px;
margin-top:20px;
}

.storeify-stl-col1{
    padding:0px 30px!important;
}
.gr-search-slt:after {
    content:"Enter your address or ZIP code below to find the nearest dealer";
    position:absolute;
    top: -135%;
    color: #111113;
    font-family: Host Grotesk;
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
}

/* .gr-search-slt:before{
    content:"Simply input your email or ZIP and pick your search range to get started.";
    position:absolute;
    top: -101%;
    color: #5D616A;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
} */

.gr-search-slt input:placeholder{
    font-family: Host Grotesk!important;
font-weight: 400;
font-style: Regular;
font-size: 18px;
leading-trim: NONE;
line-height: 26px;
letter-spacing: 0%;
    
}

.gr-search-slt input{
    font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color:#5D616A!important;
 background:#F6F6F6;
    border-:none;
    border-radius:0px;
    padding:20px;
}

.storelocator-submit-search{
        display: inline-block;
    background-color: #088ed1!important;
    color: #fff;
    padding: 15px 50px 10px 30px;
    border-radius: 0 0 20px;
    font-weight: 600;
    text-decoration: none;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    transition: .6s;
}

.locator-tabs{
  margin-bottom:60px;
}

li.dealer-item:last-child {
    border-bottom:none;
}

.store-list-col-4 a{
    position:relative;
    margin-right: 25px;
}

.store-list-col-4 a:after {
    content: "";
    background: url(/cdn/shop/files/Frame_17b3adbe-c1e3-41d1-a759-6428cedb9b31.png?v=1764939382);
    position: absolute;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 73%;
    top: 0px;
    right: -42px;
}

.last-pages .banner-title{
    text-align:center;
}

/* Outer Background like screenshot */
.policy-wrapper {
  background: #F6F6F6;
  padding: 60px 20px;
  padding-bottom: 0;
}

/* Center Container */
.policy-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* White Card */
.policy-card {
  background: #ffffff;
  padding: 50px 40px;
  font-family: inherit;
  line-height: 1.7;
  /* color: #333; */
  position: relative;
  bottom: 110px;
}

/* Headings Style */
 
.policy-card h3 {
  margin-bottom: 15px;
  color: #000;
  font-family: Bebas Neue;
font-weight: 400;
font-size: 28px;
line-height: 32px;
color:#000000'
}

.policy-card h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 35px;
}

.policy-card h2 {
  margin-top: 35px;
  font-family: Host Grotesk;
font-weight: 600;
font-size: 20px;
line-height: 100%;
color:#088ED1;
}



/* Body text */
.policy-card p {
  margin-bottom: 20px;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 28px;
color:#5D616A;
}
.policy-card span{
  display:block;
  font-weight:600;
  margin-top:20px;
  
}
/* Bullet Styles */
.policy-card ul {
  margin: 15px 0 20px 20px;
  padding: 0;
}

.policy-card ul li {
  margin-bottom: 8px;
  font-size: 16px;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color:#5D616A;
}
.policy-card ul li::marker{
  color: #088ED1;
}
/* Links */
.policy-card a {
  color: #007ace;
  text-decoration: underline;
}
.last-pages .banner-breadcrumb{
      text-align: center;
}


.custom-faq-wrapper {
  background: #f4f4f4;
  padding: 50px 20px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Last Updated */
.faq-update {
  color: #088ED1;
  margin-bottom: 25px;
  font-family: Host Grotesk;
font-weight: 600;
font-size: 20px;
line-height: 100%;

}

.job-form-success {
  background: #e8f7ec;
  border: 1px solid #b7e4c7;
  color: #1b5e20;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.job-form-error {
  background: #fdecec;
  border: 1px solid #f5c2c2;
  color: #b42318;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

/* Accordion item */
.custom-faq-wrapper .faq-item {
  background: #fff;
  /* border-radius: 6px; */
  margin-bottom: 15px;
  overflow: hidden;
  /* border: 1px solid #e5e7eb; */
}

/* FAQ Title Button */
.shipping-faq-title {
  width: 100%;
  text-align: left;
  padding: 15px 30px;
  font-weight: 600;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #1f2937;
  font-family: Host Grotesk;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}

/* Chevron icon */
.faq-icon {
  transition: transform .3s ease;
}

.shipping-faq-title[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* FAQ Content */
.shipping-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #fff;
  /* border-top: 1px solid #DDDDDD; */
}

.faq-content-inner {
  padding: 20px 30px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  /* border-top: 1px solid #DDDDDD; */
}

.faq-content-inner {
    border-top: 1px solid #DDDDDD;
}


/* HTML styling inside content */
.faq-content-inner p {
  margin-bottom: 12px;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 28px;
color:#5D616A;
}

.faq-content-inner ul {
  margin: 10px 0 10px 0px;
  padding-left: 22px;
}

.faq-content-inner li {
  margin-bottom: 15px;
  list-style:none;
}

.faq-content-inner a {
  color: #088ED1;
  text-decoration: underline;
}

/* Responsive */


p.p-bold {
  font-family: Host Grotesk;
font-weight: 500;
font-size: 20px;
line-height: 32px;

}

.p-bold span{
  color:#088ED1;
  margin-right:5px;
}

.faq-content-inner ul li:before{
  content:"";
  background:url(/cdn/shop/files/Polygon_1_1.png?v=1765984544);
  padding:20px;
  background-repeat:no-repeat;
  top: 0;
  position: absolute;
  left: -2%;
  top: 15%;
}

.faq-content-inner ul li{
  position:relative;
}

.faq-content-inner ul li span{
  font-family: Host Grotesk;
font-weight: 500;
font-size: 18px;
leading-trim: NONE;
line-height: 28px;
color:#000000;
  margin-right:3px;
}

span.span_line {
    text-decoration: underline;
    display: block;
}

span.blue_txt {
    color: #088ED1;
    margin-right: 5px;
    font-weight: 500;
}

span.black_text {
    color: #2C2C2F;
    font-weight: 500;
}

.custom-faq-wrapper .faq-item {
  border:none;
}
/* Responsive */
@media(max-width: 768px){
  .policy-card {
    padding: 30px 20px;
  }

  .policy-card h1 {
    font-size: 26px;
  }

  .policy-card h2 {
    font-size: 22px;
  }
}


.shipping-policy-content h2{
        font-family: Bebas Neue;
    font-weight: 400;
    font-size: 45px;
    line-height: 70px;
    color: black;
    margin: 0;
}

.shipping-policy-content p{
        font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    color: #5D616A;
    line-height: 29px;
    margin-bottom: 30px;

}

.shipping-policy-content{
    padding-top:40px;
}

.return-page .step-box:nth-of-type(1):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 112%;
    height: 106%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -21px;
    bottom: 0;
    /* z-index: 1; */
}
.return-page .step-box:nth-of-type(1){
    z-index:3;
}
.return-page .step-box:nth-of-type(2):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 112%;
    height: 106%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -21px;
    bottom: 0;
    z-index: -1;
}

.return-page .step-box:nth-of-type(2){
    z-index:2;
}

.return-page .step-box:nth-of-type(3):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 112%;
    height: 102%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -21px;
    bottom: 0;
    z-index: -1;
}

.return-page .step-box:nth-of-type(3){
     z-index:1;
}

.return-page .step-box:last-child:after {
    content: "";
    background: url(/cdn/shop/files/Ellipse_1719.png?v=1764003831);
    padding: 30px;
    width: 102%;
    height: 104%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -27px;
    right: 0;
    left: -24px;
    bottom: 0;
    z-index: -1;
}

.return-page .steps-container {
    display: flex;
    justify-content: center;
    gap: 67px;
    flex-wrap: wrap;
    margin-top: 111px;
    margin-bottom: 80px;
}

.return-page .step-title {
    margin-bottom: 8px;
    color: #111113;
    font-family: Host Grotesk;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
}

.return-page .step-text {
    color: #5D616A;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin-top: 0;
    text-align: center;
}


.btn-white {
    display: inline-block;
    background: white;
    color: black;
    padding: 15px 50px 10px 30px;
    border-radius: 0px 0px 20px 0px;
    font-weight: 600;
    text-decoration: none;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    transition: 0.6s;
    position: relative;
}

.btn-white:after {
    content: "";
    background: url(/cdn/shop/files/Frame_44.png?v=1766069355);
    position: absolute;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 73%;
    top: 12px;
    right: 4px;
}

.btn-white:hover {
    display: inline-block;
    background: black;
    color: white;
    padding: 15px 50px 10px 30px;
    border-radius: 0px 0px 20px 0px;
    font-weight: 600;
    text-decoration: none;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    transition: 0.6s;
}

.my_btn:not(.black-hov):hover {
    background: white;
    color: black;
   
}
.black-hov:hover{
  background:black;
}
.my_btn:not(.black-hov):hover:after {
    content: "";
    background: url(/cdn/shop/files/Frame_44.png?v=1766069355);
    position: absolute;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 73%;
    top: 12px;
    right: 4px;
}


.custom-404-section {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    padding-top: 200px;
}

.custom-404-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.custom-404-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #ffffff;
    height: 100vh;
}

/* 404 IMAGE */
.error-image-404 {
    /* max-width: 420px; */
    width: 100%;
    margin-bottom: 20px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.custom-404-subtitle {
    margin-top: 25px;
    color: #CFCFCF;
    font-family: Host Grotesk;
    font-weight: 700;
    font-size: 34px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 0;
}

.custom-404-desc {
    margin-top: 10px;
    color: #CFCFCF;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 20px;
    width: 56%;
    margin: auto;
    text-align: center;
}



.c404-btn {
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.c404-btn-blue {
    background: #0d6efd;
    color: #fff;
}

.c404-btn-blue:hover {
    background: #0b5ed7;
}

.c404-btn-white {
    background: #fff;
    color: #000;
}

.c404-btn-white:hover {
    background: #e6e6e6;
}

.c404-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.c404-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}




p.btn-heading {
  font-family: Host Grotesk;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-top: 50px;
    border-top: 2px solid transparent;
    border-image-source: linear-gradient(90deg, #0F0F11 0%, #464653 50%, #B6B6C2 100%);
    border-image-slice: 1;
    border-image-width: 2px 0 0 0;
    margin-top: 40px;


}



.custom-404-buttons a{
    margin-right:15px;
}

.custom-404-section .container{
  margin:unset;
}

.thankyou-hero-wrapper {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  color: #fff;
}

.thankyou-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.thankyou-container {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.thankyou-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width:48%;
}

.thankyou-image {
  max-width: 100%;
  height: auto;
      margin-bottom: 10px;
}

.thankyou-description {
  font-family: Host Grotesk;
font-weight: 400;
font-size: 20px;
line-height: 25px;
color:#CFCFCF;
 padding-top: 44px;
        border-top: 2px solid transparent;
        border-image-source: linear-gradient(90deg, #0F0F11 0%, #464653 50%, #B6B6C2 100%);
        border-image-slice: 1;
        border-image-width: 2px 0 0 0;
}

.thankyou-container .my_btn{
      width: 28%;
}


@media (max-width: 991px) {


  .thankyou-content {
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {

   .timeline-section {
              padding: 0;
        padding-top: 40px;

    }

        .timeline-wrapper {
        gap: 20px;
        padding: 40px 40px;
    }

  #FooterNewsletter p.success-message {
        font-size: 13px;

  }
  .thankyou-description {
    font-size: 14px;
  }
}

.btn_carts {
    display: flex;
    border: 1px solid #E6E6E8;
    padding: 10px;
    border-radius: 200px;
    justify-content: space-between;
    align-items: center;
}

.cart-items quantity-selector-component{
    border:none;
}

.btn_carts input{
    padding-left:0;
    font-family: Host Grotesk;
font-weight: 500;
font-size: 18px;
line-height: 26px;

}

.btn_carts .quantity-plus{
    justify-content:end;
}


.btn_carts button img {
    width: 25px;
    object-fit: contain;
}

.cart-items__table .quantity-selector{
  border:none!important;
}

/* cart css */

.cart-items__table {
  width: 100%;
  border-collapse: collapse;
}

.cart-items__head-row th {
  color: #231F20;
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid #DDDDDD;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 114.99999999999999%;

}

.cart-items__table-row td {
  padding: 18px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  
}

.cart-items__title {
  font-weight: 500;
  text-decoration: none;
  color: #5D616A;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;
line-height: 100%;

}

.cart-items__unit-price {
  color: #555;
  font-family: Host Grotesk;
font-weight: 400;
font-size: 16px;
color:#5D616A;
}

.cart-items__price {
  text-align: right;
  font-weight: 700;
  font-family: Host Grotesk;
font-weight: 700;
font-size: 18px;

}

.cart-items__remove {
  background: transparent;
  border: none;
  cursor: pointer;
  /* opacity: 0.6; */
  border: 1px solid #DDDDDD;
  box-shadow: 0px 1px 2px 0px #1018280A;
  padding: 6px;
}

.cart-items__remove:hover {
  opacity: 1;
}

.cart-items__table-row td:nth-of-type(1){
  width:15%;
}

.cart-items__table-row td:nth-of-type(2){
  width: 37%;
  padding-right:10%;
}

.cart-items__table-row td:nth-of-type(3){
  width: 13%;
}

.cart-items__table-row td:nth-of-type(4){
  width: 13%;
}

.cart-items__table-row td:nth-of-type(5){
  width: 12%;
}

.cart-items__table-row td:nth-of-type(6){
  width: 5%;
}


/* ============================= */
/* MOBILE KEEP ORIGINAL GRID */
/* ============================= */

/* @media (max-width: 767px) {
  .cart-items__table,
  .cart-items__head-row {
    display: none;
  }
} */

/* ============================= */
/* DESKTOP EXACT MATCH */
/* ============================= */

@media (min-width: 768px) {
  .cart-items__table {
    display: table;
  }
}

a.cart-img {
    background: #F6F6F6;
}

a.cart-img img{
  width:120px;
}

img.remove_i {
    width: 18px;
}

a.cart-items__title:hover {
    color:#088ED1;
}

.cart_botm {
    display: flex;
    justify-content:space-between;
      border-top:1px solid #DDDDDD;
    border-bottom:1px solid #DDDDDD;
    padding:20px 0px;
   margin-bottom:50px;
}

.cart_botm .cart-discount {
    width: 49%;
}

.cart-page{
    max-width:1440px;
    padding:80px 40px;
    display:flex!important;
}

.cart-page .cart-page__items{
    width:70%!important;
}

.cart-page .cart-page__more-blocks{
    display:none;
}

.cart-page .cart-page__title{
    display:none;
}

.cart-discount__content .my_btn{
    border:none;
}

h1.empt {
    font-family: Bebas Neue;
font-weight: 400;
font-style: Regular;
font-size: 62px;
line-height: 100%;
color:#111113;
}

.cart-drawer__heading{
      font-family: Bebas Neue!important;
    font-weight: 400!important;
    font-size: 42px!important;
    color: #111113!important;
}

.cart-drawer__inner h1.empt {
    display:none;
}

.cart-discount__input::placeholder{
    font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
 color: #5D616A;  
}

.cart-discount__input{
    padding:10px;
    height:50px;
    border-radius:0px!important;
}

.cart-clear-all{
    font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
letter-spacing: 0%;
text-decoration: underline;
border:none;
    background:transparent;
    color:#088ED1;
    cursor:pointer;
}

.cart__summary-inner {
    height: fit-content!important;
    display:flex!important;
    align-items:baseline!important;
    padding:25px!important;
}

.sum_title{
    font-family: Bebas Neue;
font-weight: 400;
font-style: Regular;
font-size: 32px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color:#111113'
}

#checkout{
    border:none;
    width:100%;
}

.cart__summary-inner .cart__ctas{
    width:100%;
}

.cart__summary-container{
    background:#F6F6F6!important;
    height:fit-content;
}

.cart-drawer__inner .cart_botm {
    flex-direction:column;
}

.cart-drawer__inner .cart_botm .cart-discount{
    width:100%;
}

.cart-drawer__inner  .cart-discount__content .my_btn{
    font-size:15px;
    padding: 10px 9px;
    line-height:17px;
    max-width: 33%!important;
    width: 36%!important;
    padding-left: 3px;
}

.cart-drawer__inner  .cart-discount__input::placeholder{
    font-size:14px;
}

.cart-drawer__inner  .cart-discount__input{
    max-width: 67%!important;
    height: 37px;
}

.cart-drawer__inner .cart-discount__content .my_btn:after {
    content: "";
    background: url(/cdn/shop/files/Frame_4.png?v=1761922120);
    position: absolute;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 57%;
    top: 6px;
    right: -15px;
}

.cart-drawer__inner .sum_title{
    display:none;
}

.cart-drawer__inner .cart-items__title {
    color: #5D616A;
    font-weight: 400;
    font-size: 14px;
    line-height: 11px;
}

.cart-drawer__inner .cart-items__head-row{
    display:none;
}

.cart-drawer__inner a.cart-img img {
    width: 120px;
    min-width: 114px;
}

.cart-drawer__inner .cart-clear-all {
    font-size: 14px;
    text-align: right;
}

.cart-drawer__inner  tr.cart-items__table-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.cart-drawer__inner  .cart-items__table-row td:nth-of-type(1) {
    width: 40%;
}

.cart-drawer__inner .cart-items__table-row td:nth-of-type(5) {
    width: 40%;
    text-align: justify;
}

.cart-drawer__inner .cart-items__table-row td:nth-of-type(6) {
    width: 60%;
}

.cart-drawer__inner .cart-items__table-row td:nth-of-type(4) {
  display:none!important;
}

.cart-drawer__inner .cart-items__remove {
   
    float: right;
}

.cart-drawer__inner .cart__ctas{
    max-width:100%;
    width:100%;
}

.cart-drawer__inner .cart-items__table-row td:nth-of-type(3) {
    width: 22%;
}

.cart-page__title .cart-title h1{
    font-family: Bebas Neue;
font-weight: 400;
font-size: 32px;
line-height: 100%;
color:#111113'
}

span.read-more-dots {
    position: relative;
    left: -3px;
    color: #0090ff;
}

@media screen and (min-width: 1024px){
  .popup-content-mobile{
    display:none!important;
  }
.dealer-item .store-list-col-2 {
    width: 40%;
}

.dealer-item .store-list-col-3 {
    width: 15%;
}

}
@media screen and (max-width: 768px){
  .popup .popup-content{
    display:none!important;
  }
}

    .feature-modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    .feature-modal.active {
      display: flex;
    }

    .modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.8);
    }

    .modal-box {
      position: relative;
      background: #f7f7f7;
      max-width: 700px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 30px;
      z-index: 2;
      color: #fff;
      display: flex;
      gap: 20px;
    }

    .modal-box img {
      width: 100%;
      border-radius: 0;
      margin-bottom: 20px;
      height: 100%;
      object-fit: contain;
    }

    .modal-close {
      position: absolute;
      top: -3px;
      right: 14px;
      font-size: 30px;
      cursor: pointer;
      color: black;
    }

.modal-l {
    width: 30%;
}

.modal-r {
    width: 70%;
}

#modalTitle{
  text-transform: uppercase;
    margin-bottom: 8px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    color: #111113;
  text-align:left;
}

p#modalText {
      color: #5D616A;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align:left;
        height: auto;
}

.contact-mbl-head{
    display:none;
}

.customer-video-reviews__list2{
  display:none!important;
}

.career-filters select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right 20px center;
  padding-right: 45px;
}

 a.my_btn.black-hov.mbl-tab-btn {
  
    display:none;
}

/* mbl css */

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

  a.my_btn.black-hov.mbl-tab-btn {
    margin: auto;
    display: flex;
    width: 53%;
    margin-top: 45px;
    display:block;
}

.featured-products-tabs .section-header .my_btn{
    display:none;
}

.timeline-wrapper {
    overflow-x: hidden;
}

    .timeline-item.top .timeline-content, .timeline-item.bottom .timeline-content {
        width: 70%;
    }

  .blog-body li {
    margin-bottom: 20px;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 16px!important;
    line-height: 20px!important;
    color: #5D616A;
    margin-bottom: 5px;
}

 .blog-body ul {
    padding-left: 20px!important;
}

  .blog-sidebar {
    flex: unset;
}

.blog-body img {
    width: 100%!important;
    margin-bottom: 20px;
    margin-top: 20px;
}

  .two-col-banner__col--1{
    border-bottom:1px solid #585858;
}

  #vehicle-mbl .vf-search:disabled{
        background: #088ed18c;
}

  .divider {
    margin: 22px 0;
}

.testing-flex {
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 31px;
}



  .elite-column p {
    height: auto;
}

      .vg-row {
        flex-direction: column-reverse;
        align-items: normal;
        gap: 0;
    }

.vg-main-wrap {
    position: relative;
    width: 100%;
}

  .filters h4{
    position:relative;
}

.filters h4:after{
    content:"";
    background:url(/cdn/shop/files/Vector_38.png?v=1776094563);
    position:absolute;
    padding: 10px;
    right:0;
    background-size: 17px;
    top: 5px;
    background-repeat:no-repeat;
}

.filters ul{
  display:none;
}

section#contact-support {
    background:none!important;
    padding:0px!important;

}

section#contact-support .container{
    padding:0px
}

section#contact-support .breadcrumb{
    display:none;
}

.contact-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.contact-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%; /* background only on half section */
    background: url('/cdn/shop/files/Group_114_7.png?v=1776087887');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
}
.contact-mbl-head{
    order:-1;
}
.contact-right{
    order:-1;
    box-shadow: 0px 10px 44px 0px #CECECE40;

    
}
    .contact-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    overflow: hidden;
    padding-top: 30px;
}

.contact-grid::
    before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%; /* background only on half section */
    background: url('/cdn/shop/files/Group_114_7.png?v=1776087887');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
};
    
.contact-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.contact-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%; /* background only on half section */
    background: url('/cdn/shop/files/Group_114_7.png?v=1776087887');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
}


.contact-left  .contact-details {
        display: block;
    }

  .contact-mbl-head{
    display:block;
}


#contact-support .container > .contact-heading , #contact-support .container > .contact-p{
    display:none;
}

  .mbl-vehicle-btn-active {
    padding-right: 25px!important;
    font-size: 14px!important;
    position:relative;
}

img.desktop-logo {
    display:none;
}

search-button.search-action {
    margin-right: 7px;
}

.mbl-vehicle-btn-active:after{
    content:"";
    background:url("/cdn/shop/files/close_cross_1.png?v=1774894874");
    padding:20px;
    position:absolute;
    background-size: 39%;
    background-repeat:no-repeat;
    top: 7px;
    right: -17px;
}

#vehicle-mbl .select-wrap:after{
    content:"";
    background: url(/cdn/shop/files/Frame_59.png?v=1774812475);
    width: 44px;
    height: 23px;
    display: block;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    top: 14px;
    background-size: 52%;
}

#vehicle-mbl .select-wrap{
    position:relative;
}
  

  .mbl-p-row2 .p-col1,.mbl-p-row2 .p-col2{
        border-right:none;
}

#mobile-sub-menu{
        padding-left:0;
}
  
.mbl-p-row2 .p-col1,.mbl-p-row2 .p-col2 {
    width:100%;
}

.mobile-menu-item{
    list-style:none;
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.mobile-menu-item a{
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    color:white;
}

img.mobile-arrow-img {
    width: 22px;
    object-fit: contain;
}

ul.mobile-main-menu {
    padding: 0;
}

.popup-content-mobile {
    padding: 20px;
}

.popup{
    background:#111113!important;
}

.popup .sub-menu {
    margin-top: 0px;
    padding-left: 0px;
}

 .mbl-p-row2 .p-col1{
    height: 51vh;
}

.mbl-p-row2 .p-col2{
    position:absolute;
    top:0;
    background:#111113;
    height: 49vh;
    right: 0;
    left: 0;
    /* z-index: 999; */
    transition:0.5s;
    display: none;
} 

.mbl-p-row2 {
    position: relative;
} 

.p-col1, .p-col2 {
    border-right:none;
}

#mobile-sub-menu .back-btn{
    margin-bottom:30px;
}

.mbl-p-row1 {
    height: 10vh;
}

.mbl-p-row2 .p-col3{
    width:100%;
    position:relative;
    padding: 0;
    padding-top: 20px;
}

.mbl-p-row2 .p-col3:before{
    content:"";
    background:#FFFFFF1A;
    position:absolute;
    height:1px;
    width: 122%;
    right: -24px;
    top: -19px;
}

.mbl-p-row2 .p-col3 .popup-links a{
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 28px;
    color:#FFFFFF;
    border-bottom: 2px solid #088ED1;
    margin-top: 15px;
    display: inline-block;
}

.popup .popup-links {
    margin: 10px 0px!important;
    /* display: flex; */
    flex-direction: initial;
}

.p-col1, .p-col2, .p-col3 {
    padding-top: 0!important;
}
  .return-page .step-box:nth-of-type(1):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 95%;
    height: 160%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -38px;
    right: 0;
    left: -21px;
    bottom: 0;
}

.return-page .step-title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 32px;
}

.return-page .step-text {
    font-size: 14px;
    line-height: 19px;
}

.return-page .step-box:nth-of-type(1):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 95%;
    height: 160%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -38px;
    right: 0;
    left: -21px;
    bottom: 0;
}

.return-page .step-box:nth-of-type(2):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 95%;
    height: 165%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -41px;
    right: 0;
    left: -21px;
    bottom: 0;
    z-index: -1;
}

.return-page .steps-container {
    gap: 140px;
    margin-top: 111px;
    margin-bottom: 80px;
}


.return-page .step-box:nth-of-type(3):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 95%;
    height: 160%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -21px;
    bottom: 0;
    z-index: -1;
    transform:rotate(90deg)
}

.return-page .step-box:last-child:after {
    content: "";
    background: url(/cdn/shop/files/Ellipse_1719.png?v=1764003831);
    padding: 30px;
    width: 120%;
    height: 173%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -27px;
    right: 0;
    left: -43px;
    bottom: 0;
    z-index: -1;
}

  .account-button__avatar {
    height: 17px!important;
    line-height: 21px!important;
    padding: 4px;
}

  .cart-page .cart-items__head-row{
    display:none;
}

.cart-items__title {
    font-size: 14px;
    line-height: 17px;
}


 
.cart-page .cart-discount__content .my_btn {
        width: 40%;
        font-size: 16px;
    }

.cart-page .cart-discount__input::placeholder{
    font-size:14px;
}

.cart-page__summary{
    padding-top: 0;
    width: 100%;
    margin-top: 0;
}

  .cart-page .cart-page__items {
    width: 100% !important;
}

.cart-page {
    max-width: 1440px;
    padding: 40px 0px;
    display: flex !important;
    flex-wrap: wrap;
}

.cart-page .cart_botm .cart-discount {
    width: 100%;
}

.cart-page .cart_botm {
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cart-page .cart-discount__input {
    padding: 10px;
    height: 41px;
    width: 65%;
    border-radius: 0px !important;
}

.cart-page .cart-clear-all {
    font-size: 13px;
    float: right;
}

.cart-page tr.cart-items__table-row {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
}

.cart-page .cart-items__table-row td:nth-of-type(1) {
    width: 36%;
}

.cart-page .cart-items__table-row td:nth-of-type(2) {
    width: 39%;
    padding-right: 0% !important;
}

.cart-page .cart-items__table {
    width: 100%;
    border-collapse: collapse;
    display: block !important;
}

.cart-page .cart-items__table tbody {
    display: block;
}

.cart-page .cart-items__table-row td:nth-of-type(4) {
    width: 49%;
}

.cart-page .cart-items__table-row td:nth-of-type(6) {
    width: 16%;
}

.cart-page .cart-items__table-row td:nth-of-type(5) {
    width: 31%;
}

.cart-page .cart-items__table .quantity-selector button img {
    width: 16px;
}

.cart-page .cart-items__table .btn_carts {
    padding: 0px;
    border-radius: 200px;
    height: 38px;
}

.cart-page .btn_carts input {
    font-size: 14px;
    line-height: 26px;
}


  .thankyou-container .my_btn {
    width: 41%;
}

.thankyou-description {
    font-size: 14px;
    line-height: 19px;
    padding-top: 21px;
}

  .custom-404-section {
    width: 100%;
    padding-left: 0;
    padding-top: 60px;
}

.custom-404-subtitle {
    margin-top: 15px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 0;
}

.custom-404-desc {
    margin-top: 10px;
    font-size: 14px;
    width: 100%;
    margin-top: 16px;
}

p.btn-heading {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-top: 28px;
    border-top: 2px solid transparent;
    border-image-source: linear-gradient(90deg, #0F0F11 0%, #464653 50%, #B6B6C2 100%);
    border-image-slice: 1;
    border-image-width: 2px 0 0 0;
    margin-top: 25px;
}



.custom-404-buttons {
    display: flex;
    flex-direction: column;
    width: 53%;
    margin: auto;
    gap: 15px;
}

a.btn-white {
    font-size: 16px;
        padding: 8px 35px 5px 15px;
}

.btn-white:after{
            background-size: 57%;
        top: 9px;
        right: -7px;
}

.custom-404-content{
      height: 77vh;
}
  .dealer-resources-section {
    text-align: center;
    padding: 20PX;
}

.dealer-resources-section h2 {
    font-size: 27px;
    line-height: 30px;
    margin-top:20px;
}

.dealer-resource-item {
    width: 100%;
}

.dealer-resources-container {
    flex-wrap: wrap;
    gap:20px;
}

.dealer-resource-icon {
    width: 60px;
    height: 60px;
}

.resource_img_wrap {
    height: 120px;
}

.dealer-resource-item p {
    font-size: 24px;
    line-height: 27px;
    text-align: center;
    width: 100%;
    margin-top: 15px;
}

  .dealer-faq .faq-question {
        font-size: 15px;
        line-height: 19px;
    }

.dealer-faq .faq-item {
    padding: 10px 15px;
}

.dealer-faq .faq-answer {
    padding-top: 15px;
    width: 100% !important;
    padding-right: 0;
    font-size: 14px;
    line-height: 18px;
}

  div#all-dealers-content {
    margin-top: 20px;
}

.locator-tabs .liq .container{
    padding:0px;
}

.storeify-stl-col1{
    padding:0px 10px!important;
}

  .tabs {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.tabs button {
    font-size: 18px;
    margin-right: 0;
}

#dealer-locator-tab:after {
    height: 28px;
    width: 1px;
    position: absolute;
    right: -29px;
    top: -5px;
}

#dealer-locator-tab {
    position: relative;
    left: 13px;
}
button#all-dealers-tab {
    position: relative;
    right: 33px;
}

li.dealer-item{
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #0000001f;
    flex-wrap: wrap;
}

.dealer-item .store-list-col-1 {
    width: 100%;
    margin-bottom: 10px;
}

ul.dealer-list{
    width: 100%;
    padding: 0;
}

.store-list-col-2 p {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    margin-bottom: 11px;
    margin-top: 0;
}

.store-list-col-1 h3 {
    font-size: 18px;
    line-height: 100%;
}

.store-list-col-3{
    width: 46%;
}

.store-list-col-4 a {
    font-size: 14px;
    line-height: 100%;
}

.store-list-col-4 a:after {
    background-size: 60%;
    top: -3px;
    right: -43px;
}

.gr-search-slt:after {
    content: "Locate Nearby Dealers with Just a Few Clicks";
    position: absolute;
    top: -99%;
    color: #111113;
    font-family: Host Grotesk;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.form-control-storeify::placeholder{
    font-size:14px;
}

.gr-search-slt {
    position: relative;
    margin-top: 72px;
}

.gr-search-slt:before {
    top: -101%;
    font-size: 14px;
    line-height: 20px;
}

  .dealer-locator-section .container {
    flex-direction: column;
}

.dealer-locator-row-one, .dealer-locator-row-two {
    width: 100%;
}

.dealer-locator-section {
    padding: 0;
    margin-bottom: 50px;
    margin-top: 20px;
}

.dealer-locator-row-one h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.dealer-locator-row-one h3 {
    font-size: 28px;
        line-height: 35px;
        margin-bottom: 8px;
}

.dealer-locator-row-two p{
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
}



  .ws-top-text {
    width: 100%;
}

h4.ws-subtitle {
    font-size: 18px;
}

h3.ws-title {
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
}

.warranty-section p {
    font-size: 14px;
    line-height: 19px;
}

.ws-top-flex {
    gap: 30px;
    flex-direction: column-reverse !important;
    gap: 0;
}

.ws-serial-box img {
    max-width: 100%;
}

section.warranty-section {
    background: #F6F6F6;
    padding: 20px 0px;
    margin-top: 49px;
}

.warranty-title {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 10px;
}

.warranty-subtitle {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    width: 90%;
}

.warranty-grid {
    display: flex;
    flex-direction: column;
}

.warranty-grid{
    display: flex;
    gap: 0px;
    flex-direction: column;
}


.form-group input {
    padding: 10px 14px;
    font-size: 16px;
    line-height: 18px;
}

.form-group input::placeholder{
    font-size:14px;
}

.form-group label {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 26px;
}

  section.reg.three-steps-wrapper {
    padding:20px;
}

.three-steps-wrapper .steps-header h2 {
    font-size: 28px;
    line-height: 33px;
    margin-top: 20px;
}

.three-steps-wrapper .steps-header p {
    font-size: 16px;
    line-height: 22px;
            width: 90%;
        margin: auto;

}

.step-box:nth-of-type(1):after,.step-box:nth-of-type(2):after {
 transform: rotate(90deg);
}


.step-box:nth-of-type(2):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 108%;
    height: 164%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -37px;
    right: 0;
    left: -44px;
    bottom: 0;
    z-index: -2;
}

.step-box:nth-of-type(1):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 107%;
    height: 164%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -51px;
    right: 0;
    left: -42px;
    bottom: 0;
    z-index: -1;
    transform: rotate(90deg);
}


.step-box:last-child:after {
    content: "";
    background: url(/cdn/shop/files/Ellipse_1719.png?v=1764003831);
    padding: 30px;
    width: 99%;
    height: 153%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -37px;
    right: 0;
    left: -35px;
    bottom: 0;
    z-index: -3;
}

.step-title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 32px;
}

.step-text {
    font-size: 16px;
    line-height: 23px;
}

.steps-container {
    gap: 139px;
    margin-top: 100px;
    margin-bottom: 80px;
}

.step-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

  .custom-faq-wrapper {
  background: #f4f4f4;
  padding: 50px 20px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Last Updated */
.faq-update {
  color: #088ED1;
  /* margin-bottom: 16px; */
  /* font-family: Host Grotesk; */
  /* font-weight: 600; */
  font-size: 16px;
  /* line-height: 100%; */
}

/* Accordion item */
.custom-faq-wrapper .faq-item {
  background: #fff;
  /* border-radius: 6px; */
  margin-bottom: 15px;
  overflow: hidden;
  /* border: 1px solid #e5e7eb; */
}

/* FAQ Title Button */
.shipping-faq-title {
  width: 100%;
  text-align: left;
  padding:10px 15px;
  font-weight: 600;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #1f2937;
  font-family: Host Grotesk;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
}

/* Chevron icon */
.faq-icon {
  transition: transform .3s ease;
}

.shipping-faq-title[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* FAQ Content */
.shipping-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #fff;
  /* border-top: 1px solid #DDDDDD; */
}

.faq-content-inner {
  padding: 15px;
  /* border-top: 1px solid #DDDDDD; */
}

.faq-content-inner {
    border-top: 1px solid #DDDDDD;
}


/* HTML styling inside content */
.faq-content-inner p {
  margin-bottom: 12px;
  font-family: Host Grotesk;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color:#5D616A;
}

.faq-content-inner ul {
  margin: 10px 0 10px 0px;
  padding-left: 22px;
}

.faq-content-inner li {
  margin-bottom: 15px;
  list-style:none;
}

.faq-content-inner a {
  color: #088ED1;
  text-decoration: underline;
}


p.p-bold {
  font-family: Host Grotesk;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.p-bold span{
  color:#088ED1;
  margin-right:5px;
}

.faq-content-inner ul li:before{
  content:"";
  background:url(/cdn/shop/files/Polygon_1_1.png?v=1765984544);
  padding:20px;
  background-repeat:no-repeat;
  top: 0;
  position: absolute;
  left: -8%;
  top: 10%;
}

.faq-content-inner ul li{
  position:relative;
  font-size:14px;
}

.faq-content-inner ul li span{
  font-size: 14px;
  line-height: 20px;
  color:#000000;
  margin-right:3px;
}

span.span_line {
    text-decoration: underline;
    display: block;
}

span.blue_txt {
    color: #088ED1;
    margin-right: 5px;
    font-weight: 500;
}

span.black_text {
    color: #2C2C2F;
    font-weight: 500;
}

.custom-faq-wrapper .faq-item {
  border:none;
}

  /* Outer Background like screenshot */

/* White Card */
.policy-card {
  background: #ffffff;
  padding: 25px 20px;
  font-family: inherit;
  line-height: 1.7;
  /* color: #333; */
  position: static;
}

/* Headings Style */
 
.policy-card h3 {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
color:#000000'
}

.policy-card h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 35px;
}

.policy-card h2 {
  font-size: 18px;
}



/* Body text */
.policy-card p {
  margin-bottom: 20px;
 
  font-size: 14px;
  line-height: 22px;
  color:#5D616A;
}
.policy-card span{
  display:block;
  font-weight:600;
  margin-top:20px;
  
}
/* Bullet Styles */
.policy-card ul {
  margin: 15px 0 20px 20px;
  padding: 0;
}

.policy-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 22px;
}
.policy-card ul li::marker{
  color: #088ED1;
}
/* Links */
.policy-card a {
  color: #007ace;
  text-decoration: underline;
}



.why-work-with-us {
    padding: 30px 0;
    margin: 20px;
}

.why-left {
    padding: 0px;
}

    .why-wrap {
      gap:10px;
      padding:20px;
    }


.why-left .main-heading {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 30px;
    margin-top:5px;
}

.why-left .desc {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}

.perks-benefits .section-title{
     font-size: 28px;
    line-height: 30px;
}

.perks-benefits .section-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

.benefit-item .icon-wrap img {
    width: 25px;
    height: 25px;
}

.benefit-item .icon-wrap {
    height: 35px;
    width: 35px;
}

.benefit-title {
    font-size: 22px;
}

.career-title {
    font-size: 35px;
    line-height: 40px;
}

.career-subtitle {
    margin-bottom: 20px;
    max-width: 700px;
    font-size: 14px;
    line-height: 20px;
}

.career-filters input, .career-filters select {
    padding: 6px 10px;
    min-width: 50%;
    border-radius: 0;
    font-size: 12px;
    width: 100%;
}

.job_w:after {
            padding: 24px;
        background-size: 42%;
        right: -5px;
        top: 15px;

}

.career-filters .career-btn {
   font-size: 12px;
    padding: 10px 18px;
   
}

.career-col2 {
    width: 100%;
}

.meta-wrap:nth-of-type(1):before {
    background-size: 42%;
    left: 12px;
    top: 11px;
}

.meta-wrap span {
    font-size: 13px;
    width: 100%;
}

.career-apply{
        font-size: 15px;
        margin-top: 20px;
        float:left;
}

.career-apply:after {
    background-size: 35%;
}

.career-item {
    padding: 30px 0;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
}

.career-job-desc {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
}

.meta-wrap:nth-of-type(2):before {
    background-size: 40%;
    left: 14px;
    top: 9px;
}

  a.back-link {
    font-size:13px;
}
a.back-link:before {
    background-size: 27%;
    left: -18%;
    top: 3px;
}

.elite-top-image img{
    width:100%;
    margin-top:30px;
}

.elite-main-image {
    transform: scale(1.5);
}

.performance-title{
        margin-bottom: 40px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 35px;
    line-height: 30px;
}

.performace_wrap{
    padding:0px;
    border: none;
}

.testing-left .sub-heading {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 38px;
    width: 100%;
    text-align:left;
}

.testing-left .desc {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    text-align: left;
}

.lower-flex .sub-heading {
           font-size: 28px;
        line-height: 32px;
}

.left-points, .right-points {
    width: 100%;
}

.bottom-points {
    display: flex;
    gap: 0px;
    flex-wrap:wrap;
}

.point-item p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.point-item:before {
    background-size: 30%;
    left: 1%;
    top: 3%;
}

.air-left .main-heading {
          font-size: 28px;
        line-height: 33px;
}

.youtube-box {
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.air-left .desc {
    font-size: 16px;
    line-height: 22px;
}


.air-filters-section {
    padding: 40px 0;
}

.youtube-thumb {
    width: 70px;
    height: 70px;
}

.youtube-text span {
    font-size: 16px;
    line-height: 20px;
}

.youtube-logo {
    width: 90px;
    margin-top: 5px;
}

.elite-carbon-intake .content-wrap{
    flex-direction:column;
}

p.top-text {
 
    font-size: 14px;
    line-height: 19px;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.air-right .point-item {
    gap: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    padding-left:12px;
    margin-bottom: 15px;
}

.air-right {
    padding: 20px;
}

.air-right .point-item:before {
    top: 5%;
        left: -2%;
}

.elite-carbon-intake .main-heading{
           font-size: 28px;
        line-height: 32px;
        width: 100%;
        margin-bottom: 10px;
}

.elite-carbon-intake .image-item {
    width: 100%;
}

.elite-carbon-intake .description p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 20px;
}

.elite-carbon-intake {
    padding: 40px 0;
}

  .discover-elite-section .elite-header h2 {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 28px;
}

.discover-elite-section .elite-header p{
    font-size: 15px;
    line-height: 22px;
}

.elite-column p{
        font-size: 14px;
    line-height: 20px;
}

.elite-column:nth-of-type(1) .elite-logo {
    width: 208px;
    height: 180px;
}

.elite-logo {
    width: 401px;
    height: 225px;
}

  .contact-heading{
        font-size: 28px;
    line-height: 35px;
    width: 100%;
    text-align:left;
            margin-bottom: 0;
            

  }

  p.contact-p {
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
}



  .contact-support-section{
    padding: 30px 0%;
  }

 .contact-grid .contact-details a{
    font-size:18px;
    color:#0E0E10;
}

.contact-details p{
    margin:0;
          margin-bottom: 20px;
    color:#0E0E10;
    margin-top:5px;
}

h3.left_h{
    font-size: 16px;
}

.contact-address {
    font-size: 16px;
    width: 100%;
    line-height: 22px;
}

.contact-hours h4 {
    font-size: 16px;
    margin-bottom: 0px;
    color:#B0B0B0;
}

.contact-hours p{
    font-size: 14px;
    color:#0E0E10;
}

.contact-hours {
    padding-top: 20px;
    margin-top: 0;
    border-top: 1px solid #FFFFFF33;
}

.social-icon {
    width: 15px;
    height: 15px;

}

.contact-social a{
        width: 35px;
    height: 35px;
}

.contact-social{
        gap: 10px;
}

.form-note {
    font-weight: 400;
    font-size: 16px;
}

.contact-right {
    padding: 20px;
}


.form-input, .form-textarea {
    width: 100%;
    padding: 8px 11px;
    font-size: 15px;
    outline: none;
    margin-bottom: 10px;
}

.form-input::placeholder, .form-textarea::placeholder{
    font-size:12px;
}

.breadcrumb a{
    font-size:12px
}

.breadcrumb .current {
    font-size: 12px;
  
}

h3.left_h{
    font-size: 16px;
}

  .header-logo img {
    max-height: 37px;
}

.read-more_btn:after {
        background-size: 58%;
        top: 24%;
        right: -44%;
}

.read-more_btn{
    position:relative;
}

.read-more:after {
        content: "";
        background: url(/cdn/shop/files/Group_117.png?v=1762450939);
        padding: 10px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 56%;
        top: 25%;
        right: -43%;
}

.read-more{
    position:relative;
}

.side-article .article-date {
    margin-bottom: -4px;
    font-size: 12px;
    line-height: 100%;
}

  .quantity-selector button img {
    width: 10px;
}

  .tab-link.active {
    font-size: 16px;
    line-height: 100%;
}

.tab-link {
    padding: 10px 0;
    
}

.tab-link{
    font-size: 16px;
    line-height: 100%;
}


.tab-link.active:after {
    height: 2px;
}

.tabs-content p {
    font-size: 14px;
    line-height: 20px;
}

.tabs-content {
    margin-top: 30px;
    width: 100%;
}
      .product-details {
        grid-column: 1 / 3!important;
        margin-top: 0;
        padding-top: 5px;
    }

.product-details .text-block:nth-of-type(1) h1 {
            font-size: 28px;
        line-height: 35px;
}

.product-details .text-block:nth-of-type(1) p {
    font-size: 19px;
    line-height: 100%;
}

.product-details .price{
    font-size:18px;
}

.product-details .text-block:nth-of-type(2) p {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #5d616a;
    margin-top: -8px;
}

.add-to-cart-button {
    font-size: 20px;
    width: 100% !important;
}



.quantity-selector
 {
    max-width: 21% !important;
}

p.estimated_date {
    font-size: 14px;
    padding-top: 20px;
    text-align: center;
}



.vg-main {
    min-height: 314px;
}

.vg-main .is-active img {
    padding: 19px;
}

p.counter_v {
    line-height: 34px;
    font-size: 25px;
}

p.counter_t {
    font-size: 12px;
}

.vg-thumbs {
          flex-direction: row!important;
}

.product-information__grid {
    width: 100%;
    margin: auto;
    padding: 20px;
}

.vg-thumbs-wrap {
    width: 100%;
}

.faq-description {
    font-size: 14px!important;
    line-height: 20px!important;
    width: 95%!important;
}
.faq_sec .banner-title{
    font-size:25px!important;
}

.faq_sec .banner-breadcrumb {
    margin-top: 20px;
}

section.faq-section {
    padding: 29px 0;
}

section.faq-section .faq-accordion {
    width: 100%;
}

.faq-answer{
    font-size:15px;
    line-height:22px
}

.faq-question.active .icon-wrap {
    background: #088ed1;
    padding: 15px 10px!important;
}

 .vehicle-selector{
  width:100%;
  order:-1;
  margin-bottom:10px;
 }

 .header-main{
 flex-wrap: nowrap;
        gap: 11px;
        padding: 15px 0;
 }
 .header-icons{
  width: 53%;
  gap: 2px;
 }

 
 .header-logo{
  width: 25%;
 }
 .humburger{
  width:30px;
  margin-left: 5px;
 }

 span.vehicle-label{
  font-size:12px;
 }


.vehicle-selector select {
    -webkit-appearance: none;
    appearance: none;
    width: 23%;
    background: transparent;
    border: 1px solid white;
    border-radius: 30px;
    color: #fff;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 10px;
    padding: 3px 6px;
}
 .vehicle-selector{
      padding: 5px 13px 5px 14px;
 }

 .vehicle-selector button {
    background: #fff;
    cursor: pointer;
    font-weight: 400;
    font-size: 10px;
    color: #088ed1;
    border-radius: 30px;
    padding: 5px 20px 5px 11px;
    width: 18%;
    position: relative;
}
.vehicle-selector button:after {
        content: "";
        padding: 10px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 33%;
        top: 36%;
        right: -11%;
}
.search-modal__button {
  
    height: 30px!important;
    width: 30px!important;
}

 .account-button{
      height: 30px!important;
      width: 30px!important;
 }

 .header-actions__cart-icon{
   height: 30px;
   width: 30px;
   display: flex;
   align-items: center;
 }

 .header-actions__cart-icon .cart-bubble{
  width: 14px!important;
  height: 14px!important;
  font-size: 1px;
  top: 0px;
  right: 0px;
 }
 span.cart-bubble__text {
    font-size: 7px;
}
.hero-slide .slide-subtitle{
    font-size: 16px;
}

.hero-slide .slide-title{
    font-size: 45px;
    line-height: 44px;
    width: 90%;
}

.hero-slide {
    height: 85vh;
    padding-top:20px;
}

    .my_btn {
        font-size: 22px;
        padding: 13px 40px 8px 15px;
    }

    .my_btn:after {
        background-size: 65%;
        top: 11px;
        right: -3px;
    }

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap:8px;
}
.stats-grid .stats-item:nth-of-type(2) {
  order: -7;
  width: 23%;
}

.stats-grid .stats-item:nth-of-type(3) {
  order: -4;
}

.stats-grid .stats-item:nth-of-type(5) {
  order: -4;
}


.stats-grid .stats-item:nth-of-type(6) {
  order: -4;
}
.stats-item:nth-of-type(1) {
            width: 21%;
        order: -2;
        margin: auto;
        display: flex;
        justify-content: center;

}
.stats-item:nth-of-type(2) {
    width: 23%;
}

.stats-item:nth-of-type(3) {
    width: 23%;
}

.stats-item:nth-of-type(4) {
    width: 33%;
    order: -1;
}

.stats-item:nth-of-type(4) img{
    margin:auto;
    max-width: 85%!important;
    margin-right:13px;
}

.stats-item:nth-of-type(5) {
    width: 23%;
}

.stats-item:nth-of-type(6) {
    width: 23%;
}

.stats-grid .stats-item:nth-of-type(7) {
  width: 32%;
}


span.counter {
    font-size: 22px;
}
.stats-item .postfix {
    font-size: 22px;
    font-weight: 700;
}

.stats-item h2 {
    align-items: center;
    gap: 2px;
        justify-content: center;
}
span.postfix {
    font-size: 8px;
}

.stats-item p{
           font-size: 9px;
        line-height: 12px;
        color: #C7C7C7;
        text-align: center;
}


.stats-item h3{
    font-size:22px;
    
}

.stats-banner .container{
      padding: 0 10px;
}

.featured-products-tabs .section-header{
    flex-direction:column;
    gap:15px;
    align-items: baseline;
    
}

h2.left-title {
    font-size: 35px;
    line-height: 38px;
}

.featured-products-tabs .tab{
    font-size:12px;
    margin-right:0px;
}

.featured-products-tabs .tabs{
    gap:15px;
            background: transparent;
        padding: 10px;
       display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;     
  
}

.featured-products-tabs .tab {
    flex-shrink: 0; /* Prevent shrinking */
}

.article-feature-image__img {
    height: 30vh;
}

blog-body blockquote:before {
    top: -29px;
    background-size: 76%;
}

.blog-images figure {
    flex: unset;
    width: 100%;
    padding: 9px;
    margin: 0;
}

.blog-images figcaption {
    font-size: 8px;
    text-align: center;
    margin-top: 5px;
    color: #666;
}

 .product-card{
    width:100%!important;
}
.tab-content .product-card{
  width: 80%!important;
}
.product-title{
   
    font-size: 21px;
        line-height: 24px;
        width: 100%;
}

.tab-content .product-card .cart:before {
    content: "";
    background: url(/cdn/shop/files/Frame_1_2.png?v=1761921909);
    padding: 30px;
    position: absolute;
    top: 8px;
    left: 8px;
    display: block;
    background-size: 35%;
    background-repeat: no-repeat;
}

.featured-products-tabs .product-grid {
    display: flex;
    gap: 0px;
    flex-wrap: nowrap;
    margin-top: 60px;
    overflow-x: auto; /* Allow horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile */
    scroll-snap-type: x mandatory; /* Snap to each item */
    scroll-behavior: smooth; /* Optional: smooth scrolling */
}

.featured-products-tabs .product-card {
    flex-shrink: 0; /* Prevent shrinking */
    width: auto; /* Let it take its natural width */
    margin-right: 10px; /* Optional: add some spacing between items */
    height: auto !important;
}

.product-info{
    position:static;
    
}

.product-card img{
    width:68%!important;
}
.tab-content{
    position:relative;
}

.tab-content:after{
    content:"";
    background:url(/cdn/shop/files/Rectangle_372.png?v=1767375559);
    height:100%;
    width: 23%;
    position:absolute;
    top:0;
    background-repeat:no-repeat;
    right:0;
}
 .product-card{
    height:360px!important;
    margin-bottom:20px;
}

.btn.view{
    font-size: 18px;
}

.btn.cart{
     font-size: 18px;
}

.two-col-banner__wrapper {
    flex-wrap: wrap;
}

.two-col-banner__col {
    width: 100%;
    padding: 20px;
    height: 296px;
    background-size: 100% 100%;
}

.two-col-banner__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.two-col-banner__col{
    position:relative;
}

.two-col-banner__col:after{
    content:"";
    background: linear-gradient(179.83deg, rgba(17, 17, 19, 0) 21.96%, rgba(17, 17, 19, 0.62) 58.88%, rgba(17, 17, 19, 0.6) 91.37%);
   position:absolute;
    width:100%;
    height:100%;
    display:block;
    right:0;
    left:0;
}

.two-col-banner__col .two-col-banner__content{
    z-index:9;
}

.two-col-banner__content h2{
           font-size: 28px;
        width: 100%;
}

.two-col-banner__content a.my_btn {
    width:auto;
}

.container.home_two_col {
    flex-wrap: wrap;
   flex-direction: column;
        width: 100%;
        gap: 50px;
}

.image-and-text__col {
    width: 100%;
}

.home_two_col h2.title{
    width:100%;
    font-size:28px;
    line-height:35px;
    margin-top:0px;
}

.image-and-text__col img{
  margin-bottom:30px;
}

.home_two_col .subtitle {
    margin-bottom: 5px;
    font-size: 18px;
 
}

.home_two_col .description{
    font-size:14px;
    line-height:20px;
    margin-top:20px;
}
.center-title{
          font-size: 28px;
        margin-bottom: 0px;
        text-align: left;
                line-height: 35px;
        margin-bottom: 9px;
}

.image-gallery-section .gallery-description{
           text-align: left;
        font-size: 16px;
        line-height: 20px;
}

.faq-left {
    width: 100%;
}

.faq-grid {
    flex-wrap: wrap;
}

p.faq-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

h2.faq-title {
    font-size: 35px;
    margin-top: 0px;
    line-height: 35px;
}

button.faq-question {
    font-size: 18px;
}

.faq-item {
    padding: 10px 0px;
}

.icon-wrap {
    padding: 8px!important;
}

.career-openings {
    padding: 40px 0;
}

.benefit-item{
      width: 100%;
}

.perks-benefits {
    padding: 40px 0;
}

.faq-contact {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: url(/cdn/shop/files/Group_113_13.png?v=1775823800) !important;
            margin-top: 20px;
}

.testimonial-footer .my_btn{
          font-size: 22px;
}

.contact-box {
    padding: 0;
}

h3.contact-title {
    font-size: 28px;
}

p.contact-subtext {
    font-size: 18px;
}

.contact-details a{
    font-size:16px
}

.li_wrap span{
    font-size:16px;
}
h3.reviewer-name {
    font-size: 30px;
    margin-top: 10px;
}

img.review_thumbnail {
    width: 70%!important;
    height: 50%;
    margin: 0;
}

.play-button {
    font-size: 19px;
    position: absolute;
    top: 53%;
    left: 37%;
    transform: translate(-50%, -50%);
}

.play-button img{
    width:10px;
    height:20px;
    border-radius:0px;
}

p.model-text {
           font-size: 16px;
        width: 90%;
        text-align: left;
}

.youtube_bottom {
    align-items: center;
    justify-content: center;
}
.youtube_bottom p{
    font-size:18px;
    line-height:18px;
    margin-bottom: 0;
}

p.review-text{
           font-size: 16px;
        line-height: 26px;
        text-align: justify;
        line-height: 21px;
        width: 100%;
}

.testimonial-controls {
    width: 100%;
}

.testimonial-bottom {
    flex-wrap: wrap;
    margin-top: 20px;
}

.testimonial-footer{
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
        align-items: baseline;
        gap: 18px;
}

.testimonial-footer .my_btn{
    width:65%;
}

.testimonial-footer .rating{
    width: 80%;
}

span.rating-text {
    font-size: 16px;
    line-height: 12px;
}

.stars {
    color: #ffcc00;
    font-size: 24px;
}

span.rating-value {
   padding: 15px 18px;
        font-size: 18px;
}

.star_wrap {
    margin-left: 6px;
}

img.review_quote {
           width: 10% !important;
        position: relative;
        bottom: 13px;
        object-fit: contain;
        height: 40px;
}
.desktop_footer{
  display:none;
}
.mobile_footer{
  display:block;
}

.footer-col {
    flex: unset;
    width: 50%;
    padding: 20px;
     padding-left: 0px;
    min-width: auto;
}

.container.my-flex {
    flex-wrap: wrap;
    flex-direction: row;
    display: flex;
}

.footer-social{
    width:100%!important;
    display:flex!important;
    flex-direction: row;
    /* justify-content: space-between; */
}

.mbl-footer-f {
    width: 50%;
}

.footer-social .footer-logo{
    margin-left:40px;
}

.footer-col h4{
    font-size: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 16px;
}
.footer-links li a{
    font-size:14px;
}

.footer-wrapper .footer-row:nth-of-type(1) .footer-col:nth-of-type(3) {
    border-left:none;
    padding-left: 0px;
}

.footer-wrapper .footer-row:nth-of-type(1) .footer-col:nth-of-type(2){
       padding-left: 15px;
       border-left:none;
}

.footer-wrapper .footer-row:nth-of-type(1) .footer-col:nth-of-type(4) {
       border-left: none;
       padding-left: 11px;
}

.footer-9col{
    padding-top:30px;
            background: url(/cdn/shop/files/Group_113_12.png?v=1775752207);
}

.social-icons a img{
    margin-right: 16px;
}


.footer-newsletter input[type=email] {
    padding: 7px;
    color: #fff;
    width: 100%;
    margin-right: 10px;
            padding: 12px;
}


.footer-newsletter input[type=email]::placeholder{
    font-size:13px;
}

.footer-wrapper .footer-row:nth-of-type(2) .footer-col:nth-of-type(2){
       padding-left: 0px;
       border-left:none;
}

.footer-wrapper .footer-row:nth-of-type(2) {
    border-top: none;
}

.footer-wrapper .footer-row:nth-of-type(2) .footer-col:nth-of-type(3) {
    border-left: none;
    padding-left: 0px;
}

.footer-col.footer-newsletter {
    width: 90%;
    margin: auto;
}

.footer-newsletter button {
    right: 0%;
    top: 12%;
}

.policy-links li a{
    font-size: 11px;
}


.footer-wrapper .footer-row:nth-of-type(3) .footer-col:nth-of-type(1){
    width:40%;
} 

.footer-wrapper .footer-row:nth-of-type(3) .footer-col:nth-of-type(2){
    width:60%;
    padding: 0;
} 

img.footer-logo-bottom{
    width:100%;
}

p.footer-copyright{
    font-size:14px;
}

.footer-wrapper .footer-row:nth-of-type(3) .footer-col:nth-of-type(3){
    width:100%;
    padding: 0;
}

.footer-logo{
    max-width:58px;
}
h1.banner-title {
    font-size:35px;
    line-height:40px
}

.banner-breadcrumb a, .banner-breadcrumb {
        font-size: 12px;

}

.banner-breadcrumb{
  margin-top: 20px;
}

.banner-content
 {
    padding: 10% 3%;
}

p.banner-subtitle {
    font-size: 14px;
    margin-bottom: 7px;
}

 .mission-wrap {
       flex-direction: column;
        gap: 15px;
        align-items: baseline;
}

.mission-subtitle{
               font-size: 28px;
        line-height: 35px;
        text-align: left;
}

.mission-description {
    font-size: 15px;
    line-height: 25px;
    width: 100%;
    margin: 50px auto;
    position: relative;
    margin-bottom: 20px;
}

a.my_btn.our-mission-mbl {
    width: 49%;
}

.mission-header {
    display: flex;
    flex-direction: column;
}

.mission-description:before {
    left: 0%;
    background-repeat: no-repeat;
    top: -23%;
    background-size: 56%;
}

.timeline-header {
    margin-bottom: 0px;
}

.mission-feature-item h4{
 font-size:28px;
 line-height:27px;
}

.mission-feature-item p {
    color: #c7c7c7;
    font-size: 14px;
    line-height: 21px;
}

.mission-section{
 
    padding: 6% 0%;
}

.mission-features {
    margin-top: 70px;
}

 .why-choose-us-section .subheading{
    margin-bottom:10px;
    font-size:20px;
}

.why-choose-us-section .center-title {
      font-size: 28px;
        margin-bottom: 20px;
        line-height: 35px;
    }

.feature-item {
    justify-content: left;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
}

.feature-image, .feature-content {
    width: 100%;
}

.feature-content h3 {
    font-size: 23px;
    line-height: 24px;
    text-align: left;
}

.feature-content p {
    font-size: 14px;
    line-height: 100%;
    text-align: justify;
}

     .feature-item {
        flex-direction: column;
            padding: 10px;

      }

      .timeline-item {
    position: relative!important;
    width: 100%;
    padding: 0px 0 0 20px;
    top: 0!important;
    bottom: 0!important;
}

.timeline-wrapper{
    gap:0px;
    padding-top:0px;
}

.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%!important;
    padding: 0px;
    position: relative;
    scroll-snap-type: unset!important;
    padding-left:20px!important;
}

.timeline-scroll-wrapper {
    width: 100%;
    overflow-x: hidden;
    scrollbar-width: unset!important;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 40px;
    position: relative;
    -webkit-overflow-scrolling: unset!important;
}

.timeline-item.top {
    margin-bottom: 0!important;
}

.timeline-item.bottom {
    margin-top: 0!important;
}

.timeline-wrapper .top:before {
          content: "";
        background: url(/cdn/shop/files/Frame_427321215.png?v=1775756812);
        padding: 20px;
        width: 4%;
        height: 64%;
        position: absolute;
        background-size: 48%;
        background-repeat: no-repeat;
        top: 7%;
        left: -5%;
}

.timeline-wrapper .bottom:before {
        content: "";
        background: url(/cdn/shop/files/Frame_427321215.png?v=1775756812);
        padding: 20px;
        width: 4%;
        height: 64%;
        position: absolute;
        background-size: 48%;
        background-repeat: no-repeat;
        top: 7%;
        left: -5%;
}

.timeline-wrapper {
    position:relative;
    gap:0!important;
}

.timeline-wrapper:before{
           content: "";
        background: linear-gradient(90deg, #313136 0%, #6A6A73 50.89%, rgba(142, 142, 156, 0.53) 100%);
        height: 95.6%;
        width: 6px;
        position: absolute;
        top: 81px;
        left: 11px;
}

.timeline-heading{
        font-size: 26px;
    line-height: 28px;
}

.timeline-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
}

.timeline-year {
    margin-bottom: 10px;
    font-size: 20px;
}
.timeline-header .center-title {
        font-size: 28px;
        margin-bottom: 0;
    margin-top:10px
    }
.timeline-header .timeline-subtitle {
        font-size: 20px;
        margin-bottom: 0;
    margin-top:0px;
            text-align: left;
        margin-bottom: 10px;
    }

.timeline-desc {
    font-size: 14px;
    line-height: 26px;
    margin-top: 0;
}
.container.map_two_col {
    flex-wrap: wrap;
    flex-direction: column;
        width: 100%;

}

.map_two_col h2.title {
    font-size: 28px;
    line-height: 35px;
    width: 100%;
    margin: 0 0 10px;
}

.map_two_col .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
}

.map_two_col .subtitle {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 100%;
}

.map_two_col .image-and-text__col{
    margin-bottom:50px;
}

.product-grid-wrapper.container {
    flex-wrap: wrap;
}

aside.filters {
    width: 100%;
    border-bottom: 1px solid #E2E2E2;
}

.results-count {
    font-size: 12px;
}
.sort-by select{
     font-size: 12px;
}


.filters label{
    font-size:15px;
}


.product-grid-wrapper .filters h4 {
    font-size: 20px;
}

.breadcrumb-nav a{
        font-size: 14px;
}

.breadcrumb-nav a{
        font-size: 14px;
}

.filters input[type=checkbox]{
        width: 15px;
    height: 15px;
}

.filters input[type=checkbox]:checked:after {
    top: 2px;
    left: 1.3px;
    width: 10px;
    height: 10px;
}

.filters .count {
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
}

.featured-blog-content {
    width: 100%;
}

.featured-blog-image {
    width: 100%;
}

h2.featured-title {
    font-size: 40px;
    line-height: 45px;
}

p.featured-excerpt {
    font-size: 14px;
    line-height: 22px;
}

p.featured-date {
    font-size: 14px;
    margin-top: 20px;
}

.featured-label {
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 100%;
    padding: 10px 20px;
}

.blog-controls {
    justify-content: center;
}

.post-title a{
    font-size: 25px;
    line-height: 0;
}

h3.post-title {
    line-height: 27px;
}

.post-date{
    font-size: 14px;
}

p.post-excerpt {
    font-size: 14px;
    line-height: 20px;
    margin-bottom:0px; 
}

a.read-more_btn {
    font-size: 18px;
}

.main-article {
    width: 100%;
}

h2.mostly-viewed-title {
    font-size: 35px;
    line-height: 25px;
}

.main-article .article-title{
    font-size:30px;
    line-height:32px
}

.main-article .article-excerpt{
    font-size:14px;
    line-height:22px
}

.main-article .read-more{
    font-size:18px;
}

.main-article .article-date{
    font-size:14px;
}

.side-article .article-title{
    font-size:22px;
    line-height:24px;
    margin-bottom: 20px;
}

.side-article .read-more{
    font-size:18px;
}

.side-article img{
        height: 149px;
}

.mostly-viewed-section{
    padding:40px 0px;
}

.recommended-item{
    width:100%;
}

.recommended-heading{
    font-size:35px;
    line-height:20px;
}

.recommended-title{
    font-size:22px;
    line-height:25px;
}

span.recommended-date{
font-size:14px;
}

.recommended-item img {
    height: 35px;
    width: 40px;
}


.back-to-news span{
 font-size:14px;   
}

a.back-to-news {
    width: 40%;
    gap: 8px;
    margin-bottom: 0px;
}

.back-to-news img{
 width: 4%;
 height: 4%;
}

.blog-toc, .blog-social{
 padding:20px;
}

.blog-social img {
    width: 16px;
    height: 30px;
    object-fit: scale-down;
}

.blog-toc h4, .blog-social h4{
 font-size:20px;
}

.blog-toc a{
 font-size:16px;
}

h1.blog-title {
    font-size: 35px;
    line-height: 35px;
}

p.blog-meta {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-body p{
 font-size:15px;
 margin: 0;
}

blockquote{
 font-size: 18px;
 line-height: 24px;
}

.blog-body h3,.blog-body h2{
 font-size:28px;
}

.related-blogs-section .section-heading{
      margin-bottom: 30px !important;
      font-size:35px;
}
section.related-blogs-section{
  margin-top: 20px;

}


}



html,body{
 overflow-x:hidden!important;
}

/* ipad css */

@media screen and (min-width: 600px) and (max-width: 900px){

  .popup-content{
        display: none;
  }

  .blog-body img {
    width: 100%!important;
    margin-bottom: 20px;
    margin-top: 20px;
}

.blog-body iframe {
    width:100%!important;
}
.mbl-p-row2 .p-col1,.mbl-p-row2 .p-col2 {
    width:100%;
}

.mobile-menu-item{
    list-style:none;
    display: flex;
    margin-bottom: 30px;
    gap: 17px;
}

.mobile-menu-item a{
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 46px;
    line-height: 100%;
    color:white;
}

img.mobile-arrow-img {
    width: 26px;
    object-fit: contain;
}

ul.mobile-main-menu {
    padding: 0;
}

.popup-content-mobile {
    padding: 20px;
}

.popup{
    background:#111113!important;
}

.popup .sub-menu {
    margin-top: 0px;
    padding-left: 0px;
}

 .mbl-p-row2 .p-col1{
    height: 51vh;
}

.mbl-p-row2 .p-col2{
    position:absolute;
    top:0;
    background:#111113;
    height: 49vh;
    right: 0;
    left: 0;
    /* z-index: 999; */
    transition:0.5s;
    display: none;
} 

.mbl-p-row2 {
    position: relative;
} 

.p-col1, .p-col2 {
    border-right:none;
}

#mobile-sub-menu .back-btn{
    margin-bottom:30px;
}

.mbl-p-row1 {
    height: 10vh;
}

.mbl-p-row2 .p-col3{
    width:100%;
    position:relative;
    padding: 0;
    padding-top: 20px;
}

.mbl-p-row2 .p-col3:before{
    content:"";
    background:#FFFFFF1A;
    position:absolute;
    height:1px;
    width: 122%;
    right: -24px;
    top: 0;
}

.mbl-p-row2 .p-col3 .popup-links a{
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 28px;
    color:#FFFFFF;
    border-bottom: 2px solid #088ED1;
    margin-top: 15px;
    display: inline-block;
}

.popup .popup-links {
    margin: 10px 0px;
    /* display: flex; */
    flex-direction: initial;
}


.popup .sub-menu ul li a {
    font-family: Bebas Neue;
    font-weight: 400;
    font-style: Regular;
    font-size: 46px;
    line-height: 28px;
    color: #E7E7E7;
}

.popup .sub-menu ul li {
    margin-bottom: 35px;
    transition: 0.5s;
}

.account-button__avatar {
    height: 20px!important;
    line-height: 26px!important;
    padding:5px;
}

.cart-items__title {
    font-size: 14px;
    line-height: 17px;
}


 
.cart-page .cart-discount__content .my_btn {
        width: 43%;
    }

.cart-page .cart-discount__input::placeholder{
    font-size:18px;
}

.cart-page__summary{
    padding-top: 0;
    width: 54%;
    margin-top: 0;
}

  .cart-page .cart-page__items {
    width: 100% !important;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-page {
    max-width: 1440px;
    padding: 40px 0px;
    display: flex !important;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    margin: auto;
    padding-right: 4%;
}

.cart-page .cart_botm .cart-discount {
    width: 64%;
}

.cart-page .cart_botm {
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.cart-page .cart-discount__input {
    padding: 10px;
    height: 53px;
    width: 65%;
    border-radius: 0px !important;
}

.cart-page .cart-clear-all {
    font-size: 13px;
    float: right;
}


.cart-page .cart-items__table .quantity-selector button img {
    width: 16px;
}

.cart-page .cart-items__table .btn_carts {
    padding: 0px;
    border-radius: 200px;
    height: 38px;
}

.cart-page .btn_carts input {
    font-size: 14px;
    line-height: 26px;
}

.cart-items__table-row td:nth-of-type(6){
    width: 9%;
}

  .thankyou-container .my_btn {
    width: 39%;
}

.thankyou-container {
    position: relative;
    z-index: 2;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    width: 67%;
    margin: 0;
}

    .thankyou-hero-wrapper {
        min-height: 58vh;
    }

  .custom-404-section {
    padding: 20px;
    padding-top: 117px;
}

.custom-404-content {
    height: 62vh;
}

.dealer-resources-section {
    text-align: center;
    padding: 20PX;
}

.dealer-resources-section h2 {
    font-size: 35px;
    line-height: 30px;
    margin-top:20px;
}

.dealer-resource-item {
    width: 100%;
}



.dealer-resource-icon {
    width: 60px;
    height: 60px;
}

.resource_img_wrap {
    height: 120px;
}

.dealer-resource-item p {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    width: 100%;
    margin-top: 15px;
}


.dealer-item .store-list-col-1 {
    width: 52%;
    margin-bottom: 10px;
}

ul.dealer-list{
    width: 100%;
    padding: 0;
}

.store-list-col-2 p {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    margin-bottom: 11px;
    margin-top: 0;
}

.store-list-col-1 h3 {
    font-size: 18px;
    line-height: 100%;
}

.store-list-col-3{
    width: 46%;
}

.store-list-col-4 a {
    font-size: 14px;
    line-height: 100%;
}

.store-list-col-4 a:after {
    background-size: 51%;
    top: 0px;
    right: -88px;
}

.dealer-item .store-list-col-1 {
    width: 52%;
}

.store-list-col-4 a:after {
    background-size: 51%;
    top: 0px;
    right: -88px;
}

.tabs button {
    font-size: 27px;
}

#dealer-locator-tab:after{
    height: 37px;

}

.locator-tabs .liq .container{
    padding:0px;
}

.why-work-with-us {
    margin:0px 40px;
}

.career-openings {
    padding: 40px 0;
     margin:0px 20px;
}

.benefit-title{
        font-size: 24px;
}

.benefit-item .icon-wrap img {
    width: 35px;
    height: 36px;
}

.perks-benefits .section-title {
    margin-bottom: 0px;
    font-size: 55px;
}

.career-title {
    font-size: 55px;
    line-height: 50px;
}

.career-filters input, .career-filters select {
    padding: 13px 14px;
    width: 100%;
}

.job_w:after {
    background-size: 49%;
    right: 0px;
    top: 12px;
}

.why-left .main-heading {
    margin-bottom: 15px;
    font-size: 55px;
    line-height: 50px;
}


.why-left .desc {
    font-size: 17px;
    line-height: 24px;
}



.why-wrap{
    padding-bottom:30px;
}

  a.back-link {
    font-size:16px;
}
a.back-link:before {
    background-size: 27%;
    left: -17%;
    top: 4px;
}

.elite-top-image img{
    width: 50%;
    margin-top: 40px;
}

.elite-main-image {
    transform: scale(1.3);
}

.performance-title{
        margin-bottom: 40px;
        font-family: Bebas Neue;
        font-weight: 400;
        font-size: 55px;
        line-height: 30px;
}

.performace_wrap{
    padding: 40px;
}

.testing-left .sub-heading {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 45px;
    width: 100%;
    text-align:center;
}

.testing-left .desc {
    font-size: 21px;
    line-height: 32px;
    width: 100%;
}

.lower-flex .sub-heading {
    font-size: 40px;
    line-height: 40px;
}

.left-points, .right-points {
    width: 100%;
}

.bottom-points {
    display: flex;
    gap: 0;
    flex-wrap:wrap;
    margin-top: 40px;
}

.point-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.point-item:before {
    background-size: 39%;
    left: -1%;
    top: 3%;
}

.air-left .main-heading {
    font-size: 55px;
    line-height: 55px;
}

.air-left .desc {
    font-size: 18px;
    line-height: 26px;
}


.air-filters-section {
    padding: 40px 0;
}

.youtube-thumb {
    width: 90px;
    height: 90px;
}

.youtube-text span {
    font-size: 20px;
    line-height: 30px;
}

.youtube-logo {
    width: 111px;
    margin-top: 5px;
}

.elite-carbon-intake .content-wrap{
    flex-direction:column-reverse
}



p.top-text {
 font-size: 18px;
 line-height: 27px;
 padding-bottom: 15px;
 margin-bottom: 20px;
}

.air-right .point-item {
    gap: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-left: 24px;
    margin-bottom: 15px;
}

.air-right {
    padding: 20px;
}

.air-right .point-item:before {
    top: 5%;
    left: 0%;
}

.elite-carbon-intake .main-heading{
    font-size: 50px;
    line-height: 50px;
    width:100%;
}

.elite-carbon-intake .image-item {
    width: 48%;
}

.elite-carbon-intake .description p {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 28px;
}

.elite-carbon-intake {
    padding: 40px 0;
}

.discover-elite-section{
      padding: 80px 30px;
}

  .discover-elite-section .elite-header h2 {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 45px;
}

.discover-elite-section .elite-header p{
    font-size: 17px;
    line-height: 23px;
}

.elite-column p{
        font-size: 15px;
    line-height: 20px;
}

.elite-column:nth-of-type(1) .elite-logo {
    width: 208px;
    height: 225px;
}

.elite-logo {
    width: 401px;
    height: 225px;
}

   .contact-heading{
        font-size: 40px;
    line-height: 40px;
    width: 100%;
  }

  .contact-support-section{
    padding: 30px 2%;
  }

 .contact-grid .contact-details a{
    font-size:20px;
}

.contact-details p{
    margin:0;
    margin-top:10px;
    
}

h3.left_h{
    font-size: 18px;
}

.contact-address {
    font-size: 16px;
    width: 100%;
    line-height: 22px;
}

.contact-hours h4 {
    font-size: 18px;
    margin-bottom: 0px;
}

.contact-hours p{
    font-size: 16px;
}

.social-icon {
    width: 15px;
    height: 15px;

}

.contact-social a{
        width: 35px;
    height: 35px;
}

.contact-social{
        gap: 10px;
}

.form-note {
    font-weight: 400;
    font-size: 20px;
}

.contact-right {
    padding: 20px;
}


.form-input, .form-textarea {
    width: 100%;
    padding: 8px 11px;
    font-size: 15px;
    outline: none;
    margin-bottom: 10px;
}

.form-input::placeholder, .form-textarea::placeholder{
    font-size:14px;
}

.form-label{
        font-size: 18px;
}

  .product-details .text-block:nth-of-type(1) h1 {
    font-size: 30px;
    line-height: 35px;
}

.product-details .text-block:nth-of-type(1) p {
    font-size: 19px;
    line-height: 100%;
}

.product-details .price{
    font-size:18px;
}

.product-details .text-block:nth-of-type(2) p {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #5d616a;
    margin-top: -8px;
}

.add-to-cart-button {
    font-size: 20px;
    width: 69% !important;
}

.quantity-selector
 {
    max-width: 24% !important;
}

p.estimated_date {
    font-size: 14px;
    padding-top: 20px;
}


.vg-main {
    min-height: 247px;
}

.vg-main .is-active img {
    padding: 19px;
}

p.counter_v {
    line-height: 34px;
    font-size: 21px;
}

p.counter_t {
    font-size: 10px;
}

    .vg-thumb img {
        width: 34px;
        height: 26px;
    }

.faq-description {
    font-size: 14px;
    line-height: 20px;
    width: 75%!important;
}
.faq_sec .banner-title{
    font-size:45px!important;
}

.faq_sec .banner-breadcrumb {
    margin-top: 20px;
}

section.faq-section {
    padding: 29px 0;
}

section.faq-section .faq-accordion {
    width: 80%;
}

.faq-answer{
    font-size:15px;
    line-height:22px
}

.faq-question.active .icon-wrap {
    background: #088ed1;
    padding: 15px 10px!important;
}


 .vehicle-selector{
  width: 65%;
  order:-1;
  margin:10px auto;
  margin-top:0px;
 }

 .header-main{
  flex-wrap:wrap;
  padding: 10px 0;
 }
 .header-icons{
  width: 47%;
  gap: 6px;
  order: 3;
  display: flex;
  justify-content: end;
 }
 .header-logo{
  width: 53%;
  order: 2;
  display: flex!important;
  justify-content: left!important;
 }
 .humburger{
  width:30px;
 }

 span.vehicle-label{
  font-size: 14px;
 }


.vehicle-selector select {
    -webkit-appearance: none;
    appearance: none;
    width: 23%;
    background: transparent;
    border: 1px solid white;
    border-radius: 30px;
    color: #fff;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 13px;
    padding: 3px 6px;
}
 .vehicle-selector{
      padding: 5px 13px 5px 14px;
 }

 .vehicle-selector button {
    background: #fff;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    color: #088ed1;
    border-radius: 30px;
    padding: 5px 20px 5px 11px;
    width: 18%;
    position: relative;
}
.vehicle-selector button:after {
           content: "";
        padding: 10px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 48%;
        top: 33%;
        right: -6%;
}

    .featured-blog-image img {
        height: 249px;
        object-fit: cover;
    }

.search-modal__button {
  
    height: 30px;
    width: 30px;
}

 .account-button{
      height: 30px!important;
      width: 30px!important;
 }

 .header-actions__cart-icon{
   height: 30px!important;
   width: 30px!important;
   display: flex;
   align-items: center;
 }

 .header-actions__cart-icon .cart-bubble{
  width: 14px!important;
  height: 14px!important;
  font-size: 1px;
  top: 0px;
  right: 0px;
 }
 span.cart-bubble__text {
    font-size: 7px;
}
.hero-slide .slide-title {
    width: 84%;
    font-size: 79px;
    line-height: 76px;
    margin-bottom: 18px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
}

.stats-item:nth-of-type(1) {
    width: 44%;
    order: -2;
}
.stats-item:nth-of-type(2) {
    width: 44%;
}

.stats-item:nth-of-type(3) {
    width: 44%;
}

.stats-item:nth-of-type(4) {
            width: 25%;
        order: -1;
        margin-right: 20px;
}

.stats-item:nth-of-type(4) img{
    margin:auto;
    max-width: 45%!important;
}

.stats-item:nth-of-type(5) {
    width: 44%;
}

.stats-item:nth-of-type(6) {
    width: 44%;
}


span.counter {
    font-size: 45px;
}

span.postfix {
    font-size: 18px;
}

.stats-item p{
    font-size:20px;
    line-height:20px;
}

.stats-item h3{
    font-size:35px;
}

h2.left-title {
    font-size:50px;
}

.product-card{
    width:50%!important;
}

.product-info{
    position:static;
    
}

.product-card img{
    width:69%!important;
}

 .product-card{
    height:360px;
    margin-bottom:20px;
}

.featured-products-tabs .product-card{
        height: 378px;
}

.product-title{
    font-size:18px;
    line-height:21PX;
}

  .two-col-banner__wrapper {
    flex-wrap: wrap;
}

.two-col-banner__col {
    width: 50%;
    padding: 20px;
    height: 400px;
    background-size: 100% 100%;
}

.two-col-banner__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.two-col-banner__content h2{
    font-size: 44px;
}

.two-col-banner__content a.my_btn {
    width: 258px;
}

.container.home_two_col {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.image-and-text__col {
    width: 100%;
}

.home_two_col h2.title{
    width:100%;
    font-size:45px;
    line-height:45px;
    margin-top:0px;
}

.home_two_col .description{
    font-size:18px;
    line-height:24px;
    margin-top:20px;
}

.image-and-text__col2 img{
    width:60%;
}

 .center-title{
           font-size: 35px;
        margin-bottom: 0px;
        line-height: 40px;

}

.image-gallery-section .gallery-description{
    font-size:16px;
    line-height:20px;
    width:70%;
}

.faq-left {
    width: 50%;
}

.faq-grid {
    flex-wrap: wrap;
}

p.faq-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

h2.faq-title {
    font-size: 35px;
    margin-top: 0px;
    line-height: 35px;
}

button.faq-question {
    font-size: 18px;
}

.faq-item {
    padding: 10px 0px;
}

.icon-wrap {
    padding: 10px!important;
}

.faq-contact {
    width:40%;
    height: 550px;
    justify-content: end;
    align-items: flex-end;
    padding: 13px;
    background-size: 100% 100% !important;
}

.contact-box {
    padding: 0;
}

h3.contact-title {
    font-size: 30px;
}

p.contact-subtext {
    font-size: 15px;
}

.contact-details a{
    font-size: 14px;
}

.li_wrap span{
    font-size:16px;
}

h3.reviewer-name {
    font-size: 40px;
    margin-top: 10px;
}

img.review_thumbnail {
    width: 70%!important;
    height: 50%;
    margin: auto;
}

.play-button {
    font-size: 19px;
}

.play-button img{
    width:10px;
    height:20px;
    border-radius:0px;
}

p.model-text {
    font-size: 16px;
}

.youtube_bottom {
    align-items: center;
    justify-content: center;
}
.youtube_bottom p{
    font-size: 24px;
    line-height:18px;
    margin-bottom: 0;
}

p.review-text{
    font-size: 24px;
    line-height: 35px;
}

.testimonial-controls {
    width: 100%;
}

.testimonial-bottom {
    flex-wrap: wrap;
    margin-top: 20px;
}

.testimonial-footer{
    gap: 10px;
    justify-content:space-between;
    width:100%;
}

.testimonial-footer .my_btn{
    width:250px;
}

.testimonial-footer .rating{
    width: 46%;
    justify-content: end;
}

span.rating-text {
    font-size: 16px;
    line-height: 12px;
}

span.rating-value {
    padding: 16px 18px;
    font-size: 22px;
}

.star_wrap {
    margin-left: 6px;
}

img.review_quote {
    width: 7%!important;
}

.footer-col h4{
    font-size: 24px;
}

.footer-links li a{
    font-family:15px;
}

.social-icons a img {
      margin-right: 20px;

}

.footer-newsletter input[type=email]{
        width: 117%;
}

.footer-newsletter input[type=email]::placeholder{
    font-size:14px;
}

.footer-newsletter button{
        top: 4px;
    right: -17%;
}

.policy-links li a{
        font-size: 13px;
}

.footer-wrapper .footer-row:nth-of-type(3) .footer-col:nth-of-type(1){
    width:20%;
    flex: unset;
    padding: 0;
}

.footer-wrapper .footer-row:nth-of-type(3) .footer-col:nth-of-type(2){
    width: 48%;
    flex: unset;
}

.footer-wrapper .footer-row:nth-of-type(3) .footer-col:nth-of-type(3){
    width: 30%;
    flex: unset;
    min-width: unset;
    padding: 0;
}


img.footer-logo-bottom {
    width: 100%;
    padding: 0px 17px;
}

.footer-logo{
    max-width:58px;
}
h1.banner-title {
    font-size:40px;
    line-height:40px
}

.banner-breadcrumb a, .banner-breadcrumb {
        font-size: 12px;
}

p.banner-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

.image-and-text__col img{
  margin-bottom:30px;
}

.home_two_col .subtitle {
    margin-bottom: 5px;
    font-size: 22px;
 
}



.mission-subtitle{
         font-size: 55px;
        line-height: 38px;
}

.mission-description {
    font-size: 19px;
    line-height: 25px;
    width: 90%;
    margin: 50px auto;
    position: relative;
    margin-top:80px;
}

.mission-description:before {
    left: 0%;
    background-repeat: no-repeat;
    top: -22%;
    background-size: 60%;
}

.mission-feature-item h4{
 font-size:30px;
 line-height:30px;
}

.mission-feature-item p {
    color: #c7c7c7;
    font-size: 16px;
    line-height: 21px;
}

.mission-section{
 
    padding: 6% 0%;
}

.mission-features {
    margin-top: 70px;
}

.timeline-header .center-title {
        font-size: 35px;
        margin-bottom: 0;
    margin-top:0px
    }
.timeline-header .timeline-subtitle {
        font-size: 22px;
        margin-bottom: 0;
    margin-top:0px
    }

.timeline-desc {
    font-size: 18px;
    line-height: 26px;
    margin-top: 0;
}

.timeline-item {
    position: relative!important;
    width: 100%;
    padding: 20px 0 0 20px;

}

.timeline-item.top {
    margin-bottom: 0px!important;
    top: 76px !important;
}
.timeline-wrapper .bottom {
    bottom: 85px;
            margin-top: 0 !important;
}
.timeline-wrapper{
    gap:0px;
    padding-top:0px
}

.timeline-wrapper .top:before {
    content: "";
    background: url(/cdn/shop/files/Frame_427320844.png?v=1761156236);
    padding: 20px;
    width: 11%;
    height: 70%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 10%;
    left: -1%;
}

.timeline-wrapper .bottom:before {
    content: "";
    /* background: url(/cdn/shop/files/Frame_427320844.png?v=1761156236); */
     padding: 20px;
    width: 11%;
    height: 70%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 10%;
    left: -1%;
}

.timeline-heading{
        font-size: 26px;
    line-height: 28px;
}

.timeline-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 8px;
}

.timeline-year {
    margin-bottom: 10px;
    font-size: 22px;
}

.container.map_two_col {
    flex-wrap: wrap;
    flex-direction: column-reverse;
        width: 100%;

}

.map_two_col h2.title {
    font-size: 40px;
    line-height: 40px;
    width: 100%;
    margin: 0 0 10px;
}

.map_two_col .description {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
}

.map_two_col .subtitle {
    margin-bottom: 15px;
    font-size: 23px;
    line-height: 100%;
}

.map_two_col .image-and-text__col{
    margin-bottom:50px;
}

.map_two_col .image-and-text__col img{
    width:80%;
}

.product-grid-wrapper.container {
    flex-wrap: wrap;
}

aside.filters {
    width: 100%;
}

.results-count {
    font-size: 12px;
}
.sort-by select{
     font-size: 12px;
}


.filters label{
    font-size: 16px;
}


.product-grid-wrapper .filters h4 {
    font-size: 20px;
}

.breadcrumb-nav a{
        font-size: 14px;
}

.breadcrumb-nav a{
        font-size: 14px;
}

.filters input[type=checkbox]{
        width: 15px;
    height: 15px;
}

.filters input[type=checkbox]:checked:after {
    top: 2px;
    left: 1.3px;
    width: 10px;
    height: 10px;
}

.filters .count {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}

.products-area .product-card{
    width: 47%!important;
}

.products-area  .product-info {
        position: static;
    }

    .product-card img {
        width: 69% !important;
    }

/* .products-area .product-card{
        height: 306px;
} */


.products-area .product-card{
        height: 368px;
}

.btn.cart{

    font-size: 18px;
}

.btn.view{
    font-size: 18px;
    line-height: 26px;
}

.featured-blog-content {
    width: 100%;
}

.featured-blog-image {
    width: 100%;
}

h2.featured-title {
    font-size: 45px;
    line-height: 45px;
}

p.featured-excerpt {
    font-size: 18px;
    line-height: 28px;
}

p.featured-date {
    font-size: 16px;
    margin-top: 20px;
}

.featured-label {
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 100%;
    padding: 10px 30px;
}


h2.mostly-viewed-title {
    font-size: 35px;
    line-height: 25px;
}

.main-article .article-title{
    font-size:30px;
    line-height:32px
}

.main-article .article-excerpt{
    font-size:14px;
    line-height:22px
}

.main-article .read-more{
    font-size:18px;
}

.main-article .article-date{
    font-size:14px;
}

.side-article .article-title{
    font-size:22px;
    line-height:24px;
    margin-bottom: 20px;
}

.side-article .read-more{
    font-size:18px;
}

.side-article img{
        height: 149px;
}

.mostly-viewed-section{
    padding:40px 0px;
}

.recommended-item{
    width:48%;
}

.recommended-heading{
    font-size:35px;
    line-height:20px;
}

.recommended-title{
    font-size:22px;
    line-height:25px;
}

span.recommended-date{
font-size:14px;
}

.recommended-item img {
    height: 35px;
    width: 40px;
}

.article-feature-image__img {
   
    height: 43vh;
}

.related-blogs-section .section-heading{
      margin-bottom: 40px !important;
      font-size:50px;
}

.back-to-news span{
 font-size: 13px;
}

a.back-to-news {
    width: 40%;
    gap: 8px;
}

.back-to-news img{
 width: 2%;
 height: 9%;
 position: relative;
 top: 1px;
}

.blog-toc, .blog-social{
 padding:20px;
}

.blog-social img {
    width: 16px;
    height: 30px;
    object-fit: scale-down;
}

.blog-toc h4, .blog-social h4{
 font-size:20px;
}

.blog-toc a{
 font-size:16px;
}

h1.blog-title {
    font-size: 45px;
    line-height: 45px;
}

p.blog-meta {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-images figcaption {
    font-size: 9px;
}

.blog-body p{
 font-size:16px;
 margin: 0;
}

blockquote{
 font-size: 18px;
 line-height: 24px;
}

.blog-body h3,.blog-body h2{
 font-size:30px;
}

.related-blogs-section .section-heading{
      margin-bottom: 30px !important;
      font-size:35px;
}

section.related-blogs-section{
 margin-top: 20px!important;

}

.back-to-news img {
    width: 2%;
    height: 9%;
    position: relative;
    top: 1px;
}

.policy-container {
    margin: 0 auto;
    width: 76%;
}

.policy-card{
        bottom: 86px;
}

.steps-container {
    gap: 75px;
}

.step-box:nth-of-type(2):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 108%;
    height: 127%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -37px;
    right: 0;
    left: -65px;
    bottom: 0;
    z-index: -2;
    transform: rotate(127deg);
}
.three-steps-wrapper .steps-header h2 {
    font-size: 55px;
    margin-bottom: 10px;
}

.ws-top-text {
    width: 100%;
}

h3.ws-title {
    font-weight: 400;
    font-size: 50px;
    line-height: 55px;
    margin-top: 15px;
}

.warranty-section p {
    font-size: 16px;
}

.ws-serial-box{
        margin: auto;
}

.warranty-wrapper {
    padding: 80px 25px;
}
.dealer-locator-row-one h3 {
    font-size: 45px;
    line-height: 50px;
    margin-top: 0px;
}

.dealer-locator-row-one h2 {
    font-size: 18px;
}

.dealer-locator-row-two p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 20px;
}

.dealer-locator-section {
    padding: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.return-page .step-box:nth-of-type(2):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 112%;
    height: 113%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -63px;
    bottom: 0;
    z-index: -1;
    transform: rotate(136deg);
}

.return-page .steps-container {
    gap: 67px;
    flex-wrap: wrap;
    margin-top: 111px;
    margin-bottom: 80px;
    row-gap: 100px;
}

.return-page .step-box:nth-of-type(3):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 115%;
    height: 119%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -24px;
    bottom: 0;
    z-index: -1;
}

.return-page .steps-header p {
   width:70%;
   margin:auto;
}

.return-page .step-box:last-child:after {
    content: "";
    background: url(/cdn/shop/files/Ellipse_1719.png?v=1764003831);
    padding: 30px;
    width: 103%;
    height: 120%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -20px;
    bottom: 0;
    z-index: -1;
}
}

/* ipad pro css */

@media screen and (min-width: 769px) and (max-width: 1025px){

  .blog-body img {
    width: 100%!important;
    margin-bottom: 20px;
    margin-top: 20px;
}

.blog-body iframe {
    width:100%!important;
}

  .hero-slide .slide-title {
    font-size: 70px;
    line-height: 72px;
}

.return-page .step-box:nth-of-type(3):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 112%;
    height: 114%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -54px;
    bottom: 0;
    z-index: -1;
    transform: rotate(131deg);
}

.return-page .steps-container {
    gap: 67px;
    margin-top: 111px;
    margin-bottom: 80px;
    row-gap: 100px;
}

.return-page .step-box:last-child:after {
    content: "";
    background: url(/cdn/shop/files/Ellipse_1719.png?v=1764003831);
    padding: 30px;
    width: 102%;
    height: 150%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -27px;
    right: 0;
    left: -24px;
    bottom: 0;
    z-index: -1;
}

.return-page .steps-header p {
   width:70%;
   margin:auto;
}

.cart-items__title {
    font-size: 14px;
    line-height: 17px;
}


 
.cart-page .cart-discount__content .my_btn {
        width: 43%;
    }

.cart-page .cart-discount__input::placeholder{
    font-size:18px;
}

.cart-page__summary{
    padding-top: 0;
    width: 43%;
    margin-top: 0;
}

  .cart-page .cart-page__items {
    width: 100% !important;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-page {
    max-width: 1440px;
    padding: 40px 0px;
    display: flex !important;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    margin: auto;
    padding-right: 4%;
}

.cart-page .cart_botm .cart-discount {
    width: 64%;
}

.cart-page .cart_botm {
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.cart-page .cart-discount__input {
    padding: 10px;
    height: 53px;
    width: 65%;
    border-radius: 0px !important;
}

.cart-page .cart-clear-all {
    font-size: 13px;
    float: right;
}


.cart-page .cart-items__table .quantity-selector button img {
    width: 16px;
}

.cart-page .cart-items__table .btn_carts {
    padding: 0px;
    border-radius: 200px;
    height: 38px;
}

.cart-page .btn_carts input {
    font-size: 14px;
    line-height: 26px;
}

.cart-items__table-row td:nth-of-type(6){
    width: 9%;
}

  .thankyou-hero-wrapper {
    min-height: 43vh;

}
.thankyou-container .my_btn {
    width: 39%;
}

  .custom-404-section {
    padding: 20px;
    padding-top: 117px;
}

.custom-404-content {
    height: 51vh;
}

.dealer-resources-section {
    text-align: center;
    padding: 80px 20px;
}

.dealer-resources-section h2 {
    font-size: 45px;
    line-height: 30px;
    margin-top:0px;
}

.dealer-resource-item {
    width: 100%;
}



.dealer-resource-icon {
    width: 60px;
    height: 60px;
}

.resource_img_wrap {
    height: 120px;
}

.dealer-resource-item p {
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    width: 100%;
    margin-top: 15px;
}


.locator-tabs .liq .container{
    padding:0px;
}

.dealer-item .store-list-col-1 {
    width: 52%;
    margin-bottom: 10px;
}

ul.dealer-list{
    width: 100%;
    padding: 0;
}

.store-list-col-2 p {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    margin-bottom: 11px;
    margin-top: 0;
}

.store-list-col-1 h3 {
    font-size: 18px;
    line-height: 100%;
}

.store-list-col-3{
    width: 46%;
}

.store-list-col-4 a {
    font-size: 14px;
    line-height: 100%;
}

.store-list-col-4 a:after {
    background-size: 51%;
    top: 0px;
    right: -88px;
}

.dealer-item .store-list-col-1 {
    width: 52%;
}

.store-list-col-4 a:after {
    background-size: 51%;
    top: 0px;
    right: -88px;
}

  .gr-search-slt:after {
    content: "Locate Nearby Dealers with Just a Few Clicks";
    position: absolute;
    top: -248%;
    color: #111113;
    font-family: Host Grotesk;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
}

.gr-search-slt:before {
    top: -115%;
    font-size: 15px;
    line-height: 20px;
}

.tabs button {
    font-size: 30px;
    line-height: 100%;
    transition: 0.5s;
}

  .dealer-locator-row-one h3 {
    font-size: 55px;
    line-height: 55px;
    margin-top: 0px;
}

.dealer-locator-row-one h2 {
    font-size: 22px;
}

.dealer-locator-row-two p {
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 20px;
}

  section.warranty-section {
    background: #F6F6F6;
    padding: 80px 20px;
}

.ws-serial-box img {
    max-width: 100%;
}

h3.ws-title {
    font-weight: 400;
    font-size: 50px;
    line-height: 55px;
    margin-top: 15px;
    margin-bottom: 0;
}
 
  .policy-container {
    margin: 0 auto;
    width: 76%;
}

.policy-card{
        bottom: 86px;
}
.why-work-with-us {
    margin:0px 40px;
}

.career-openings {
    padding: 40px 0;
     margin:0px 20px;
}

.benefit-title{
        font-size: 24px;
}

.benefit-item .icon-wrap img {
    width: 35px;
    height: 36px;
}

.perks-benefits .section-title {
    margin-bottom: 0px;
    font-size: 55px;
}

.career-title {
    font-size: 55px;
    line-height: 50px;
}

.career-filters input, .career-filters select {
    padding: 13px 14px;
    width: 100%;
}

.job_w:after {
    background-size: 49%;
    right: 0px;
    top: 12px;
}

.why-left .main-heading {
    margin-bottom: 15px;
    font-size: 55px;
    line-height: 50px;
}


.why-left .desc {
    font-size: 17px;
    line-height: 24px;
}

.why-wrap{
    padding-bottom:30px;
}

  a.back-link {
    font-size: 18px;
}
a.back-link:before {
    background-size: 36%;
    left: -16%;
    top: 5px;
}

.elite-top-image img{
    width: 50%;
    margin-top: 40px;
}

.elite-main-image {
    transform: scale(1.3);
    margin-top: 50px;
}

.performance-title{
        margin-bottom: 40px;
        font-family: Bebas Neue;
        font-weight: 400;
        font-size: 70px;
        line-height: 48px;
}

.performace_wrap{
    padding: 40px;
}

.testing-left .sub-heading {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 45px;
    width: 100%;
    text-align: left;
}

.testing-left .desc {
    font-size: 18px;
    line-height: 27px;
    width: 100%;
}

.lower-flex .sub-heading {
    font-size: 45px;
    line-height: 50px;
}

.left-points, .right-points {
    width: 100%;
}

.bottom-points {
    display: flex;
    gap: 0;
    flex-wrap:wrap;
    margin-top: 40px;
}

.point-item p {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.point-item:before {
    background-size: 39%;
    left: -1%;
    top: 3%;
}

.air-left .main-heading {
    font-size: 55px;
    line-height: 55px;
}

.air-left .desc {
    font-size: 18px;
    line-height: 26px;
}


.air-filters-section {
    padding: 40px 0;
}

.youtube-thumb {
    width: 90px;
    height: 90px;
}

.youtube-text span {
    font-size: 20px;
    line-height: 30px;
}

.youtube-logo {
    width: 111px;
    margin-top: 5px;
}

.elite-carbon-intake .content-wrap{
    flex-direction:column-reverse
}

p.top-text {
 font-size: 18px;
 line-height: 27px;
 padding-bottom: 15px;
 margin-bottom: 20px;
}

.air-right .point-item {
    gap: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-left: 24px;
    margin-bottom: 15px;
}

.air-right {
    padding: 20px;
}

.air-right .point-item:before {
    top: 5%;
    left: 0%;
}

.elite-carbon-intake .main-heading{
    font-size: 55px;
    line-height: 50px;
    width:100%;
}

.elite-carbon-intake .image-item {
    width: 48%;
}

.elite-carbon-intake .description p {
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 30px;
}

.elite-carbon-intake {
    padding: 40px 0;
}

   .contact-heading{
        font-size: 45px;
    line-height: 40px;
    width: 100%;
  }

  .contact-support-section{
    padding: 30px 4%;
  }

 .contact-grid .contact-details a{
    font-size:24px;
}

.contact-details p{
    margin:0;
    margin-top:10px;
    
}

h3.left_h{
    font-size: 20px;
}

.contact-address {
    font-size: 17px;
    width: 100%;
    line-height: 22px;
}

.contact-hours h4 {
    font-size: 18px;
    margin-bottom: 0px;
}

.contact-hours p{
    font-size: 17px;
}

.social-icon {
    width: 15px;
    height: 15px;

}

.contact-social a{
        width: 35px;
    height: 35px;
}

.contact-social{
        gap: 10px;
}

.form-note {
    font-weight: 400;
    font-size: 20px;
}

.contact-right {
    padding: 20px;
}


.form-input, .form-textarea {
    width: 100%;
    padding: 8px 11px;
    font-size: 15px;
    outline: none;
    margin-bottom: 10px;
}

.form-input::placeholder, .form-textarea::placeholder{
    font-size:13px;
}

.form-label{
        font-size: 16px;
}


h1.banner-title {
    font-size:40px;
    line-height:40px
}

.banner-breadcrumb a, .banner-breadcrumb {
        font-size: 12px;
}

p.banner-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

  .home_two_col h2.title
 {
    font-size: 46px;
    line-height: 46px;
    width: 96%;
    margin-bottom: 10px;
}

.home_two_col .description{
      font-size: 16px;
    line-height: 25px;
}





.mission-description {
    font-size: 15px;
    line-height: 25px;
    margin: 50px auto;
    position: relative;
}

.mission-description:before {
    left: 0%;
    background-repeat: no-repeat;
    top: -30%;   
        background-size: 65%;
}

.mission-feature-item h4{
 font-size:24px;
 line-height:25px;
}

.mission-feature-item p {
    color: #c7c7c7;
    font-size: 14px;
    line-height: 21px;
}


.mission-features {
    margin-top: 70px;
}

.timeline-header .center-title {
        font-size: 45px;
        margin-bottom: 0;
    margin-top:0px
    }
.timeline-header .timeline-subtitle {
        font-size: 22px;
        margin-bottom: 0;
    margin-top:0px
    }

.timeline-desc {
    font-size: 22px;
    line-height: 26px;
    margin-top: 0;
}

.timeline-item {
    position: relative!important;
    width: 100%;
    padding: 20px 0 0 20px;
    /* top: 0!important;
    bottom: 0!important; */
}

.timeline-wrapper{
    gap:0px;
    padding-top:0px
}

.timeline-wrapper .top:before {
           content: "";
        background: url(/cdn/shop/files/Frame_427320844.png?v=1761156236);
        padding: 20px;
        width: 11%;
        height: 54%;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        top: -5%;
        left: -6%;
}

.timeline-wrapper .bottom:before {
          content: "";
        padding: 20px;
        width: 11%;
        height: 70%;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        top: 22%;
        left: -6%;
}

.timeline-wrapper .top
 {
    top: 250px;
    position: relative;
}
.timeline-item.top {
    margin-bottom: 0!important;
}

.timeline-heading{
        font-size: 30px;
    line-height: 32px;
}

.timeline-text {
          font-size: 20px;
        line-height: 29px;
        margin-top: 10px;
}

.timeline-year {
    margin-bottom: 10px;
    font-size: 26px;
}

/* .timeline-line{
    display:none;
} */



.map_two_col h2.title {
    font-size: 40px;
    line-height: 40px;
    width: 100%;
    margin: 0 0 10px;
}

.map_two_col .description {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
}

.map_two_col .subtitle {
    margin-bottom: 15px;
    font-size: 23px;
    line-height: 100%;
}

.map_two_col .image-and-text__col{
    margin-bottom:50px;
}


/* .product-grid-wrapper.container {
    flex-wrap: wrap;
}

aside.filters {
    width: 100%;
}
 */
.results-count {
    font-size: 12px;
}
.sort-by select{
     font-size: 12px;
}


.filters label{
    font-size: 13px;
}


.product-grid-wrapper .filters h4 {
    font-size: 20px;
}

.breadcrumb-nav a{
        font-size: 14px;
}

.breadcrumb-nav a{
        font-size: 14px;
}

.filters input[type=checkbox]{
        width: 15px;
    height: 15px;
}

.filters input[type=checkbox]:checked:after {
    top: 2px;
    left: 1.3px;
    width: 10px;
    height: 10px;
}

.filters .count {
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
}

.products-area .product-card{
    width:48%;
}

.products-area  .product-info {
        position: static;
    }

    .product-card img {
        width: 65% !important;
    }




.products-area .product-card{
        height: 375px;
}



h2.featured-title {
    font-size: 45px;
    line-height: 45px;
}

p.featured-excerpt {
    font-size: 20px;
    line-height: 28px;
}

p.featured-date {
    font-size: 16px;
    margin-top: 60px;
}

.featured-label {
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 100%;
    padding: 10px 30px;
}


h2.mostly-viewed-title {
    font-size: 35px;
    line-height: 25px;
}

.main-article .article-title{
    font-size:30px;
    line-height:32px
}

.main-article .article-excerpt{
    font-size:14px;
    line-height:22px
}

.main-article .read-more{
    font-size:18px;
}

.main-article .article-date{
    font-size:14px;
}

.side-article .article-title{
    font-size:22px;
    line-height:24px;
    margin-bottom: 20px;
}

.side-article .read-more{
    font-size:18px;
}

.side-article img{
        height: 149px;
}

.mostly-viewed-section{
    padding:40px 0px;
}

 .recommended-item{
    width:48%;
}

.recommended-heading{
    font-size:45px;
    line-height:20px;
}

.recommended-title{
    font-size:24px;
    line-height:28px;
}

span.recommended-date{
font-size:16px;
}

.recommended-item img {
    height: 45px;
    width: 50px;
}

.article-feature-image__img {
   
    height: 30vh;
}

.related-blogs-section .section-heading{
      margin-bottom: 40px !important;
      font-size:50px;
}

.back-to-news span{
 font-size: 13px;
}

a.back-to-news {
    width: 40%;
    gap: 8px;
}

.back-to-news img{
 width: 2%;
 height: 9%;
 position: relative;
 top: 1px;
}

.blog-toc, .blog-social{
 padding:20px;
}

.blog-social img {
    width: 16px;
    height: 30px;
    object-fit: scale-down;
}

.blog-toc h4, .blog-social h4{
 font-size:20px;
}

.blog-toc a{
 font-size:16px;
}

h1.blog-title {
    font-size: 45px;
    line-height: 45px;
}

p.blog-meta {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-images figcaption {
    font-size: 9px;
}

.blog-body p{
 font-size:16px;
 margin: 0;
}

blockquote{
 font-size: 18px;
 line-height: 24px;
}

.blog-body h3,.blog-body h2{
 font-size:30px;
}

.related-blogs-section .section-heading{
      margin-bottom: 30px !important;
      font-size:35px;
}

section.related-blogs-section{
 margin-top: 20px!important;

}

.back-to-news img {
    width: 2%;
    height: 9%;
    position: relative;
    top: 1px;
}

.faq-title{
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 2px;
    margin-top: 20px;
}



.vg-main {
    min-height: 347px;
}

.vg-main .is-active img {
    padding: 19px;
}

p.counter_v {
    line-height: 44px;
    font-size: 24px;
}

p.counter_t {
    font-size: 13px;
}

    .vg-thumb img {
        width: 44px;
        height: 36px;
    }

.product-details .text-block:nth-of-type(1) h1 {
    font-size: 35px;
    line-height: 35px;
}

.product-details .text-block:nth-of-type(1) p {
    font-size: 20px;
    line-height: 100%;
}

.product-details .price{
    font-size:20px;
}

.product-details .text-block:nth-of-type(2) p {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #5d616a;
    margin-top: -8px;
}

.add-to-cart-button {
    font-size: 20px;
    width: 69% !important;
}

.quantity-selector
 {
    max-width: 24% !important;
}

p.estimated_date {
    font-size: 14px;
    padding-top: 20px;
}

.vehicle-selector select {
    width: 24%;
    font-size: 13px;
    padding: 4px 8px;
}

span.vehicle-label {
    font-size: 20px;
}

.vehicle-selector button {
    font-size: 14px;
    padding: 8px 24px 4px 15px;
    width: 18%;
}

.vehicle-selector button:after {
    background: url(/cdn/shop/files/Group_117.png?v=1762450939);
    background-size: 49%;
    top: 38%;
    background-repeat:no-repeat;
    right: -4%;
}

.header-logo img {
    max-height: 50px;
}

.hero-slide{
  height:43vh;
}

.feature-image img {
    width: 100%;
    height: 253px;
}

.featured-products-tabs .product-card {
    width: 33%;
    height: 390px;
}

.btn.cart{
      font-size: 18px;
}

.product-title{
  font-size: 20px;
    line-height: 21px;
}
.btn.view{
  font-size:18px;
}

 .recommended-products-section .product-card {
    width: 33%;
    height: 390px;
}

.tab-link {
    padding: 16px 0;
    font-size: 28px;
}

.tab-link.active{
  font-size: 28px;
}


.read-more_btn:after {
        background-size: 58%;
        top: 24%;
        right: -44%;
}

.read-more_btn{
    position:relative;
}

.read-more:after {
        content: "";
        background: url(/cdn/shop/files/Group_117.png?v=1762450939);
        padding: 10px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 56%;
        top: 25%;
        right: -43%;
}

.read-more{
    position:relative;
}

.side-article .article-date {
    margin-bottom: -4px;
    font-size: 12px;
    line-height: 100%;
}

.stats-item h2 {
    font-size: 45px;
}

.stats-item p {
    font-size: 14px;
    line-height: 21px;
}

.stats-item h3 {
  font-size:30px;
}

.faq-contact {
    height: 644px;
    padding: 0 0px;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
}
.contact-box {
    transform: translateY(40%);
}
}



.error-404 #header-group, .thank-you-page #header-group {
    display:none;
}

.error-404 .shopify-section-group-footer-group, .thank-you-page .shopify-section-group-footer-group {
    display:none;
}

/* popup css */



.popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9998; /* Behind the hamburger */
     overflow: hidden;
    background: url(/cdn/shop/files/Group_115_6.png?v=1775153183);
    background-size: 100% 100%;
}

.popup .popup-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #000;
  font-size: 18px;
  overflow-y: auto;
  padding: 30px;
  overflow: hidden;
}

.popup .popup-content ul {
  list-style: none;
  padding: 0;
}

.popup .popup-content ul li {
  margin-bottom: 0px;
}

.popup .popup-content ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 60px;
  line-height: 34px;
  position: relative;
}

.popup .popup-content ul .menu-item a:after {
  content: "";
  background: url(/cdn/shop/files/Vector_29.png?v=1767099309);
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: 30px;
  background-repeat: no-repeat;
  right: -117%;
}

.popup #news a:after {
  display: none;
}

.popup .popup-content ul .menu-item a:hover:after {
  content: "";
  background: url(/cdn/shop/files/Vector_30.png?v=1767099546);
  position: absolute;
  height: 100%;
  /* width: 100%; */
  background-size: 30px;
  background-repeat: no-repeat;
  /* right: -117%; */
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  right: -100%; /* Initially off-screen */
  width: 100%;
  height: 100%;
  z-index: 9998;
  overflow: hidden;
  transition: right 0.5s ease-in-out; /* Slide in effect */
}

.popup.show {
  right: 0; /* Slide in to the viewport */
}

.popup .popup-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 1000000;
}

.humburger{
  cursor:pointer;
}

.popup .sub-menu ul li a {
  position: relative; /* Position relative to allow absolute positioning of the line */
  text-decoration: none; /* Remove underline */
  color: #fff; /* Adjust text color as needed */
  padding-bottom: 4px; /* Add some padding to make room for the underline */
}

.popup .sub-menu ul li a::after {
  content: ''; /* Empty content for the pseudo-element */
  position: absolute;
  bottom: 0; /* Place the line at the bottom of the link */
  left: 0;
  width: 0; /* Initially, the line has 0 width */
  height: 2px; /* Set the height of the line */
  background-color: #088ED1; /* Set the line color */
  transition: width 0.3s ease; /* Add transition for smooth effect */
}

.popup .sub-menu ul li a:hover::after {
  width: 100%; /* On hover, the line expands to the full width of the link */
}



.popup:after{
  content:"";
  background: linear-gradient(90deg, rgba(35, 31, 32, 0.83) -3.72%, rgba(35, 31, 32, 0.74) 18.87%, rgba(35, 31, 32, 0.83) 50.45%, rgba(35, 31, 32, 0.89) 77.15%, rgba(35, 31, 32, 0.86) 93.24%, #231F20 100%);
  position:absolute;
  height:100%;
  width:100%;
  display:block;
  opacity:0.9;
  z-index: 100000;
  display:none;
}

.popup .popup-content ul li a:hover {
  color: #088ED1;
}

.popup .sub-menu {
  margin-top: 20px;
  display: none;
  padding-left: 20px;
}

.popup .sub-menu ul {
  list-style: none;
  padding: 0;
}

.popup .sub-menu ul li {
  margin-bottom: 10px;
}

.popup .sub-menu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.popup .sub-menu ul li a:hover {
  color: #3498db; /* Hover effect */
}

.popup .close-btn {
  top: 10px;
  left: 10px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

.popup .contact-details p {
  margin: 5px 0;
}

.popup .social-media a {
  margin-right: 15px;
  background: #FFFFFF0F;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  transition: 0.5s;
  align-items: center;
}

.popup .social-media a:hover{
  background:#3498db;
}

.popup .social-media img {
  width: 20px;
  height: 20px;
  margin-top: 0;
  object-fit: contain;
}

.popup .main-menu li {
  margin-bottom: 20px;
}

.popup .main-menu a {
  text-decoration: none;
  color: #333;
  font-size: 22px;
}

.popup .main-menu li:hover a {
  color: #3498db; /* Hover effect */
}

/* Style for the submenu container */
.popup .sub-menu {
  margin-top: 20px;
  display: none;
  padding-left: 20px;
}

.popup .sub-menu ul {
  list-style: none;
  padding: 0;
}

.popup .sub-menu ul li {
  margin-bottom: 25px;
  transition: 0.5s;
}

.popup .sub-menu ul li a {
  font-family: Bebas Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 28px;
  color: #E7E7E7;
}

.popup .sub-menu ul li a:hover {
  color: #3498db;
}

/* Mobile responsiveness */
.popup @media (max-width: 900px) {
  .popup .popup-content {
    width: 100%;
    height: 100%;
  }

  .popup .popup {
    display: block;
    width: 100%;
    height: 100%;
  }

  .popup .humburger {
    font-size: 35px;
    position: fixed;
    top: 20px;
    right: 20px;
  }
}

.popup .humburger {
  cursor: pointer;
}

.popup .p-row1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.popup .p-row1 img {
  width: 13%;
}

.popup .p-row2 {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
  position: relative;
  height: 86vh;
  /* overflow-x: hidden; */
}

.popup .p-row2 h3 {
  font-family: Host Grotesk;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.popup .p-row2 .contact-details p {
  font-family: Host Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
}

.popup .p-row2 .contact-details a {
  position: relative;
  text-decoration: none;
  line-height: 38px;
}

.popup .p-row2 .contact-details a:hover {
  color: #088ED1;
}

.popup .p-row2 .contact-details a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #088ED1; /* Set the color of the underline */
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.popup .p-row2 .contact-details a:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}

.popup .popup-links {
  margin: 25px 0px;
}

/* Initial state for menu items */
.sub-menu ul li {
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start from below */
    animation: slideUp 0.5s forwards; /* Apply the animation */
}

.sub-menu ul li:nth-child(1) {
    animation-delay: 0.2s; /* Delay for the first item */
}

.sub-menu ul li:nth-child(2) {
    animation-delay: 0.4s; /* Delay for the second item */
}
.sub-menu ul li:nth-child(3) {
    animation-delay: 0.6s; /* Delay for the second item */
}

.sub-menu ul li:nth-child(4) {
    animation-delay: 0.6s; /* Delay for the second item */
}
/* Animation for sliding up */
@keyframes slideUp {
    to {
        opacity: 1; /* Fade in */
        transform: translateY(0); /* Move to original position */
    }
}

h3.header-follow-h {
    margin-top: 25px;
}

.popup .p-rows {
  max-width: 1450px;
  padding: 0 20px;
  margin: auto;
}

.popup .social-media {
  display: flex;
  margin-top: 20px;
}


.p-col1,.p-col2,.p-col3 {
    width: 33%;
    padding-top: 40px;
}

.p-col1,.p-col2{
  border-right:1px solid #E8E8E81A;
}

.p-col3{
  padding-left:20px;
}

.popup .p-row2:before{
  content:"";
  background:#E8E8E81A;
  height:1px;
  position:absolute;
  width: 300%;
  right:0;
  left: -100%;
  margin: auto;
}


/* become a dealer css */

 .dealer-network-section {
    padding: 60px 0;
  }

  .dealer-breadcrumb {
    display: flex;
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    align-items: baseline;
    gap: 9px;
  }

  .dealer-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .dealer-subtext {
    max-width: 700px;
    margin-bottom: 40px;
    color: #555;
  }

  .dealer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }

  .dealer-form-wrapper {
    background: #fff;
  }

  .dealer-info-card {
    padding: 30px;
    color: #fff;
    border-radius: 4px;
  }

  .dealer-badge h3 {
    margin-bottom: 5px;
    font-family: Bebas Neue;
    font-weight: 400;
    font-style: Regular;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
  }

.dealer-badge p{
  font-family: Host Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-top: 0;
}

  .dealer-badge img {
    max-width: 160px;
    margin-bottom: 0;
  }

.info-p{
  font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 20px;
line-height: 28px;
color:#111113;
}

.info-link{
  font-family: Host Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  color:#111113;
  margin-top: 0;
  padding-top: 0;

}

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

.dealer-badge {
    background: #088ED1;
    padding: 20px;
    border-radius: 4px;
}

.dealer-badge-inner {
    background: #0084C5;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
    border-radius: 4px;
    gap: 15px;
}

.dealer-contact {background: #F6F6F6;border-radius: 4px;padding: 20px;margin-top: 20px;}

.info-i:nth-of-type(1) .info-h{
  margin-top:0px
}

h3.info-h {
  font-family: Host Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  color:#868C9A;
  margin-bottom: 8px;
    margin-top: 25px;
}

h3.info-h-social {
    font-family: Host Grotesk;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 100%;
    color: #5D616A;
    margin-top: 25px;
    margin-bottom: 15px;
}

.info-i .social-icons a{
  display:flex;
  background:#088ED1;
  justify-content:center;
  align-items:center;
  padding: 10px;
  border-radius: 50%;
      width: 35px;
    height: 35px;
}

.info-i.dealer-social {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 22px;
}

.dealer-contact .social-icons a img {
    width: 22px;
    object-fit: contain;
    height: 22px;
    margin-right: 0;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
    padding: 1px;
}

.dealer-breadcrumb img{
  width: 7px;
  margin-bottom: 0;
}

.dealer-breadcrumb p{
  font-family: Host Grotesk;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color:#5D616A;
  margin-bottom: 0;
  margin-top: 0;
}

.dealer-breadcrumb p:nth-of-type(3){
  color:#088ED1;
}

.storeify-title-frm{
  font-family: Bebas Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 70px;
  leading-trim: NONE;
  line-height: 70px;
  letter-spacing: 0%;
  margin-top: 80px;
}

#storeify_content_frm_storelocator_12100{
  padding:0!important;
}

.storeify-sub-title-frm {
  font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 18px!important;
leading-trim: NONE;
line-height: 26px;
letter-spacing: 0%;
color:#5D616A;
}

.storeify-label-control{
  font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 26px;
letter-spacing: 0%;
color:#111113;
}

.storeify-body-frm input{
  border:1px solid #DDDDDD!important;
  padding:20px!important;
  padding-left: 12px;
}

.storeify-body-frm input::placeholder{
  font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 18px;
line-height: 26px;
color:#5D616A;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(2){
    width: 50%;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(3){
    width: 50%;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(6){
    width: 100%;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(16){
    width: 100%;
}
.storeify-body-frm .storeify-frm-group:nth-of-type(17){
    width: 50%;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(18){
    width: 50%;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(19){
    width: 50%;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(20){
    width: 50%;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(8){
   position:relative;
    margin-top:30px;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(8):before{
   content:"Shipping Details";
    position:relative;
    font-family: Host Grotesk;
font-weight: 600;
font-style: SemiBold;
font-size: 24px;
line-height: 26px;
color:#111113;
  bottom:15px; 
}

.storeify-body-frm .storeify-frm-group:nth-of-type(14){
   position:relative;
    margin-top:30px;
}


.storeify-body-frm .storeify-frm-group:nth-of-type(14) .storeify-label-control{
 display:none;
}


.storeify-body-frm .storeify-frm-group:nth-of-type(14):before{
   content:"Billing Details";
    position:relative;
    font-family: Host Grotesk;
font-weight: 600;
font-style: SemiBold;
font-size: 24px;
line-height: 26px;
color:#111113;
  bottom:15px; 
}

.storeify-body-frm .storeify-frm-group:nth-of-type(2){
    margin-top:20px;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(3){
    margin-top:20px;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(1):after{
   content:"Personal Details";
    position:relative;
    font-family: Host Grotesk;
font-weight: 600;
font-style: SemiBold;
font-size: 24px;
line-height: 26px;
color:#111113;
  top:25px; 
}

.storeify-body-frm .storeify-frm-group:nth-of-type(21){
    margin-top:30px;
}
.storeify-body-frm .storeify-frm-group:nth-of-type(21):before{
   content:"Tax Information";
    position:relative;
    font-family: Host Grotesk;
font-weight: 600;
font-style: SemiBold;
font-size: 24px;
line-height: 26px;
color:#111113;
  bottom:15px; 
}

.storeify-submit-frm{
    display: inline-block;
    background: #088ED1;
    color: #fff;
    padding: 15px 50px 10px 30px!important;
    border-radius: 0px 0px 20px 0px!important;
    font-weight: 400!important;
    text-decoration: none;
    font-family: Bebas Neue!important;
    font-weight: 400;
    font-size: 22px!important;
    line-height: 26px;
    position: relative;
    transition: 0.6s;
}

.storeify-submit-frm:after{
       content: "";
       position: absolute;
       top: 15px;
       right: 4px;
       background: url(/cdn/shop/files/Frame_4.png?v=1761922120) 0% 0% / 73% no-repeat;
       padding: 17px;
}

.storeify-input-file{
   margin-top:30px;
}

.storeify-input-file:before{
    content:"Submit a copy of your state resale tax certificate*";
   font-family: Host Grotesk;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  bottom:20px;
    position:relative;
}

.storeify-input-file .btn-ctf-attach{
    position:relative;
    height:162px;
}

.storeify-input-file .btn-ctf-attach:before{
    content:"";
    background:url("/cdn/shop/files/Group_118_1.png?v=1771878712");
    padding:20px;
    width:100%;
    height:100%;
    display: block;
    background-size:100% 100%;
}

.storeify-input-file:after {
    content: "Upload a picture, scan, or digital copy of your state resale permit that shows business name and tax ID #.";
 font-family: Host Grotesk;
font-weight: 400;
font-style: Italic;
font-size: 14px;
line-height: 26px;
    top: 10px;
    position: relative;
    color:#5D616A;
    
}

.dealer-form-wrapper.form-opacity{
  opacity:0;
}


.tab-content h2,h3{
    color: #111113;
    font-family: Bebas Neue;
    font-size:32px;
    margin: 0;
}
.tab-content h4,h5,h6{
    color: #111113;
    font-family: Bebas Neue;
    font-size:22px;
    margin: 0;
}
.tab-content li{
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #5D616A;
}

.tabs-content .tab-content iframe {
    width:100%;
}

.footer-links{
      position: relative;
}

.table-caption{
    color:black;
    text-align:left;
    font-size:20px;
    font-weight:500;
    margin-bottom:20px;
}

.tabs-content th{
    text-align:left;
}

caption.table-caption {
        color: #111113;
    font-family: Bebas Neue;
    font-size: 32px;
    margin: 0;

}


.featured-products-tabs .tabs{
  background:transparent;
  padding:0;
}

@media (min-width:1025px){
  /* .footer-logo{
    margin-top:-70px!important;
} */


.social-icons {
    margin: 0;
    display: flex;
    margin-right: 100px;
    gap: 8px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 47px;
}

.footer-logo {
    margin-top: 0px;
    max-width: 100px;
}

}

section.recommended-products-section {
    margin-top: 40px;
}

.facets__form .products-count-wrapper{
  opacity:0;
}

.priceContainer {
    display:flex;
    flex-direction:row-reverse;
    justify-content: flex-end;
    gap:5px;
}

.product-information__grid .product-details .compare-at-price{
    font-family: Host Grotesk;
font-weight: 400;
font-size: 24px;
line-height: 100%;
text-decoration: line-through;
color:#9D9D9D;
    opacity:1;
    
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #088ED1!important;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}
@media screen and (min-width: 600px){
.contact-details-mobile {
    display: none;
}
}
@media screen and (max-width: 600px) {

  .contact-details-mobile {
            display: flex;
        gap: 10px;
        margin-top: 40px;
        justify-content: flex-start;
}

a.my_btn.black-hov.contact-mbls {
    width: 53%;
    margin-right: 20px;
}

.faq-with-contact {
    padding: 40px 0;
}

.contact-details{
    display:none;
}

.mission-wrap .my_btn {
    display:none;
}

  .footer-col.mbl-last-col {
    width: 100%;
    padding: 0;
}

 .footer-col.mbl-last-col p{
  text-align:center;
 }
  .two-col-banner__content a.my_btn:hover:after{
           content: "";
    background: url(/cdn/shop/files/Frame_44.png?v=1766069355);
    position: absolute;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 60%;
    top: 13px;
        right: 6px;
}

.two-col-banner__content a.my_btn:after{
           content: "";
           position: absolute;
           padding: 20px;
           background-repeat: no-repeat;
           background-size: 60%;
           top: 13px;
           right: -2px;

}

.shipping-policy-content h2{
    font-size: 32px;
    line-height: 35px;
}

.shipping-policy-content p{
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 15px;

}

.shipping-policy-content{
    padding-top:40px;
}

.shipping-policy-content .container {
    max-width: 1450px;
    margin: auto;
    padding: 0 0px;
}
  .product-tabs-section .tabs-nav{
        overflow: scroll;
  }

      .product-details .compare-at-price {
        font-size: 18px!important;
    }

  .storeify-frmstorelocator .storeify-body-frm {
    margin-top: 30px!important;
    padding-right: 20px!important;
}
.dealer-network-section {
    padding: 60px 15px;
}

.dealer-info-card {
    padding: 0;
}


#storeify_content_frm_storelocator_12100 .storeify-title-frm {
    font-size: 32px !important;
    margin-top: 0px!important;
}

.storeify-frmstorelocator .storeify-body-frm input::placeholder{
    font-size:12px!important;
}

.storeify-frmstorelocator .storeify-body-frm input{
        padding:10px!important;
}

.dealer-breadcrumb p{
    font-size: 12px!important;
}

.dealer-breadcrumb img {
    width: 5px!important;
    margin-bottom: 0;
}

#storeify_content_frm_storelocator_12100 .storeify-sub-title-frm
 {
    color: #5D616A !important;
    font-size: 14px !important;
    line-height: 20px!important;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(1):after {
    content: "Personal Details";
    position: relative;
    font-family: Host Grotesk;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px!important;
    line-height: 26px;
    color: #111113;
    top: 25px;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(8):before {
    content: "Shipping Details";
    position: relative;
    font-family: Host Grotesk;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px!important;
    line-height: 26px;
    color: #111113;
    bottom: 15px;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(14):before {
    content: "Billing Details";
    position: relative;
    font-family: Host Grotesk;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px!important;
    line-height: 26px;
    color: #111113;
    bottom: 15px;
}

.storeify-body-frm .storeify-frm-group:nth-of-type(21):before {
    content: "Tax Information";
    position: relative;
    font-family: Host Grotesk;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px!important;
    line-height: 26px;
    color: #111113;
    bottom: 15px;
}

.storeify-input-file .btn-ctf-attach {
    position: relative;
    height: 92px!important;
}

.storeify-input-file .btn-ctf-attach:before {
    content: "";
    background: url(/cdn/shop/files/Group_118_1.png?v=1771878712);
    padding: 20px;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover!important;
    background-position: center!important;
}

.storeify-text-align-3 {
    text-align: right!important;
    padding-right: 20px!important;
}

.dealer-network-section .container{
    padding:0px!important;
}

.pagination button:not(.my_btn) {
    margin: 0px;
    height: 30px;
    width: 30px;
    cursor: pointer;
    border: 0;
    border-radius: 50%;
    background: transparent;
    font-family: Host Grotesk;
    font-weight: 500;
    font-size: 12px;
    color: black;
}
}


/* animation product css */


/* SECTION */
.interactive-product {
  padding: 80px 20px;
  width: 59%;
  margin: auto;
}

.interactive-product .container {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.product-center {
  text-align: center;
}

.product-center img {
  max-width: 600px;
  margin: auto;
}

/* HOTSPOTS */
.hotspot {
  position: absolute;
  width: auto;
  cursor: pointer;
}

/* DOT WRAPPER */
.hotspot .dot {
  position: relative;
  display: inline-block;
  z-index: 30;
  width: 85px;
  height: 90px;
  transition:1s;
}

/* IMAGE */
.hotspot .dot img {
  width: 85px;
  height: 90px;
  /* border-radius: 50%; */
  /* border: 3px solid #088ED1; */
  /* background: #fff; */
  display: block;
  z-index: 20;
  position: relative;
}

/* OUTER RING */


/* /* PULSE */
.hotspot .dot::before {
  content: "";
  position: absolute;
  background: url(/cdn/shop/files/Frame_427321179_1.png?v=1774624188);
  height: 100%;
  width: 100%;
  padding: 10px;
  border-radius: 0;
  background-size: 100%;
  top: -9%;
  background-repeat: no-repeat;
  left: -9%;
   transition:0.3s;
} 


.hotspot:hover .dot::before {
  content: "";
  position: absolute;
  background: url(/cdn/shop/files/Frame_2147228148_1.png?v=1774624310);
  height: 100%;
  width: 100%;
  padding: 10px;
  border-radius: 0;
  background-size: 100%;
  top: -9%;
  background-repeat: no-repeat;
  left: -9%;
} 


.hotspot-6:hover .dot::before,.hotspot-5:hover .dot::before ,.hotspot-4:hover .dot::before  {
  content: "";
  position: absolute;
  background: url(/cdn/shop/files/Frame_2147228148_1_b78dd62e-2c7d-4f15-a0c6-8ef1bbedb133.png?v=1774626432);
  height: 100%;
  width: 100%;
  padding: 10px;
  border-radius: 0;
  background-size: 100%;
  top: -9%;
  background-repeat: no-repeat;
  left: -9%;
} 

/* HOVER */
/* .hotspot:hover .dot {
  transform: scale(1.08);
}
 */
/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* CARD STYLE */
.hotspot .content {
  position: absolute;
  width: 340px;
  background: #F3F3F3;
  padding: 22px 24px;
  border-radius: 2px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 10;
  /* padding-right: 80px; */
}

/* SHOW ON HOVER */
.hotspot:hover .content {
  opacity: 1;
}

/* TITLE */
.hotspot .content h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 10px;
  text-align: left;
}

/* TEXT */
.hotspot .content p {
  font-family: "Host Grotesk", sans-serif;
  font-size: 11px;
  line-height: 13px;
  color: #6b6b6b;
  text-align: left;
}

/* CONNECTOR LINE EFFECT */
.hotspot .content::before {
  /* content: ""; */
  position: absolute;
  width: 30px;
  height: 2px;
  background: #088ED1;
  top: 22px;
}

/* LEFT SIDE CARDS */
.hotspot-1 {
  top: -6%;
  left: 4%;
}
.hotspot-1 .content {
  right: 45%;
  top: -24%;
  padding-right: 60px;
}
.hotspot-1 .content::before {
  right: -30px;
}

.hotspot-2 {
  top: 38.3%;
  left: 4%;
}
.hotspot-2 .content {
  right: 45%;
  top: -12%;
  padding-right: 60px;
}
.hotspot-2 .content::before {
  right: -30px;
}

.hotspot-3 {
  bottom: -10%;
  left: 4%;
}
.hotspot-3 .content {
  right: 45%;
  top: -24%;
  padding-right: 60px;
}
.hotspot-3 .content::before {
  right: -30px;
}

/* RIGHT SIDE CARDS */
.hotspot-4 {
  top: -6%;
  right: 4%;
}
.hotspot-4 .content {
  left: 53%;
  top: -29%;
  padding-left: 61px;
}
.hotspot-4 .content::before {
  left: -30px;
}

.hotspot-5 {
  top: 38.8%;
  right: 4.2%;
}
.hotspot-5 .content {
  left: 120%;
  top: -10%;
  left: 54%;
  top: -24%;
  padding-left: 61px;
}
.hotspot-5 .content::before {
  left: -30px;
}

.hotspot-6 {
  bottom: -10%;
  right: 4.1%;
}
.hotspot-6 .content {
  left: 120%;
  top: -10%;
  left: 54%;
  top: -3%;
  padding-left: 61px;
}
.hotspot-6 .content::before {
  left: -30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .interactive-product {
    width: 100%;
  }

  /* .hotspot .content {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    top: 10px !important;
    margin-top: 10px;
  } */

  .hotspot .content::before {
    display: none;
  }
}



.hotspot-4 .dot img {
    object-fit: contain;
    width: 70px;
    height: 80px;
    object-position: center;
    margin: auto;
}



.hotspot-3 .dot img {
    object-fit: contain;
    width: 60px;
    height: 90px;
    object-position: center;
    margin: auto;
}

.hotspot-6 .dot img {
    object-fit: contain;
    width: 90px;
    height: 90px;
    object-position: center;
    margin: auto;
}


#shopify-section-template--26026510123042__interactive_product_LzUDNw{
  background:#fdfdfd;
}

.contact-social img{
    width:20px;
}

.tab-content li::marker{
    color: #088ED1;
}

div#fitment caption{
    display:none;
}

button.mbl-vehicle-btn ,.mbl-pop-vehicle{
    display:none;
    
}

@media screen and (min-width: 1100px) and (max-width: 1200px){

.faq-contact {
    background-size: 100% 100% !important;
}

.contact-box {
    transform: translateY(48%);
}

.dealer-resource-item p {
    font-weight: 400;
    font-size: 25px;
    line-height: 29px;
    width: 60%;
}

.job-content {
    flex-wrap: nowrap;
    gap: 60px;
}


  .return-page .step-box:nth-of-type(1):after {
    content: "";
    background: url(/cdn/shop/files/Group_113_9.png?v=1764003268);
    padding: 30px;
    width: 108%;
    height: 104%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -29px;
    right: 0;
    left: -5px;
    bottom: 0;
    /* z-index: 1; */
}

.return-page .step-box:last-child:after {
    content: "";
    background: url(/cdn/shop/files/Ellipse_1719.png?v=1764003831);
    padding: 30px;
    width: 90%;
    height: 97%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: -24px;
    right: 0;
    left: -24px;
    bottom: 0;
    z-index: -1;
}

      .social-icons {
        margin-right: 29px;
    }

  .recommended-products-section .product-card {
    height: 378px;
}

  .popup .popup-content ul li a {
    font-size: 48px;
    line-height: 34px;
}

#sub-menu a {
    font-size:35px;
}

.vehicle-selector button {
  
    font-size: 16px;
  
}

.vehicle-selector button:after {
    content: "";
    background: url(/cdn/shop/files/Group_117.png?v=1762450939);
    padding: 10px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 63%;
    top: 40%;
    right: 7%;
}

/* .timeline-item {
    flex: 0 0 304px!important;
    min-width: 100px!important;
    position: relative;
    z-index: 2;
    scroll-snap-align: center;
} */

  .blog-posts-wrapper .post-title{
    height:100px;
}

.featured-title {
    font-size: 39px;
    line-height: 49px;
    margin: 0;
    margin-top: 20px;
}
  .hotspot-1{
    top: -6%;
    left: -10.6%;
}

.hotspot-2 {
    top: 38.3%;
    left: -10.09%;
}

.hotspot-3 {
    bottom: -10%;
    left: -10%;
}

.hotspot-4 {
    top: -6%;
    right: -10%;
}

.hotspot-5 {
    top: 38.8%;
    right: -10%;
}

.hotspot-6 {
    bottom: -10%;
    right: -9.9%;
}

.hotspot .content {
    position: absolute;
    width: 228px;
    padding:15px;
}

.hotspot-1 .content {
    right: 45%;
    top: -45%;
    padding-right: 58px;
}

.hotspot-2 .content {
    right: 45%;
    top: -16%;
    padding-right: 50px;
}

.hotspot-3 .content {
    right: 45%;
    top: -34%;
    padding-right: 50px;
}

.hotspot-4 .content {
    left: 50%;
    top: -41%;
    padding-left: 53px;
}

.hotspot .content h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 10px;
    text-align: left;
}

.hotspot .content p {
    font-family: "Host Grotesk", sans-serif;
    font-size: 10px;
    line-height: 12px;
    color: #6b6b6b;
    text-align: left;
}


.hotspot-5 .content {
 left: 51%;
 top: -24%;
 padding-left: 51px;
}

.hotspot-6 .content {
    left: 38%;
    top: 11%;
    padding-left: 65px!important;
}
}

#jobSearch{
  width:100%;
}
.feature-slider-preset-section{
  display:none;
}

.elite-top-image {
    padding-bottom: 20px;
    border-bottom: 1px solid #E7E7E7;
}

.elite-main-image img{
  display:none;
}

#cart-drawer-header .cart-bubble{
        height: 24px;
}

@media (max-width:600px){

  .blog-layout {
    gap: 0;
}



.elite-main-image img {
    max-width: 68%;
    height: auto;
    padding-top: 23px !important;
    margin: auto;
    display:block;
}

  .feature-slider-preset-section{
  display:block;
}


  .feature-slider-section {
    padding: 40px 0;
    background: transparent;
   padding-top: 80px;
  }

  .feature-slider-section .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .feature-slider-section .section-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-slider-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0;
  }

  .feature-slider .feature-card {
    background: #F6F6F6;
    padding: 22px 18px;
    border-radius: 0;
    min-height: 180px;
    transition: all 0.3s ease;
  }


  .feature-slider .feature-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .feature-slider .feature-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border: 2px solid #088ED1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    overflow: hidden;
  }

  .feature-slider .feature-icon img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
  }

  .feature-slider .feature-content h3 {
       font-family: Bebas Neue;
font-weight: 400;
font-size: 18px;
line-height: 100%;
    color:#161616;

  }
.interactive-product{
  display:none;
}
  .feature-slider .feature-content p {
    color: #5D616A;
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
           font-size: 11px;
        line-height: 16px;
        text-align: left;
  }

  .feature-slider .owl-dots {
    margin-top: 18px;
    text-align: center;
    margin: auto;
    right: 0;
    left: 0;
    top: 104%;
  }
 .feature-slider .owl-dots .active{
      margin-right: 6px !important;
 }
  .feature-slider .owl-dot span {
    width: 18px;
    height: 4px;
    margin: 0 4px;
    background: #444;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .feature-slider .owl-dot.active span {
    background: #2f80ff;
    width: 18px;
  }

  .feature-slider .owl-nav {
    display: none;
  }




section.feature-slider-section {
  margin-bottom: 22px;
}

.feature-slider .owl-dots .owl-dot {
    margin-right: 17px;
}

.feature-slider .owl-dots .active {
    background: #4780ff00 !important;
}
  button.mbl-vehicle-btn ,.mbl-pop-vehicle{
    display:block;
    
}

#vehicle-desktop{
 display:none;
}

button.mbl-vehicle-btn {
 font-family: Bebas Neue;
 font-weight: 400;
 font-size: 14px;
 line-height: 100%;
 letter-spacing: 0%;
 text-align: center;
 color:#FFFFFF;
 border:none;
 background:#088ED1;
 border-radius:30px;
 padding:5px 15px;
 line-height:20px;
 width: 40%;
}

.mbl-pop-vehicle {
    position: absolute;
    /* opacity: 0; */
}

.mbl-pop-vehicle{
    display:none;
}

div#vehicle-mbl {
    flex-direction: column;
    width: 100%;
    background: transparent;
}

    .mbl-pop-vehicle {
        position: absolute;
        width: 100%;
        margin: auto;
        background: white;
        left: 0;
        right: 0;
        top: 92px;
        padding: 12px;
        z-index: 9;
    }

#vehicle-mbl select{
    border: 1px solid #E2E2E2;
    width: 100%;
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color:#5D616A;
    padding: 15px;
}

#vehicle-mbl button{
  width:100%;
  font-family: Bebas Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 26px;
  letter-spacing: 0%;
  text-decoration: none;
    
} 

#vehicle-mbl .vf-search{
    background:#088ED1;
    color:white;
    padding:10px;
    border-radius:0px 0px 20px 0px;
    margin-top:15px
}

.vf-clear{
    color: black!important;
}
#vehicle-mbl .vf-search:after{
     /* background-size: 55%!important; */
     right: 28%!important;
     background: url(/cdn/shop/files/Frame_4.png?v=1761922120)!important;
     background-size: 117%!important;
     background-repeat: no-repeat!important;
     top: 26%!important;
}

#vehicle-mbl .vf-search:hover:after{
 right: 22% !important;
        background: url(/cdn/shop/files/Frame_4.png?v=1761922120) !important;
        background-size: 64% !important;
        background-repeat: no-repeat !important;
        top: 22% !important;
}

.vf-clear:after{
 background-size: 55%!important;
right: 26%!important;
}

.cart-drawer__inner .cart-discount__content .my_btn {
    font-size: 13px;
    padding: 10px 15px;
    line-height: 17px;
    max-width: 33% !important;
    width: 36% !important;
    padding-left: 3px;
}

.career-filters input, .career-filters select{
  width:100%;
  padding:15px 10px;
}
    .career-filters .career-btn {
        font-size: 12px;
        padding: 10px 18px;
        width: 100%;
    }

    .job_w{
       width:100%;
    }
    .career-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border:none;
    padding: 0;
}
}









@media screen and (min-width: 600px) and (max-width: 1024px){
  
  .feature-slider-section {
    padding: 40px 0;
    background: transparent;
    padding-top: 20px;
  }

  .feature-slider-section .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .feature-slider-section .section-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-slider-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0;
  }

  .feature-slider .feature-card {
    background: #F6F6F6;
    padding: 22px 18px;
    border-radius: 0;
    min-height: 214px;
    transition: all 0.3s ease;
  }


  .feature-slider .feature-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .feature-slider .feature-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border: 2px solid #088ED1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    overflow: hidden;
  }

  .feature-slider .feature-icon img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
  }

  .feature-slider .feature-content h3 {
       font-family: Bebas Neue;
font-weight: 400;
font-size: 18px;
line-height: 100%;
    color:#161616;

  }
.interactive-product{
  display:none;
}
  .feature-slider .feature-content p {
    color: #5D616A;
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 11px;
    line-height: 16px;
    text-align: left;
    height: 125px;
  }

  .feature-slider .owl-dots {
    margin-top: 18px;
    text-align: center;
    margin: auto;
    right: 0;
    left: 0;
    top: 104%;
  }
 .feature-slider .owl-dots .active{
      margin-right: 6px !important;
 }
  .feature-slider .owl-dot span {
    width: 18px;
    height: 4px;
    margin: 0 4px;
    background: #444;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .feature-slider .owl-dot.active span {
    background: #2f80ff;
    width: 18px;
  }

  .feature-slider .owl-nav {
    display: none;
  }




section.feature-slider-section {
  margin-bottom: 22px;
}

.feature-slider .owl-dots .owl-dot {
    margin-right: 17px;
}

.feature-slider .owl-dots .active {
    background: #4780ff00 !important;
}

.feature-slider-preset-section {
    display: block;
}

.elite-title {

    display: none;
}

.elite-main-image img {
    max-width: 60%;
    height: auto;
    margin: auto;
    margin-bottom: 60px;
    display: block;
}

}


.customer-video-reviews {
  padding: 70px 0;
  background: #F6F6F6;
  position: relative;
}

.customer-video-reviews .page-width {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.customer-video-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  gap: 20px;
  border-bottom: 1px solid #E8E8E8;
    padding-bottom: 2%;

}

.customer-video-reviews__header h2 {
  margin: 0;
 font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;
color:black;
}

.customer-video-reviews__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1496e1;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.customer-video-reviews__button:hover {
  background: #0c7fc0;
}

.customer-video-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.customer-video-reviews__item {
  display: flex;
  /* grid-template-columns: 1.2fr 0.9fr; */
  background: #fff;
  border: none;
  padding: 25px;
}
.customer-video-reviews__list {
  max-height: 1500px; /* Adjust the height to your preference */
  overflow-y: auto; /* Enable vertical scrolling */
  padding-right: 10px; /* Prevent content from touching the scrollbar */
}


.customer-video-reviews__content {
  padding: 35px;
  width:50%;
}

.customer-video-reviews__video {
    width: 50%;
}

.customer-video-reviews__quote-icon {
  font-size: 56px;
  line-height: 1;
  color: #1496e1;
  font-weight: 700;
  margin-bottom: 15px;
}

.customer-video-reviews__review {
  font-family: Host Grotesk;
font-weight: 400;
font-size: 18px;
line-height: 25px;
color:#5D616A;
  margin-bottom: 18px;
}

.customer-video-reviews__product {
  font-family: Host Grotesk;
font-weight: 400;
font-size: 20px;
line-height: 25px;
color:#000000;
  margin-bottom: 28px;
}

.customer-video-reviews__author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.customer-video-reviews__author-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.customer-video-reviews__author-info h3 {
  margin: 0 0 6px;
  font-family: Bebas Neue;
font-weight: 400;
font-size: 42px;
line-height: 100%;
color:#000000;
}

.customer-video-reviews__author-info a {
 font-family: Host Grotesk;
font-weight: 500;
font-size: 20px;
line-height: 100%;
color:#088ED1;
  text-decoration: underline;
}

.customer-video-reviews__video-thumbnail {
  position: relative;
  height: 100%;
}

.customer-video-reviews__video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.customer-video-reviews__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(20, 150, 225, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.customer-video-reviews__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(12, 127, 192, 0.95);
}

.customer-video-reviews__play-btn svg {
  margin-left: 4px;
}

.customer-video-reviews__quote-icon img{
  width:8%;
}

@media screen and (max-width: 989px) {
  .customer-video-reviews__item {
    grid-template-columns: 1fr;
  }

  .customer-video-reviews__video {
    min-height: 280px;
  }
}

@media screen and (max-width: 767px) {
  .customer-video-reviews {
    padding: 50px 0;
  }

  .customer-video-reviews__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .customer-video-reviews__header h2 {
    font-size: 26px;
  }

  .customer-video-reviews__content {
    padding: 24px;
  }

  .customer-video-reviews__video {
    min-height: 220px;
  }
}

.customer-video-reviews__video-thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: url("/cdn/shop/files/Frame_427321160.png?v=1774968514") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  display:none;
}
.customer-video-reviews {
  position: relative;
  overflow: hidden;
}

.customer-video-reviews::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px; /* adjust as needed */
  background: linear-gradient(180.16deg, rgba(255, 255, 255, 0) -1.48%, rgba(255, 255, 255, 0.65) 39.67%, #FFFFFF 99.86%);
  background-size: cover;
  z-index: 1;
  opacity: 0.9;
  display:none;
}

.customer-video-reviews .container {
    padding:0 4%;
}

p.blog-flex {
    display: flex;
    gap:20px
}

p.blog-flex img{
    width:48%;
}

.blog-body{
    font-family: Host Grotesk;
        font-weight: 400;
        font-size: 18px;
        line-height: 23px;
        color: #5D616A;
}

.blog-body a{
  text-decoration:underline;
}

.blog-body figure{
  margin:0px;
}
.blog-body iframe{
  margin-bottom:20px;
}

.blog-body img{
    width:50%;
    margin-bottom:20px;
        margin-top: 20px;
}

.blog-body li{
        margin-bottom: 20px;
        font-family: Host Grotesk;
        font-weight: 400;
        font-size: 18px;
        line-height: 23px;
        color: #5D616A;
        margin-bottom: 5px;
}

.blog-body li::marker{
    color:#088ed1;
}

.elilte-one .hotspot.hotspot-1 {
    top: -2.4%;
}

.elilte-one  .hotspot-3 {
    bottom: -4.6%;
    left: 4%;
}

.elilte-one .hotspot-4 {
    top: -1.8%;
    right: 4.3%;
}

.elilte-one .hotspot-6 {
    bottom: -4.6%;
    right: 4.3%;
}


@media (max-width:600px){

  .timeline-line{
    
    display: none!important;
  }

  .modal-r {
    width: 100%;
}
.modal-l {
    width: 100%;
}

.modal-box{
      flex-wrap: wrap;
}

      .customer-video-reviews__item {
        padding: 10px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
.customer-video-reviews__content {
  width:100%;
}

.customer-video-reviews__video {
    width: 100%;
}

 .customer-video-reviews__video-iframe iframe{
  height:300px;
 }

.customer-video-reviews__review {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.customer-video-reviews__product {
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 18px;
}

.customer-video-reviews__author-info h3 {
    margin: 0 0 6px;
    font-size: 21px;
}

.customer-video-reviews__author-info a {
    font-size: 14px;
    line-height: 100%;
}

.customer-video-reviews__author-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
}

.customer-video-reviews__header {
  
    gap: 0;
    padding-bottom: 5%;
}
}



.intake-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  display:none;
}

.intake-popup {
  position: relative;
  background: #f7f7f7;
  width: 100%;
  max-width: 760px;
  padding: 50px 45px 35px;
  border-radius: 0px;
  max-height: 95vh;
  overflow-y: auto;
}

.intake-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background:transparent;
  cursor:pointer;
  
 
}

.intake-popup-header {
  text-align: center;
  margin-bottom: 35px;
}

.intake-popup-header h2 {
  margin: 0 0 15px;
  text-transform: uppercase;
  font-family: Bebas Neue;
font-weight: 400;
font-size: 70px;
line-height: 70px;
text-align: center;
color:#111113;
}

.intake-popup-header p {
 font-family: Host Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 18px;
line-height: 26px;
text-align: center;
color:#5D616A;
}

.intake-contact-form .form-row {
  margin-bottom: 0px;
  display: flex;
  flex-direction: column!important;
}

.intake-contact-form .full-width {
  width: 100%;
  display: flex;
  flex-direction: column;
}


.intake-contact-form .form-input,
.intake-contact-form .form-select,
.intake-contact-form .form-textarea {border-radius: 0px;outline: none;border: 1px solid #DDDDDD;padding: 10px;}

.intake-contact-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.vehicle-fields-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.intake-contact-form .custom-upload-box {
  position: relative;
  border: 1px dashed #d8d8d8;
  background: #fafafa;
  padding: 35px 20px;
  text-align: center;
  overflow: hidden;
}

.custom-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-content p {
  margin: 10px 0 5px;
  font-size: 15px;
  color: #333;
}

.upload-content span {
  color: #0b8ed8;
  text-decoration: underline;
}

.upload-content small {
  color: #888;
  font-size: 12px;
}

.intake-contact-form .upload-icon {
  font-size: 28px;
  color: #0b8ed8;
}

.intake-contact-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 30px;
}

.intake-contact-form .checkbox-row input {
  margin-top: 3px;
}

.intake-contact-form .checkbox-row label {
 font-family: Host Grotesk;
font-weight: 400;
font-style: Italic;
font-size: 16px;
line-height: 26px;
color:#111113;
}

.intake-submit-btn {
  width: 100%;
border:none;
}

.success-message {
  color: green;
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.error-list {
  margin-bottom: 20px;
  color: red;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .intake-popup {
    padding: 35px 20px 25px;
  }

  .intake-popup-header h2 {
    font-size: 34px;
  }

  .vehicle-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

input#ConsentCheckbox {
    accent-color: #088ed1;
}

@media (max-width: 600px){
  .intake-popup-header p {
    font-size: 12px;
    line-height: 19px;
}

.intake-popup-header h2 {
    line-height: 34px;
}

.intake-contact-form .full-width {
    gap: 4px;
}

.form-label {
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.intake-contact-form .form-input, .intake-contact-form .form-select, .intake-contact-form .form-textarea {
    border-radius: 0px;
    outline: none;
    border: 1px solid #DDDDDD;
    padding: 7px;
    margin-bottom: 11px;
    font-size: 14px;
}

.form-row {
    display: flex;
    gap: 5px;
}

.intake-contact-form .checkbox-row label {
    font-weight: 400;
    font-style: Italic;
    font-size: 13px;
    line-height: 18px;
}


}


@media screen and (min-width: 1800px) and (max-width: 2000px){
      .hotspot-1{
    top: -6%;
    left: 10.4%;
}

.hotspot-2 {
    top: 38.7%;
    left: 10.4%;
}

.hotspot-3 {
    bottom: -10%;
    left: 10.4%;
}

.hotspot-4 {
    top: -6%;
    right: 11%;
}

.hotspot-5 {
    top: 38.4%;
    right: 10.7%;
}

.hotspot-6 {
    bottom: -10%;
    right: 10.6%;
}

.elilte-one .hotspot.hotspot-1 {
    top: -2.4%;
}

.elilte-one  .hotspot-3 {
    bottom: -4.6%;
    left: 10.3%;
}

.elilte-one .hotspot-4 {
    top: -1.8%;
    right: 10.8%;
}

.elilte-one .hotspot-6 {
    bottom: -4.6%;
    right: 10.7%;
}
}

.account-popover__panel{
      top: 15%!important;
}

.career-images {
    padding: 20px 0px;
    padding-bottom: 80px;
}

button#vf-search:disabled {
    background:#0000003d;
}

.breadcrumb img {
    width: 6px;
    display: inline;
    margin-left: 10px;
    margin-right: 5px;
}


.dealer-breadcrumb a{
    color:#5D616A;
    text-decoration:none;
}


p.info-link a{
        text-decoration:none;
        border-bottom:2px solid #088ED1;
}

@media (max-width:600px){
  .career-images {
    padding: 40px 0px;
    padding-bottom: 40px;
}

.banner-breadcrumb img {
    width: 4px;
    display: inline;
    margin-left: 10px;
    margin-right: 5px;
}

.breadcrumb img {
    width: 4px;
    display: inline;
    margin-left: 5px;
    margin-right: 5px;
}
}



@media (min-width:1100px) and (max-width:1200px){
   .products-area .product-card {
    border: 1px solid #E8E8E8;
    padding: 0;
    text-align: center;
    transition: 0.3s;
    width: 32%;
    overflow: hidden;
    height: 370px;
}

.product-card .cart {
    position: relative;
    padding-left: 25%;
}

.product-card .cart:before {
    content: "";
    background: url(/cdn/shop/files/Frame_1_2.png?v=1761921909);
    padding: 30px;
    position: absolute;
    top: 5px;
    left: 11px;
    display: block;
    background-size: 44%;
    background-repeat: no-repeat;
}

.products-area .product-card {

    height: 370px;
}

.product-card .cart {
    position: relative;
    padding-left: 25%;
}

.product-card .cart:before {
    content: "";
    background: url(/cdn/shop/files/Frame_1_2.png?v=1761921909);
    padding: 30px;
    position: absolute;
    top: 5px;
    left: 11px;
    display: block;
    background-size: 44%;
    background-repeat: no-repeat;
}
.filters label {
    font-size: 15px;
   
}
.filters .count {
    color: #5D616A;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
}
.filters input[type="checkbox"] {
    width: 16px;
    height: 16px;
    
}

.hero-slide .slide-title {
   
    width: 69%;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 75px;
    line-height: 74px;
    margin-bottom: 20px;
}

}

@media (min-width:1200px) and (max-width:1300px){

  .recommended-products-section .product-card {
    height: 394px;
}

  .hero-slide {
    height: 81vh;
    padding-top: 80px;
}

.footer-col.footer-social {
  
    flex-wrap: nowrap;
}

.social-icons {
        margin-right: 70px;
        gap: 13px;
    }

    .vehicle-selector
 {
    width: 60%;
}

.faq-contact {
    height: 716px;
    padding-bottom: 45px;
}

span.vehicle-label {
    font-size: 20px;
}


.featured-products-tabs .product-card
 {
 
    height: 393px;
}

 
.custom-404-content {
    position: relative;
    z-index: 2;
    max-width: 669px;
    color: #ffffff;
    height: 100vh;
}

.hero-slide .slide-title {
   
    width: 69%;
    font-family: Bebas Neue;
    font-weight: 400;
    font-size: 82px;
    line-height: 80px;
    margin-bottom: 20px;
}

.product-card .cart:before {
    content: "";
    background: url(/cdn/shop/files/Frame_1_2.png?v=1761921909);
    padding: 30px;
    position: absolute;
    top: 4px;
    left: 15px;
    display: block;
    background-size: 44%;
    background-repeat: no-repeat;
}
.products-area .product-card {
    height: 388px;
}

.product-card .cart {
    position: relative;
    padding-left: 24%;
}
}

@media (min-width:1100px) and (max-width:1300px){
  .products-area .products-grid {
    gap: 18px;
}
} 

@media (min-width:1100px) and (max-width:1200px){

  .home_two_col h2.title {
    font-size: 63px;
    line-height: 64px;
    width: 100%;
}

  .filters input[type="checkbox"]:checked::after
 {
    content: "";
    position: absolute;
    top: 3.5px;
    left: 3.5px;
    width: 8px;
    height: 8px;
}

    .products-area .products-grid {
        gap: 16px;
    }

    .footer-col.footer-social {
    flex-wrap: nowrap;
}

  .gr-search-slt:after {
    content: "Enter your address or ZIP code below to find the nearest dealer";
    top: -116%;
    font-size: 19px;
    line-height: 29px;
}

span.vehicle-label {
    font-size: 15px;
}
.vehicle-selector {
    width: 55%;
}

.stats-grid .stats-item:last-child h3 {
    text-align:right;
}


.stats-item p {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    text-transform: capitalize;
    color: white;
    text-align: left;
}

.stats-grid {
    padding: 0 20px;
}

  .featured-products-tabs .product-card
 {
    height: 375px;
}

.hero-slide {
    height: 81vh;
    padding-top: 100px;
}

}

.main-menu #shop{
    width: 33%;
}

.main-menu #about-us{
    width: 45%;
}

.main-menu #reviews{
    width: 45%;
}

.popup .popup-content ul .menu-item a:after{
    content: "";
    background: url(/cdn/shop/files/Vector_29.png?v=1767099309);
    position: absolute;
    height: 100%;
    width: 34%;
    background-size: 30px;
    background-repeat: no-repeat;
    right: -50%;
}

.popup .popup-content ul #about-us a:after {
    content: "";
    background: url(/cdn/shop/files/Vector_29.png?v=1767099309);
    position: absolute;
    height: 39%;
    width: 22%;
    background-size: 30px;
    background-repeat: no-repeat;
    right: -33%;
}


.main-menu{
        display: flex;
    flex-direction: column;
    gap: 35px;
}

#news{
    width: 25%;
}

#support{
     width: 45%;
}

.popup .popup-content ul #support a:after {
    content: "";
    background: url(/cdn/shop/files/Vector_29.png?v=1767099309);
    position: absolute;
    height: 45%;
    width: 27%;
    background-size: 30px;
    background-repeat: no-repeat;
    right: -37%;
}

#FooterNewsletter p.success-message {
        padding:0;
        text-align: left!important;
}

.tabs-nav .tabs-content .active:nth-of-type(2) {
    display:none;
}

@media (min-width:1200px) and (max-width:1550px){
  .gr-search-slt:after {
    content: "Enter your address or ZIP code below to find the nearest dealer";
    position: absolute;
    top: -129%;
    font-size: 22px;
    line-height: 31px;
}
}



.header-logo img {
    width:90%;
}


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


  section#contact-support {
    background:none!important;
    padding:0px!important;
}

section#contact-support .container{
    padding:0px
}

section#contact-support .breadcrumb{
    display:none;
}

.contact-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.contact-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%; /* background only on half section */
    background: url('/cdn/shop/files/Group_114_7.png?v=1776087887');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
}
.contact-mbl-head{
    order:-1;
}
.contact-right{
    order:-1;
    box-shadow: 0px 10px 44px 0px #CECECE40;

    
}
    .contact-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    overflow: hidden;
    padding-top: 50px;
}

.contact-grid::
    before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%; /* background only on half section */
    background: url('/cdn/shop/files/Group_114_7.png?v=1776087887');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
};
    
.contact-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.contact-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%; /* background only on half section */
    background: url('/cdn/shop/files/Group_114_7.png?v=1776087887');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
}


.contact-left  .contact-details {
        display: block;
    }

  .contact-mbl-head{
    display:block;
}


#contact-support .container > .contact-heading , #contact-support .container > .contact-p{
    display:none;
}

  .contact-support-section{
    padding: 30px 0%;
  }

 .contact-grid .contact-details a{
    font-size:18px;
    color:#0E0E10;
}

.contact-details p{
    margin:0;
          margin-bottom: 20px;
    color:#0E0E10;
    margin-top:5px;
}

    .contact-hours p {
        font-size: 16px;
        color: #0E0E10;
    }

.contact-hours {
    padding-top: 0;
    margin-top: 22px;
    border-top: 1px solid #FFFFFF33;
}

    .contact-heading {
        font-size: 45px;
        line-height: 40px;
        width: 100%;
        text-align: justify;
    }

p.contact-p {
    font-family: Host Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 20px;
    text-align: left;
}

    .contact-right {
        order: -1;
        box-shadow: 0px 10px 44px 0px #CECECE40;
        width: 100%;
    }

    .elite-main-image img {
        max-width: 36%;
        height: auto;
        margin: auto;
        margin-bottom: 60px;
        display: block;
        margin-top: 30px;
    }

      .timeline-text {
        font-size: 16px;
        line-height: 23px;
        margin-top: 10px;
    }

    .timeline-heading {
        font-size: 24px;
        line-height: 18px;
    }

    .timeline-year {
        margin-bottom: 10px;
        font-size: 22px;
    }

.timeline-item.top {
        margin-bottom: 0px !important;
        top: 166px !important;
    }

    .timeline-wrapper .top:before {
        content: "";
        background: url(/cdn/shop/files/Frame_427320844.png?v=1761156236);
        padding: 20px;
        width: 11%;
        height: 65%;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        top: -5%;
        left: -5%;
    }

    .timeline-wrapper .bottom {
        bottom: 107px;
        margin-top: 0 !important;
    }
    .timeline-wrapper .bottom:before {
        content: "";
        padding: 20px;
        width: 11%;
        height: 54%;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        top: 26%;
        left: -5%;
    }

  .resume_wrap {
    position: relative;
    width: 100%;
    height: 84px;
    /* border: 2px dashed #009EE3; */
    border-radius: 6px;
    overflow: hidden;
    margin-top: 5px;
}

.job-form {
    width: 100%;
    background: #F6F6F6;
    padding: 30px;
    border-radius: 6px;
}

.job-description {
    width: 100%;
}

.testing-flex {
    flex-wrap: nowrap;
}

    .feature-slider .owl-dots {
        top: 130%!important;
    }

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap:8px;
    row-gap: 40px;
    justify-content: center;
}
.stats-grid .stats-item:nth-of-type(2) {
  order: -7;
  width: 23%;
}

.stats-grid .stats-item:nth-of-type(3) {
  order: -4;
}

.stats-grid .stats-item:nth-of-type(5) {
  order: -4;
}


.stats-grid .stats-item:nth-of-type(6) {
  order: -4;
}
.stats-item:nth-of-type(1) {
            width: 22%;
            order: -2;
            margin: auto;
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0;
}
.stats-item:nth-of-type(2) {
    width: 23%;
}

.stats-item:nth-of-type(3) {
    width: 23%;
}

.stats-item:nth-of-type(4) {
    width: 29%;
    order: -1;
}

.stats-item:nth-of-type(4) img{
    margin:auto;
    max-width: 61%!important;
    margin-right: 29px;
}

.stats-item:nth-of-type(5) {
    width: 23%;
}

.stats-item:nth-of-type(6) {
    width: 23%;
}

.stats-grid .stats-item:nth-of-type(7) {
  width: 29%;
}


span.counter {
    font-size: 40px;
}
.stats-item .postfix {
    font-size: 32px;
    font-weight: 700;
}

.stats-item h2 {
    align-items: center;
    gap: 8px;
    justify-content: center;
}
span.postfix {
    font-size: 8px;
}

.stats-item p{
           font-size: 12px;
           line-height: 12px;
           color: #C7C7C7;
           text-align: center;
}


.stats-item h3{
    font-size: 26px;
}


     .hero-slide .slide-title {
        font-size: 53px;
        line-height: 65px;
    }

        .featured-products-tabs .product-card {
        width: 33%;
        height: 390px;
    }

        .btn.cart
 {
        font-size: 15px;
    }

    .product-card .cart:before {
    content: "";
    background: url(/cdn/shop/files/Frame_1_2.png?v=1761921909);
    padding: 30px;
    position: absolute;
    top: 6px;
    left: 36px;
    display: block;
    background-size: 39%;
    background-repeat: no-repeat;
}

.two-col-banner__col {
           width: 50%;
        height: 400px;
        display: flex;
        align-items: end;
        padding: 25px;
        /* justify-content: flex-end; */
}

.gallery-images
 {
    display: flex!important;
}

    .two-col-banner__content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

.two-col-banner__content h2 {
    font-size: 35px;
    color: white;
    margin-bottom: 15px;
    width: 90%;
}

    .hero-slide {
        height: 81vh;
    }

        .faq-contact {
              height: 533px;
        padding: 20px;
        justify-content: center;
    }

        .contact-box {
        transform: translateY(-3%);
    }

    

    .contact-details a {
    font-size: 13px;
    margin-top: 0px;
}

.li_wrap span {
    font-size: 18px;
}

}

@media (max-width:600px){
.testimonial-carousel .testimonial-item{
    flex-direction:column-reverse;
    padding: 2px;

}

.testimonial-carousel .testimonial-video {
    display:flex;
    flex-direction:column;
    align-items:baseline;
}


.testimonial-video-section {
    color: #fff;
    padding: 60px 0;
    position: relative;
    background-size: 100%;
    background: url(/cdn/shop/files/Group_113_14.png?v=1776080718);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.gallery-images{
      display: flex!important;
          width: 100%;
}

.tab-content li {
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #5D616A;
}

.recommended-products-section .product-grid{
            display: flex;
        gap: 0px;
        flex-wrap: nowrap;
        margin-top: 30px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
}

.recommended-products-section .product-card{
            flex-shrink: 0;
        width: auto;
        margin-right: 10px;
    width:80%!important;
    height: 313px !important;
}

.recommended-products-section .product-card .cart:before {
    content: "";
    background: url(/cdn/shop/files/Frame_1_2.png?v=1761921909);
    padding: 30px;
    position: absolute;
    top: 4px;
    left: 5px;
    display: block;
    background-size: 45%;
    background-repeat: no-repeat;
}

section.recommended-products-section
 {
    background: #F6F6F6;
    padding: 40px 0px;
}

.customer-video-reviews__list2{
  display:block!important;
}

.customer-video-reviews__list{
  display:none;
}

.customer-video-reviews__quote-icon img{
    width:30px!important;
}

.customer-video-reviews__video-thumbnail img{
    display:none!important;
}

.customer-video-reviews__quote-icon img{
    width:30px!important;
}

.customer-video-reviews__video-thumbnail img{
    display:none!important;
}

.customer-video-reviews__list2 .owl-dots {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(0%);
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
}

.customer-video-reviews__list2 .owl-dots .owl-dot {
    background: #313135!important;
    height: 6px;
    width: 11px;
    border-radius: 0px 0px 20px 0px;
    margin-right: 6px;
}

.customer-video-reviews__list2 .owl-dots .active {
    background: #4780FF !important;
    height: 6px;
    width: 21px;
    border-radius: 0px 0px 20px 0px;
    margin-right: 6px;
}

.job-description {
    width: 100%;
}
.job-form {
    width: 100%;
    padding: 20px;
    border-radius: 6px;
}

h1.job-title {
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 0px;
}

.meta-wrap {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DEDEDE;
    border-radius: 40px;
    /* width: 20%; */
    /* height: 49px; */
    padding: 9px;
    padding-left: 34px;
    position: relative;
}


    .meta-wrap:nth-of-type(1):before {
        background-size: 34%;
        left: 12px;
        top: 8px;
    }
    .meta-wrap:nth-of-type(2):before {
        background-size: 28%;
        left: 12px;
        top: 8px;
    }

    .job-description p, .job-description li {
    font-size: 16px;
    line-height: 20px;
}
.job-sub-heading {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    margin-top: 20px;
}

.job-form .form-title {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 20px;
}

.job-form .form-row .half {
    flex: unset;
    width: 49%;
}

.job-form input[type="text"], .job-form input[type="email"], .job-form input[type="file"], .job-form select {
    padding: 10px 10px;
    border: none;
    border-radius: 4px;
    background: white;
}

button.load-more-btn.my_btn {
    border: none;
}

.filtered-product-grid {
    display: flex;
    justify-content: center;
    padding: 0px 0;
}

    .customer-video-reviews__content {
        padding: 10px;
    }

    .product-tabs-section .tab-content:after{
      display:none;
    }

    .blog-body iframe{
    width:100%
}

}

@media (min-width:600px){
  .mobile-logo{
    display:none;
  }

  .two-col-banner__col--1{
    border-right:1px solid #585858;
}

.our-mission-mbl{
  display:none;
}
}

/* @media screen and (min-width: 1100px) and (max-width: 1200px){
  
  .product-center img {
    max-width: 400px;
    margin: auto;
}
} */


@media screen and (min-width: 800px) and (max-width: 1000px){
   .timeline-item {
    flex: 0 0 336px!important;
    min-width: 336px!important;
    position: relative;
    z-index: 2;
    scroll-snap-align: center;
}

}

@media (min-width:800px){

    .hero-slide {
    justify-content: flex-start!important;
    color: #fff;
    text-align: left;
    padding-top: 200px;
    padding-left:2%;
}

.hero-slide .slide-content {
    margin: 0!important;
}
}


.image-gallery-b {
    display: flex;
}


#vehicle-desktop .select2-container{
        appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 16%;
    background: transparent;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    font-family: Host Grotesk;
    font-weight: 400;
    font-size: 16px;
    padding: 6px 14px;
}

.selection{
    background:transparent;
}

.select2-container--default .select2-selection--single{
    background:transparent;
    border:none;
  
}

#select2-year-container{
     color:white; 
}

.select2-results__options li{
    color:black;;
}

.select2-selection__arrow{
    display:none;
}



#description video{
      width: 80%;
    margin-bottom: 20px;
}

@media (min-width:1200px){
  #performance img {
    width:50%
}
}


.additional-checkout-buttons.additional-checkout-buttons--vertical {
    margin-top: 15px;
}


.cart-drawer__inner #dynamic-checkout-cart {
    margin-top:15px;
}

@media (max-width:600px){
  div#ResultsList {
    padding: 20px;
}

 div#ResultsList .product-media{
      margin: 5px;
 }

#description video{
      width: 100%;
    margin-bottom: 20px;
}

}