/** Shopify CDN: Minification failed

Line 2549:62 Unexpected "{"

**/
@font-face {
  font-family: 'ProximaNova-Regular';
  src: url('/cdn/shop/files/proxima_nova_regular-webfont.woff?v=1697424276') format('woff');
  src: url('/cdn/shop/files/proxima_nova_regular-webfont.woff2?v=1697424276') format('woff2');
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova-Bold';
  src: url('/cdn/shop/files/proxima_nova_bold-webfont.woff?v=1697424276') format('woff');
  src: url('/cdn/shop/files/proxima_nova_bold-webfont.woff2?v=1697424275') format('woff2');
}

@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;
  }

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

summary .icon-caret {
  transition: transform 500ms cubic-bezier(0.03, 0.93, 0.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(0.03, 0.93, 0.97, 1);
  border-radius: calc(var(--buttons-radius) - 1px);
}

.button:not(.ignore-effect):not(:disabled):hover {
  color: #2d2b33;
}

.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);
}

/* 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), 0.1);
}

.quantity__button:active {
  background-color: rgb(var(--color-foreground), 0.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(0.03, 0.93, 0.97, 1),
    top 500ms cubic-bezier(0.03, 0.93, 0.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));
}

@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.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 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;
}

.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;
}

@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;
  }

  .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));
  }
}

@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__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(0.03, 0.93, 0.97, 1) 500ms;
  }
  use-animate.loaded img {
    opacity: 1;
    transform: scale(1);
  }
}

/* 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(0.19, 1, 0.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 0.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 0.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), 0.1);
}

/* Component floating bar */

.floating-element {
  z-index: 2;
  transition: bottom 300ms cubic-bezier(0.03, 0.93, 0.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;
}
.collection-bg {
  background: #fffdf6;
  overflow: hidden;
}
@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: 0;
    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: 4.4rem;
  height: 4.4rem;
}

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

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

/* Shipping calculator */

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

/* configure product */
div#infiniteoptions-container {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  flex-wrap: wrap;
  height: 530px;
}
div#infiniteoptions-container > div {
  height: 90px;
  width: calc(33.333% - 20px);
  border-right: 1px solid #000;
  padding-right: 20px;
}
div#infiniteoptions-container > div.shaft {
  height: calc(100% - 170px);
}
div#infiniteoptions-container > div.grip {
  border: 0;
}
.email-signup-popup__content .email-signup-popup__text h3 {
  letter-spacing: normal;
}

.cstm-table h2 {
  margin: 0;
  padding-bottom: 40px;
  text-align: center;
}
.cstm-table .sticky-first-column table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.cstm-table .sticky-first-column table th,
.cstm-table .sticky-first-column table td {
  padding: 5px 10px;
  min-width: 75px;
}
.cstm-table .sticky-first-column table tr:nth-child(2n + 1) {
  background: #3b3939;
}
.cstm-table .item {
  width: 100%;
}

.cstm-table p {
  margin: 20px auto 0;
  text-align: center;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: 400;
  width: 100%;
}
.table-dark {
  color: #fff;
  text-align: center;
}
.table-dark.table-alternating-rows tr:first-of-type,
.table-dark.table-alternating-rows tr:nth-child(odd) {
  background-color: #47474c;
}
.table-dark.table-alternating-rows tr:first-of-type th,
.table-dark.table-alternating-rows tr:nth-child(odd) th {
  background-color: inherit;
}
.sticky-first-column .table-head:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-right: 1px solid #ff003b;
}
.table-dark th,
.table-dark td {
  font-weight: 400;
  border: 0;
  padding: 9px;
}
.sticky-first-column {
  --_first-column-width: 230px;
  --_min-column-width: 230px;
  overflow-x: auto;
}
.sticky-first-column .table-head {
  position: sticky;
  left: 0;
  width: var(--_first-column-width);
  background: #000;
}
h3.predictive-search__heading.caption {
  letter-spacing: normal;
}
.pros-list-cols {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  margin-top: 30px;
}
.pros-list-main {
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
  margin-bottom: -40px;
}
.two-column-video .deferred-media__poster-button {
  background: rgba(255,255,255,0.7);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 10px;
  transition: all .2s linear;
  color: #000;
}
.two-column-video .deferred-media__poster-button .icon.icon-play {
  border: 4px solid #000;
  border-radius: 50%;
  padding: 20px;
  width: 100px;
  height: 100px;
  margin: 0;
}
.two-column-video .video-item .video-section__media:hover .deferred-media__poster-button {
  background: #fff;
}
--font-button-family {
  font-family: "ProximaNova-Regular"
}

.header-top__content {
  padding: 5px 0;
}
.header-top__content .header__store-information {
  flex: 1;
}
.header-top__content .headder-search-top {
  flex: 1;
}
.header-top__content .header__localization {
  flex: 1;
}
.headder-search-top #Search-In-Inline {
  min-height: unset;
  height: 40px;
  border: 2px solid #caae8c;
  border-radius: 30px;
}
.headder-search-top .field__button {
  background: #caae8c;
  color: #000;
  border-radius: 0 30px 30px 0;
  right: 0;
  width: 50px;
  opacity: 1;
}
.custom-prodcut-cards .card-wrapper--product:hover {
  --product-card-border-opacity: 1 !important;
  transform: unset !important;
  border-color: transparent !important;
}
.custom-prodcut-cards .card-wrapper--product:hover .media > img {
  opacity: 1 !important;
}

.custom-prodcut-cards .highlight-badge-text {
  top: unset !important;
  bottom: 0px;
  height: unset !important;
}
.custom-prodcut-cards .highlight-badge-text .product-players {
  margin: 0 !important;
  font-family: "articulat-cf", sans-serif !important;
  font-size: clamp(14px, 1.21vw, 18px);
  font-weight: bold;
  letter-spacing: 0;
  height: 32px;
  background: #caae8c;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
.custom-prodcut-cards .card__heading--product a {
  font-size: 16px;
  font-weight: bold;
  font-family: "articulat-cf", sans-serif !important;
}
.cards-custom-data p {
  font-size: clamp(16px, 1.25vw, 16px);
  font-weight: normal !important;
  font-family: "articulat-cf" !important;
  letter-spacing: 0;
  margin: 5px 0;
}
.custom-prodcut-cards .price__container {
  margin-bottom: 20px;
}
.cards-custom-data p.product-sales-text {
  color: #f7ff45;
}
.custom-prodcut-cards .card-wrapper--product:hover::after {
  display: none !important;
}
@media (max-width: 750px) {
  .pros-list-main {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: calc(-52px * 0.75);
  }
  .pros-list-cols span {
    font-size: 14px;
  }
  .two-column-video {
    flex-direction: column;
  }

  .video-text-cols .video-text-right {
    order: 1;
  }

  .video-text-cols .image-with-text__text-item.grid__item {
    order: 2;
  }
  .cstm-table .sticky-first-column {
    overflow: auto;
  }
  .cstm-table .sticky-first-column table th,
  .cstm-table .sticky-first-column table td {
    min-width: 120px;
  }
  .blocks-container {
    gap: 0;
  }
  .top-header {
    display: none;
  }
  .table-dark th,
  .table-dark td {
    min-width: 120px;
  }
  .cc-normal-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .two-column-video {
  flex-wrap: unset;
  }
  .two-column-video .deferred-media__poster-button {
    width: 80px;
    height: 80px;
  }
  .two-column-video .deferred-media__poster-button .icon.icon-play {
    width: 60px;
    height: 60px;
    padding: 13px;
  }
}

#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-text,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-multiple
  > span:not(.cpb-option-type-color) {
  border: 1px solid #b7b7b7;
  border-radius: 0;
  font-size: 11px;
  color: #000;
  padding: 5px 15px;
}
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-category-options-container.multiple
  .option
  .cpb-option
  .cpb-option-type-multiple-inner {
  padding: 2px 5px !important;
}
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-img
  img,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-img
  span.cpb-option-type-color-bg,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-color
  img,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-color
  span.cpb-option-type-color-bg,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-percentage
  img,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-percentage
  span.cpb-option-type-color-bg {
  height: auto !important;
  width: 120px !important;
}
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-img,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-color,
#product-builder
  .cpb-theme-provider.aloha
  .cpb-layout:not(.cpb-is-admin)
  .cpb-option.cpb-option-type-percentage {
  width: 120px !important;
  height: auto !important;
}


/* PXG Custom Product Builder Styles */

.club-configurator__wrapper {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.config-column-inner {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-control-label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.custom-select, .custom-radio input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.custom-radio {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-primary {
    background-color: #000;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #444;
}

.header__inline-menu.small-hide.medium-hide {
  min-width: 650px;
}
.cstm-main-template {
  background: #fffdf6;
}
.cstm-main-template .background-input.product-section__padding {
  background: #fffdf6;
}
.template-product-bat-attack-zt-putter .video-text-cols, 
.template-product-hellcat-zt-putters .video-text-cols{
  align-items: center;
}
.template-product-bat-attack-zt-putter .video-text-cols .icon.icon-play, 
.template-product-hellcat-zt-putters .icon.icon-play {
  fill: #fef9e9;
}
.template-product-bat-attack-zt-putter .video-text-cols p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}
.template-product-bat-attack-zt-putter .video-text-cols h2 {
  font-weight: 600;
}
.template-product-bat-attack-zt-putter .gallery .cc-normal-padding .card__heading.h3 {
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.template-product-bat-attack-zt-putter .gallery .cc-normal-padding  .gallery__item__caption.subtitle {
  color: #fffdf2;
}

.pxg-club-table {
    width: 100%;
    margin-bottom: 0;
    vertical-align: top
}

.pxg-club-table>thead {
    vertical-align: bottom;
}

.pxg-club-table>:not(caption)>*>* {
    padding: 0.5rem 0.8rem;
    color: #fffdf2;
    background-color: transparent;
    border-bottom-width: 18px;
    border-bottom-color: #201e25;
    text-align: center;
    line-height: 1.5;
}

.pxg-club-table-scroll {
    scrollbar-color: #79787c #201e25;
    scrollbar-width: thin
}

.pxg-club-table>thead>*>* {
    padding-bottom: 18px !important;
}

.pxg-club-table>tbody>tr:nth-of-type(2n)>* {
    background-color: #79787c
}

.pxg-club-table>tbody>tr:nth-of-type(odd)>* {
    background-color: #4c4b50;
}

.pxg-club-table-striped-column>tbody>tr>:first-child {
    background-color: #201e25!important;
    vertical-align: middle;
}
.\!text-grey-v2 {
    --tw-text-opacity: 1 !important;
    color: rgb(121 120 124 / var(--tw-text-opacity, 1))!important
}

.\!text-shadow-black {
    --tw-text-opacity: 1 !important;
    color: rgb(32 30 37 / var(--tw-text-opacity, 1))!important
}

.\!text-sunrise {
    --tw-text-opacity: 1 !important;
    color: rgb(247 255 69 / var(--tw-text-opacity, 1))!important
}

.text-\[\#201E25\] {
    --tw-text-opacity: 1;
    color: rgb(32 30 37 / var(--tw-text-opacity, 1))
}

.text-\[\#FFB649\] {
    --tw-text-opacity: 1;
    color: rgb(255 182 73 / var(--tw-text-opacity, 1))
}

.text-\[\#FFFDF2\] {
    --tw-text-opacity: 1;
    color: rgb(255 253 242 / var(--tw-text-opacity, 1))
}
.\!p4, .p4 {
    font-family: articulat-cf, sans-serif;
    font-size: clamp(14px, 1.11vw, 16px);
    line-height: 1.5rem;
}
.\!text-right {
    text-align: right!important
}

.text-right {
    text-align: right
}

.align-baseline {
    vertical-align: baseline
}
.font-normal {
    font-weight: 400;
}
.\!pr-6 {
    padding-right: 24px !important;
}

.align-bottom {
    vertical-align: bottom
}

.align-\[inherit\] {
    vertical-align: inherit;
}
.cstm_head h2 {
  font-weight: 600;
}
.pxg-club-table.table-dark.table-alternating-rows tr:first-of-type, .pxg-club-table.table-dark.table-alternating-rows tr:nth-child(2n+1) {
  background-color: unset;
}
.pxg-club-table.table-dark.table-alternating-rows tr:first-of-type th, .pxg-club-table.table-dark.table-alternating-rows tr:nth-child(2n+1) th {
  background: #201e25;
}
#shopify-section-template--24555218075955__image_with_text_product_dVFbhE .video-text-right .video-section__media.deferred-media {
  pointer-events: none;
}
#shopify-section-template--24555218075955__image_with_text_product_dVFbhE .video-text-right .video-section__media.deferred-media .deferred-media__poster-button.motion-reduce {
  display: none !important;
}
.template-product-bat-attack-zt-putter .video-text-cols .button.button--solid {
  padding: 8px 16px 12px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1;
  font-family: articulat-cf,sans-serif;
  letter-spacing: 0;
}
#shopify-section-template--24555218075955__rich_text_RQtnB7 .rich-text__text.rte p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
  font-family: "articulat-cf" !important;
}





/* gen7 css start */
.options_head_color {
  opacity: 0;
  visibility: hidden;
  min-height: 86.58px;
  pointer-events: none;
}
.options_head_color .hulkapps_option_value {
  display: none !important;
}
.options_head_color .hulkapps_option_name {
  display: none !important;
}

.template-product-latest-product-template variant-radios#variant-select-template--24451628499251__main,
.template-product-latest-product-template #variant-select-template--25668045996339__main, 
.template-product-gen6-sale variant-radios#variant-select-template--24594369806643__main,
.template-product-black-ops-irons-new variant-radios#variant-select-template--24600279482675__main, 
.template-product-0317-irons #variant-select-template--24645476122931__main, 
.template-product-0317-irons #variant-select-template--25668043997491__main {
    position: absolute;
    top: 195px;
    left: 40px;
}
.template-product-latest-product-template variant-radios#variant-select-template--24451628499251__main, 
.template-product-latest-product-template #variant-select-template--25668045996339__main {
  top: 390px;
}
.template-product-gen6-sale variant-radios#variant-select-template--24594369806643__main {
  top: 420px;
}
.template-product-latest-product-template legend.product-form__input__form-label.text-small.margin-bottom-1rem, 
.template-product-0317-irons .product-form__input__form-label.text-small.margin-bottom-1rem {
    font-size: 16px;
    text-align: left;
    color: #777777;
    font-weight: normal;
}

.template-product-latest-product-template .product-form__input__radio-label:after,
.template-product-0317-irons .product-form__input__radio-label:after {
    border: 1px solid #777777 !important;
    opacity: 1;
    border-radius: 5px;
}

.template-product-latest-product-template .product-form__input__radio:checked+.product-form__input__radio-label--pill, 
.template-product-0317-irons .product-form__input__radio:checked+.product-form__input__radio-label--pill {
    /* color: #fff !important; */
    border: 0;
}

.template-product-latest-product-template .product-form__input__radio:checked+.product-form__input__radio-label--pill:after, 
.template-product-0317-irons .product-form__input__radio:checked+.product-form__input__radio-label--pill:after{
    background: #978aab;
    box-shadow: unset !important;
}
.template-product-latest-product-template .product-form__input__radio-label:after, 
.template-product-0317-irons .product-form__input__radio-label:after {
  display: none;
}
.template-product-latest-product-template div#ProductInfo-template--24451628499251__main {
    overflow: hidden;
}
.template-product-latest-product-template .product-form__input__radio:checked+.product-form__input__radio-label--pill,
.template-product-0317-irons .product-form__input__radio:checked+.product-form__input__radio-label--pill {
    border: 1px solid #221e27;
    background: #211e26;
    color: #fff;
}

.template-product-latest-product-template .product-form__input--fieldset, 
.template-product-0317-irons .product-form__input--fieldset {
    margin: 0 0 20px;
}

.template-product-latest-product-template .product-form__input__radio-label--pill, 
.template-product-0317-irons .product-form__input__radio-label--pill {
    border: 1px solid #777;
    color: #777;
}

.template-product-latest-product-template .product-form__input__radio-label--pill:hover, 
.template-product-0317-irons .product-form__input__radio-label--pill:hover {
    background: #221e27;
    border-color: #221e27;
    color: #fff;
}
.template-product-0317-irons .compare-columns .page-width {
  max-width: 1400px;
}
.hulkapps-tooltip .hulkapps-tooltip-inner {
    left: 0;
}
.hulkapps_option_value label.hulkapps_swatch_option {
    width: calc(50% - 20px);
}
@media (max-width: 1100px) and (min-width: 750px){
  .template-product-latest-product-template variant-radios#variant-select-template--24451628499251__main,
  .template-product-latest-product-template #variant-select-template--25668045996339__main,
   .template-product-0317-irons #variant-select-template--24645476122931__main, 
   .template-product-0317-irons #variant-select-template--25668043997491__main  {
    top: 480px;
    left: 20px !important;
  }
  .template-product-latest-product-template #variant-select-template--25668045996339__main {
    top: 530px;
    left: 40px !important;
  }
  .template-product-0317-irons #variant-select-template--24645476122931__main, 
  .template-product-0317-irons #variant-select-template--25668043997491__main {
    top: 190px;
    left: auto !important;
  }
  .template-product-latest-product-template .product-section__padding .page-width, 
  .template-product-0317-irons .product-section__padding .page-width {
    max-width: 750px;
  }
  .template-product-0317-irons .product-form__input__radio-label--pill {
  padding: 1.4rem 1rem;
  }
}
@media (max-width: 749px){
  .template-product-latest-product-template .product-section__padding .page-width, 
  .template-product-0317-irons .product-section__padding .page-width {
        width: 100%;
        /* max-width: 340px; */
        overflow: hidden;
    }
    .template-product-latest-product-template .cartbox-style.product__sale-box, 
  .template-product-0317-irons .cartbox-style.product__sale-box {
        margin-bottom: 0;
    }
    .template-product-latest-product-template variant-radios#variant-select-template--24451628499251__main,
    .template-product-latest-product-template #variant-select-template--25668045996339__main,
    .template-product-gen6-sale variant-radios#variant-select-template--24594369806643__main,
    .template-product-black-ops-irons-new variant-radios#variant-select-template--24600279482675__main, 
    .template-product-0317-irons #variant-select-template--24645476122931__main, 
    .template-product-0317-irons #variant-select-template--25668043997491__main
   {
        left: 0px;
    }
    .template-product-latest-product-template truncate-text.db.product__description {
      max-width: 380px;
    }
  .template-product-latest-product-template variant-radios#variant-select-template--24451628499251__main, 
  .template-product-latest-product-template #variant-select-template--25668045996339__main {
    top: 433px;
  }
  .template-product-gen6-sale variant-radios#variant-select-template--24594369806643__main {
    top: 415px;
  }
  .template-product-gen6-sale truncate-text.db.product__description {
    max-width: 450px;
  }
}
@media (max-width: 420px){
  .template-product-latest-product-template truncate-text.db.product__description,
  .template-product-gen6-sale truncate-text.db.product__description {
      max-width: 290px;
    }
  .template-product-latest-product-template variant-radios#variant-select-template--24451628499251__main, 
  .template-product-latest-product-template #variant-select-template--25668045996339__main {
    top: 503px;
  }
  .template-product-gen6-sale variant-radios#variant-select-template--24594369806643__main {
    top: 525px;
  }
}
/* gen7 css end */


/* slideshow css */

/* .cc-my-custom-slideshow .slideshow__text-wrapper {
    margin-right: -15px;
} */

.cc-my-custom-slideshow .slideshow__text-wrapper h2 {
    font-family: nicholas, sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
  letter-spacing: 0;
}

.cc-my-custom-slideshow .slideshow__text-wrapper .slideshow__text {
    max-width: 50% !important;
    padding-left: 5px;
}
.custom-page-width {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
}
.cc-custom-product-slider .title {
  margin-bottom: 0;
}
.cc-custom-product-slider .title hr {
  display: none;
}

.cc-custom-product-slider .custom-page-width>p {
  margin-top: 0;
  margin-bottom: 3rem;
  font-size: 20px;
  line-height: 1.75em;
}
.cc-custom-product-slider .title .title__heading.h2 {
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
}
.video-text-padding .video-text-right span.deferred-media__poster-button {
    background: #fff9e9;
}
.video-text-padding .video-text-right deferred-media.video-section__media {
    --video-ratio: 100%;
}
parallax-element#just-take use-animate.image-with-text__media {
    padding-bottom: 50% !important;
    width: 300px;
    height: 300px !important;
    min-height: 300px;
}
parallax-element#just-take .image-with-text__media-item {
    align-items: center;
    justify-content: center;
    display: flex;
}
parallax-element#just-take .image-with-text__text p {
    padding-bottom: 20px;
    letter-spacing: 0;
    font-family: "articulat-cf" !important;
    line-height: 1.5;
}

parallax-element#just-take .image-with-text__text p:last-child {
    padding-bottom: 0;
}
.pxg-club-table {
    width: 100%;
    margin-bottom: 0;
    vertical-align: top;
    border-spacing: 0px 10px !important;
    border-collapse: separate;
}
.template-product-black-ops-irons-new .custom-mtop {
  margin-bottom: 20px !important;
}
#shopify-section-template--24602529595699__image_with_text_product_ydCaFX .deferred-media__poster-button.motion-reduce {
  display: none;
}
#shopify-section-template--24602529595699__image_with_text_product_ydCaFX #Deferred-Poster-Modal- {
  pointer-events: none;
}
#shopify-section-template--24602529595699__custom_image_banner_EDJDRn .banner__buttons.element-small-margin-top.align-center {
  margin-top: 0;
}
#shopify-section-template--24602529595699__custom_image_banner_EDJDRn .banner__text h2 {
  font-weight: normal !important;
}
#shopify-section-template--24602529595699__image_with_text_product_ydCaFX .image-with-text__heading {
  letter-spacing: 0;
}
#shopify-section-template--25646001520947__video_with_text_left_VB69mH .image-with-text__heading,
#shopify-section-template--25646001520947__video_with_text_left_pHCQ9F .image-with-text__heading,
#shopify-section-template--25646001520947__video_with_text_left_xaGpbc .image-with-text__heading,
#shopify-section-template--25646001520947__video_with_text_left_tUTyme .image-with-text__heading,
#shopify-section-template--25646001520947__video_with_text_left_bFa93h .image-with-text__heading {
  font-size: clamp(24px, 2.22vw, 32px);
  text-transform: capitalize;
  font-style: italic;
  text-align: center;
  width: 100%;
  letter-spacing: 0.5px;
}
#shopify-section-template--25646001520947__video_with_text_left_VB69mH .image-with-text__text p,
#shopify-section-template--25646001520947__video_with_text_left_pHCQ9F .image-with-text__text p,
#shopify-section-template--25646001520947__video_with_text_left_xaGpbc .image-with-text__text p,
#shopify-section-template--25646001520947__video_with_text_left_tUTyme .image-with-text__text p,
#shopify-section-template--25646001520947__video_with_text_left_bFa93h .image-with-text__text p {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.5em;
  letter-spacing: 0;
}
.section-template--24602529595699__new_image_text_with_id_7LGDaV-padding .image-with-text__content {
  padding-left: 0 !important;
}

#shopify-section-template--24602529595699__gallery_below_p6gCGN .gallery__item__line.gallery__item__line--left.large-up-hide {
  display: none;
}
.template-page-golf-irons hr {
  display: none !important;
}
.highlight-main {
  font-size: clamp(32px, 2.78vw, 40px);
  text-transform: capitalize;
  font-style: italic;
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: 0;
  font-weight: normal;
}
product-form.product-form .shopify-payment-button {
    display: none !important;
}
.background-input {
  background: #fffdf6 !important;
}
.cc-normal-padding {
    padding-left: 0;
    padding-right: 0;
  }
.collection-bg .card__content.card__content--product h3 {
  font-family: articulat-cf,sans-serif !important;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 00;
}
.collection-bg .card__content.card__content--product .price-item.price-item--regular {
  letter-spacing: 00;
  font-size: 14px;
}
.collection-bg .card__content.card__content--product .price {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
.compare-columns .title__gap.por {
  justify-content: center !important;
}
#Banner-template--25633422901555__image_banner_TwL7cx .banner__text.rte {
  font-size: 20px;
  letter-spacing: 0;
  margin-top: 16px;
}
#Banner-template--25633422901555__image_banner_TwL7cx .button {
  font-family: "articulat-cf" !important;
  font-size: 16px;
  letter-spacing: 0;
}
#Banner-template--25633422901555__image_banner_TwL7cx .button:hover {
  color: rgb(45, 43, 51);
}
#Banner-template--25633422901555__image_banner_TwL7cx .button:hover:before {
  background-color: #e5dfc8 !important;
}
#lightning .image-with-text__content {
  padding-left: 0;
}
#lightning .image-with-text__content h2 {
  font-weight: normal;
}
#lightning .image-with-text__text p {
  font-family: articulat-cf, sans-serif !important;
  font-size: clamp(16px, 1.25vw, 18px);
}
.collapsible-content.collapsible-row-layout.section-template--25633422901555__collapsible_content_6QMtre-padding h2 {
  text-transform: none !important;
}
.collapsible-content.collapsible-row-layout.section-template--25633422901555__collapsible_content_6QMtre-padding hr {
  display: none;
}
.collapsible-content.collapsible-row-layout.section-template--25633422901555__collapsible_content_6QMtre-padding .flex.justify-space-between.w100.align-center.title__gap.por {
  justify-content: center;
}
.collapsible-content.collapsible-row-layout.section-template--25633422901555__collapsible_content_6QMtre-padding .summary__title .h6.accordion__title {
  font-family: articulat-cf, sans-serif !important;
  font-size: clamp(14px, 1.11vw, 16px);
  letter-spacing: 0;
  font-weight: 600;
}
.collapsible-content.collapsible-row-layout.section-template--25633422901555__collapsible_content_6QMtre-padding .summary-accordion {
  padding: 20px 0;
}
@media (max-width: 750px){
  product-form.product-form .shopify-payment-button {
    display: none !important;
}
  .hulkapps_option_value label.hulkapps_swatch_option {
    width: 100%;
    margin: 0 0 15px !important;
 }
  .cc-my-custom-slideshow .slideshow__text-wrapper .slideshow__text {
    max-width: 100% !important;
    background: transparent !important;
  }
  #shopify-section-template--24602529595699__image_with_text_product_ydCaFX .image-with-text--overlap .image-with-text__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-bottom: 0;
  }
  #shopify-section-template--25646001520947__video_with_text_left_VB69mH .image-with-text__content,
  #shopify-section-template--25646001520947__video_with_text_left_pHCQ9F .image-with-text__content,
  #shopify-section-template--25646001520947__video_with_text_left_xaGpbc .image-with-text__content,
  #shopify-section-template--25646001520947__video_with_text_left_tUTyme .image-with-text__content,
  #shopify-section-template--25646001520947__video_with_text_left_bFa93h .image-with-text__content {
  padding: 2rem;
}
  #shopify-section-template--25646001520947__video_with_text_left_VB69mH .video-text-cols .image-with-text__text-item.grid__item,
  #shopify-section-template--25646001520947__video_with_text_left_pHCQ9F .video-text-cols .image-with-text__text-item.grid__item,
  #shopify-section-template--25646001520947__video_with_text_left_xaGpbc .video-text-cols .image-with-text__text-item.grid__item,
  #shopify-section-template--25646001520947__video_with_text_left_tUTyme .video-text-cols .image-with-text__text-item.grid__item,
  #shopify-section-template--25646001520947__video_with_text_left_bFa93h .video-text-cols .image-with-text__text-item.grid__item {
    order: 1;
  }
  .lightning-table th {
    min-width: 145px;
  }
  .lightning-fairway th {
    min-width: 160px;
  }
}
.product-form__input__radio:checked + .product-form__input__radio-label--pill.soldout {
  color: #fffdf2;
}
.video-text-right.video-section.isolate.section-template--25668042621235__video_with_text_left_7Fh8kc-padding .deferred-media__poster-button .icon-play {
  color: #fef9e9;
}
span.tmenu_item_text span {
  color: #201e25;
  letter-spacing: .05em;
  line-height: 1.25;
  font-size: 11px;
  font-weight: 700;
  font-family: nicholas,sans-serif;
  text-transform: uppercase;
  background: #caae8c;
  padding: .25em .5em;
  display: inline-block;
  vertical-align: 2px;
  margin: 0 .25em;
}
.tmenu_submenu_type_mega > .tmenu_item:first-child a {
  font-family: nicholas, sans-serif !important;
  font-size: clamp(24px, 2.22vw, 32px) !important;
  text-transform: capitalize;
  line-height: 1.5;
  font-weight: normal !important;
  height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.tmenu_submenu_type_mega > .tmenu_item:nth-child(2) a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 !important;
}
.tmenu_submenu_type_mega > .tmenu_item:nth-child(2) a .tmenu_item_text {
  background: #2d2b33;
  padding-left: 16px !important;
  padding-right: 16px !important;
  padding-top: 9px !important;
  padding-bottom: 12px !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.5rem;
  font-weight: normal !important;
  color: #fff !important;
  font-family: articulat-cf, sans-serif !important;
  border-radius: 4px !important;
}
.tmenu_submenu_type_mega > .tmenu_item:nth-child(2) a:hover .tmenu_item_text {
  background: #4c4b50;
}
.tmenu_submenu_type_mega > .tmenu_item:first-child {
  padding-right: 0 !important;
}
.tmenu_submenu_type_mega > .tmenu_item:nth-child(2) {
  padding-left: 0 !important;
}
.tmenu_submenu_type_mega > .tmenu_item a {
  border: 0 !important;
}
.tmenu_submenu_type_mega > .tmenu_item:first-child a, .tmenu_submenu_type_mega > .tmenu_item:nth-child(2) a {
  border-bottom: 1px solid #000 !important;
  height: 60px !important;
  padding-bottom: 20px !important;
  display: flex;
  align-items: center;
}
.tmenu_nav > li > ul > .tmenu_col-3 > .tmenu_item_link {
  font-family: nicholas, sans-serif;
  font-size: clamp(20px, 1.67vw, 24px);
  line-height: 1.25;
}
.tmenu_nav > li > ul > .tmenu_col-3 > ul > li .tmenu_item_text, .cc-balls-item .tmenu_col-12 .tmenu_item_link span {
  font-family: articulat-cf, sans-serif !important;
  font-size: clamp(14px, 1.11vw, 16px) !important;
  line-height: 1.5rem;
  letter-spacing: 0 !important;
}
.tmenu_nav > li > ul > .tmenu_col-3 > ul {
  padding: 0 !important;
}
.tmenu_nav > li > ul > .tmenu_col-3 > ul > li .tmenu_item_link, .cc-balls-item .tmenu_col-12 .tmenu_item_link {
  padding: 3px 0 !important;
}
.tmenu_submenu_mega_position_fullwidth {
  margin-top: 15px !important;
}
.cc-balls-item .tmenu_col-12 {
  padding-bottom: 0 !important;
}
@media (max-width: 989px) {
  .tmenu_app_mobile .tmenu_item_mobile.tmenu_item_level_0 > .tmenu_item_link .tmenu_item_text, .tmenu_app_mobile .tmenu_item_mobile .tmenu_item_link span {
    color: #fef9e9 !important;
  }
  #menu-drawer a[href="javascript:;"] {
    font-family: nicholas, sans-serif;
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.5;
  }
}
@media (min-width: 750px){
  .template-product-latest-product-template main .page-width, {
    max-width: 1200px;
    padding: 0 5rem;
    
  }
  .template-product-lightning-drivers .banner__box.por.banner__box--template--25646001520947__image_banner_VwpFX9.background-transparent.center {
    max-width: 100%;
  }
  .template-product-lightning-fairways .banner--medium.banner--desktop-transparent .banner__box {
    max-width: 100%;
  }
}
/* @media screen and (min-width: 990px) {
  .image-with-text__content {
    padding: 0 16px;
  }
} */
#shopify-section-template--25646001520947__video_with_text_left_VB69mH .video-section__media,
#shopify-section-template--25646001520947__video_with_text_left_pHCQ9F .video-section__media,
#shopify-section-template--25646001520947__video_with_text_left_xaGpbc .video-section__media,
#shopify-section-template--25646001520947__video_with_text_left_tUTyme .video-section__media,
#shopify-section-template--25646001520947__video_with_text_left_bFa93h .video-section__media {
  padding: 0;
}
#shopify-section-template--25646001520947__video_with_text_left_VB69mH video,
#shopify-section-template--25646001520947__video_with_text_left_pHCQ9F video,
#shopify-section-template--25646001520947__video_with_text_left_xaGpbc video,
#shopify-section-template--25646001520947__video_with_text_left_tUTyme video,
#shopify-section-template--25646001520947__video_with_text_left_bFa93h video {
  position: relative;
}




#shopify-section-template--25646001520947__custom_richtext_TxCxNz h2 span {
  font-family: nicholas, sans-serif;
  font-size: clamp(32px, 2.78vw, 40px);
  text-transform: capitalize;
  line-height: 1.5;
}
#shopify-section-template--25646001520947__custom_richtext_TxCxNz  .rich-text__heading{
  margin: 0;
}
#shopify-section-template--25646001520947__custom_richtext_TxCxNz .rich-text__text{
font-size: clamp(18px, 1.39vw, 20px);
  line-height: 1.75em;
  text-align: left;
}