/*!
 * Theme Name: Axalta Calendars
 * Author: Sam Roberts
 * Author URI: https://axaltacalendars.com/
 * Version: 3.1
*/
:root {
    --color-white: #ffffff;
    --color-black: hsl(0, 0%, 0);
    --color-grey-1: hsl(0, 0%, 10%);
    --color-grey-2: hsl(0, 0%, 20%);
    --color-grey-3: hsl(0, 0%, 30%);
    --color-grey-4: hsl(0, 0%, 40%);
    --color-grey-5: hsl(0, 0%, 70%);
    --color-grey-6: hsl(0, 0%, 90%);
    --color-red: hsl(16, 89%, 42%);
    --color-brand-red: #c82127;
    --color-red-lt: hsl(354, 76%, 54%);
    --color-red-x-lt: hsl(354, 66%, 60%);
    --color-red-dk: hsl(354, 76%, 28%);
    --color-body: var(--color-white);
    --color-divider: var(--color-grey-6);
    --color-headings: var(--color-grey-4);
    --color-text: var(--color-grey-3);
    --color-subtext: var(--color-grey-5);
    --color-link: var(--color-brand-red);
    --color-link-visited: var(--color-red-lt);
    --color-link-hover: var(--color-red-dk);
    --color-link-focus: var(--color-red-dk);
    --color-link-active: var(--color-red-lt);
    --color-input-bg: var(--color-white);
    --color-input-text: var(--color-subtext);
    --color-input-border: var(--color-grey-5);
    --color-input-text-focus: var(--color-text);
    --color-input-bg-focus: var(--color-white);
    --color-input-border-focus: var(--color-grey-4);
    --color-outline-btn: var(--color-brand-red);
    --color-outline-btn-hover: var(--color-red-dk);
    --color-btn-bg: var(--color-brand-red);
    --color-btn-bg-hover: var(--color-red-x-lt);
    --color-btn-text: var(--color-white);
    --color-btn-secondary-bg: var(--color-grey-4);
    --color-btn-secondary-bg-hover: var(--color-grey-3);
}
:root {
    --fluid-min-width: 320;
    --fluid-max-width: 1140;
    --fluid-min-size: 18;
    --fluid-max-size: 21;
    --fluid-min-ratio: 1.2;
    --fluid-max-ratio: 1.25;
    --fluid-screen: 100vw;
    --fluid-bp: calc(
        (var(--fluid-screen) - ((var(--fluid-min-width) / 16) * 1rem)) /
            ((var(--fluid-max-width) / 16) - (var(--fluid-min-width) / 16))
    );
}
@media screen and (min-width: 1140px) {
    :root {
        --fluid-screen: calc(var(--fluid-max-width) * 1px);
    }
}
:root {
    --fluid-max-negative: (1 / var(--fluid-max-ratio) / var(--fluid-max-ratio));
    --fluid-min-negative: (1 / var(--fluid-min-ratio) / var(--fluid-min-ratio));
    --fluid-min-scale--2: var(--fluid-min-scale--1) * var(--fluid-min-ratio) * var(--fluid-min-negative);
    --fluid-max-scale--2: var(--fluid-max-scale--1) * var(--fluid-max-ratio) * var(--fluid-max-negative);
    --fluid-min-size--2: (var(--fluid-min-size) * var(--fluid-min-scale--2))/16;
    --fluid-max-size--2: (var(--fluid-max-size) * var(--fluid-max-scale--2))/16;
    --step--2: calc(
        ((var(--fluid-min-size--2) * 1rem) + (var(--fluid-max-size--2) - var(--fluid-min-size--2)) * var(--fluid-bp))
    );
    --fluid-min-scale--1: var(--fluid-min-ratio) * var(--fluid-min-negative);
    --fluid-max-scale--1: var(--fluid-max-ratio) * var(--fluid-max-negative);
    --fluid-min-size--1: (var(--fluid-min-size) * var(--fluid-min-scale--1))/16;
    --fluid-max-size--1: (var(--fluid-max-size) * var(--fluid-max-scale--1))/16;
    --step--1: calc(
        ((var(--fluid-min-size--1) * 1rem) + (var(--fluid-max-size--1) - var(--fluid-min-size--1)) * var(--fluid-bp))
    );
    --fluid-min-scale-0: var(--fluid-min-ratio);
    --fluid-max-scale-0: var(--fluid-max-ratio);
    --fluid-min-size-0: (var(--fluid-min-size))/16;
    --fluid-max-size-0: (var(--fluid-max-size))/16;
    --step-0: calc(
        ((var(--fluid-min-size-0) * 1rem) + (var(--fluid-max-size-0) - var(--fluid-min-size-0)) * var(--fluid-bp))
    );
    --fluid-min-scale-1: var(--fluid-min-scale-0) * var(--fluid-min-ratio);
    --fluid-max-scale-1: var(--fluid-max-scale-0) * var(--fluid-max-ratio);
    --fluid-min-size-1: (var(--fluid-min-size) * var(--fluid-min-scale-0))/16;
    --fluid-max-size-1: (var(--fluid-max-size) * var(--fluid-max-scale-0))/16;
    --step-1: calc(
        ((var(--fluid-min-size-1) * 1rem) + (var(--fluid-max-size-1) - var(--fluid-min-size-1)) * var(--fluid-bp))
    );
    --fluid-min-scale-2: var(--fluid-min-scale-1) * var(--fluid-min-ratio);
    --fluid-max-scale-2: var(--fluid-max-scale-1) * var(--fluid-max-ratio);
    --fluid-min-size-2: (var(--fluid-min-size) * var(--fluid-min-scale-1))/16;
    --fluid-max-size-2: (var(--fluid-max-size) * var(--fluid-max-scale-1))/16;
    --step-2: calc(
        ((var(--fluid-min-size-2) * 1rem) + (var(--fluid-max-size-2) - var(--fluid-min-size-2)) * var(--fluid-bp))
    );
    --fluid-min-scale-3: var(--fluid-min-scale-2) * var(--fluid-min-ratio);
    --fluid-max-scale-3: var(--fluid-max-scale-2) * var(--fluid-max-ratio);
    --fluid-min-size-3: (var(--fluid-min-size) * var(--fluid-min-scale-2))/16;
    --fluid-max-size-3: (var(--fluid-max-size) * var(--fluid-max-scale-2))/16;
    --step-3: calc(
        ((var(--fluid-min-size-3) * 1rem) + (var(--fluid-max-size-3) - var(--fluid-min-size-3)) * var(--fluid-bp))
    );
    --fluid-min-scale-4: var(--fluid-min-scale-3) * var(--fluid-min-ratio);
    --fluid-max-scale-4: var(--fluid-max-scale-3) * var(--fluid-max-ratio);
    --fluid-min-size-4: (var(--fluid-min-size) * var(--fluid-min-scale-3))/16;
    --fluid-max-size-4: (var(--fluid-max-size) * var(--fluid-max-scale-3))/16;
    --step-4: calc(
        ((var(--fluid-min-size-4) * 1rem) + (var(--fluid-max-size-4) - var(--fluid-min-size-4)) * var(--fluid-bp))
    );
    --fluid-min-scale-5: var(--fluid-min-scale-4) * var(--fluid-min-ratio);
    --fluid-max-scale-5: var(--fluid-max-scale-4) * var(--fluid-max-ratio);
    --fluid-min-size-5: (var(--fluid-min-size) * var(--fluid-min-scale-4))/16;
    --fluid-max-size-5: (var(--fluid-max-size) * var(--fluid-max-scale-4))/16;
    --step-5: calc(
        ((var(--fluid-min-size-5) * 1rem) + (var(--fluid-max-size-5) - var(--fluid-min-size-5)) * var(--fluid-bp))
    );
}
:root {
    --switcher-measure: 30rem;
    --switcher-space: 1rem;
    --site-gutter: 2.5rem;
    --heading-font: neo-sans, Helvetica, Arial, sans-serif;
    --copy-font: neo-sans, Helvetica, Arial, sans-serif;
    --weight-light: 400;
    --weight-normal: 400;
    --weight-bold: 500;
    --line-height-tight: 1.25;
    --line-height-base: 1.55;
    --line-height-loose: 1.75;
    --size-copy-small: 0.84375rem;
    --size-copy-base: 1.03125rem;
    --size-copy-large: 1.125rem;
    --size-copy-x-large: 1.21875rem;
    --size-h6: 1.125rem;
    --size-h5: 1.21875rem;
    --size-h4: 1.40625rem;
    --size-h3: 1.6875rem;
    --size-h2: 1.96875rem;
    --size-h1: 3.09375rem;
    --space: var(--size-copy-base);
    --space-half: calc(var(--space) * 0.5);
    --space-quarter: calc(var(--space) * 0.25);
    --space-threequarter: calc(var(--space) * 0.75);
    --space-mid: calc(var(--space) * 1.5);
    --space-double: calc(var(--space) * 2);
    --space-landmark: calc(var(--space) * 4);
    --border-radius: 0;
}
@media screen and (max-width: 768px) {
    :root {
        --size-copy-small: 0.75rem;
        --size-copy-base: 0.9375rem;
        --size-copy-large: 1.03125rem;
        --size-copy-x-large: 1.125rem;
        --size-h6: 1.03125rem;
        --size-h5: 1.125rem;
        --size-h4: 1.3125rem;
        --size-h3: 1.59375rem;
        --size-h2: 1.875rem;
        --size-h1: 2.53125rem;
    }
}
@media screen and (max-width: 468px) {
    :root {
        --size-copy-small: 0.75rem;
        --size-copy-base: 0.9375rem;
        --size-copy-large: 1.03125rem;
        --size-copy-x-large: 1.125rem;
        --size-h6: 0.9375rem;
        --size-h5: 1.03125rem;
        --size-h4: 1.125rem;
        --size-h3: 1.3125rem;
        --size-h2: 1.5rem;
        --size-h1: 1.875rem;
    }
}
*,
::after,
::before {
    box-sizing: border-box;
}
ol[class],
ul[class] {
    padding: 0;
}
blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
p {
    margin: 0;
}
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: var(--line-height-base);
}
ol[class],
ul[class] {
    list-style: none;
}
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}
img {
    max-width: 100%;
    display: block;
}
button,
input,
select,
textarea {
    font: inherit;
}
@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0s !important;
        animation-duration: 0s !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}
html {
    min-height: 100%;
    font-family: var(--copy-font);
    font-weight: var(--weight-normal);
    line-height: var(--line-height-base);
    background-color: var(--color-body);
    color: var(--color-text);
}
body {
    height: 100%;
    font-size: var(--size-copy-base);
}
.cart_totals h2,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.woocommerce-additional-fields h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.5em;
    font-family: var(--heading-font);
    font-weight: var(--weight-normal);
    line-height: var(--line-height-tight);
    color: var(--color-brand-red);
}
.h1,
h1 {
    font-size: var(--size-h1);
}
.h2,
h2 {
    font-size: var(--size-h2);
}
.h3,
h3 {
    font-size: var(--size-h3);
}
.cart_totals h2,
.h4,
.woocommerce-additional-fields h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
h4 {
    font-size: var(--size-h4);
}
.h5,
h5 {
    font-size: var(--size-h5);
}
.h6,
h6 {
    font-size: var(--size-h6);
}
p {
    margin: 0 0 1.55em;
    font-weight: var(--weight-light);
}
b,
strong {
    font-weight: var(--weight-bold);
}
ins {
    text-decoration: none;
}
del {
    color: var(--color-grey-5);
}
hr {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-divider);
    border: 0;
    margin: var(--space-mid) 0;
    padding: 0;
}
a {
    color: var(--color-link);
    text-decoration: none;
}
a:hover {
    color: var(--color-link-hover);
}
ol:not([class]),
ul:not([class]) {
    margin: 0 0 1.55em;
    padding: 0;
    font-weight: var(--weight-light);
}
ul:not([class]) {
    list-style: none;
}
ul:not([class]) li:before {
    display: inline-block;
    margin-right: 1ch;
    content: "-";
}
dl {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    -webkit-column-gap: var(--space);
    -moz-column-gap: var(--space);
    column-gap: var(--space);
}
dt {
    grid-column: 1 / span 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-subtext);
    white-space: nowrap;
}
dd {
    grid-column: 2 / span 1;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
svg path {
    fill: currentColor;
}
table {
    width: 100%;
}
table img {
    max-width: 5rem;
    max-height: 5rem;
}
td,
th {
    padding: var(--space-threequarter) var(--space-half);
    text-align: left;
    vertical-align: center;
}
th {
    color: var(--color-subtext);
    font-size: var(--size-copy-small);
    font-weight: var(--weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
@media screen and (max-width: 468px) {
    th {
        display: none;
    }
}
@media screen and (max-width: 468px) {
    td {
        display: flex;
        justify-content: space-between;
        padding: var(--space-half) 0;
    }
    td:before {
        display: block;
        content: attr(data-title);
        margin-right: var(--space-double);
        color: var(--color-subtext);
        font-size: var(--size-copy-small);
        font-weight: var(--weight-normal);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }
}
tr:nth-child(odd) td {
    background-color: var(--color-fieldset);
}
input[type="email"],
input[type="number"],
input[type="text"],
textarea {
    display: block;
    width: 100%;
    padding: var(--space-half) var(--space-threequarter);
    border: 1px solid var(--color-input-border);
    background: var(--color-input-bg);
    color: var(--color-input-text);
    font-size: var(--size-copy-base);
    font-weight: var(--weight-bold);
    transition: outline 0.1s ease-out;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="text"]:focus,
textarea:focus {
    color: var(--color-input-text-focus);
    border-color: var(--color-input-border-focus);
}
select {
    display: block;
    font-size: var(--size-copy-small);
    font-family: var(--copy-font);
    font-weight: var(--weight-bold);
    color: var(--color-subtext);
    line-height: 1.3;
    padding: 0.6em 1.4em 0.5em 0.8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0.65rem 0 0;
    border: 1px solid var(--color-input-border);
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 0.5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"),
        linear-gradient(to bottom, #fff 0, #e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position:
        right 0.7em top 50%,
        0 0;
    background-size:
        0.65em auto,
        100%;
}
select::-ms-expand {
    display: none;
}
select:hover {
    border-color: #888;
}
select:focus {
    border-color: var(--color-input-border);
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: var(--color-text);
    outline: 0;
}
select option {
    font-weight: 400;
}
.select2-hidden-accessible {
    padding: 0.6em 1.4em 0.5em 0.8em;
    margin: 0;
    border: 1px solid var(--color-input-border);
}
input[type="file"] {
    width: 1px;
    height: 1px;
    opacity: 0;
}
.upload-label {
    display: block;
    width: 100%;
    padding: var(--step-4);
    border-radius: var(--border-radius);
    background-color: var(--color-file-bg);
    text-align: center;
    transition: background-color 0.3s ease-out;
}
.upload-label:active,
.upload-label:focus,
.upload-label:hover {
    background-color: var(--color-file-bg-focus);
}
.woocommerce-input-wrapper strong {
    display: inline-block;
    margin: 1.25rem 0 0;
    padding: var(--space-half) var(--space-threequarter);
}
.btn,
.button {
    display: inline-block;
    margin: 0;
    padding: var(--space-threequarter) var(--space-mid);
    border: 2px solid var(--color-outline-btn);
    line-height: normal;
    background: 0 0;
    color: var(--color-outline-btn);
    font-family: var(--copy-font);
    font-size: var(--size-copy-large);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--weight-light);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease-in;
    transition-property: background, opacity;
}
.btn:hover,
.button:hover {
    color: var(--color-outline-btn-hover);
    border-color: var(--color-outline-btn-hover);
}
.actions .button,
.btn--solid {
    background: var(--color-btn-bg);
    border-color: transparent;
    color: var(--color-btn-text);
}
.actions .button:hover,
.btn--solid:hover {
    background: var(--color-btn-bg-hover);
    border-color: transparent;
    color: var(--color-btn-text);
}
.btn--rev {
    color: var(--color-white);
}
.btn--rev:hover {
    color: var(--color-red-dk);
}
.actions .button,
.btn--small,
.woocommerce-message .button {
    padding: var(--space-half) var(--space);
    font-size: var(--size-copy-small);
}
.o-list--block {
    margin: 0;
    padding: 0;
    list-style: none;
}
.o-list--block > li:last-child {
    margin-bottom: 0;
}
.o-grid,
.woocommerce-columns--2 {
    display: grid;
    gap: var(--step-0);
    width: 100%;
}
.o-grid--2x,
.woocommerce-columns--2 {
    grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
    .o-grid--2x,
    .woocommerce-columns--2 {
        grid-template-columns: 1fr;
    }
}
.o-grid--3x {
    grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
    .o-grid--3x {
        grid-template-columns: 1fr;
    }
}
.o-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    margin-bottom: var(--space-landmark);
}
.o-stack > * {
    margin-top: 0;
    margin-bottom: 0;
}
.o-stack > * + * {
    margin-top: var(--space-mid);
}
@media only screen and (min-width: 768px) {
    .o-stack > * + * {
        margin-top: var(--space-landmark);
    }
}
.content-flex {
    display: flex;
    flex-direction: column;
    min-height: 65vh;
}
.wrapper {
    max-width: 75rem;
    margin: auto;
    padding: 0 var(--site-gutter);
}
.main-nav {
    display: flex;
    margin: auto;
}
.home .main-nav {
    color: var(--color-white);
}
@media screen and (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        color: var(--color-white);
        text-align: center;
    }
}
.main-nav__item {
    padding: 0 var(--space);
}
@media screen and (max-width: 768px) {
    .main-nav__item {
        margin: var(--space-half) 0;
    }
}
.main-nav__link {
    display: block;
    padding: var(--space-threequarter) var(--space-half);
    color: inherit;
    border-bottom: 2px solid transparent;
}
.main-nav__link:hover {
    color: inherit;
}
.main-nav__link.is-current {
    border-color: var(--color-brand-red);
}
.footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: top;
    margin-top: auto;
    padding: var(--space-landmark) var(--site-gutter);
    color: var(--color-white);
}
@media screen and (max-width: 468px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
}
.footer a {
    color: inherit;
    border-bottom: 1px solid currentColor;
}
.footer a:hover {
    color: inherit;
    opacity: 0.9;
}
.footer__contact {
    color: inherit;
    font-weight: var(--weight-light);
    z-index: 1;
}
@media screen and (max-width: 468px) {
    .footer__contact {
        margin-bottom: var(--space);
    }
}
.footer__logo {
    max-width: 10rem;
    margin: auto;
    color: var(--color-grey-2);
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .footer__logo {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10rem;
        height: 10rem;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
.footer__downloads {
    text-align: right;
    z-index: 1;
}
@media screen and (max-width: 468px) {
    .footer__downloads {
        text-align: inherit;
    }
}
.footer__download {
    display: inline-block;
    margin-bottom: var(--space-double);
    text-transform: uppercase;
    font-size: var(--size-copy-large);
    font-weight: var(--weight-light);
    white-space: nowrap;
}
@media screen and (max-width: 468px) {
    .footer__download {
        margin-bottom: var(--space);
    }
}
.header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    height: 7rem;
    padding: 0 var(--space-mid);
    color: var(--color-grey-1);
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .header {
        grid-template-columns: 1fr auto auto;
    }
}
.home .header {
    position: absolute;
    top: 0;
    width: 100%;
    color: var(--color-white);
}
.header__logo {
    width: 100%;
    max-width: 3.75rem;
}
.header__logo:hover {
    color: var(--color-brand-red);
}
.home .header__logo {
    color: inherit;
}
.home .header__logo:hover {
    color: inherit;
}
.header__nav-control {
    display: none;
    position: relative;
    order: 3;
    width: 1.6rem;
    height: 1.25rem;
    margin: 0 0 0 var(--space-mid);
    padding: 0;
    border: 2px solid currentColor;
    border-width: 2px 0;
    background: 0 0;
    color: var(--color-brand-red);
    transition: border-color 0.1s ease-out;
    z-index: 11;
    cursor: pointer;
}
.home .header__nav-control {
    color: var(--color-white);
}
.header__nav-control:after,
.header__nav-control:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background: currentColor;
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition:
        transform 0.25s ease-out,
        -webkit-transform 0.25s ease-out;
}
.header__nav-control[aria-expanded="true"] {
    color: var(--color-white);
    border-color: transparent;
}
.header__nav-control[aria-expanded="true"]:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header__nav-control[aria-expanded="true"]:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
    .header__nav-control[aria-expanded] {
        display: block;
        justify-self: end;
    }
}
.header__nav {
    margin: auto;
}
@media screen and (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-brand-red);
        z-index: 10;
    }
    [aria-expanded="false"] + .header__nav {
        display: none;
    }
}
.header__cart {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 1.5rem;
    color: inherit;
}
@media screen and (max-width: 768px) {
    .header__cart {
        margin-left: auto;
    }
}
.header__cart-label {
    position: absolute;
    display: block;
    top: -0.3rem;
    right: -0.6rem;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 0.7rem;
    font-weight: var(--weight-bold);
    border-radius: 9999em;
    text-align: center;
    color: var(--color-white);
    background: var(--color-brand-red);
}
.home .header__cart-label {
    background: var(--color-white);
    color: #000;
}
.banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: var(--space);
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}
.banner:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.banner__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 150%;
    z-index: -1;
    background-position: 50% 50%;
    background-size: cover;
}
.banner__content {
    max-width: 60rem;
    z-index: 1;
}
.banner__title {
    color: inherit;
    margin: 0 0 0.75em;
}
.awards {
    flex-direction: column;
    min-height: 0;
    padding: 0 0 var(--space-landmark) 0;
    color: var(--color-grey-4);
}
.awards:before {
    display: none;
}
.awards .banner__bg {
    position: relative;
    top: auto;
    min-height: 0;
    max-width: none;
    z-index: 0;
}
.awards .banner__title {
    text-transform: none;
    letter-spacing: 0;
    margin: var(--space) 0 0.75em;
}
.featured-products {
    text-align: center;
}
.featured-products__title {
    margin-bottom: var(--space-double);
    font-weight: var(--weight-bold);
    text-transform: none;
}
.featured-products__btn {
    margin-top: var(--space-landmark);
}
.panels {
    position: relative;
    padding-top: var(--space-landmark);
    padding-bottom: var(--space-landmark);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}
.panels.panels--rev > * {
    position: relative;
    z-index: 1;
}
.panels.panels--rev:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 20rem;
    padding: var(--step-2);
    border: 2px solid var(--color-brand-red);
}
.panels--rev .panel {
    border-color: var(--color-white);
}
.panel__image {
    display: block;
    flex: 1;
    width: 100%;
    margin-bottom: var(--space-mid);
    text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.panel__title {
    margin-bottom: var(--space);
}
.panels--rev .panel__title {
    color: var(--color-white);
}
.panels--rev .panel__btn {
    background: var(--color-white);
    color: var(--color-grey-3);
}
.panels--rev .panel__btn:hover {
    opacity: 0.9;
}
.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding-top: 7rem;
    text-align: center;
    color: var(--color-white);
    background-position: 50% 50%;
    background-size: cover;
}
.slide > * {
    position: relative;
    z-index: 2;
}
.slide::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}
.slide__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 32rem;
    padding: calc(var(--space-landmark) * 2.5) 2rem 0;
}
.slide__title {
    color: inherit;
}
.slide__btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-brand-red);
    margin-top: calc(var(--space-double) + var(--space-half));
    padding-left: var(--space-landmark);
    padding-right: var(--space-landmark);
}
.stats {
    padding: 0 var(--site-gutter);
}
.stat {
    text-align: center;
}
.stat__icon {
    max-height: 5rem;
    margin: 0 auto var(--space-double);
}
.stat__title {
    margin-bottom: var(--space-mid);
    color: var(--color-text);
}
.product-tease {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color-grey-5);
    color: var(--color-grey-4);
    text-align: left;
}
.product-tease__img {
    padding: var(--space-quarter) var(--space-mid);
}
.product-tease__title {
    color: var(--color-brand-red);
    padding: 0 var(--space);
    font-weight: var(--weight-normal);
}
.product-tease__footer {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid var(--color-grey-5);
}
.product-tease__price {
    display: flex;
    align-items: center;
    align-self: center;
    height: 2.75em;
    margin: 0;
    padding: 0 var(--space);
    font-weight: var(--weight-normal);
}
@media screen and (max-width: 900px) {
    .product-tease__price {
        font-size: var(--size-copy-base);
        white-space: nowrap;
    }
}
.product-tease__from {
    font-size: 0.55em;
    color: var(--color-subtext);
}
.product-tease__until {
    display: block;
    margin-top: var(--space-quarter);
    font-size: 0.55em;
}
.product-tease__btn {
    display: flex;
    align-items: center;
    font-size: var(--size-copy-small);
    letter-spacing: 0.075em;
}
.product-list {
    margin-bottom: var(--space-landmark);
}
.c-canadian-note {
    margin: 0 0 2em 0;
    padding: 2em;
    border: 1px solid var(--color-brand-red);
}
.c-canadian-note p {
    max-width: 150ch;
}
.c-canadian-note p:last-of-type {
    margin: 0;
}
.single-product .product {
    margin-bottom: var(--space-landmark);
}
.product__details .cart:not(.variations_form) {
    display: flex;
}
.product__price {
    color: var(--color-subtext);
}
.product__description {
    padding: var(--space-half) 0 0;
}
.product__meta {
    margin: var(--space-double) 0;
    padding: var(--space-quarter) 0;
    font-size: var(--size-copy-small);
}
.related-products {
    margin: 0 0 var(--space-landmark);
}
.woocommerce-cart .woocommerce-notices-wrapper {
    margin-bottom: var(--space);
}
.woocommerce-cart-form {
    padding: 0 var(--site-gutter);
}
.shop_table {
    margin-bottom: var(--space-landmark);
}
@media screen and (max-width: 768px) {
    .product-thumbnail {
        display: none;
    }
}
@media screen and (max-width: 550px) {
    .product-remove {
        display: none;
    }
}
.product-quantity .quantity {
    margin: 0;
}
.product-quantity input {
    width: 5em;
}
.product-subtotal {
    text-align: right;
}
@media screen and (max-width: 468px) {
    .product-subtotal {
        margin-bottom: var(--space-mid);
        padding-bottom: var(--space-mid);
        border-bottom: 1px solid var(--color-divider);
        text-align: left;
    }
}
@media screen and (max-width: 468px) {
    .actions {
        display: block;
    }
}
.actions .button {
    float: right;
}
.coupon {
    display: flex;
    align-items: center;
    float: left;
}
@media screen and (max-width: 468px) {
    .coupon {
        width: 100%;
        padding-bottom: var(--space-double);
    }
}
.coupon label {
    margin-right: var(--space-threequarter);
    color: var(--color-subtext);
    font-size: var(--size-copy-small);
    font-weight: var(--weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 468px) {
    .coupon label {
        margin-right: auto;
    }
}
.coupon .input-text {
    padding: var(--space-half);
    font-size: var(--size-copy-small);
    width: 7rem;
    margin-right: var(--space-threequarter);
}
.cart-collaterals {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 0 var(--site-gutter);
}
.cart_totals {
    max-width: 50rem;
}
@media screen and (max-width: 768px) {
    .cart_totals {
        width: 100%;
    }
}
.cart_totals .shop_table {
    width: auto;
    margin-bottom: var(--space-double);
}
@media screen and (max-width: 768px) {
    .cart_totals .shop_table {
        width: 100%;
    }
}
.cart_totals .shop_table td,
.cart_totals .shop_table th {
    padding-left: 0;
    padding-right: 0;
    vertical-align: baseline;
}
.cart_totals .shop_table th {
    padding-right: var(--space-landmark);
}
.woocommerce-shipping-totals {
    vertical-align: baseline;
}
.wc-proceed-to-checkout {
    text-align: right;
}
@media screen and (max-width: 468px) {
    .woocommerce-shipping-destination {
        display: none;
    }
    .checkout-button {
        display: block;
        text-align: center;
        padding: var(--space-mid);
    }
}
.woocommerce-form-coupon-toggle {
    display: none;
}
.woocommerce-checkout .checkout {
    padding: 0 var(--site-gutter);
}
.woocommerce-additional-fields,
.woocommerce-billing-fields,
.woocommerce-shipping-fields {
    overflow: hidden;
    margin-bottom: var(--space-landmark);
}
.woocommerce-additional-fields h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
    margin-bottom: var(--space-double);
}
.woocommerce-additional-fields .optional,
.woocommerce-billing-fields .optional,
.woocommerce-shipping-fields .optional {
    display: none;
}
.woocommerce-additional-fields .required,
.woocommerce-billing-fields .required,
.woocommerce-shipping-fields .required {
    text-decoration: none;
    color: var(--color-red);
}
.woocommerce-additional-fields label,
.woocommerce-billing-fields label,
.woocommerce-shipping-fields label {
    position: absolute;
    top: 0;
    font-size: var(--size-copy-small);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-quarter) var(--space-threequarter);
}
.woocommerce-additional-fields .woocommerce-form__label-for-checkbox,
.woocommerce-billing-fields .woocommerce-form__label-for-checkbox,
.woocommerce-shipping-fields .woocommerce-form__label-for-checkbox {
    position: relative;
    top: auto;
    padding: 0;
    font-size: var(--size-h4);
    cursor: pointer;
}
.woocommerce-additional-fields .woocommerce-form__label-for-checkbox input,
.woocommerce-billing-fields .woocommerce-form__label-for-checkbox input,
.woocommerce-shipping-fields .woocommerce-form__label-for-checkbox input {
    position: relative;
    top: -5px;
}
.woocommerce-additional-fields .select2-container,
.woocommerce-billing-fields .select2-container,
.woocommerce-shipping-fields .select2-container {
    margin-top: var(--space-double);
}
.woocommerce-additional-fields input,
.woocommerce-additional-fields textarea,
.woocommerce-billing-fields input,
.woocommerce-billing-fields textarea,
.woocommerce-shipping-fields input,
.woocommerce-shipping-fields textarea {
    padding: var(--space-mid) var(--space-threequarter) var(--space-half);
}
.woocommerce-additional-fields__field-wrapper,
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.form-row {
    position: relative;
    width: 100%;
}
.u-w-half {
    width: 50%;
}
@media screen and (max-width: 768px) {
    .u-w-half {
        width: 100%;
    }
}
.u-w-third {
    width: 33.3333%;
}
@media screen and (max-width: 768px) {
    .u-w-third {
        width: 100%;
    }
}
.u-pl-half {
    padding-left: var(--space-half);
}
@media screen and (max-width: 768px) {
    .u-pl-half {
        padding: 0;
    }
}
.u-pr-half {
    padding-right: var(--space-half);
}
@media screen and (max-width: 768px) {
    .u-pr-half {
        padding: 0;
    }
}
.u-mb-landmark {
    margin-bottom: var(--space-landmark);
}
.woocommerce-checkout-review-order-table th {
    padding: var(--space-half);
}
.woocommerce-checkout-review-order-table td {
    padding: var(--space-half);
}
.woocommerce-checkout-review-order-table tbody tr:last-child td {
    padding-bottom: var(--space-mid);
    border-bottom: 1px solid var(--color-divider);
}
.woocommerce-checkout-review-order-table tfoot tr:first-child td,
.woocommerce-checkout-review-order-table tfoot tr:first-child th {
    padding-top: var(--space-double);
}
.woocommerce-checkout-payment {
    margin-bottom: var(--space-landmark);
    padding: var(--space-mid);
    border: 2px solid var(--color-brand-green);
    overflow: hidden;
}
#shipping_first_name_field {
    order: 0;
}
#shipping_last_name_field {
    order: 1;
}
#shipping_company_field {
    order: 2;
}
#shipping_address_1_field {
    order: 3;
}
#shipping_address_2_field {
    order: 4;
}
#shipping_city_field {
    order: 5;
}
#shipping_country_field {
    order: 6;
}
#shipping_state_field {
    order: 7;
}
#shipping_postcode_field {
    order: 8;
}
.screen-reader-text,
.u-sr {
    border: 0;
    clip: rect(0 0 0 0);
    height: auto;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}
.u-skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    padding: var(--space);
    text-align: center;
    transition: top 0.5s ease-out;
    outline: 2px solid tomato;
}
.u-skip-link:focus {
    top: 0;
}
.u-bg-grey-1 {
    background-color: var(--color-grey-1);
}
.u-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--weight-bold);
}
.onsale {
    display: none !important;
}
.button.product_type_simple,
.button.product_type_variable {
    display: none !important;
}
.product_type_simple.add_to_cart_button {
    display: none !important;
}
.before-shop-loop {
    margin-bottom: var(--space-landmark);
    padding: var(--space-mid) 0;
    background: var(--color-grey-6);
}
.before-shop-loop .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.before-shop-loop .orderby {
    margin: 0;
}
.woocommerce-notices-wrapper {
    width: 100%;
    padding: 0 var(--site-gutter);
}
.woocommerce-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-grey-6);
    padding: var(--space) var(--space) var(--space) var(--space-mid);
    font-size: var(--size-copy-base);
}
.woocommerce-message .button {
    order: 2;
    margin-left: var(--space);
}
.woocommerce-result-count {
    margin: 0;
}
.woocommerce-breadcrumb {
    display: none !important;
}
.variations {
    width: 100%;
}
.variations td {
    vertical-align: center;
}
.variations td.label {
    width: auto;
    padding-left: 0;
}
.variations label {
    display: block;
    margin: 0;
    font-size: var(--size-copy-small);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-subtext);
}
.variations select {
    margin-top: 0;
}
.reset_variations {
    display: block;
    width: 0;
    height: 0;
}
.woocommerce-variation-add-to-cart {
    display: flex;
    padding-top: var(--space);
    margin-top: var(--space-double);
}
.quantity {
    margin-right: var(--space-threequarter);
}
.qty {
    height: 100%;
}
.reset_variations {
    display: none !important;
}
ins .woocommerce-Price-amount {
    color: var(--color-brand-red);
}
.woocommerce-variation-price .woocommerce-Price-amount:before {
    content: "From";
    display: inline-block;
    margin-right: 0.25em;
}
.woocommerce-order-received .woocommerce-order {
    padding: 0 var(--site-gutter);
}
.woocommerce-thankyou-order-details.order_details {
    margin-bottom: var(--space-landmark);
    line-height: var(--line-height-loose);
}
.woocommerce-order-received .woocommerce-table--order-details td:nth-child(2),
.woocommerce-order-received .woocommerce-table--order-details th:nth-child(2) {
    max-width: 5rem;
    text-align: right;
}
.woocommerce-order-received .woocommerce-table--order-details tfoot tr:first-child td {
    padding-top: var(--space-landmark);
}
.woocommerce-order-received .woocommerce-table--order-details tfoot td,
.woocommerce-order-received .woocommerce-table--order-details tfoot th {
    vertical-align: baseline;
    text-align: right;
}
.woocommerce-order-received .customer_details {
    margin-bottom: var(--space-landmark);
}
.woocommerce-columns--2 {
    margin-bottom: var(--space-landmark);
}
#shipping_first_name_field {
    order: 0;
}
#shipping_last_name_field {
    order: 1;
}
#shipping_company_field {
    order: 2;
}
#shipping_address_1_field {
    order: 3;
}
#shipping_address_2_field {
    order: 4;
}
#shipping_city_field {
    order: 5;
}
#shipping_country_field {
    order: 6;
}
#shipping_state_field {
    order: 7;
}
#shipping_postcode_field {
    order: 8;
}
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
        format("woff");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}
.swiper-container {
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property:
        transform,
        -webkit-transform;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property:
        transform,
        -webkit-transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property:
        height,
        -webkit-transform;
    transition-property: transform, height;
    transition-property:
        transform,
        height,
        -webkit-transform;
}
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -webkit-scroll-snap-type: x mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -webkit-scroll-snap-type: y mandatory;
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}
:root {
    --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: "prev";
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: "next";
}
.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #ffffff;
}
.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000000;
}
.swiper-button-lock {
    display: none;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    width: var(--space-double);
    height: 0.4rem;
    display: inline-block;
    background: var(--color-brand-red);
    opacity: 0.4;
    border: 1px solid #eeeeee;
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition:
        0.2s top,
        0.2s -webkit-transform;
    transition:
        0.2s transform,
        0.2s top;
    transition:
        0.2s transform,
        0.2s top,
        0.2s -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition:
        0.2s left,
        0.2s -webkit-transform;
    transition:
        0.2s transform,
        0.2s left;
    transition:
        0.2s transform,
        0.2s left,
        0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition:
        0.2s right,
        0.2s -webkit-transform;
    transition:
        0.2s transform,
        0.2s right;
    transition:
        0.2s transform,
        0.2s right,
        0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}
.swiper-pagination-white {
    --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
    --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
    display: none;
}
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}
.swiper-scrollbar-cursor-drag {
    cursor: move;
}
.swiper-scrollbar-lock {
    display: none;
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.swiper-slide-zoomed {
    cursor: move;
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube {
    overflow: visible;
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}
.swiper-container-flip {
    overflow: visible;
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.basicLightbox {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0.01;
    transition: opacity 0.4s ease;
    z-index: 1000;
    will-change: opacity;
}
.basicLightbox--visible {
    opacity: 1;
}
.basicLightbox__placeholder {
    max-width: 100%;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition:
        transform 0.4s ease,
        -webkit-transform 0.4s ease;
    z-index: 1;
    will-change: transform;
}
.basicLightbox__placeholder > iframe:first-child:last-child,
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 95%;
    max-height: 95%;
}
.basicLightbox__placeholder > iframe:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
    pointer-events: auto;
}
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
    width: auto;
    height: auto;
}
.basicLightbox--iframe .basicLightbox__placeholder,
.basicLightbox--img .basicLightbox__placeholder,
.basicLightbox--video .basicLightbox__placeholder {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.basicLightbox--visible .basicLightbox__placeholder {
    -webkit-transform: scale(1);
    transform: scale(1);
}
#slider {
    max-width: 1600px;
}

.slide {
    text-align: left;
}
.slide__content {
    align-items: flex-start;
    left: -30rem;
    top: -10rem;
}

@media only screen and (max-width: 1280px) {
    .slide__content {
        align-items: flex-start;
        left: -20rem;
        top: -10rem;
    }
}
@media only screen and (max-width: 968px) {
    .slide__content {
        align-items: flex-start;
        left: -10rem;
        top: -10rem;
    }
}
@media only screen and (max-width: 768px) {
    .slide__content {
        align-items: flex-start;
        left: 0rem;
        top: -10rem;
    }
}
#newfield4 {
    /* min-height: 50px; */
    top: 15px;
    position: relative;
    display: inline-block;
    max-width: 150px;
}
.content-flex {
    max-width: 1600px;
    margin: 0 auto;
}
.home .header,
.footer {
    max-width: 1600px;
    width: 100%;
    position: relative;
}
.home .header__logo,
.home .header__logo:hover {
    color: #c82127;
}
.home .header__nav-control {
    color: #c82127;
}
.footer {
    margin: auto;
}
.product-tease__footer,
.product-tease__from,
product-tease__until {
    display: none;
}
.header {
    width: 90%;
    margin: 0 auto;
    color: var(--color-wht);
}
.main-nav__link {
    color: #c82127;
}
.main-nav__link:hover {
    color: #000000;
}
.content-flex {
    max-width: 100%;
}
.o-stack {
    margin: 0;
}
.o-stack > * + * {
    margin-top: 0;
}
.wp-block-cover,
.wp-block-cover-image {
    padding: 0;
}
.wp-block-cover__inner-container {
    width: 100%;
    padding: 25px;
    min-width: 390px;
    min-height: 900px;
}
@media screen and (max-width: 768px) {
    .wp-block-cover__inner-container {
        min-height: 700px;
    }
    .main-nav__link {
        color: #eeeeee;
    }
    .main-nav__link:hover {
        color: #c82127;
    }
}
@media screen and (max-width: 468px) {
    .wp-block-cover__inner-container {
        min-height: 400px;
    }
}
