/** Shopify CDN: Minification failed

Line 2573:62 Unexpected "{"

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

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

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

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

.underlined-link:hover {
  color: rgb(var(--color-link));
}

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

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

table:not([class]) {
  border-collapse: collapse;
  font-size: 1.4rem;
  border: 0.1rem solid rgb(var(--color-foreground), 0.2);
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.placeholder-svg {
  fill: currentColor;
}

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

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

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

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

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

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

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

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

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

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

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

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

*:focus-visible, .block-editing {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: var(--outline-focus-offset, 0.3rem);
}

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

.skip-to-content-link--all {
  margin: 1rem 0 0 1rem;
}

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

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

/*
  Focus ring - inset
*/

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

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

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

/*
  Focus ring - none
*/

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

.full-width-link {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  z-index: 2;
}

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

/* Highlight elements */

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

a.light:hover {
  opacity: 1;
}

/* disclosure  */
.disclosure-has-popup[open] > summary::before {
  position: fixed;
  inset-block: 0;
  inset-inline: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: ' ';
  background: transparent;
}

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

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

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

summary .icon-caret {
  transition: transform 500ms cubic-bezier(.03,.93,.97,1);
}
/* component-button */
/* Button - default */

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

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

.button.loading .icon, .button.loading span {
  opacity: 0;
}

.button:not(.ignore-effect):not(:disabled):before {
  content: "";
  position: absolute;
  top: 100%;
  bottom: 0;
  inset-inline: 0;
  background-color: rgb(var(--color-button-text));
  transition: top 500ms cubic-bezier(.03,.93,.97,1);
  border-radius: calc(var(--buttons-radius) - 1px);
}

.button:not(.ignore-effect):not(:disabled):hover {
  color: rgb(var(--color-button));
}

.button--secondary:not(.ignore-effect):not(:disabled):hover, .button--tertiary:not(.ignore-effect):not(:disabled):hover {
  color: rgb(var(--color-button-outline));
}

.button:not(.ignore-effect):not(:disabled):hover > * {
  z-index: 0;
}

.button:not(.ignore-effect):not(:disabled):hover:before {
  top: 0;
}

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

.button .loading-overlay__spinner svg {
  height: 100%;
  width: 100%;
}

.button.loading > .loading-overlay__spinner {
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(calc(var(--transform-direction) * 50%), -50%);
  position: absolute;
  height: 100%;
  width: min(5rem, 50%);
}

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

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

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

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

.button.loading:disabled,
.button.loading[aria-disabled='true'],
.button.loading.disabled {
  opacity: 1;
}

.shopify-challenge__button:hover {
  color: rgb(var(--color-button));
  background-color: rgb(var(--color-button-text));
}

/* Section heading */

.title__buttons {
  z-index: 1;
}

/* component-form */

.field {
  transition: box-shadow 100ms ease;
}

.field__input,
.select__select,
.customer .field input,
.customer select,
.spr-form-input {
  transition: box-shadow 100ms ease;
}

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

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

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

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

/* Field */

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

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

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

.field__list-option {
  gap: 1rem 1.5rem;
}

/* Text area */

.text-area {
  min-height: 10rem;
  resize: none;
}

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

/* component-quantity */

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

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

.quantity__button {
  transition: background-color 300ms ease;
}

.quantity__button:hover:not(:active) {
  background-color: rgb(var(--color-foreground), .1);
}

.quantity__button:active {
  background-color: rgb(var(--color-foreground), .5);
}

.quantity__button:focus-visible,
.quantity__input:focus-visible {
  z-index: 2;
}

.quantity__button:focus,
.quantity__input:focus {
  z-index: 2;
}

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

/* Search */

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

.header__search > details .modal__close-button.link {
  z-index: 1;
}

/* Header sticky */
.shopify-section-header-sticky .hide-in-sticky {
  display: none;
}

/* Main header layout */

/* section-header */

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

sticky-header {
  min-height: var(--sticky-header-height-mobile, auto);
}

sticky-header header {
  background: rgb(var(--color-background));
}

.section-header.animate header {
  transition: transform 500ms cubic-bezier(.03,.93,.97,1), top 500ms cubic-bezier(.03,.93,.97,1);
}

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

.shopify-section-header-hidden .header {
  transform: translateY(-100%);
}

.header-top {
  z-index: 5;
}

.header__toggle-nav-button {
  height: 4.4rem;
  transition: width 500ms ease, opacity 500ms ease, visibility 500ms ease, margin 500ms ease;
}

.header__toggle-nav-button .icon-close-state {
  display: none;
}

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

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

.header__menu-badge--in-drawer {
  --badge-top-position: 23px;
  inset-inline-start: 5.2rem;
}

@media(min-width: 990px) {
  sticky-header {
    min-height: var(--sticky-header-height-desktop, auto);
  }

  .shopify-section-header-sticky .header--top-left {
    top: -1.1rem;
  }

  .header--top-left .header__inline-menu {
    transition: opacity 500ms ease, visibility 500ms ease, margin-top 500ms ease;
  }

  .shopify-section-header-sticky.toggle-nav .header__toggle-nav-button {
    width: 2.4rem;
    margin-inline-end: 2.5rem;
  }

  .shopify-section-header-sticky.toggle-nav .header__toggle-nav-button:before {
    content: "";
    position: absolute;
    width: 4.4rem;
    height: 4.4rem;
    inset-inline-start: -1rem;
    top: 0;
  }

  .shopify-section-header-sticky.toggle-nav .header__inline-menu {
    margin-top: calc(var(--nav-height) * (-1));
    opacity: 0;
    visibility: hidden;
  }

  .shopify-section-header-sticky.open-nav .header__toggle-nav-button .icon-open-state {
    display: none;
  }

  .shopify-section-header-sticky.open-nav .header__toggle-nav-button .icon-close-state {
    display: block;
  }

  .shopify-section-header-sticky.open-nav .header__inline-menu {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }

  .header__menu-badge--in-standard-dropdown {
    --badge-top-position: 15px;
  }

  .header__menu-badge--in-megamenu-level2 {
    --badge-top-position: 7px;
  }

  .header__menu-badge--in-megamenu-level3 {
    --badge-top-position: 15px;
    padding: 0.1rem 0.5rem;
    inset-inline-start: auto;
    inset-inline-end: -6px;
    transform: translate(calc(var(--transform-direction) * (-100%)), -50%);
    top: 50%;
  }

  .header__menu-badge--in-megamenu-level3:after {
    inset-inline-start: -2px;
    border-width: 3px;
    transform: translateY(-50%) rotate(calc(var(--transform-direction) * 45deg));
  }
}

/* Header icons */

.header__icon::after {
  content: none;
}

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

/* Customer support region */

.header__customer-support-region__list {
  --disclosure-direction: 1rem;
  padding: 2rem;
  row-gap: 2rem;
  min-width: 100%;
}

.header__customer-support-region__name {
  font-size: 2.2rem;
}

.header__customer-support-region__hotline {
  font-size: 1.8rem;
}

.header__customer-support-region__address {
  font-size: 1.1rem;
}

.header__customer-support-region__email {
  font-size: 1.4rem;
  color: rgb(var(--color-highlight));
}

@media(max-width: 989px) {
  .header__customer-support-region__list {
    border-top: 1px solid rgb(var(--color-background));
  }
}

@media(min-width: 990px) {
  .header__customer-support-region__list--in-dropdown {
    max-height: calc(100vh - 30rem);
    overflow-y: auto;
  }
}

/* Header menu drawer */

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

.cart-drawer__details[open] summary {
  position: inherit;
}

.cart-drawer__details[open] .cart-count-bubble {
  display: none;
}

.js .mega-menu[open] > .header__submenu, .js .mega-menu.open > .header__submenu, .js .mega-menu[open] > .mega-menu__content, .js .header__submenu__last[open] .header__submenu  {
  animation: animateMenuOpen 0.3s;
  transform: translateY(0);
  z-index: 4;
}

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

/* Header menu */

.header__submenu {
  transition: opacity 300ms ease,
    transform 300ms ease;
  width: max-content;
  max-width: min(45rem, 35vw);
  background-color: rgb(var(--color-background));
  box-shadow: 0px 0px 5px 0px rgb(var(--color-foreground), 0.15);
  margin-inline-start: -0.9rem;
  min-width: 13rem;
}

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

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

.header__submenu--last-level {
  padding: 0.5rem 0;
  margin: 0.5rem 0;
}

.header__menu-item--has-last-sub {
  column-gap: 0.7rem;
}

.header__menu-item--has-last-sub > .icon-caret {
  position: static;
}

.header__submenu .header__menu-item {
  padding: 1rem 2.4rem;
}

.header__submenu .icon-caret {
  inset-inline-end: 2.4rem;
}

.header__menu-item--top-highlight {
  --color-link: var(--color-foreground);
}

@media screen and (min-width: 990px) {
  .header__submenu--has-go-to-link.list-menu, .mega-menu__content--has-go-to-link {
    padding-bottom: 0;
  }

  .header__goto-link {
    border-top: 1px solid rgb(var(--color-foreground), 0.05);
    padding: 1rem 2.4rem;
    grid-column: 1 / end;
  }

  .header__goto-link a {
    font-size: 1.3rem;
    display: inline-flex;
    column-gap: 0.5rem;
  }

  .header__submenu__last[open] > summary .icon-caret {
    transform: rotate(calc(var(--transform-direction) * 90deg));
  }

  .header__submenu.outside-viewport {
    max-height: calc(100vh - var(--top-position, 20rem) - 4rem);
    overflow-y: auto;
  }
}

@media screen and (min-width: 990px) and (hover: hover) {
  .js .header__submenu--has-go-to-link.list-menu, .js .mega-menu__content--has-go-to-link {
    padding-bottom: 2.4rem;
  }
  
  .js header-menu:not([data-ignore-hover]) .header__goto-link {
    display: none;
  }
}

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

.global-media-settings--small {
  --border-radius: 15px;
}

.global-media-settings--full-width,
.global-media-settings--full-width img {
  --border-radius: 0;
  border-radius: 0;
  border-inline-start: none;
  border-inline-end: none;
}

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

.badge--sale {
  --color-badge-foreground: var(--color-sale-badge-foreground);
  --color-badge-background: var(--color-sale-badge-background);
}

.badge--sold-out {
  --color-badge-foreground: var(--color-sold-out-badge-foreground);
  --color-badge-background: var(--color-sold-out-badge-background);
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(calc(var(--transform-direction) * 50%), -50%) rotate(calc(var(--transform-direction) * 10deg));
  word-break: normal;
}

.badge--custom-1 {
  --color-badge-foreground: var(--color-custom-badge-1-foreground);
  --color-badge-background: var(--color-custom-badge-1-background);
}

.badge--custom-2 {
  --color-badge-foreground: var(--color-custom-badge-2-foreground);
  --color-badge-background: var(--color-custom-badge-2-background);
}

.badge--custom-3 {
  --color-badge-foreground: var(--color-custom-badge-3-foreground);
  --color-badge-background: var(--color-custom-badge-3-background);
}

.badge--custom-4 {
  --color-badge-foreground: var(--color-custom-badge-4-foreground);
  --color-badge-background: var(--color-custom-badge-4-background);
}

.badge--custom-5 {
  --color-badge-foreground: var(--color-custom-badge-5-foreground);
  --color-badge-background: var(--color-custom-badge-5-background);
}

/* Component scroll over image */

.js appear-animate-list .card-wrapper--product {
  transition: border,transform 500ms ease;
}

@media(min-width: 750px) {
  use-animate img {
    transition: opacity 500ms ease 100ms, transform 1800ms cubic-bezier(.03,.93,.97,1) 500ms;
  }
  use-animate.loaded img {
    opacity: 1;
    transform: scale(1.0);
  }
}

/* Section announcement and slider component */

.slider-button {
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 1px 2px rgb(var(--color-foreground), 0.07);
  border-radius: 0.6rem;
}

.slider-button--transparent {
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.slider-button span {
  transition: transform 0.5s ease;
}

.slider-button--next:not([disabled]):hover span:first-child,
.slider-button--prev:not([disabled]):hover span:last-child {
  transform: rotate(calc(var(--transform-direction) * 60deg));
}

.slider-button--next:not([disabled]):hover span:last-child,
.slider-button--prev:not([disabled]):hover span:first-child {
  transform: rotate(calc(var(--transform-direction) * (-60deg)));
}

.slider-button--announcement-bar {
  transition: transform 500ms cubic-bezier(.19,1,.22,1);
}

.slider-button--announcement-bar:hover {
  transform: scale(1.3);
}

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

.slider-button--next .icon {
  transition: transform 100ms ease;
}

.slider-counter {
  background: rgb(var(--color-background));
  box-shadow: 0 0.1rem 0.2rem 0rem rgb(var(--color-foreground), 0.05);
}

.slider-counter__inner {
  gap: 0.8rem;
}

.slider-counter__link--dots .dot,
.slider-counter__link--numbers {
  transition: background-color 0.2s ease-in-out;
}

/* Links */

@keyframes link-hover {
  0% {
    inset-inline-start: 0;
  }
  100% {
    inset-inline-start: 100%;
  }
}

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

.underlined-link:hover:after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  width: 10%;
  border-bottom: 1px solid rgb(var(--color-background));
  animation: link-hover .3s linear forwards;
}

/* The underline only showns when hover */

.link-effect-no-underline {
  position: relative;
}

.link-effect-no-underline:before {
  content: "";
  inset-inline-start: 0;
  position: absolute;
  bottom: -0.1rem;
  border-bottom: 1px solid currentColor;
  width: 0;
  transition: width .3s ease-in-out;
}

.link-effect-no-underline:hover:before {
  width: 100%;
}
/* outline and border styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .button,
  .shopify-challenge__button,
  .customer button {
    border: transparent solid 1px;
  }
  .button:focus-visible,
  .button:focus,
  .button.focused,
  .shopify-payment-button__button--unbranded:focus-visible,
  .shopify-payment-button [role="button"]:focus-visible,
  .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button [role="button"]:focus {
    outline: solid transparent 1px;
  }
  .field__input:focus,
  .select__select:focus,
  .customer .field input:focus,
  .customer select:focus,
  .localization-form__select:focus.localization-form__select:after,
  .spr-form-input:focus {
    outline: transparent solid 1px;
  }
  .localization-form__select:focus {
    outline: transparent solid 1px;
  }
}

.open-drawer-fixed {
  overflow: hidden;
}

/* Component toast message manager */

toast-message-manager {
  position: fixed;
  inset-inline: 1.5rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 1rem;
  overflow: hidden;
  z-index: 1001;
}

@media(min-width: 750px) {
  toast-message-manager {
    inset-inline-start: 50vw;
    inset-inline-end: auto;
    transform: translateX(calc(var(--transform-direction) * 50%));
  }
}

toast-message {
  transform: translateX(calc((100% + 1rem) * var(--transform-direction)));
  transition: transform 300ms ease;
  margin: 0.5rem;
  box-shadow: 0px 0px 3px 0px rgb(var(--color-overlay), 0.5);
  border-radius: 5px;
}

toast-message.open {
  transform: translateX(0);
}

.alert {
  --color-link: var(--color-foreground);
  color: rgb(var(--color-foreground));
  background: rgb(var(--color-background-message));
  padding-block: 1.6rem;
  padding-inline-end: 5rem;;
  padding-inline-start: 3rem;
  position: relative;
  font-size: 1.6rem;
  font-weight: var(--font-body-weight-medium);
  border-radius: 5px;
}

.alert--no-button {
  padding-inline-end: 3rem;
}

.alert--small {
  padding-block: 1rem;
  padding-inline-end: 1rem;
  padding-inline-start: 1.5rem;
  font-size: 1.4rem;
}

.alert--success {
  --color-foreground: var(--color-text-message-success);
  --color-background-message: var(--color-background-message-success);
}

.alert--warning {
  --color-foreground: var(--color-text-message-warning);
  --color-background-message: var(--color-background-message-warning);
}

.alert--error {
  --color-foreground: var(--color-text-message-error);
  --color-background-message: var(--color-background-message-error);
}

.alert:before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  border-start-start-radius: 5px;
  border-end-start-radius: 5px;
  background: rgb(var(--color-foreground));
}

.toast__button {
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: 0;
  padding: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(50% - 1.5rem);
  inset-inline-end: 1.5rem;
  border-radius: 50%;
  transition: background-color 300ms ease;
  cursor: pointer;
}

.toast__button:hover {
  background-color: rgb(var(--color-foreground), .1);
}

/* Component floating bar */

.floating-element {
  z-index: 2;
  transition: bottom 300ms cubic-bezier(.03,.93,.97,1), opacity 300ms ease, visibility 300ms ease;
}

.floating-element:not(.always-visible) {
  visibility: hidden;
}

.floating-button {
  z-index: 1;
  box-shadow: 0px 0px 3px 0px rgb(var(--color-overlay), 0.1);
}

.floating-button:after {
  content: "";
  position: absolute;
  width: 4.4rem;
  height: 4.4rem;
}

back-to-top.floating-element.open, back-to-top.open ~ .compare-button-floating {
  opacity: 1;
  visibility: visible;
}

back-to-top:not(.open) button, back-to-top:not(.open) ~ .compare-button-floating button {
  pointer-events: none;
}

back-to-top .icon {
  transform: rotate(180deg);
}

@media (max-width: 749px) {
  .floating-element--back-to-top-has-compare {
    bottom: calc(var(--floating-element-position) + 5rem);
  }
}

/* Component card */

.quick-button--view {
  z-index: 2;
}

.compare-add-button {
  cursor: pointer;
}

.compare-added-check {
  top: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgb(var(--color-foreground), 0.7);
  color: rgb(var(--color-background));
  border-radius: 50%;
  z-index: 1;
}

.compare-added-check:not(.compare-added-check--left) {
  inset-inline-end: -0.5rem;
}

.compare-added-check--left {
  inset-inline-start: -0.5rem;
}

.compare-added-check .icon {
  width: 1rem;
  height: 0.8rem;
}

.compare-add-button--in-grid:before {
  inset-inline-start: -1.3rem;
  top: -1.3rem;
}

.quick-view__submit .icon-eye {
  transition: opacity 300ms ease;
}

.quick-view__submit:not(.loading):hover .icon-eye {
  opacity: 1;
}

.compare-add-button:hover {
  color: rgb(var(--color-foreground));
}

.quick-view__submit:hover {
  background: rgb(var(--color-background));
}

.quick-view__submit {
  transition: background 300ms ease;
}

@media(hover: hover) {
  .quick-button--view {
    transition: opacity 300ms ease,
      visibility 300ms ease;
    opacity: 0;
  }

  .card-wrapper:hover .quick-button--view {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.card__heading a:focus:after, .full-link:focus:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus-visible:after, .full-link:focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus:not(:focus-visible):after, .full-link:focus:not(:focus-visible):after {
  box-shadow: none;
  outline: 0;
}

.card__heading a:focus, .full-link:focus {
  box-shadow: none;
  outline: 0;
}

@media screen and (min-width: 990px) {
  .card .media.media--hover-effect > img:only-child,
  .card-wrapper .media.media--hover-effect > img:only-child {
    transition: transform 500ms ease;
  }

  .card:hover .media.media--hover-effect > img:first-child:only-child,
  .card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
    transform: scale(1.03);
  }

  .card-wrapper:hover .card:not(.ignore-second-image)
    .media.media--hover-effect
    > img:first-child:not(:only-child) {
    opacity: 0;
  }

  .card-wrapper:hover .card:not(.ignore-second-image) .media.media--hover-effect > img + img {
    opacity: 1;
    transition: transform 500ms ease;
    transform: scale(1.03);
  }
}

@media(hover: hover) and (min-width: 990px) {
  .card-wrapper--product {
    transition: transform 500ms ease;
  }

  .card-wrapper--product:hover {
    --product-card-border-opacity: 0;
    z-index: 3;
    transform: translateY(-1.3rem);
  }

  .card-wrapper--product:after {
    content: "";
    position: absolute;
    top: var(--product-card-shadow-position);
    inset-inline: var(--product-card-shadow-position);
    bottom: var(--product-card-shadow-position);
    border-radius: 1.2rem;
    background: rgb(var(--color-background));
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease, box-shadow 500ms ease, top 500ms ease, height 500ms ease;
  }

  .card-wrapper--product:hover:after {
    top: -1.5rem;
    opacity: 1;
    visibility: visible;
    height: calc(100% + var(--product-card-shadow-distance) - var(--product-card-shadow-position));
    box-shadow: 0 7px 25px 3px rgb(0, 0, 0, var(--product-card-shadow-opacity));
  }

  .grid.contains-card--product.slider--desktop {
    padding-top: 5rem;
    padding-bottom: calc(9rem - var(--product-card-shadow-position));
    margin-top: -5rem;
    margin-bottom: calc(-9rem + var(--product-card-shadow-position));
  }

  .slider-component-desktop:not(.slider-component-full-width) .grid.contains-card--product.slider--desktop {
    --padding: -5rem;
    margin-inline-start: var(--padding);
    padding-inline-start: calc((-1) * var(--padding));
    scroll-padding-inline-start: calc((-1) * var(--padding));
    margin-inline-end: var(--padding);
    padding-inline-end: calc((-1) * var(--padding));
  }

  .section__box .slider-component-desktop:not(.slider-component-full-width) .grid.contains-card--product.slider--desktop {
    --padding: -3.8rem;
  }
}

.contains-card--collection {
  --outline-focus-offset: 0.3rem;
}

/* Component modal */

.modal__close-button.link {
  padding: 0rem;
  height: 4rem;
  width: 4rem;
  background-color: rgb(var(--color-background));
  border-radius: 50%;
  box-shadow: 0.1rem 0.1rem 0.6rem 0 rgb(var(--color-overlay), 0.2);
}

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

.modal__content {
  position: absolute;
  top: 0;
  inset-inline: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 4;
}

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

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

/* Quick view and quick add button */

.card__quick-buttons {
  z-index: 2;
}

/* Component skeleton box */

@keyframes shimmer {
  100% {
    transform: translateX(calc(var(--transform-direction) * (-100%)));
  }
}

.skeleton-box {
  overflow: hidden;
  position: relative;
  background-color: rgba(var(--color-foreground), 0.05);
}

.skeleton-box:after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  transform: translateX(calc(var(--transform-direction) * 100%));
  background-image: linear-gradient(
    90deg,
    rgb(var(--color-background), 0) 0,
    rgb(var(--color-background), 0.2) 20%,
    rgb(var(--color-background), 0.5) 60%,
    rgb(var(--color-background), 0)
  );
  animation: shimmer 1s infinite;
  content: '';
  z-index: 0;
}

/* Accordion icons */

.summary-accordion__icon-line {
  background: rgb(var(--color-foreground));
  transition: transform 500ms ease, background 500ms ease;
}

.summary-accordion__icon-line:first-child {
  transform-origin: center center;
}

.summary-accordion__plus-minus-wrapper {
  transition: background 500ms ease;
  background-color: rgb(var(--color-background));
  box-shadow: 0rem 0.1rem 0.2rem rgba(var(--color-foreground), 0.05);
}

.summary-accordion--has-hover:hover .summary-accordion__plus-minus-wrapper {
  background: rgb(var(--color-foreground));
}

.summary-accordion--has-hover:hover .summary-accordion__icon-line {
  background: rgb(var(--color-background));
}

/* Background overlay */

.background-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(var(--color-overlay), var(--overlay-opacity, 0.5)) 0%, rgb(var(--color-overlay), var(--overlay-opacity, 0.5)) 100%);
}

/* Tap area */

.tap-area-icon:before {
  content: "";
	position: absolute;
	width: 44px;
	height: 44px;
}

.tap-area-icon:focus-visible {
  outline: none;
}

.tap-area-icon:focus-visible:before {
  outline: 0.2rem solid rgba(var(--color-foreground),.5);
}

/* Shipping calculator */

.shipping-calculator__date {
  margin-inline-start: 0.5rem;
}


/* Mobile Header Changes */
@media screen and (max-width: 862px) {
.smalllogos{display:none !important;
}}
/* Mobile prefooter image */
@media screen and (max-width: 749px) {
    .banner--medium-mobile.banner--mobile-bottom:not(.banner--adapt-mobile) .banner__media {
        height: 30rem !important;
    }
        .banner--mobile-bottom .banner__box {
padding: 0rem 1rem;
}
}

/* Homepage Product Categories Section */
@media screen and (min-width: 1101px) and (max-width: 1360px) {
    .grid {
--grid-horizontal-spacing: 20px !important;
    }
}

@media screen and (min-width: 767px) and (max-width: 1100px) {
    .grid {
--grid-horizontal-spacing: 60px !important;
}
.text-icons__card__icon-wrapper--template--19902610342107__text_icons_WkqCtM {
width: 40px !important;
}}

@media screen and (max-width: 766px) {
#shopify-section-template--19902610342107__text_icons_WkqCtM .grid--7-col-desktop .grid__item {
width: 14% !important;
 }}


/* Mobile Footer Changes */
.link-effect-no-underline:before {
border-bottom: 1px solid #c33732 !important;
}

@media screen and (max-width: 766px) {#shopify-section-sections--19902610768091__footer .grid--4-col-desktop .grid__item {
width: 80% !important;
}
.footer-block__newsletter-field-wrapper.newsletter__form-field-wrapper.flex.justify-space-between {
width: 75% important;
}
}

@media screen and (min-width: 767px) and (max-width: 1100px) {
  #shopify-section-sections--19902610768091__footer .grid--4-col-desktop .grid__item {
width: 25% !important;
 }}

 @media screen and (max-width: 749px) {
    .banner--medium-mobile.banner--mobile-bottom:not(.banner--adapt-mobile) .banner__media {
        height: 12rem !important;
    }
}

main#MainContent {
border-bottom: }




@media screen and (max-width: 766px) {
#shopify-section-template--19902610342107__text_icons_WkqCtM .grid--7-col-desktop .grid__item {
width: 14% !important;
 }
.text-icons__card__icon-wrapper--template--19902610342107__text_icons_zMnMrb {
    width: 10% !important;
    height: fit-content !important;
    margin: auto !important;
}

}


ul#HeaderMenu-MenuList-1, ul#HeaderMenu-MenuList-2, ul#HeaderMenu-MenuList-4{
background-color: #5b6670 !important;
}
#MegaMenu-Content-1{
background-color: #5b6670 !important;
}


/* Sidebar Changes */
#shopify-section-cart-drawer .drawer__inner.drawer__inner--small.drawer__inner--cart p {
color: black !important;
}
#shopify-section-cart-drawer .cart-drawer__empty-content h2 {
color: black !important;
}
#shopify-section-cart-drawer free-shipping-bar.free-shipping-bar.db.background-input.no-js-hidden.cart-drawer__free-shipping-bar {
color: black !important;}

#shopify-section-cart-drawer .button {
background-color:;
border: var(--buttons-border-width) solid #c33732 !important;
}

#shopify-section-cart-drawer .button:hover {
color:#c33732 !important;
}


/* Removes underline temporarily in header */
.underlined-link:before {
    border-bottom: none;
}


.search__input {
  background: #373d3f;
}

@media screen and (min-width: 767px) {
.text-icons.color-inverse.isolate.gradient {
margin-right: 50px;
margin-left: 50px;
top:-40px;
 }}

ol.breadcrumb__list.list-unstyled.flex.align-center.justify-left{
  color:#323e48 !important;
}

.footer__column.footer__copyright.caption.w100 {
font-size: 16px;
}
.footer__column.footer__copyright.caption.w100 {
text-align: left;
}
.footer__column.w100.flex.align-center.justify-center.footer__payment.w100 {
display: none;
}

h1 {
  color: #323e48 !important;
}






/* Homepage Image Mobile */
@media screen and (max-width: 749px) {
#shopify-section-template--19902610342107__image_banner_DYtwTn div#Banner-template--19902610342107__image_banner_DYtwTn {
width: 80%;}
}

@media screen and (max-width: 749px) {
#shopify-section-template--19902610342107__image_banner_cUKdEd div#Banner-template--19902610342107__image_banner_cUKdEd {
width: 80%;}
}







/* Homepage First Video and Image */

section#shopify-section-template--19902610342107__custom_liquid_pELLYq {
height: 450px !important;
}


@media screen and (min-width: 750px) and (max-width: 1100px) {

#shopify-section-template--19902610342107__custom_liquid_pELLYq .video-wrapper {
padding: 5% 15% !important;
}

#shopify-section-template--19902610342107__custom_liquid_pELLYq .video-container{
height: 250px !important;
width: 450px !important;
padding-top: 20%;
}

#shopify-section-template--19902610342107__custom_liquid_pELLYq .video-container iframe {
position: absolute !important;
top: -40px !important;
left: 0 !important;
width: 140% !important;
height: 140% !important;
}
}



@media screen and (max-width: 749px) {
#shopify-section-template--19902610342107__custom_liquid_pELLYq .overlay-image {
position: relative;
top: -250px !important;
left: 220px !important;
width: 200px !important;
z-index: 2 !important;
}

#shopify-section-template--19902610342107__custom_liquid_pELLYq .video-wrapper {
padding: 0px 15% !important;
}

#shopify-section-template--19902610342107__custom_liquid_pELLYq .video-container {
width: 350px !important;
padding-top: 10% !important;
height: 250px;
padding-bottom: 20%;
}
#shopify-section-template--19902610342107__custom_liquid_pELLYq .overlay-image {
top: -210px !important;
}
section#shopify-section-template--19902610342107__custom_liquid_pELLYq {
height: 320px !important;
}
}



/* Homepage Slideshow */
slideshow-component.slideshow-component-template--19902610342107__slideshow_FbWxBM.por.flex.flex-column.slider-mobile-gutter.page-width.slider-component-full-width {
    padding: 0px 250px !important;
}
@media screen and (min-width: 750px) and (max-width: 1100px) {
slideshow-component.slideshow-component-template--19902610342107__slideshow_FbWxBM.por.flex.flex-column.slider-mobile-gutter.page-width.slider-component-full-width {
    padding: 0px 100px !important;
}
}

@media screen and (max-width: 749px) {
slideshow-component.slideshow-component-template--19902610342107__slideshow_FbWxBM.por.flex.flex-column.slider-mobile-gutter.page-width.slider-component-full-width {
    padding: 0px 50px !important;
}
}


/* Homepage Second Video and Image */

section#shopify-section-template--19902610342107__custom_liquid_UpEWrL {
height: 450px !important;
}
#shopify-section-template--19902610342107__custom_liquid_UpEWrL .video-wrapper2 {
padding: 5% 25%;
}
#shopify-section-template--19902610342107__custom_liquid_UpEWrL .video-container2 {
width: 650px;
}

@media screen and (min-width: 750px) and (max-width: 1100px) {

#shopify-section-template--19902610342107__custom_liquid_UpEWrL .video-wrapper2 {
padding: 10% 15% !important;
}

#shopify-section-template--19902610342107__custom_liquid_UpEWrL .video-container2 {
height: 250px !important;
width: 650px !important;
padding-top: 20%;
}

#shopify-section-template--19902610342107__custom_liquid_UpEWrL .video-container2 iframe {
position: absolute !important;
top: -40px !important;
left: 0 !important;
width: 140% !important;
height: 140% !important;
}
}



@media screen and (max-width: 749px) {
#shopify-section-template--19902610342107__custom_liquid_UpEWrL .overlay-image2 {
position: relative;
top: -250px !important;
left: -60px !important;
width: 200px !important;
z-index: 2 !important;
}

#shopify-section-template--19902610342107__custom_liquid_UpEWrL .video-wrapper2 {
padding: 0px 15% !important;
}

#shopify-section-template--19902610342107__custom_liquid_UpEWrL .video-container2 {
width: 430px !important;
padding-top: 10% !important;
height: 250px !important;
padding-bottom: 20% !important;
}
#shopify-section-template--19902610342107__custom_liquid_UpEWrL .overlay-image2 {
top: -260px !important;
}
section#shopify-section-template--19902610342107__custom_liquid_UpEWrL {
height: 320px !important;
}
}


/* Ambassadors Youtube video layout on mobile */
@media screen and (max-width: 749px) {
.vid1 {
  width:90% !important;
  display:block !important;
}}


/* Sidebar CSS */
.page-layout {
  display: flex;
  gap: 30px;
}

.sidebar-menu {
  width: 220px;
  padding: 20px;
  background: #f9f9f9;
  border-right: 1px solid #ddd;
}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 10px;
}

.sidebar-menu a {
  text-decoration: none;
  color: #333;
}

.main-content {
  flex: 1;
}


.background-input {
  background-color: #f7f7f7;
}

.footer__content-bottom.background-input {
    background-color: #030303;
}

aside.ai-sidebar-menu-az1irzva3eeg1wu1qzaigenblock26a43c8pr67t6 {
    line-height: 10px !important;
}









/* Policy Template Updates */
.section-template--20194897428699__main-padding.page-width {
display: none;
}

.ai-image-banner-an0fkykqvr2twtjlbtaigenblock26a43c8pr67t6 {
display: none;
}

.ai-video-content-an0fkykqvr2twtjlbtaigenblock26a43c8pr67t6 {
display: none;
}


/* Force Air kerosene */
iframe.ai-video-iframe-ac3r1rfg1k0xmykjxoaigenblock26a43c8pr67t6 {
    width: 70% !important;
    height: !important;
    padding-left: 35px;
}
.ai-video-content-ac3r1rfg1k0xmykjxoaigenblock26a43c8pr67t6 {
    margin-left: 40px !important;
}



/* Accordian Bold */
h2.h6.accordion__title.font-heading-bold.margin0 {
    font-weight: bold;
}



/* University Mobile */
@media screen and (max-width: 749px) {
.collapsible-content, h2, #shopify-section-template--20192826327259__1755555281400f4a80 .ai-pdf-downloads-aawzevxnptvd2bxirmaigenblock27127dacqeehj {
    padding-left: 0px !important;
}
.ai-pdf-downloads-grid-as0tnddvxk2rvmutsaaigenblock27127dacqeehj {
    padding-left: 0px !important;
}
aside{
  display:none;
}
}


/* University Mobile */
@media screen and (max-width: 749px) {
  .collapsible-content {
    top: 0px !important;
}}

/* Sidebar z index */
.ai-sidebar-menu-anu50ble5yjniswhobaigenblock26a43c8pr67t6 {
    z-index: 1;
}
    /* Example CSS for a sticky header */
    .sticky-header {
        z-index:; /* Adjust this value as needed */
    }

    /* If your header has a specific ID */
    #shopify-section-header {
        z-index: ; /* Adjust this value as needed */
    }


    div#shopify-section-template--20187099037915__1755555916d3fba309, div#shopify-section-template--20187099037915__blocks_tR9NpR, div#shopify-section-template--20187099037915__blocks_pWWHbB, div#shopify-section-template--20187099037915__blocks_rMYH6b{
      padding-left:300px;
    }
    /* University Mobile */
@media screen and (max-width: 749px) {
  .rich-text, div#shopify-section-template--20187099037915__1755555916d3fba309, div#shopify-section-template--20187099037915__blocks_tR9NpR, div#shopify-section-template--20187099037915__blocks_pWWHbB, div#shopify-section-template--20187099037915__blocks_rMYH6b{
      padding-left:0px !important;
    }}

    

/* Recall Page */
.item-icon, .item-link {
  display: inline-block !important;
}
.item-icon {
  padding-right: 10px !important;
}

/* Catalog Page */
.catalogimage{display:inline-block !important;}
.cmrd3f1.mgz-element.mgz-element-column.mgz-col-md-15, .a91c96i.mgz-element.mgz-element-column.mgz-col-md-15 {
    width: ;
    padding-right: 20px !IMPORTANT;
    display: inline-block;
}
.kxr74h0.mgz-element.mgz-element-column.mgz-col-md-6, .aa99rbf.mgz-element.mgz-element-column.mgz-col-md-6 {
    display: inline-block;
    width: 50%;
}

/* Corporate Template */
.section-template--20203962466523__main-padding.page-width, .ai-video-content-ay0mzzug4su10vlu0caigenblock26a43c8pr67t6, .ai-image-banner-ay0mzzug4su10vlu0caigenblock26a43c8pr67t6 {
  display:none !important;
}

    .mgz-col-md-4 {
        width: 33.33333333%;
    }

    .button--medium {
background-color: #d32428 !important;
}

.i5mix1g.mgz-element.mgz-element-column.mgz-col-md-4, .bteonch.mgz-element.mgz-element-column.mgz-col-md-4, .vg4sy49.mgz-element.mgz-element-column.mgz-col-md-4 {
display: inline-block;
width: 30%;
}

.mgz-element {
    position: relative;
    text-align: left;
}

.mgz-element-inner.on08oca-s {
    position: relative;
    text-align: center;
}


/* Ambassadors Page */
.section-template--20210890571995__main-padding.page-width {
    display: none;
}

.ambassadorheader img {
  width: 90%;
  height: auto;
}


div#GJ7upUfT2LdcC6JHP_sqAw {
    width: 100%;
}


@media screen and (max-width: 1100px) {
   .ai-sidebar-layout-av3gzu3phsmrjzepwsaigenblock26a43c8pr67t6 {
    padding: 20px !important;
    width: 90% !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
}

.vid1 {
    width: 90% !important;
    height: auto;
}

aside.ai-sidebar-menu-av3gzu3phsmrjzepwsaigenblock26a43c8pr67t6{
  display:none;}

.ambassadorheader img {width:90%}

}

@media screen and (max-width: 767px) {
   .ai-sidebar-layout-av3gzu3phsmrjzepwsaigenblock26a43c8pr67t6, .ai-text-body-av3gzu3phsmrjzepwsaigenblock26a43c8pr67t6 {
    width: 90% !important;
}

aside.ai-sidebar-menu-av3gzu3phsmrjzepwsaigenblock26a43c8pr67t6{
  display:none;
}
}

/* Support Page */
.section-template--20216494653659__main-padding.page-width {
    display: none !important;
}

.supportheader img {
  width: 90%;
  height: auto;
}



/* Careers Page */
.gpgsn4q.mgz-element.mgz-element-column.mgz-col-md-4 {display:inline-block !important}

h4.mgz-panel-heading-title a {
    color: #d32428;
    font-size: 18px;
}


 table {
      width: 100%;
      border-collapse: collapse; /* Collapses borders into a single line */
      margin: 20px 0;
    }

    th, td {
      border: 1px solid white !important;
      padding: 8px;
      text-align: left;
    }

    th {
      background-color: white;
      font-weight: bold;
    }

    tr:nth-child(even) {
      background-color: white; /* Zebra striping */
    }

    caption {
      caption-side: top; /* or bottom */
      font-weight: bold;
      margin-bottom: 10px;
    }
     .divTable {
      display: table;
      width: 100%;
      border: 1px solid #666;
    }

    .divRow {
      display: table-row;
    }

    .divCell {
      display: table-cell;
      padding: 8px;
      border: 1px solid #ccc;
    }

    .header .divCell {
      background-color: #f2f2f2;
      font-weight: bold;
    }

    table a{
      color: #d32428 !important;
    }
    

    /* Industries Page */

  .columns-industry {
max-width: 30% !important;
display: inline-block;
margin:40px;
}

.img-industry {
width: 250px;
padding: 20px;
}

.item-link a {
    color: #d32428 !important;
}


  /* Contact Page */
#form-selector,
h5,
h2,
h3 {
  
}
#form-selector {
  padding: 7px;
}
.form_generater_form_div {
  padding-left: 0px !important;
}
.section-template--17413212143693__custom_liquid_weKX7n-padding {
  margin: 0 auto !important;
}
@media screen and (min-width: 1525px) {
  #form-selector,
  h5,
  h2,
  h3 {
    margin-left: !important;
  }
}
@media screen and (max-width: 650px) {
  #form-selector,
  h5,
  h2,
  h3 {
    margin-left: !important;
  }
}
h5 {
  color: !important;
}
h3 {
  color:!important;
}

.section-template--20232812953819__main-padding.page-width {
    display: none;
}



  /* University General Knowledge Page */
.ai-video-placeholder-amupttjjxwgrowm0zmaigenblock26a43c8pr67t6 {
    display: none;
}

.collapsible-content.collapsible-row-layout.section-template--20190175232219__collapsible_content_QrH7RM-padding {
  padding-left: 300px;
}
@media screen and (max-width: 767px) {
  .collapsible-content.collapsible-row-layout.section-template--20190175232219__collapsible_content_QrH7RM-padding {
  padding-left: 20px;
  }}

 #shopify-section-template--20190175232219__collapsible_content_QrH7RM {
margin-top: -800px;
 }
@media screen and (max-width: 767px) {
 #shopify-section-template--20190175232219__collapsible_content_QrH7RM {
margin-top: -200px;
 }
}



  
  .ai-sidebar-menu-amupttjjxwgrowm0zmaigenblock26a43c8pr67t6 {
    z-index: 1;
}


  /* University Glossary Page */
.section-template--20233210921179__main-padding.page-width, .ai-video-placeholder-ak290tkdduzbwykdvyaigenblock26a43c8pr67t6 {
    display: none;
}

 /* University Video Page */

 .ai-video-content-aqs9ozhjmbwlzk3jjraigenblock26a43c8pr67t6 {
    display: none;
}

  @media screen and (min-width: 767px) {


  .ai-video-grid-aqkewcfvnyvzucwjoqaigenblock5945b55c9ekhe, .ai-video-grid-azfprrg1ibyt1qvrnmaigenblock5945b55nuitxf, .ai-video-grid-amu5xtg5cs1h5ddlpzaigenblock5945b55a9gkby, .ai-video-grid-awgjkrlj0mje1mctgmaigenblock5945b55iywddh, ai-video-grid-awgjkrlj0mje1mctgmaigenblock5945b55iywddh, .ai-video-grid-aeetxemzhq0rlm0fhraigenblock5945b55jknvk6, .ai-video-grid-ac25iowi0cxjovdrltaigenblock5945b55wucqhe, .ai-video-grid-ac0dyzmfrotjpvuo0uaigenblock5945b55ntjax9, .ai-video-grid-actr3ru9dsxngcyt3vaigenblock5945b55ed3kke, .ai-video-grid-at2h6bflpbkwxs2hfvaigenblock5945b55eudmx4, .ai-video-grid-aymxpbwdjmvgrz0i2waigenblock5945b55qwcmfw, .ai-video-grid-azw4yr2lzce5ywvnxlaigenblock5945b558tumdl, .ai-video-grid-azw1ycfrvcwfjzllzraigenblock5945b55lmfjjg, .ai-video-grid-aczhnrvdxdxewz0s4yaigenblock5945b55qmcvxi{
          position: relative !important;
        top: -100px !important;
        background-color: transparent;
        padding-left: 350px ! IMPORTANT;
  }

.rich-text.color-background-1.gradient.rich-text--full-width.section-template--20233359392987__rich_text_jf9YKn-padding, .rich-text.color-background-1.gradient.rich-text--full-width.section-template--20233359392987__rich_text_p4KHwm-padding{
          position: relative !important;
        top: -100px !important;
        background-color: transparent;
  }
}

  .ai-sidebar-menu-aqs9ozhjmbwlzk3jjraigenblock26a43c8pr67t6{
      z-index: 1;}



      #Banner-template--19902610342107__banner_grid_KUGQVM-promotion_banner_QLeHRD , #Banner-template--19902610342107__banner_grid_KUGQVM-promotion_banner_d4YWPa, #Banner-template--19902610342107__banner_grid_KUGQVM-promotion_banner_HzYLxw{
border: 0px;
}
.rich-text__blocks.center.rich-text__blocks--full.w100.color-scheme-a030cf07-0cdf-4dd6-9746-be8e99a8ddf4.gradient.section__box {
    border-radius: 0px;
}



/* Contact Page Forms */
iframe {
    border: none;
}

/* CCPA Page */

.section-template--20250047480027__main-padding.page-width {
    display: none;
    }


   template-search__search .search__input {
background: ;
 }

 input#Search-In-Template {
    background: #f1f1f1;
}

#shopify-section-template--19902610112731__cart .button {
    background-color: #c33732 !important;
    border: var(--buttons-border-width) solid #c33732 !important;
    color: white !important;
}
#shopify-section-template--19902610112731__cart .button:hover {
    color: #c33732 !important;
}
#shopify-section-template--19902610112731__cart .button:hover {
    color: white !important;
}

#shopify-section-cart-drawer .button:hover {
    color: white ! IMPORTANT;
}
#CartDrawer-Checkout .button:hover, #shopify-section-cart-drawer .button:hover {
    color: #c33732 !important;
}

button.shopify-payment-button__button--unbranded{
  color:#c33732 !important;
  border-color:#c33732 !important;
}


/* University - Video - Move up */
@media screen and (min-width: 767px) {
.ai-video-grid__header-aqkewcfvnyvzucwjoqaigenblock5945b55c9ekhe {
    top: -70px !important;
    position: absolute;
}
}

/* University - Video - Move up */
@media screen and (min-width: 767px) {

#shopify-section-template--20192808206555__collapsible_content_QrH7RM .collapsible-content {
    padding-left: 300px !important;
}
}

/* University - ForcedAirPropane - Move up */


@media screen and (min-width: 767px) {
#shopify-section-template--20192808206555__1755555281400f4a80 .ai-pdf-downloads-grid-ay3pyc3npwfo0bfd6caigenblock27127dacqeehj{
  padding-left:;
}
.ai-pdf-downloads-grid-ay3pyc3npwfo0bfd6caigenblock27127dacqeehj {
    grid-template-columns: repeat(1, 1fr);
}
.ai-pdf-downloads-container-ay3pyc3npwfo0bfd6caigenblock27127dacqeehj {
    margin: 0 50px;
}
}

@media screen and (min-width: 767px) and (max-width: 1299px) {
.collapsible-content.collapsible-row-layout.section-template--20192808206555__collapsible_content_QrH7RM-padding {
    top: ;
}
#shopify-section-template--20192808206555__rich_text_p4KHwm .rich-text__wrapper.rich-text__wrapper--center.page-width{
top: ;
position: ;
}
}

@media screen and (min-width: 1300px) {
.collapsible-content.collapsible-row-layout.section-template--20192808206555__collapsible_content_QrH7RM-padding {
    top: ;  
}
#shopify-section-template--20192808206555__rich_text_p4KHwm .rich-text__wrapper.rich-text__wrapper--center.page-width{
top: ;
position: ;
}

}



/* University - ForcedAirElectric - Move up */
@media screen and (min-width: 767px) {
  .ai-pdf-downloads-container-au3hxymfua2u2tvpidaigenblock27127dacqeehj {
max-width: 1200px;
margin: 0 50px;
padding: 0 20px;
 }

}




/* University - Convection - Move up */
@media screen and (min-width: 767px) {
.ai-pdf-downloads-avknowdixyldoowmrsaigenblock27127dabqudt9 {
margin: 0 50px;
padding: 40px 20px;
max-width: 1200px;
}

}


/* University - Handheld Torch - Move up */
@media screen and (min-width: 767px) {
  .ai-pdf-downloads-astvwrtfjrnjrsvl1baigenblock27127dacqeehj {
margin: 0 50px;
padding: 40px 20px;
max-width: 1200px;
}

.ai-pdf-downloads-container-astvwrtfjrnjrsvl1baigenblock27127dacqeehj {
padding-left: 280px;
}
}





/* University - Handheld Torch - Move up */
@media screen and (min-width: 767px) {
.ai-pdf-downloads-adud2zmxhqu9hwfzzaaigenblock27127dacqeehj {
margin: 0 50px;
padding: 40px 20px;
max-width: 1200px;
}

.ai-pdf-downloads-container-adud2zmxhqu9hwfzzaaigenblock27127dacqeehj {
padding-left: 230px;
}
.ai-pdf-downloads-grid-adud2zmxhqu9hwfzzaaigenblock27127dacqeehj {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 24px;
}
}

#CartDrawer-Checkout .button:hover, #shopify-section-cart-drawer .button:hover{
  color:white !important;
}

#shopify-section-template--19902610112731__cart .button:not(.ignore-effect):not(:disabled):before {
    z-index: -100;
}

#shopify-section-template--19902610112731__cart .button:hover {
      color: !important;
}


/* Returns Page */
@media screen and (min-width: 1000px) {
section#shopify-section-template--20165646352603__17533016535126a6c6 {
width: 45%;
display: inline-block;
}
  section#shopify-section-template--20165646352603__rich_text_Byp6bK {
width: 45%;
display: inline-block;
position: absolute;
 }
}

/* Product Page- Buddy Flex */
.tabs__tab-content__specification-item-heading-template--20287171264731__52bf00c5-c1a5-4bcd-9b87-204e690ab1d5 {
width: 25rem;
 }

/* HFA Link Color */
 .mgz-active a {
   color: #c33732 !important;
}

/* Website FAQ Link Color */
.ai-text-body-aqxk3rhfsb2jrbkjtyaigenblock26a43c8pr67t6 a {
   color: #c33732 !important;
}

/* Website FAQ Page */

@media screen and (min-width: 767px) {
#shopify-section-template--20187099037915__rich_text_yGG67d {
margin-top: -320px !important;
background-color: transparent !important;
}
.rich-text.color-background-1.gradient.rich-text--full-width.section-template--20187099037915__rich_text_yGG67d-padding {
    background-color: transparent;
}
aside.ai-sidebar-menu-aqxk3rhfsb2jrbkjtyaigenblock26a43c8pr67t6 {
    z-index: 1;
}
}



/* University Garage Page */

@media screen and (min-width: 767px) and (max-width: 1299px) {
section#shopify-section-template--20192845267163__collapsible_content_QrH7RM {
margin-top: -350px !important;
background-color: transparent !important;
}
section#shopify-section-template--20192845267163__collapsible_content_QrH7RM .color-background-1.gradient.isolate {
    background-color: transparent;
}
.ai-sidebar-menu-azwd5nuu3c3puv2hmsaigenblock26a43c8pr67t6 {
    z-index: 1;
}
.ai-pdf-downloads-container-aawn3lzy3exezatgydaigenblock27127dacqeehj {
  padding-left: 350px;
}
#shopify-section-template--20192845267163__collapsible_content_QrH7RM .collapsible-content {
    padding-left: 290px;
}
#shopify-section-template--20192845267163__rich_text_p4KHwm h2 {
    padding-left: 280px;
}
    .ai-pdf-downloads-container-adud2zmxhqu9hwfzzaaigenblock27127dacqeehj {
        padding-left: 260px;
    }
}


@media screen and (min-width: 1300px) {
section#shopify-section-template--20192845267163__collapsible_content_QrH7RM {
margin-top: -550px !important;
background-color: transparent !important;
}
section#shopify-section-template--20192845267163__collapsible_content_QrH7RM .color-background-1.gradient.isolate {
    background-color: transparent;
}
.ai-sidebar-menu-azwd5nuu3c3puv2hmsaigenblock26a43c8pr67t6 {
    z-index: 1;
}
.ai-pdf-downloads-container-aawn3lzy3exezatgydaigenblock27127dacqeehj {
  padding-left: 350px;
}
#shopify-section-template--20192845267163__collapsible_content_QrH7RM .collapsible-content {
    padding-left: 290px;
}
#shopify-section-template--20192845267163__rich_text_p4KHwm h2 {
    padding-left: 280px;
}
 .ai-pdf-downloads-container-adud2zmxhqu9hwfzzaaigenblock27127dacqeehj {
        padding-left: 260px;
    }
}



@media screen and (min-width: 767px) {
section#shopify-section-template--20192886554843__collapsible_content_QrH7RM {
margin-top: -250px !important;
 }
section#shopify-section-template--20192886554843__collapsible_content_QrH7RM .color-background-1.gradient.isolate {
background-color: transparent !IMPORTANT;
 }
aside.ai-sidebar-menu-aqnvkwgp2ohk5rgp2eaigenblock26a43c8pr67t6 {
    z-index: 1;
}

}





/* Buddy Flex Page */

@media screen and (min-width: 750px) {
    #shopify-section-template--20289606648027__image_banner_kHCMMC, #shopify-section-template--20289606648027__image_banner_jXxdKj, #shopify-section-template--20289606648027__image_banner_K7ECXf {
        width: 80%;
        margin-left: 7%;
    }
}

/* EPA Page */
.downloads-item {
    display: inline-block;
    width: ;
}

/* Big Buddy Page */
@media screen and (min-width: 750px) {
    #Banner-template--20292881613019__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_thafML {
        margin-left: 14%;
        margin-right: 14%;
    }
    section#shopify-section-template--20292881613019__multicolumn_MFjazQ {
    padding-left: 13%;
    padding-right: 13%;
}
}



/* Portable Buddy Page */
@media screen and (min-width: 750px) {
div#Banner-template--20293083857115__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_thafML, div#Banner-template--20293083857115__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_KJxKTj {
    margin-left: 14% !important;
    margin-right: 14%;
}}

/* Buddy Flex Cooker Page */
@media screen and (min-width: 750px) {
div#Banner-template--20293156307163__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_PN6cei, div#Banner-template--20293156307163__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_KJxKTj{
    margin-left: 14% !important;
    margin-right: 14%;
}}


/* Buddy Flex Page */
@media screen and (min-width: 750px) {
div#Banner-template--20287171264731__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_thafML, div#Banner-template--20287171264731__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_KJxKTj, .banner-grid__content.banner__content.banner__content--middle-right.banner__content--template--20287171264731__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_XPyJ3D.page-width{
    margin-left: 14% !important;
    margin-right: 14%;
}}

/* Hunting Buddy Page */
@media screen and (min-width: 750px) {
div#Banner-template--20293074223323__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_thafML, div#Banner-template--20293074223323__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_KJxKTj{
    margin-left: 14% !important;
    margin-right: 14%;
}}

/* Little Buddy Page */
@media screen and (min-width: 750px) {
div#Banner-template--20290018083035__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_thafML, div#Banner-template--20290018083035__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_KJxKTj{
    margin-left: 14% !important;
    margin-right: 14%;
}}

/* Cart Page */
small.label.restrict-shipping-check-label {
    font-size: 20px;
    float: left !important;
    padding-bottom: 30px;
    color: #c33732 !important;
}
#shopify-section-template--19902610112731__cart .button {
    margin-top: 10px;
}
p#restrict-shipping-utility {
    margin-top: 10px !important;
}

/* Tank Top University page */
@media screen and (min-width: 767px) {
    .ai-pdf-downloads-acvhkbvpzq0tvwgxeeaigenblock27127davlx6qb {
        padding-left: 300px;
    }
}



/* Buddy University Page */
@media screen and (min-width: 750px) {
   .rich-text.color-background-1.gradient.rich-text--full-width.section-template--20192717635803__rich_text_p4KHwm-padding h2{
padding-left:300px;
}

.ai-pdf-downloads-aatfwsgfbrzq5qzvrraigenblock27127dacqeehj,  {
  padding-left: 300px;
}


.ai-pdf-downloads-grid-aatfwsgfbrzq5qzvrraigenblock27127dacqeehj {
    grid-template-columns: repeat(1, 1fr);
}

.ai-pdf-downloads-aatfwsgfbrzq5qzvrraigenblock27127dacqeehj {
  padding-bottom: 10px;
}
.ai-pdf-downloads-aqu10nk0wse1cvdlkzaigenblock27127da7kieue {
  padding-top: 10px;
}

.rich-text.color-background-1.gradient.rich-text--full-width.section-template--20192717635803__rich_text_jf9YKn-padding h2{
  padding-left:300px;
}
div#shopify-section-template--20192717635803__175563323321822cc0 {
    margin-left: 300px;
}
section#shopify-section-template--20188282716379__featured_products_tabs_C3xiaW {
    padding-left: 300px;
}
.ai-pdf-downloads-grid-acvhkbvpzq0tvwgxeeaigenblock27127davlx6qb, .ai-pdf-downloads-grid-aqu10nk0wse1cvdlkzaigenblock27127da7kieue {
    grid-template-columns: repeat(1, 1fr);
}
.title__buttons.title__buttons--template--20188282716379__featured_products_tabs_C3xiaW {
    display: none;
}
div#shopify-section-template--20192717635803__1755555281400f4a80 {
    padding-left: 300px;
}
section#shopify-section-template--20192717635803__featured_products_tabs_idnfGW {
    padding-left: 270px;
}
}


/* Golf Cart University Page */

ul.fpt__tab-title-list.list-unstyled.margin0.flex.fpt__tab-title-list--template--20192700170459__featured_products_tabs_QKcm6b {
    display: none;
}
@media screen and (min-width: 750px) {
.ai-pdf-downloads-arzdgrunez0s1zvztuaigenblock27127darlfdbg{
  padding-left:300px;
}
section#shopify-section-template--20192700170459__featured_products_tabs_QKcm6b{
  padding-left:300px;
}
}


/* Cabinet University Page */

/* Cabinet Page */
@media screen and (min-width: 767px) {
    .ai-pdf-downloads-arktet3rguvbbutcvkaigenblock27127dacqeehj {
        padding-left: 300px;
    }
}


/* Cabinet University page */
.section.ai-content-section-an2frbxlozjg1y1ppraigenblock26a43c8pr67t6, .ai-video-placeholder-an2frbxlozjg1y1ppraigenblock26a43c8pr67t6{
  display:none;
}



ul.fpt__tab-title-list.list-unstyled.margin0.flex.fpt__tab-title-list--template--20192760856795__featured_products_tabs_fwEfnN{
  display:none;
}
@media screen and (min-width: 750px) {
.rich-text.color-background-1.gradient.rich-text--full-width.section-template--20192760856795__rich_text_p4KHwm-padding {
    background-color: transparent;
}

  section#shopify-section-template--20192760856795__featured_products_tabs_fwEfnN {
padding-left:300px;
}
#shopify-section-template--20192760856795__collapsible_content_QrH7RM .collapsible-content {
    padding-left: 300px;
}

#shopify-section-template--20192760856795__rich_text_p4KHwm h2 {
    padding-left: 300px;
}
section#shopify-section-template--20192760856795__collapsible_content_QrH7RM {
    margin-top: -350px;
}
.ai-pdf-downloads-arktet3rguvbbutcvkaigenblock27127dacqeehj {
        padding-left: 330px;
    }

#shopify-section-template--20192760856795__collapsible_content_QrH7RM .gradient {
    background-color: transparent !important;
}

}
@media screen and (min-width: 1250px) {

section#shopify-section-template--20192760856795__collapsible_content_QrH7RM {
    margin-top: -550px;
}

}
aside.ai-sidebar-menu-an2frbxlozjg1y1ppraigenblock26a43c8pr67t6 {
    z-index: 1;
}



/* Vent Free University page */
.ai-pdf-downloads-anjfimmgyohbzc010taigenblock27127dak3ji6q {
    padding-top: 0px;
}
@media screen and (min-width: 750px) {
div#shopify-section-template--20192774357211__1755555281400f4a80 {
    padding-left: 280px;
}
.ai-pdf-downloads-grid-awvfjmdfkv1nkmev1raigenblock27127dacqeehj, .ai-pdf-downloads-grid-anjfimmgyohbzc010taigenblock27127dak3ji6q {
    grid-template-columns: repeat(1, 1fr);
}
section#shopify-section-template--20192774357211__featured_products_tabs_dcXXK6 {
    padding-left: 300px;
}
}

#shopify-section-template--20192774357211__1755583417ead3f35c iframe.ai-video-iframe-asw1jm09sl0zuoue1waigenblock26a43c8pr67t6 {
width: 70% !important;
height: 70% !important;
padding-left: 35px;
 }






/* Forced Air Propane University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192808206555__featured_products_tabs_hnx3wK {
    padding-left: 300px;
}
#shopify-section-template--20192808206555__1755555281400f4a80 .ai-pdf-downloads-container-ay3pyc3npwfo0bfd6caigenblock27127dacqeehj {
    padding-left: 300px;
}
}
#shopify-section-template--20192808206555__1755583417ead3f35c iframe.ai-video-iframe-ac0pwqum3wtfhuddsaaigenblock26a43c8pr67t6 {
width: 70% !important;
height: 70% !important;
padding-left: 35px;
 }






/* Forced Air Kerosene University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192826327259__featured_products_tabs_YWxAtT {
    padding-left: 300px;
}
#shopify-section-template--20192826327259__1755555281400f4a80 .ai-pdf-downloads-aawzevxnptvd2bxirmaigenblock27127dacqeehj {
    padding-left: 330px;
}
#shopify-section-template--20192826327259__175563323321822cc0{
    padding-left: 300px;
}
#shopify-section-template--20192826327259__collapsible_content_QrH7RM .collapsible-content {
    padding-left: 300px;
}
#shopify-section-template--20192826327259__rich_text_p4KHwm {
    padding-left: 300px;
}
}



/* Forced Air Electric University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192835797211__featured_products_tabs_bz66Dm {
    padding-left: 300px;
}

#shopify-section-template--20192835797211__collapsible_content_QrH7RM {
    padding-left: 300px;
}
#shopify-section-template--20192835797211__rich_text_p4KHwm {
    padding-left: 300px;
}
.ai-pdf-downloads-container-au3hxymfua2u2tvpidaigenblock27127dacqeehj {
        padding-left: 300px;
    }

}
#shopify-section-template--20192835797211__1755583417ead3f35c iframe.ai-video-iframe-aa0hsmmnlcg5ru2hxeaigenblock26a43c8pr67t6 {
width: 70% !important;
height: 70% !important;
padding-left: 35px;
 }




/* Unit Utility University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192835829979__featured_products_tabs_yNrnmV {
        padding-left: 300px;
    }

#shopify-section-template--20192835829979__collapsible_content_QrH7RM {
        padding-left: 300px;
    }

#shopify-section-template--20192835829979__rich_text_p4KHwm {
        padding-left: 300px;
    }

#shopify-section-template--20192835829979__1755555281400f4a80 {
        padding-left: 330px;
    }

}
#shopify-section-template--20192835829979__1755583417ead3f35c
iframe.ai-video-iframe-amldtzgztnndvzkfxvaigenblock26a43c8pr67t6 {
width: 70% !important;
height: 70% !important;
padding-left: 35px;
 }






/* Garage/Shop University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192845267163__featured_products_tabs_trhPYW {
        padding-left: 300px;
    }
  
  }

/* Hero Cordless University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192789266651__collapsible_content_QrH7RM {
        padding-left: 300px;
    }
    section#shopify-section-template--20192789266651__rich_text_p4KHwm {
        padding-left: 300px;
    }
#shopify-section-template--20192789266651__1755555281400f4a80 {
        padding-left: 300px;
    }
  }



/* Convection University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192846545115__featured_products_tabs_TRjWTY {
        padding-left: 300px;
    }

#shopify-section-template--20192846545115__collapsible_content_QrH7RM {
        padding-left: 300px;
    }
#shopify-section-template--20192846545115__rich_text_p4KHwm {
        padding-left: 300px;
    }
 #shopify-section-template--20192846545115__1755555281400f4a80 {
        padding-left: 270px;
    }

  }



/* Portable Radiant University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192854868187__featured_products_tabs_MTHE9k {
        padding-left: 300px;
    }

#shopify-section-template--20192854868187__1755555281400f4a80 {
        padding-left: 330px;
    }

 #shopify-section-template--20192854868187__collapsible_content_QrH7RM {
        padding-left: 300px;
    }
 #shopify-section-template--20192854868187__collapsible_content_awdzcV {
        padding-left: 300px;
    }
 #shopify-section-template--20192854868187__rich_text_p4KHwm {
        padding-left: 300px;
    }
    .ai-pdf-downloads-grid-aeufxbghlvfnhvmxalaigenblock27127dacqeehj {
    grid-template-columns: repeat(1, 1fr);
}
#shopify-section-template--20192854868187__collapsible_content_QrH7RM {
    margin-top: -230px;
}
}




/* Radiant Kerosene University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192886522075__collapsible_content_QrH7RM {
    margin-top: -700px;
    height: 700px;
    padding-left: 300px;
}
}


/* Propane Torches University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192886554843__featured_products_tabs_eh7am9 {
        padding-left: 300px;
    }
  }


/* Hot Water Heaters University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192913424603__featured_products_tabs_xgyLNY {
        padding-left: 300px;
}
#shopify-section-template--20192913424603__1755555281400f4a80 {
        padding-left: 330px;
}
}


/* Portable Washers University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192916373723__1755555281400f4a80{
        padding-left: 330px;
}
}



/* Camping Stoves University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192934396123__featured_products_tabs_pVRXJK{
        padding-left: 300px;
}
#shopify-section-template--20192934396123__1755555281400f4a80{
        padding-left: 330px;
}
}



/* Hose University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192954745051__175563323321822cc0{
        padding-left: 320px;
}
#shopify-section-template--20192954745051__featured_products_tabs_yCYjfq{
        padding-left: 300px;
}
}


/* All Products */
.tabs__title-list-wrapper.flex label {
    font-weight: bold !important;
}




/* Hose University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192972996827__featured_products_tabs_tEpmWi {
          padding-left: 300px;
}
#shopify-section-template--20192972996827__175563323321822cc0 {
          padding-left: 330px;
}
}



/* Accessories University page */
@media screen and (min-width: 750px) {
#shopify-section-template--20192978469083__1755555281400f4a80 {
          padding-left: 330px;
}
#shopify-section-template--20192978469083__175563323321822cc0 {
          padding-left: 320px;
}

#shopify-section-template--20192978469083__featured_products_tabs_tEpmWi {
          padding-left: 300px;
}
}
#shopify-section-template--20192978469083__1755583417ead3f35c
iframe.ai-video-iframe-aalu0m0s1zdyzddhznaigenblock26a43c8pr67t6 {
width: 70% !important;
height: 70% !important;
padding-left: 35px;
 }




/* Unit Product Page */
@media screen and (min-width: 750px) {
section#shopify-section-template--20305729454299__96482c8e-18e4-432f-a2aa-323d63bd401b {
    padding-left: 15%;
    padding-right: 15%;
}
#Banner-template--20305729454299__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion_banner_thafML {
    height: 300px;
}
#Banner-template--20305729454299__96482c8e-18e4-432f-a2aa-323d63bd401b-template--20218412368173__96482c8e-18e4-432f-a2aa-323d63bd401b-promotion-banner-1 {
    height: 700px !important;
}
}




/* Careers Page */
.section-template--20305885626587__main-padding.page-width {
    display: none;
}
#shopify-section-template--20305885626587__collapsible_content_QrH7RM h2.h6.accordion__title.font-heading-bold.margin0 {
color: #c33732 !important
 }

@media screen and (min-width: 750px) {
section#shopify-section-template--20305885626587__collapsible_content_QrH7RM, #shopify-section-template--20305885626587__rich_text_p4KHwm {
    padding-left: 300px;
}

}



/* Cart page */
small.label.restrict-shipping-check-label:before {
    content: "Required: " !important;
}
.cart-page__content__right {
    padding: 2rem !important;
}


/* Removing Store Locator Icon In Header Temporarily */
a.header__icon.header__icon--store.link.header__button-icon.flex.justify-center.align-center {
    display: none;
}

/* Main Top Header Edits */
.header__inner.page-width{
margin-top: -20px;
}
#shopify-section-sections--19902610735323__header .header__search.small-hide.medium-hide.header__search--distance-right {
max-width: 40% !important;
}
header.header.header--top-left.w100.header--has-menu.header--mobile-left {
    border-bottom: 0px;
}


/* Removing Vendor Name in Quick View */
a.link.color-foreground.db.w100.product__vendor-link.font-body-semi-bold.break {
    display: none;
}

/* Removing shipping calculator on checkout page */
.totals.flex.justify-space-between.align-end.flex-wrap {
    display: inline-flex !important;
}


.cart__blocks__shipping-calculator {
  display: none !important;
}