/** Shopify CDN: Minification failed

Line 1323:29 Unexpected "{"

**/
/* Color custom properties */

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

.contains-card,
.card {
    --border-radius: var(--card-corner-radius);
    --border-width: var(--card-border-width);
    --border-opacity: var(--card-border-opacity);
    --shadow-horizontal-offset: var(--card-shadow-horizontal-offset);
    --shadow-vertical-offset: var(--card-shadow-vertical-offset);
    --shadow-blur-radius: var(--card-shadow-blur-radius);
    --shadow-opacity: var(--card-shadow-opacity);
}

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

.product__media-gallery .slider,
.product__media-item {
    --border-radius: var(--media-radius);
    --border-width: var(--media-border-width);
    --border-opacity: var(--media-border-opacity);
    --shadow-horizontal-offset: var(--media-shadow-horizontal-offset);
    --shadow-vertical-offset: var(--media-shadow-vertical-offset);
    --shadow-blur-radius: var(--media-shadow-blur-radius);
    --shadow-opacity: var(--media-shadow-opacity);
}

/* base */

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

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

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

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

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

html.is-locked,
html.is-locked body {
    /* want to fix the height to the window height */
    height: calc(var(--window-inner-height) - 1px);

    /* want to block all overflowing content */
    overflow: hidden;

    /* want to exclude padding from the height */
    box-sizing: border-box;
}

body {
    min-height: -webkit-fill-available;
}

.page-width,
.section-boxed {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

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

.page-width--narrow {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media screen and (min-width: 750px) {
    .page-width {
        padding: 0 1.875rem;
    }

    .page-width--narrow {
    }

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

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

@media screen and (min-width: 960px) {
    .page-width--narrow {
        max-width: var(--page-width-narrow);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.hidden {
    display: none !important;
}

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

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

.overflow-hidden {
    overflow: hidden;
}

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

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

.text-body,
.p {
    font-size: 1rem;
    line-height: 1.375;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
}

.text-body-small {
    font-size: 0.875rem;
}

.text-secondary,
.text-secondary * {
    color: rgb(var(--color-secondary-text));
}

p, a, span {
    font-size: 1rem;
    line-height: 1.333;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
}

p, span {
    color: rgb(var(--color-foreground));
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    color: rgb(var(--color-foreground));
    line-height: 0.9;
    word-break: break-word;
}


.h0 {
    font-size: 2.5rem;
}

@media only screen and (min-width: 750px) {
    .h0 {
        font-size: 3rem;
    }
}

h1,
.h1 {
    font-size: 2.25rem;
}

@media only screen and (min-width: 750px) {
    h1,
    .h1 {
        font-size: 2.5rem;
    }
}

h2,
.h2 {
    font-size: 2rem;
}

@media only screen and (min-width: 750px) {
    h2,
    .h2 {
        font-size: 2.25rem;
    }
}

h3,
.h3 {
    font-size: 1.75rem;
}

@media only screen and (min-width: 750px) {
    h3,
    .h3 {
        font-size: 2rem;
    }
}

h4,
.h4 {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-size: 1.75rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

table:not([class]) {
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 1rem;
    border-style: hidden;
    box-shadow: 0 0 0 0.1rem rgba(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);
}

.hidden {
    display: none !important;
}

@media screen and (max-width: 749px) {
    .small-hide {
        display: none !important;
    }
}

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

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

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.light {
    opacity: 0.7;
}

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

.link--background {
    --link-text: var(--color-link-text);
    --link-bg: transparent;
    --link-text-hover: var(--color-link-text-hover);
    --link-bg-hover: var(--color-link-background-hover);
    display: inline-block;
    width: auto;
    font-weight: bold;
    text-decoration: underline;
    background-color: var(--link-bg);
    color: var(--link-text);
    transition: background-color var(--duration-short) cubic-bezier(0.3, 0, 0, 1), color var(--duration-short) cubic-bezier(0.3, 0, 0, 1);
}

.link--background.font-weight-normal {
    font-weight: normal;
}

.link--background:hover,
.link--background:focus {
    text-decoration: none;
    background-color: var(--link-bg-hover);
    color: var(--link-text-hover);
}

.link--underline {
    text-decoration: underline;
}

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

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

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

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

.circle-divider::after {
    content: '';
    /* margin: 0 1.3rem 0 1.5rem; */
}

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

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

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

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

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

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

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

.visibility-hidden {
    visibility: hidden;
}

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

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

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

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

.icon-arrow {
    width: 1.5rem;
}

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

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

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

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

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


summary .icon-triangle-down {
    height: unset;
    width: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-wrapper-with-link a {
    color: rgb(var(--color-link));
    margin-top: 0;
    flex-shrink: 0;
}

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

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

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

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

.subtitle--medium {
    font-size: 1.6rem;
}

/* component-grid */
.grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
    column-gap: var(--grid-mobile-horizontal-spacing);
    row-gap: var(--grid-mobile-vertical-spacing);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid--full-width {
    flex: 0 0 100%;
    max-width: 100%;
}

@media screen and (min-width: 990px) {
    .grid--full-width .grid__item {
        width: 100%;
        max-width: 100%;
    }
}

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

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

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

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

    .grid--peek.slider .grid__item:last-of-type {
        margin-right: 1.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media--overlay {
    background-color: rgba(var(--color-media-overlay), var(--color-media-overlay-opacity));
}


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

deferred-media {
    display: block;
}

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

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

}

.button,
.shopify-challenge__button,
.customer button, .login_overlay_conten .create_wrapper a,
button.shopify-payment-button__button--unbranded, .modal .recover_btn,
.shopify-payment-button__button {
    padding: 0.875rem 1rem;
}

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

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

.button,
.shopify-challenge__button,
.customer button, .login_overlay_conten .create_wrapper a,
.modal .recover_btn,
.shopify-payment-button__button {
    --color-button-text: var(--color-button-primary-color);
    --color-button: var(--color-button-primary-background);
    --color-button-border: var(--color-button-primary-border);

    --color-button-text-hover: var(--color-button-primary-color-hover);
    --color-button-hover: var(--color-button-primary-background-hover);
    --color-button-border-hover: var(--color-button-primary-border-hover);
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    /* text-decoration: underline !important; */
    border: 0;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--color-button-text);
    /* transition: box-shadow var(--duration-short) ease; */
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--color-button);
    border: 1px solid var(--color-button-border);
}


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

.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,
.shopify-payment-button__button:focus {
    outline: 0;
}

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

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

.button,
.button-label,
.shopify-challenge__button,
.customer button,
.shopify-payment-button__button {
    font-size: 0.875rem;
    line-height: calc(1 + 0.2 / var(--font-body-scale));
}

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

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

    font-weight: normal;
}

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


.button--hover-inherit {
    --color-button-text-hover: inherit;
    --color-button-hover: inherit;
    --color-button-border-hover: inherit;
}


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

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

/* Button - other */

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

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

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

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

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

/* Button - social share */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

/* Select */

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

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

/* Field */

.field {
    position: relative;
    width: 100%;
    display: flex;
    /* transition: box-shadow var(--duration-short) ease; */
    /* padding: 0 2rem; */
}


@media (min-width: 960px) {
    .field {
        padding: 0;
    }
}

.customer .field {
    display: flex;
}

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

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

.field__label,
.customer .field label,
.modal .field label {
    font-size: 1rem;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    /* left: calc(var(--inputs-border-width) + 2rem);
    top: calc(1rem + var(--inputs-border-width)); */
    margin-bottom: 0;
    pointer-events: none;
    position: absolute;
    transition: top var(--duration-default) ease,
    font-size var(--duration-default) ease;
    color: var(--color-input-label);
    line-height: 1.5;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label,
.modal .field input:focus ~ label,
.modal .field input:not(:placeholder-shown) ~ label,
.modal .field input:-webkit-autofill ~ label {
    font-size: 0.875rem;
    top: 0;
    background: rgb(var(--color-background));
    /* top: calc(var(--inputs-border-width) + 0.5rem); */
    /* left: calc(var(--inputs-border-width) + 2rem); */
}

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

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

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

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

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

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

/* Text area */

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

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

/* Form global */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* component-modal */

.modal {
    border-radius: 0 !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
    padding: 1.75rem 1.25rem !important;
}

.modal.password-modal {
    position: unset;
}

.modal__close-icon {
    position: absolute;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(var(--color-foreground));
    border: 1px solid var(--color-input-border-light);
    top: 0.625rem;
    right: 0.625rem;
}

.modal__close-icon .icon-close {
    width: 1.5rem;
    height: 1.5rem;
}

.close-modal {
    display: none !important;
}

.modal-title {
    font-size: 1.625rem;
    line-height: 0.92;
    text-transform: uppercase;
    margin: 0;
}

.modal .register_title_wrapper {
    margin-top: 0;
}

.modal-text {
    font-size: 0.875rem;
}

.modal__toggle {
    list-style-type: none;
}

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

.modal__toggle-close {
    display: none;
}

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

.modal__toggle-open {
    display: flex;
}

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

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

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

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

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

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

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

@media screen and (min-width: 960px) {
    .modal {
        width: 50% !important;
    }

    .modal-title {
        font-size: 1.875rem;
    }
}

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

.cart-count-bubble {
    position: absolute;
    background-color: var(--color-cart-bubble-background);
    color: var(--color-cart-bubble-text);
    height: 1.5625rem;
    width: 1.5625rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    left: 48%;
    top: -30%;
    line-height: calc(1 + 0.1 / var(--font-body-scale));
}

.cart-count-bubble-count {
    color: var(--color-cart-bubble-text);
    font-size: 0.75rem;
}

/* section-announcement-bar */
.announcement-bar {
    z-index: 4;
}

.announcement-bar {
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
    color: rgb(var(--color-foreground));
}

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

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

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

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

.announcement-bar__message {
    text-align: center;
    padding: 1rem 2rem;
    margin: 0;
}

/* section-header */
#header {
    z-index: 100;
    background-color: rgb(var(--color-background));
}

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

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

.shopify-section-header-hidden.menu-open {
    transform: translateY(0);
}

.shopify-section-header-no-sticky {
    position: inherit !important;
}

#header.animate {
    transition: transform 0.15s ease-out;
}

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

.header-wrapper--border-bottom {
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}

.header {
    display: grid;
    grid-template-areas: 'left-icon heading icons';
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: 3.75rem;
}

@media screen and (min-width: 990px) {
    .header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .header--has-menu:not(.header--middle-left) {
        padding-bottom: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 768px) {
    .header__heading {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

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

    .header__heading-link {
        margin-left: -0.75rem;
    }

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

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

.header--left-side {
    display: flex;
    align-items: center;
}

/* Header icons */
.header__icons {
    display: flex;
    grid-area: icons;
    justify-self: end;
    align-items: center;
    padding-bottom: 5px;
}

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

.header__icon {
    color: rgb(var(--color-foreground));
    flex-shrink: 0;
    margin: 0 0.75rem !important;
}

.header__icon.header__icon--cart {
    margin-right: 0 !important;
}

.header__icon span {
    height: 100%;
}

.header__icon::after {
    content: none;
}

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

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

.header__icon--search svg {
    width: 1.5rem;
    height: 1.5rem;
}

.header__icon,
.header__icon--cart .icon {
    height: 100%;
    width: 1.5rem;
    margin: 0 1rem;
}

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

.header__icon--cart .icon-cart-active {
    width: 1.5rem;
    height: 1.5rem;
}

@media screen and (max-width: 989px) {
    menu-drawer ~ .header__icons .header__icon--account {
        display: none;
    }
}

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

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

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

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

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

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

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

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

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

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

.header__search details {
    overflow: hidden;
}

details[open] > .search-modal {
    animation: animateSearchModalOpen 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    overflow: hidden;
}

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

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

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

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

.search-modal__content {
    display: flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    width: 100%;
    height: 3.125rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    position: relative;
    background-color: var(--color-background-nav);
}

.search-modal__content .search.search-modal__form {
    display: block;
}

.search-modal__content .search__button, .search-modal__content .field__label {
    display: none;
}

.search-modal__content .search__input.field__input {
    background-color: transparent;
    color: var(--color-secondary-text);
    font-size: 1rem;
    border: none;
}

.search-modal__content .search__input.field__input::placeholder {
    display: block;
    color: var(--color-secondary-text);
}

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

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

.search-modal__form {
    width: 100%;
}

.search-modal__close-button {
    position: absolute;
    right: 0.3rem;
    width: 3rem !important;
    height: 3rem !important;
}

.search-modal__close-button .icon-close {
    width: 1rem;
    height: 1rem;
}

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

@media screen and (min-width: 770px) {
    .search-modal__form {
        margin-bottom: 0.25rem;
        margin-right: 0.75rem;
    }
}

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

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

@keyframes animateSearchModalOpen {
    0% {
        left: 100%;
    }

    100% {
        left: 0;
    }
}

/* Header menu drawer */
.header .menu-drawer__menu-item {
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--border-color-light);
    font-size: 0.875rem;
}

.header .menu-drawer__menu li:last-of-type .menu-drawer__menu-item {
    border-bottom: 1px solid var(--border-color-light);
}

.header summary.menu-drawer__menu-item {
    padding-right: 1.25rem !important;
}

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

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

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

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

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

.header__inline-menu details[open] > .header__submenu {
    opacity: 1;
    transform: translateY(0);
    /* animation: animateMenuOpen var(--duration-default) linear;
    animation-fill-mode: forwards; */
    z-index: 1;
}

@media screen and (min-width: 750px) {
    .header .menu-drawer {
        width: 100%;
    }
}


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

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

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

.header__inline-menu > li:hover .header__submenu,
.header__inline-menu > li:focus .header__submenu {
    display: block !important;
}

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

    .header__inline-menu > .list-menu--inline {
        flex-wrap: nowrap;
        height: 100%;
    }

    .header__inline-menu .list-menu > li {
        display: flex;
        align-items: stretch;
    }

    .header__inline-menu details, .header__inline-menu details > .header__menu-item {
        height: 100%;
    }

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

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

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

.header__menu {
    padding: 0 1rem;
}

.header__menu-item {
    padding: 0.5rem 10px;
    text-decoration: none;
    color: rgba(var(--color-foreground), 1);
    letter-spacing: 2px;
    font-size: 0.875rem;
}

.header__submenu .header__menu-item {
    text-decoration: none;
}

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

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


.header__inline-menu > .list-menu > li:hover {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}


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

.header__active-menu-item {
    color: rgb(var(--color-foreground));
    text-decoration: underline;
}


.header__submenu.list-menu--disclosure {
    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 34px;
}

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

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

.header__submenu .header__menu-item {
    justify-content: space-between;
    padding: 0.3rem 1.4rem;
    letter-spacing: 0;
}

.header__submenu .header__submenu-heading {
    letter-spacing: 2px;
}

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

.header__submenu .header__menu-item:hover,
.header__submenu .header__menu-item:focus {
    text-decoration: underline;
}


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

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

.header__submenu {
    display: flex;
    flex-wrap: wrap;
}

details-disclosure > details {
    position: relative;
}

.header .list-menu details-disclosure > details {
    position: unset;
}

.list-menu--disclosure.header__submenu {
    width: 100%;
    left: 0 !important;
    top: 100%;
}

.header__submenu-content {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

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

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

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

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

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

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

.badge--text {
    background-color: transparent !important;
}


.badge--fill {

}

.badge--sale {
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-base-text));
    font-weight: bold;
}

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

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

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

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

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

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

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

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

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

    .content-container--full-width-mobile:after {
        display: none;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


.custom__image {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
}

.image_container {
    padding-top: 55px;
    padding-bottom: 35px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.text_with_image_container {
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 480px;
    width: 50%;
    float: left;
}

picture.container___246kH {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.text_stream {
    opacity: 1;
    transition: opacity .2s cubic-bezier(0.3, 0, 0.45, 1);
    text-align: center;
    justify-content: flex-end;
    padding-bottom: 30px;
    display: flex;
    flex-flow: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding: 0 15px 20px;
    margin-top: 15px;
}

.title___1RkKz.withhtml___2qjxa {

    margin-bottom: 20px;
    font-size: 1.3rem;
    line-height: 18px;
    letter-spacing: .9px;
    font-style: normal;
    font-weight: var(--font-heading-weight);
    text-transform: uppercase;
    margin-top: 0;
}

p.summary___15lGL {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 22px;
    margin-top: 0;
}

.text_stream a span {
    font-size: 0.9rem;
    font-weight: var(--font-heading-weight);
}

.text_stream a span:hover {
    text-decoration: none;
}

ul.workout_links {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

ul.workout_links li {
    padding: 15px 20px;
}

ul.workout_links li a {
    text-decoration: none;
}

.content_item {
    text-align: center;
}

.half_img_container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.one_half_conten {
    width: 50%;
    padding: 0 12px;
    height: 504px;
    position: relative;
    overflow: hidden;
    float: left;
}

.box-colums .page-width {
    padding: 0 1rem;
}

.box-colums .page-width {
    padding: 0 1rem;
}

.second_half_conten {
    width: 33.33%;
    padding: 0 12px;
    height: 504px;
    position: relative;
    overflow: hidden;
    float: left;
}

.workout_img_overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workout-colums {
    position: relative;
    width: 100%;
}

.tile-wrapper___3r-F1 {
    display: block;
    width: 100%;
    height: 100%;
}

.workout_img_overlay {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.wallpaperWrapper___-q6gq {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
}

.container___246kH {
    height: 100%;
    width: 100%;
}

.workout_text_overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta___1ls_5 a {
    font-size: 0.875rem;
    font-weight: var(--font-heading-weight);
}

.workout-colums {
    padding-top: 20px;
}

.box-colums {
    padding-top: 30px;
    margin-top: 20px;
}

.second_half_conten .workout_text_overlay {
    bottom: 10px;
}

.workout_text_overlay a {
    padding: 9px 17px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: var(--font-heading-weight);
}


html {
    scroll-behavior: smooth;
}

.video-text-conten {
    text-align: center;
    position: relative;
    padding: 30px 0;
}

.oragnice_video_one {
    margin-bottom: -9px;
}

.video-text-conten h2 {
    padding: 30px 0;
}

.inline_text_wrapper {
    width: 60%;
    margin: auto;
    text-align: center;
}

.gl-heading--m {
    font-size: 1.9rem;
    line-height: 28px;
    margin: 10px 0;
    /* color: white; */
}

.gl-heading--s {
    font-size: 1.1rem;
    line-height: 24px;
    margin: 10px 0;
    /* color: white; */
}

.gl-heading--l {
    font-size: 1.1rem;
    line-height: 24px;
    margin: 10px 0;
}

.text-section-conten {
    padding: 50px 0;

}

.video-component-wrapper___2BSGde {
    position: relative;
}

.energy-video-text-conten {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: end;
    align-items: center;
}

.poster_conten {
    width: 33.33%;
}

.video-title {
    line-height: 38px;
    margin: 10px 0;
}

.cta___2bw7D {
    text-align: start;
}

.dynamice_btn_one {
    text-align: start;
}

.enargy_sometext {
    font-size: 1.1rem;
    line-height: 24px;
    margin: 0 0 20px 0;
}

.enargy-btn {
    text-decoration: none;
    padding: 11px 17px;
    font-size: 0.9rem;
    font-weight: var(--font-heading-weight);
}


.grow_text {
    padding: 0 15px;
}

.cycled-video-text-conten {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: end;
}

.poster_conten_new {
    padding-bottom: 50px;
    padding-left: 35px;
}


.enargy_video_mobile {
    display: none;
}

.wallpaperWrapper___-q9sq.bg-video___4-QWO {
    width: 100%;
}

.wallpaperWrapper___-q9sq img {
    width: 100%;
}

.bg-video___4-QWO.layer_video___5PYSY {
    position: relative;
    width: 100%;
}

.content___2FKWs.body-position-left___2OJR0 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.content___2FKWs.body-position-left___2OJR0 {
    padding: 40px 15px;
}

.poster-content___7-yN {
    width: 33.3333%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title___2dh_z.gl-heading--l {
    font-size: 2.6rem;
    letter-spacing: 0;
    line-height: 38px;
    position: relative;
    clear: both;
    text-shadow: none;
    margin: 0 0 10px 0;
}

.summary___3Or3O.withhtml___3UP6V {
    color: white;
    font-size: 1.1rem;
    line-height: 24px;
    letter-spacing: 0;
}

.play-wrapper-icone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play_video_icone {
    margin: 0;
    cursor: pointer;
}

.embedded-video {
    display: none;
    position: relative;
}

.iconice {
    overflow: hidden;
}

.close_wrapper {
    position: fixed;
    top: 10px;
    right: 25px;
    /* color: white; */
    font-size: 2.8rem;
    z-index: 5;
}

.close_wrapper_second {
    position: absolute;
    top: 10px;
    right: 25px;
    /* color: white; */
    font-size: 1.45rem;
}

.teaser-media___22wQp {
    width: 25%;
    margin: 0 5px;
    padding: 0 5px;
}

.gl-carousel__content {
    display: flex;
}

.older-imge-conten img {
    width: 100%;
}

.articals-wrapper {
    padding: 55px 15px 0;
}

.heading-olders {
    padding-bottom: 20px;
}

.heading-olders h2 {
    margin: 0;
}

.heading-olders h2 {
    line-height: 28px;
    margin: 0 0 15px 0;
}

.withhtml {
    margin: 0;
    line-height: 22px;
}

.summary___3soIS.gl-body {
    margin: 0;
    font-size: 1rem;
    line-height: 22px;
    /* color: black; */
    padding-top: 5px;
}

.component-wrapper___2BSG0 {
    padding-bottom: 2.5rem;
}

.has-bg___RmoUc.banner__content {
    justify-content: center;
}

.heading-olders p {
    margin: 0;
    line-height: 22px;
}

.newest-imge-conten img {
    width: 100%;
}

.newest-imge-conten {
    position: relative;
}

.newest_video_container {
    position: relative;
    display: none;
}

.component-wrapper___2BSG0 .slick-track {
    margin: 0;
}

.wallpaperWrapper___mobile {
    display: none;
}

.wallpaperWrapper___mobile img {
    width: 100%;
}

.summary___1Xtln_row {
    display: flex;
    width: 100%;
    justify-content: center;
}

.shine-wrapper {
    width: 60%;
    text-align: center;
}

.video-popup-heading {
    margin: 10px 0;
    line-height: 28px;
}

.video-popup-text {
    margin: 10px 0;
    line-height: 24px;
}

.popup-btn {
    margin-bottom: inherit;
    display: inline-block;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: var(--font-heading-weight);
    cursor: pointer;
}

.component-wrapper___2BkSO {
    padding: 2.5625rem 0 3.125rem 0;
}

.simple_target-video {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
}

.terminal-video {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
}

.embedded-popup-video {
    display: none;
}

.gl-carousel__content-new {
    display: flex;
}

.summary___3soIS.gl-body-one {
    display: none;
}


.youtube_arrow {
    width: 73px;
}

.workout_tab.active {
    border-bottom: 2px solid;
}

.workout_tab.active a {
    color: rgb(var(--color-foreground));
    font-weight: var(--font-heading-weight);
}

.tablinks.active {
    border-bottom: 2px solid;
}

.card-product__color-counter p {
    margin: -0.15rem 0 0 0;
    font-size: 0.8rem;
    color: rgb(var(--color-secondary-text));
}

.caption-with-letter-spacing.light {
    text-transform: capitalize;
}

.shopify-challenge__container .shopify-challenge__button {
    display: block;
    margin: 0 auto;
    /* color: white; */
    font-size: 1rem;
    font-weight: var(--font-heading-weight);
    margin-top: 30px;
}

/*   term & conditions */
.page_conatiner_defolt .main-page-title {
    display: none;
}

.page_conatiner_defolt {
    width: 100%;
    max-width: 100%;
}

.term-policy {
    display: flex;
    justify-content: end;
    flex-direction: column;
    width: 80%;
}

.conditions_value {
    width: 100%;
    display: flex;
}

.term_details_page {
    width: 80%;
}

.back-page {
    font-size: 1rem;
}

.gl-heading.gl-heading--l {
    margin: 10px 0;
    font-family: var(--font-body-family);
    font-style: normal;
    font-weight: var(--font-heading-weight);
    font-size: 2.6rem;
    line-height: 38px;
}

.sub_text_center h6 {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
    font-weight: var(--font-heading-weight);
}

.sub_text_center p {
    margin: 0 0 20px 0;
    font-size: 0.9rem;
    line-height: 20px;
    font-family: arial;
    font-weight: var(--font-body-weight);
}

.sub_text_center {
    margin-top: 30px;
    padding-top: 20px;
    width: 87%;
}

a.link_editer {
    padding-bottom: 5px;
}

.gl-cta.gl-cta--tertiary {
    font-size: 0.9rem;
    line-height: 20px;
    font-weight: var(--font-heading-weight);
}

.cta___2bw7D {
    margin-bottom: 12px;
}

.bottom_conten_text {
    padding-top: 30px;
    margin-top: 30px;
}

.adress_with_btn {
    display: flex;
    padding: 0 10px;
}

.btn_container_text {
    width: 50%;
    padding: 10px;
}

.defolt_adress_conten {
    width: 50%;
    padding: 15px;
}

.dynamice_btn_one {
    padding-bottom: 30px;
}

.dynamice_btn_one a {
    /* color: #fff!important; */
    /* background: black; */
    font-size: 0.875rem !important;
    line-height: 20px !important;
    font-weight: var(--font-heading-weight) !important;
    padding: 12px 18px !important;
    text-decoration: none;
}

.dynamice_btn_one a:hover {
    /* background: #244496; */
}

.last-cloumn-btn a {
    font-size: 0.875rem;
    /* color: black !important; */
    font-weight: var(--font-heading-weight) !important;
}

.last-cloumn-btn a:hover {
    /* background: black; */
    color: white !important;
}

/*   privacy policy */
.privacy-policy {
    display: flex;
    justify-content: end;
    flex-direction: column;
    width: 80%;
}

.privacy-policy .conditions_value {
    display: block;
}

.privacy-policy .term_details_page {
    width: 100%;
}

.privacy-policy .sub_text_center {
    width: 70%;
}

.banner__buttons-grid--one-mobile a.button {
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    font-weight: var(--font-heading-weight);
}

.banner__buttons.banner__buttons-grid--one-mobile {
    margin: 0;
}

.banner.media {
    margin-top: 25px;
}

.workout_text_overlay a {
    padding: 7px 15px;
    font-size: 0.875rem;
    font-weight: var(--font-heading-weight);
    text-decoration: none;
}

section.conten_links {
    margin-top: 30px;
}

.shopify-policy__container {
    width: 100%;
    max-width: var(--page-width);
}

.shopify-policy__title {
    display: none;
}

.shopify-policy__body {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.shopify-policy__body h2 {
    font-size: 2.25rem;
}

.shopify-policy__body p, .shopify-policy__body ul {
    font-size: 0.875rem;
}

.shopify-policy__body p a {
    font-size: 1rem;
}

@media (min-width: 1280px) {
    .shopify-policy__body {
        max-width: 70%;
    }

    .shopify-policy__body h2 {
        font-size: 2.625rem;
    }
}

.unice-re-text {
    font-size: 0.875rem;
    font-weight: var(--font-heading-weight);
}

.no_text {
    padding-left: 0 !important;
    list-style: none;
    margin: 0 0 22px 0;
}

.no_text li {
    font-size: 0.875rem;
}

.your_link {
    /* color: red !important; */
    font-size: 1rem;
}

.refond-component {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.template-search__header h1 {
    margin-top: 0;
    /* font-size: 40px; */
    /* color: black; */
    /* font-family: 'Neue Plak Wide';   */
}

.template-search__search .field__label {
    display: none;
}


@media screen and (max-width: 749px) {
    .text_with_image_container {
        width: 100%;
    }

    .banner__box .f-heading {
        font-size: 1.5rem;
    }

    .one_half_conten {
        width: 100%;
    }

    .second_half_conten {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .oragnice_video_one {
        display: none;
    }

    .video-title {
        font-size: 1.5rem;
        line-height: 24px;
        /* color: #fff; */
        margin: 0;
        text-align: left;
        padding: 0 12px;
    }

    .video-text-conten {
        padding: 21px 0;
    }

    .inline_text_wrapper {
        width: 100%;
        padding: 0 15px;
        text-align: left;
    }

    .text-section-conten {
        padding: 20px 0;
    }

    h2.gl-heading--m {
        font-size: 1.5rem;
        line-height: 24px;
    }

    .enargy_video_one {
        display: none;
    }

    .enargy_video_mobile {
        display: block;
    }

    .energy-video-text-conten {
        justify-content: start;
        align-items: end;
        bottom: 35px;
    }

    .poster_conten {
        width: 100%;
        padding: 0 13px;
    }

    .poster_conten img {
        width: 60%;
    }

    .video-title.new_g5_terminal {
        font-size: 2.1rem;
        line-height: 32px;
        padding: 0;
        margin: 10px 0;
    }

    .poster_conten_new {
        padding-bottom: 35px;
        padding-left: 20px;
    }

    .poster_conten_new img {
        width: 50%;
    }

    .has-bg___RmoUc.banner__content {
        top: 10%;
    }

    .wallpaperWrapper___mobile {
        display: block;
    }

    .wallpaperWrapper___-q9sq.bg-video___4-QWO {
        display: none;
    }

    .title___2dh_z.gl-heading--l {
        font-size: 1.6rem;
        line-height: 33px;
    }

    .poster-content___7-yN {
        width: 100%;
        justify-content: end;
    }

    .component-wrapper___2BkSO {
        padding: 0px 0 20px 0;
    }

    .shine-wrapper {
        width: 90%;
        text-align: left;
    }

    .video-popup-heading {
        font-size: 1.1rem !important;
        line-height: 24px;
    }

    .teaser-media___22wQp {
        width: 100%;
    }

    .gl-carousel__content-new {
        display: flex;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .summary___3soIS.gl-body-one {
        color: rgb(var(--color-foreground));
        font-size: 0.8rem;
        display: block;
    }

    .summary___3soIS.gl-body {
        display: none;
    }

    .term-policy {
        padding: 0;
        width: 100%;
    }

    .conditions_value {
        display: block;
    }

    .term_details_page {
        width: 100%;
    }

    .gl-heading.gl-heading--l {
        font-size: 2.3rem;
        font-weight: var(--font-heading-weight);
    }

    .sub_text_center {
        width: 100%;
    }

    .content___1jDXz {
        width: 100%;
    }

    .adress_with_btn {
        display: block;
    }

    .btn_container_text {
        width: 100%;
    }

    .defolt_adress_conten {
        width: 100%;
    }

    .dynamice_btn_one a {
        font-size: 0.8rem !important;
    }

    .privacy-policy {
        width: 100%;
        padding: 0;
    }

    .privacy-policy .sub_text_center {
        width: 100%;
    }

    .template-search__header h1 {
        font-size: 2.3rem;
    }
}

.letter-spacing {
    letter-spacing: 2px;
}


.new-side-menu-link {
    list-style: none;
    display: inline-block;
    margin: 0;
    transition: background-color var(--duration-short) ease;
    line-height: 1;
}

.new-side-menu-link:hover {
    background-color: rgba(var(--color-foreground), 0.1);
}

.new-side-menu-link a {
    padding: 10px;
    display: inline-block;
}

.new-side-menu-link:last-child a {
    padding-right: 5px;
}

.new-side-menu-link a, .new-side-menu-link .footer__country-popup--label {
    font-size: 0.75rem;
    text-decoration: none;
    align-items: center;
    display: flex;
}

.new-side-menu-outer {
    /* text-align: right; */
    display: flex;
    justify-content: flex-end;
}

.ly-custom-1000, .ly-custom-0 {
    display: flex;
    align-items: center;
}

.ly-custom-0 {
    padding-top: 0.25rem;
}

.ly-custom-dropdown-current {
    background: url(/cdn/shop/files/global-grid-logo-svgrepo-com.svg?v=1663689035) no-repeat !important;
    width: 1.25rem;
}

.ly-custom-dropdown-current-inner {
    opacity: 0;
}

.ly-custom-dropdown-current .ly-custom-dropdown-list-element {
    padding: 0 !important;
}

.new-side-menu-outer .new-side-menu-link > * {
    color: inherit;
}

.header__menu-item.list-menu__item a {
    color: inherit;
    text-decoration: none;
}


@media only screen and (max-width: 769px) {
    .new-side-manu-outer-class {
        display: none;
    }

    .header.header--has-menu {
        padding: 0 1rem;
    }

}

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

.product-grid .product-item .card-wrapper {
    border: 1px solid rgb(var(--color-background))
}

@media only screen and (max-width: 990px) {
    .new-side-manu-outer-class {
        display: none;
    }

    .new-side-menu-outer {
        flex-direction: column;
        padding: 0 !important;
    }

    .new-side-menu-outer a {
        text-transform: capitalize;
        font-size: 0.875rem;
        padding: 0.875rem 1.25rem;
    }

    /* .header.header--middle-left.header--has-menu {*/
    /*  padding: 10px 2rem 0;*/
    /*}*/
}

.product-grid .product-item .card-wrapper {
    background-color: rgb(var(--color-background));
}

.product-grid .product-item:hover .card-wrapper {
    height: auto;
    z-index: 2;
    min-height: 100%;
    border-color: rgb(var(--color-base-text));
}


.diss_links_conten .row_diss {
    display: flex;
    justify-content: space-between;
}

.diss_links_conten .row_diss ul {
    list-style: none;
    width: calc(100% / 3);
    padding: 0 1rem;
    overflow: hidden;
}

.diss_links_conten .row_diss ul:first-of-type {
    padding-left: 0;
}

.diss_links_conten .row_diss li {
    margin-bottom: 0.625rem;
}

.diss_links_conten .row_diss li:last-of-type {
    margin-bottom: 0;
}

.diss_links_conten .row_diss p,
.diss_links_conten .row_diss p * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.875rem;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .diss_links_conten .row_diss ul {
        -moz-columns: 2;
        columns: 2;
        -moz-column-fill: balance;
        column-fill: balance;
    }
}

/* Mailchip Form */
.mailchimp-form h2 {
    margin-top: 0;
}

.mailchimp-form strong {
    font-size: 1.125rem;
    line-height: 1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
}

.mailchimp-form ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.mailchimp-form ul li {
    position: relative;
    display: flex !important;
}

.mailchimp-form .mc-field-group {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 1.25rem;
}

.mailchimp-form input[type='text'],
.mailchimp-form input[type='email'],
.mailchimp-form select {
    appearance: none;
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 0.875rem 1rem;
    border-radius: var(--inputs-radius);
    border: 1px solid var(--color-input-border);
    position: relative;
}

.mailchimp-form label {
    font-size: 1rem;
    left: 0.75rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    margin-bottom: 0;
    pointer-events: none;
    color: var(--color-input-label);
}

.mailchimp-form input[type="checkbox"] ~ label {
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-input-text) !important;
}

.mailchimp-form ul input[type='radio'] ~ label {
    margin-left: 2.25rem;
    margin-right: 1.25rem;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-input-text) !important;
}

.mailchimp-form input[type='radio'] {
    width: 0;
    height: 0;
    margin: 0;
}

.mailchimp-form input[type='radio']:after {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    position: relative;
    background-color: var(--color-link-text-hover);
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid var(--color-input-border);
    transition: all 0.1s ease-in-out;
}

.mailchimp-form input[type='radio']:checked:after {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    position: relative;
    background-color: var(--color-link-text-hover);
    content: '';
    display: inline-block;
    visibility: visible;
    border: 0.5rem solid var(--color-link-background-hover);
}

.mailchimp-form input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0;
}

.mailchimp-form input[type="checkbox"] + label::before {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--color-input-border);
    position: absolute;
    left: 0;
    top: 0;
}

.mailchimp-form input[type="checkbox"]:checked + label::before {
    content: "\2713";
    font-size: 1.125rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-button-primary-background);
    color: rgb(var(--color-button-text));
    display: flex;
    align-items: center;
    justify-content: center;
}

.mailchimp-form input.birthday {
    width: auto;
}

.mailchimp-form .indicates-required, .mailchimp-form .small-meta {
    display: none;
}

/* Hulk Form style */

.hulk-powered-wrapper {
    display: none;
}

#w0qmOAXlhjDSN-sYWQfPbQ {
    max-width: 900px;
}

.pxFormGenerator .form-control {
    line-height: calc(1 + .5 / var(--font-body-scale));
    padding: 0.875rem 1rem;
    height: auto;
}

.has-float-label label, .has-float-label > span {
    position: absolute;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    top: 0;
    left: 2.5rem;
    z-index: 3;
    line-height: 1;
    padding: 0 0.25rem;
    transform: translateY(-50%);
    background: #fff;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + * {
    font-size: 1rem;
    opacity: 1;
    top: calc(50% - 5px);
    line-height: 1;
    font-weight: 400;
    transform: translateY(-50%);
    margin: 0;
    left: 2.5rem;
    padding: 0 0.25rem;
    background: #fff;
}

.file label {
    color: var(--color-button-primary-color) !important;
    background: var(--color-button-primary-background) !important;
    border-radius: 0;
    width: auto;
    font-size: 1rem;
    border: 1px solid var(--color-button-primary-background);
    padding: 0.5rem 2rem;
}

/*Updated*/

/*Filter bar*/

.filter-menu {
    padding: 0 0 6.25rem 0 !important;
}

.filter-group_button {
    position: fixed;
    bottom: 0;
    padding: 1.5rem;
    width: 100%;
    border-top: 1px solid #f3f3f3;
    background: #fff;
    left: 0;
}

.filter-group_button .pt-apply {
    width: 100%;
    border: none;
    font-size: 0.875rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-group-sort-orders .scroll-content,
.filter-group-size .scroll-content {
    padding: 0;
}

.filter-group-sort-orders ul li {
    font-size: 0.875rem;
    min-height: 50px;
    max-height: 70px;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    text-transform: capitalize;
    padding-left: 1rem;
    display: flex !important;
}

.filter-group-sort-orders ul li:last-of-type {
    border-bottom: none;
}

.filter-group-colour ul,
.filter-group-size ul {
    display: flex !important;
    flex-wrap: wrap;
}

.filter-group-colour ul li {
    flex-basis: 50%;
}

.pt-display-smallbox ul li {
    flex-basis: 25%;
    margin: 0;
}

.filter-group .pt-apply {
    position: fixed;
    width: calc(100% - 2.5rem);
    bottom: 2.5rem;
}

.filter-group h4:after {
    content: '' !important;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
    border-top: solid 5px #000;
    height: 0;
    width: 0;
}

.filter-group.pt-group-expanded h4:after {
    transform: rotate(180deg);
}
