@charset "UTF-8";
.kb-enabled {
    overflow: hidden;
}
@media only screen and (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .kb-enabled > * {
        -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        transition: 2s transform;
    }
}
@media only screen and (min-width: 768px) {
    .kb-enabled.in-viewport > * {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        -ms-transform: translate3d(0, 0, 0) scale(1);
        -moz-transform: translate3d(0, 0, 0) scale(1);
        -o-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
    }
}
.kb-enabled.no-anim > * {
    transition: none !important;
}
@media screen and (prefers-reduced-motion: reduce) {
    .kb-enabled {
        transform: none !important;
        transition: none !important;
    }
    .kb-enabled.in-viewport {
        transform: none !important;
        transition: none !important;
    }
    .homepage-wrapper .image-with-text-wrapper .kb-enabled .in-viewport,
    .homepage-wrapper .image-with-text-wrapper .kb-enabled .parallax,
    .homepage-wrapper .image-with-text-wrapper .kb-enabled div:not(.parallax) .img {
        transform: none !important;
        transition: none !important;
    }
}
.supports-js body.page-fade {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}
.supports-js body.page-fade.loaded {
    opacity: 1;
}
.supports-js body.page-fade.unloading {
    opacity: 0;
}
@keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes FadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.animations-disabled .fadeIn,
.animations-disabled .fadeInUp {
    animation-name: none;
}
.js .animations-disabled .show-on-scroll,
.js .drawer .show-on-scroll {
    opacity: 1;
}
.js .show-on-scroll {
    opacity: 0;
}
.collection-wrapper .shopify-section:first-child,
.homepage-wrapper .shopify-section:first-child {
    animation-name: none;
}
:root {
    --animation-translate-y: 15px;
    --animation-delay-increment: 0.15s;
    --animation-delay-offset: 0s;
}
@media (prefers-reduced-motion: no-preference) {
    .js body:not(.animations-disabled) [data-animate] {
        opacity: 0.001;
        transform: none;
    }
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate] {
        animation-name: blockFadeIn;
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate][data-animate-left] {
        animation-name: blockFadeInLeft;
    }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate][data-animate-left-bold] {
        animation-name: blockFadeInLeftBold;
    }
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate][data-animate-right-bold] {
        animation-name: blockFadeInRightBold;
    }
}
@media (prefers-reduced-motion: no-preference) {
    .js body:not(.animations-disabled) [data-animate-nested] {
        animation-name: none !important;
    }
    .js body:not(.animations-disabled) .shown-on-scroll.show-on-scroll--nested [data-animate-nested] {
        animation-name: blockFadeIn !important;
    }
    .js body:not(.animations-disabled) [data-animate-overflow-container] {
        margin-bottom: calc(var(--animation-translate-y) * -1);
    }
    .js body:not(.animations-disabled) [data-animate-overflow-item] {
        padding-bottom: var(--animation-translate-y);
    }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 768px) and (hover: hover) {
    [data-animate-hover]:not(:focus-within) [data-animate-hover-block] {
        opacity: 0.001;
        transform: none;
        animation-name: FadeOut;
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    [data-animate-hover]:not(:focus-within):hover [data-animate-hover-block] {
        animation-name: blockFadeIn;
    }
    .hover-zoom-enabled [data-animate-hover-zoom] {
        overflow: hidden;
    }
    .hover-zoom-enabled [data-animate-hover-zoom] [data-animate-hover-zoom-bg-img],
    .hover-zoom-enabled [data-animate-hover-zoom] img,
    .hover-zoom-enabled [data-animate-hover-zoom] svg {
        transition: 0.8s transform;
    }
    .hover-zoom-enabled [data-animate-hover-zoom]:hover [data-animate-hover-zoom-bg-img],
    .hover-zoom-enabled [data-animate-hover-zoom]:hover img,
    .hover-zoom-enabled [data-animate-hover-zoom]:hover svg {
        transform: scale(1.04);
    }
}
[data-animate-hover-block][data-animate-order="1"],
[data-animate][data-animate-order="1"] {
    animation-delay: calc(0 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="2"],
[data-animate][data-animate-order="2"] {
    animation-delay: calc(1 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="3"],
[data-animate][data-animate-order="3"] {
    animation-delay: calc(2 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="4"],
[data-animate][data-animate-order="4"] {
    animation-delay: calc(3 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="5"],
[data-animate][data-animate-order="5"] {
    animation-delay: calc(4 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="6"],
[data-animate][data-animate-order="6"] {
    animation-delay: calc(5 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="7"],
[data-animate][data-animate-order="7"] {
    animation-delay: calc(6 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="8"],
[data-animate][data-animate-order="8"] {
    animation-delay: calc(7 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="9"],
[data-animate][data-animate-order="9"] {
    animation-delay: calc(8 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="10"],
[data-animate][data-animate-order="10"] {
    animation-delay: calc(9 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="11"],
[data-animate][data-animate-order="11"] {
    animation-delay: calc(10 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="12"],
[data-animate][data-animate-order="12"] {
    animation-delay: calc(11 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="13"],
[data-animate][data-animate-order="13"] {
    animation-delay: calc(12 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="14"],
[data-animate][data-animate-order="14"] {
    animation-delay: calc(13 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="15"],
[data-animate][data-animate-order="15"] {
    animation-delay: calc(14 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="16"],
[data-animate][data-animate-order="16"] {
    animation-delay: calc(15 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="17"],
[data-animate][data-animate-order="17"] {
    animation-delay: calc(16 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="18"],
[data-animate][data-animate-order="18"] {
    animation-delay: calc(17 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="19"],
[data-animate][data-animate-order="19"] {
    animation-delay: calc(18 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="20"],
[data-animate][data-animate-order="20"] {
    animation-delay: calc(19 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="21"],
[data-animate][data-animate-order="21"] {
    animation-delay: calc(20 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="22"],
[data-animate][data-animate-order="22"] {
    animation-delay: calc(21 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="23"],
[data-animate][data-animate-order="23"] {
    animation-delay: calc(22 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="24"],
[data-animate][data-animate-order="24"] {
    animation-delay: calc(23 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="25"],
[data-animate][data-animate-order="25"] {
    animation-delay: calc(24 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="26"],
[data-animate][data-animate-order="26"] {
    animation-delay: calc(25 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="27"],
[data-animate][data-animate-order="27"] {
    animation-delay: calc(26 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="28"],
[data-animate][data-animate-order="28"] {
    animation-delay: calc(27 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="29"],
[data-animate][data-animate-order="29"] {
    animation-delay: calc(28 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="30"],
[data-animate][data-animate-order="30"] {
    animation-delay: calc(29 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="31"],
[data-animate][data-animate-order="31"] {
    animation-delay: calc(30 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="32"],
[data-animate][data-animate-order="32"] {
    animation-delay: calc(31 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="33"],
[data-animate][data-animate-order="33"] {
    animation-delay: calc(32 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="34"],
[data-animate][data-animate-order="34"] {
    animation-delay: calc(33 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="35"],
[data-animate][data-animate-order="35"] {
    animation-delay: calc(34 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="36"],
[data-animate][data-animate-order="36"] {
    animation-delay: calc(35 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="37"],
[data-animate][data-animate-order="37"] {
    animation-delay: calc(36 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="38"],
[data-animate][data-animate-order="38"] {
    animation-delay: calc(37 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="39"],
[data-animate][data-animate-order="39"] {
    animation-delay: calc(38 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="40"],
[data-animate][data-animate-order="40"] {
    animation-delay: calc(39 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="41"],
[data-animate][data-animate-order="41"] {
    animation-delay: calc(40 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="42"],
[data-animate][data-animate-order="42"] {
    animation-delay: calc(41 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="43"],
[data-animate][data-animate-order="43"] {
    animation-delay: calc(42 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="44"],
[data-animate][data-animate-order="44"] {
    animation-delay: calc(43 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="45"],
[data-animate][data-animate-order="45"] {
    animation-delay: calc(44 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="46"],
[data-animate][data-animate-order="46"] {
    animation-delay: calc(45 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="47"],
[data-animate][data-animate-order="47"] {
    animation-delay: calc(46 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="48"],
[data-animate][data-animate-order="48"] {
    animation-delay: calc(47 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="49"],
[data-animate][data-animate-order="49"] {
    animation-delay: calc(48 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="50"],
[data-animate][data-animate-order="50"] {
    animation-delay: calc(49 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="51"],
[data-animate][data-animate-order="51"] {
    animation-delay: calc(50 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="52"],
[data-animate][data-animate-order="52"] {
    animation-delay: calc(51 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
@media screen and (max-width: 1023px) {
    [data-animate-hover-block][data-animate-order-ipad="1"],
    [data-animate][data-animate-order-ipad="1"] {
        animation-delay: calc(0 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-ipad="2"],
    [data-animate][data-animate-order-ipad="2"] {
        animation-delay: calc(1 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
}
@media screen and (max-width: 767px) {
    [data-animate-hover-block][data-animate-order-mobile="1"],
    [data-animate][data-animate-order-mobile="1"] {
        animation-delay: calc(0 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-mobile="2"],
    [data-animate][data-animate-order-mobile="2"] {
        animation-delay: calc(1 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-mobile="3"],
    [data-animate][data-animate-order-mobile="3"] {
        animation-delay: calc(2 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-mobile="4"],
    [data-animate][data-animate-order-mobile="4"] {
        animation-delay: calc(3 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
}
@keyframes blockFadeIn {
    from {
        opacity: 0.001;
        transform: translateY(var(--animation-translate-y));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes blockFadeInLeft {
    from {
        opacity: 0.001;
        transform: translateX(calc(var(--animation-translate-y) * -1));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes blockFadeInLeftBold {
    from {
        opacity: 0.001;
        transform: translateX(calc(var(--animation-translate-y) * -2));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes blockFadeInRightBold {
    from {
        opacity: 0.001;
        transform: translateX(calc(var(--animation-translate-y) * 2));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes dropdownFadeUp {
    from {
        opacity: 0.001;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes resetOverflow {
    from {
        overflow-y: hidden;
        padding-right: 3px;
    }
    to {
        overflow-y: auto;
        padding-right: 0;
    }
}
.spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.fade-in-label {
    display: inline-block;
    animation: fadeInLabel 0.3s ease forwards;
}
.fade-in-label-simple {
    animation: fadeInLabelSimple 0.3s ease forwards;
}
@keyframes fadeInLabel {
    from {
        opacity: 0.001;
        transform: translateX(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLabelSimple {
    from {
        opacity: 0.001;
    }
    to {
        opacity: 1;
    }
}
.btn-wrapper-default {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: calc(var(--grid-spacing) * 0.75);
}
@media screen and (min-width: 481px) {
    .btn-wrapper-default {
        column-gap: var(--grid-spacing);
    }
}
.btn-wrapper-default .btn {
    word-wrap: break-word;
}
@media screen and (max-width: 767px) {
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default {
        flex-direction: column;
        row-gap: 8px;
    }
}
@media screen and (min-width: 768px) {
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default {
        column-gap: 8px;
        row-gap: 8px;
        padding-top: 15px;
    }
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default .cart--button-checkout,
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default .cart--button-update {
        flex: 1;
        height: fit-content;
        min-width: fit-content;
        max-width: 100%;
        white-space: normal;
        border: 1px solid var(--primary-btn-bg-color);
    }
}
[data-wetheme-section-type="template--cart"] .additional-checkout-buttons {
    margin-top: 8px;
}
.text-link,
a {
    color: var(--link-color);
    text-decoration: none;
    background: 0 0;
}
button {
    overflow: visible;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
.btn,
.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 10px calc(15px + 20px);
    width: auto;
    margin: 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    line-height: 1.6;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: var(--alt-btn-border-radius);
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
    font-family: var(--button-font-stack);
    font-weight: var(--button-font-weight);
    font-style: var(--button-font-style);
    text-transform: var(--button-text-case);
    font-size: var(--button-font-size-px);
    letter-spacing: var(--button-text-spacing-px);
}
.btn.btn--secondary,
.shopify-payment-button__button.shopify-payment-button__button--unbranded.btn--secondary {
    background: 0 0;
    color: var(--primary-btn-bg-color);
    border: 1px solid var(--primary-btn-bg-color);
}
.btn.disabled,
.btn.swiper-button-disabled,
.btn:disabled,
.shopify-payment-button__button.shopify-payment-button__button--unbranded.disabled,
.shopify-payment-button__button.shopify-payment-button__button--unbranded.swiper-button-disabled,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:disabled {
    opacity: 0.5;
    cursor: default;
}
.btn--underlined {
    --link-color: var(--primary-btn-bg-color);
    --link-border-color: var(--primary-btn-bg-color-opacity50);
    color: var(--primary-btn-bg-color);
    border: 0;
}
.btn--underlined.disabled,
.btn--underlined:disabled {
    opacity: 0.5;
    cursor: default;
}
.btn--underlined:has(svg:not(.btn--underlined-with-icon__icon)) {
    background: 0 0 !important;
}
.btn--underlined-with-icon {
    display: inline-flex !important;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}
.btn--underlined-with-icon svg {
    transform: translateY(1.5px);
}
.btn--full {
    width: 100%;
}
.text-link {
    display: inline;
    border: 0 none;
    background: 0 0;
    padding: 0;
    margin: 0;
}
.article-comment--btn,
.customer-account-cancel,
.newsletter-footer .footer-email-submit {
    margin-top: 15px;
}
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded:hover {
    color: var(--primary-btn-text-color) !important;
    background-color: var(--primary-btn-bg-color) !important;
}
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded.disabled,
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded:disabled,
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded[aria-disabled="true"] {
    opacity: 0.5 !important;
}
.shopify-challenge__container .shopify-challenge__button {
    margin: 20px auto !important;
}
.shopify-payment-button {
    display: block;
    width: 100%;
}
.product--add-to-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product--add-to-cart-button svg.spin {
    position: absolute;
    top: calc(50% - 0.8em);
    left: calc(50% - 0.8em);
    transform: translateX(-50%, -50%);
}
.product--add-to-cart-button,
.shopify-product-form .shopify-payment-button__button--unbranded {
    min-height: 44px;
    width: 100%;
}
.shopify-product-form .shopify-payment-button__button--branded {
    border-radius: var(--alt-btn-border-radius);
}
.shopify-product-form .shopify-payment-button__button--hidden {
    opacity: 0.5;
    cursor: default;
}
.shopify-product-form .shopify-payment-button__button--unbranded + .shopify-payment-button__button--hidden {
    display: none;
}
.shopify-product-form .shopify-payment-button__more-options {
    font-size: var(--button-font-size-px);
    width: 70%;
    margin: 15px auto 0;
    color: var(--link-color);
}
@media screen and (max-width: 480px) {
    .paymentButtonsWrapper .product--add-to-cart-button,
    .paymentButtonsWrapper .shopify-payment-button {
        width: 100%;
        max-width: 300px;
    }
}
@media screen and (min-width: 481px) {
    .paymentButtonsWrapper {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .drawer .paymentButtonsWrapper .product--add-to-cart-button,
    .drawer .paymentButtonsWrapper .shopify-payment-button {
        max-width: 100%;
    }
    .paymentButtonsWrapper .product--add-to-cart-button,
    .paymentButtonsWrapper .shopify-payment-button {
        flex-grow: 1;
    }
}
shopify-accelerated-checkout,
shopify-accelerated-checkout-cart {
    --shopify-accelerated-checkout-button-border-radius: var(--alt-btn-border-radius, 0);
    --shopify-accelerated-checkout-button-block-size: 44px;
}
body .section--testimonials-wrapper a {
    color: var(--text-color);
}
body .color-scheme--white .events-layout--grid .event-item--date {
    background: var(--color-primary-background);
}
body .color-scheme--white {
    --color-scheme-text-color: var(--text-color);
    --color-scheme-text-color-transparent10: var(--text-color-transparent10);
    --color-scheme-text-color-transparent40: var(--text-color-transparent40);
    --color-scheme-text-color-transparent50: var(--text-color-transparent50);
    --color-scheme-background-color: var(--body-color);
    --color-scheme-background-rgb: var(--color-primary-background-rgb);
    --color-scheme-border-color: var(--text-color-transparent25);
    background: var(--body-color);
    color: var(--text-color);
}
body .color-scheme--white .inline-icon--wrapper,
body .color-scheme--white .standalone-icon--wrapper,
body .color-scheme--white input,
body .color-scheme--white input::placeholder {
    color: var(--text-color);
}
body .color-scheme--white a:not(.btn):not(.standalone-icon--wrapper):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--link-color);
}
body .color-scheme--white.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
}
body .color-scheme--light {
    --color-scheme-text-color: var(--color-scheme-light-text);
    --color-scheme-text-color-transparent10: var(--color-scheme-light-text-transparent10);
    --color-scheme-text-color-transparent40: var(--color-scheme-light-text-transparent40);
    --color-scheme-text-color-transparent50: var(--color-scheme-light-text-transparent50);
    --color-scheme-background-color: var(--color-scheme-light-background);
    --color-scheme-background-rgb: var(--color-scheme-light-background-rgb);
    --color-scheme-border-color: var(--color-scheme-light-text-transparent25);
    --border-color: var(--color-scheme-light-text-transparent25);
    --body-color-transparent50: var(--color-scheme-light-background-transparent50);
    --body-color-transparent40: var(--color-scheme-light-background-transparent40);
    --body-color: var(--color-scheme-light-background);
    --text-color: var(--color-scheme-light-text);
    background-color: var(--color-scheme-light-background);
    color: var(--color-scheme-light-text);
}
body .color-scheme--light .inline-icon--wrapper,
body .color-scheme--light .standalone-icon--wrapper,
body .color-scheme--light input,
body .color-scheme--light input::placeholder {
    color: var(--color-scheme-light-text);
}
body .color-scheme--light .product-grid--price .money.price-line-through.sale-price + .money,
body .color-scheme--light .product-grid--price .money.sale-price + .money,
body .color-scheme--light a:not(.btn):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--color-scheme-light-text);
}
body .color-scheme--light .recently-viewed-products .reviews-star-rating.has-rating svg path {
    fill: var(--color-scheme-light-text);
    stroke: var(--color-scheme-light-text);
}
body .color-scheme--light .recently-viewed-products .reviews-star-rating.no-rating svg path {
    fill: none;
    opacity: 0.15;
    stroke: var(--color-scheme-light-text);
}
body .color-scheme--light.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--color-scheme-light-text);
    color: var(--color-scheme-light-background);
}
body .image-with-text-wrapper .color-scheme--light .homepage-featured-content-box {
    color: var(--color-scheme-light-text);
    background: var(--color-scheme-light-background);
}
body .map-section-wrapper .color-scheme--light .homepage-map-content-box {
    color: var(--color-scheme-light-text);
    background: var(--color-scheme-light-background);
}
body .color-scheme--light .text-slideshow__pagination-btn span {
    background-color: var(--color-scheme-light-text);
}
body .color-scheme--light .events-layout--grid .event-item--date {
    background: var(--color-scheme-light-background);
}
body .color-scheme--accent {
    --color-scheme-text-color: var(--color-scheme-feature-text);
    --color-scheme-text-color-transparent10: var(--color-scheme-feature-text-transparent10);
    --color-scheme-text-color-transparent40: var(--color-scheme-feature-text-transparent40);
    --color-scheme-text-color-transparent50: var(--color-scheme-feature-text-transparent50);
    --color-scheme-background-color: var(--color-scheme-feature-background);
    --color-scheme-background-rgb: var(--color-scheme-feature-background-rgb);
    --color-scheme-border-color: var(--color-scheme-feature-text-transparent25);
    --border-color: var(--color-scheme-feature-text-transparent25);
    --body-color-transparent50: var(--color-scheme-feature-background-transparent50);
    --body-color-transparent40: var(--color-scheme-feature-background-transparent40);
    --body-color: var(--color-scheme-feature-background);
    --text-color: var(--color-scheme-feature-text);
    background: var(--color-scheme-feature-background);
    color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .inline-icon--wrapper,
body .color-scheme--accent .standalone-icon--wrapper,
body .color-scheme--accent input,
body .color-scheme--accent input::placeholder {
    color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .product-grid--price .money.price-line-through.sale-price + .money,
body .color-scheme--accent .product-grid--price .money.sale-price + .money,
body .color-scheme--accent a:not(.btn):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .recently-viewed-products .reviews-star-rating.has-rating svg path {
    fill: var(--color-scheme-feature-text);
    stroke: var(--color-scheme-feature-text);
}
body .color-scheme--accent .recently-viewed-products .reviews-star-rating.no-rating svg path {
    fill: none;
    opacity: 0.15;
    stroke: var(--color-scheme-feature-text);
}
body .color-scheme--accent.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--color-scheme-feature-text);
    color: var(--color-scheme-feature-background);
}
body .image-with-text-wrapper .color-scheme--accent .homepage-featured-content-box {
    color: var(--color-scheme-feature-text);
    background: var(--color-scheme-feature-background);
}
body .map-section-wrapper .color-scheme--accent .homepage-map-content-box {
    color: var(--color-scheme-feature-text);
    background: var(--color-scheme-feature-background);
}
body .color-scheme--accent .text-slideshow__pagination-btn span {
    background-color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .events-layout--grid .event-item--date {
    background: var(--color-scheme-feature-background);
}
body .color-scheme--dark {
    --color-scheme-text-color: var(--color-scheme-dark-text);
    --color-scheme-text-color-transparent10: var(--color-scheme-dark-text-transparent10);
    --color-scheme-text-color-transparent40: var(--color-scheme-dark-text-transparent40);
    --color-scheme-text-color-transparent50: var(--color-scheme-dark-text-transparent50);
    --color-scheme-background-color: var(--color-scheme-dark-background);
    --color-scheme-background-rgb: var(--color-scheme-dark-background-rgb);
    --color-scheme-border-color: var(--color-scheme-dark-text-transparent25);
    --border-color: var(--color-scheme-dark-text-transparent25);
    --body-color-transparent50: var(--color-scheme-dark-background-transparent50);
    --body-color-transparent40: var(--color-scheme-dark-background-transparent40);
    --body-color: var(--color-scheme-dark-background);
    --text-color: var(--color-scheme-dark-text);
    background: var(--color-scheme-dark-background);
    color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .inline-icon--wrapper,
body .color-scheme--dark .standalone-icon--wrapper,
body .color-scheme--dark input,
body .color-scheme--dark input::placeholder {
    color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .product-grid--price .money.price-line-through.sale-price + .money,
body .color-scheme--dark .product-grid--price .money.sale-price + .money,
body .color-scheme--dark a:not(.btn):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .recently-viewed-products .reviews-star-rating.has-rating svg path {
    fill: var(--color-scheme-dark-text);
    stroke: var(--color-scheme-dark-text);
}
body .color-scheme--dark .recently-viewed-products .reviews-star-rating.no-rating svg path {
    fill: none;
    opacity: 0.15;
    stroke: var(--color-scheme-dark-text);
}
body .color-scheme--dark.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--color-scheme-dark-text);
    color: var(--color-scheme-dark-background);
}
body .image-with-text-wrapper .color-scheme--dark .homepage-featured-content-box {
    color: var(--color-scheme-dark-text);
    background: var(--color-scheme-dark-background);
}
body .map-section-wrapper .color-scheme--dark .homepage-map-content-box {
    color: var(--color-scheme-dark-text);
    background: var(--color-scheme-dark-background);
}
body .color-scheme--dark .text-slideshow__pagination-btn span {
    background-color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .events-layout--grid .event-item--date {
    background: var(--color-scheme-dark-background);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
details > summary {
    list-style: none;
    cursor: pointer;
}
details > summary::-webkit-details-marker {
    display: none;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
:focus,
:focus-visible {
    outline-offset: -1px;
}
.using-mouse :focus,
.using-mouse :focus-visible,
body:not(.using-keyboard):not(.using-mouse) :focus {
    outline: 0;
}
.using-keyboard input:focus + * + .custom-input,
.using-keyboard input:focus + .custom-input,
.using-keyboard input:focus + label,
.using-keyboard label.wrap-focus:focus-within {
    outline: 1px auto -webkit-focus-ring-color;
}
.hide {
    display: none !important;
}
.hidden {
    display: none;
}
@media only screen and (max-width: 767px) {
    .small-hide {
        display: none !important;
    }
}
@media only screen and (min-width: 768px) {
    .large-hide {
        display: none !important;
    }
}
.placeholder-noblocks {
    text-align: center;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.nav .ul:after,
.nav .ul:before {
    content: " ";
    display: table;
}
.nav .ul:after {
    clear: both;
}
.icon {
    display: inline-block;
    height: auto;
    vertical-align: middle;
    width: auto;
}
.icon--placeholder {
    background-color: rgba(120, 129, 136, 0.1);
    border: 1px solid rgba(120, 129, 136, 0.2);
    fill: rgba(120, 129, 136, 0.35);
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
}
.icon--placeholder path {
    transform: scale(1);
    transform-origin: center;
}
.homepage-collection-grid-inner .icon--placeholder {
    max-height: 50vh;
}
.homepage-collection-grid-inner .icon--placeholder path {
    transform: scale(1);
    transform-origin: center;
}
.richtext-block .h1,
.richtext-block .h2,
.richtext-block .h3,
.richtext-block .h4,
.richtext-block .h5,
.richtext-block .h6,
.richtext-block h1,
.richtext-block h2,
.richtext-block h3,
.richtext-block h4,
.richtext-block h5,
.richtext-block h6,
.richtext-block p {
    margin-bottom: 0;
}
html.js .no-js {
    display: none !important;
}
html.no-js .js {
    display: none !important;
}
.no-js.disclaimer {
    text-align: center;
    padding: 15px 15px 0;
}
html.no-js .no-js-show {
    display: block !important;
}
[tabindex="-1"]:focus {
    outline: 0;
}
.wrapper {
    padding: 0;
}
.wrapper:after {
    content: "";
    display: table;
    clear: both;
}
.wrapper-padded {
    position: relative;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 15px;
}
@media screen and (min-width: 481px) {
    .wrapper-padded {
        padding: 0 30px;
    }
}
.centered {
    margin: 0 auto;
}
.main-content {
    display: block;
}
.template-index .main-content {
    padding-top: 0;
    padding-bottom: 0;
}
svg.icon.icon--placeholder {
    background: #969696;
    fill: #5d5d5d;
    border: 1px solid #858585;
}
svg.icon.icon--placeholder.icon--placeholder--subdued {
    fill: rgba(93, 93, 93, 0.3019607843);
}
@media screen and (min-width: 768px) {
    svg.icon.icon--placeholder.icon--placeholder--subdued-desktop {
        fill: rgba(93, 93, 93, 0.3019607843);
    }
}
@media screen and (max-width: 767px) {
    svg.icon.icon--placeholder.icon--placeholder--subdued-mobile {
        fill: rgba(93, 93, 93, 0.3019607843);
    }
}
.width-full {
    width: 100%;
}
.flex {
    display: flex;
}
.flex-full {
    display: flex;
    width: 100%;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-grid {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .flex-grid .flex-grid__item.large--one-half {
        width: calc(50% - 10px);
    }
    .flex-grid .flex-grid__item.large--one-quarter {
        width: calc(25% - 10px);
    }
    .flex-grid .flex-grid__item.large--three-quarters {
        width: calc(75% - 10px);
    }
}
.border-none {
    border: 0 !important;
}
.padding-none {
    padding: 0 !important;
}
.m-0-auto {
    margin: 0 auto;
}
.text-truncate--line {
    display: -webkit-box;
    line-clamp: var(--text-line-clamp);
    -webkit-line-clamp: var(--text-line-clamp);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.touch-target {
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.touch-target:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}
.wrapper-spacing--h {
    padding-left: 60px;
    padding-right: 60px;
}
@media (max-width: 767px) {
    .wrapper-spacing--h {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.width--content {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.width--narrow {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.width--small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.width--modal {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
    .width--modal {
        max-width: calc(100% - 120px);
    }
}
.wrapper-spacing--v--template {
    padding-top: 15px;
    padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .wrapper-spacing--v--template {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.caption-padding {
    padding: 20px;
}
@media screen and (max-width: 767px) {
    .caption-padding {
        padding: 15px;
    }
}
.theme-img,
[data-media-poster] {
    border: 0 none;
    width: 100%;
    height: auto;
}
svg:not(:root) {
    overflow: hidden;
}
.theme-img,
[data-media-poster],
iframe {
    max-width: 100%;
}
.video-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    height: auto;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.aspect-ratio:not(.quick-view-media) .grid-view-item--placeholder,
.aspect-ratio:not(.quick-view-media) .responsive-image-wrapper {
    position: absolute !important;
    height: 100%;
    width: 100%;
}
.responsive-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
ol,
ul {
    margin: 0 0 15px 20px;
    padding: 0;
}
ol li,
ul li {
    list-style-position: inside;
}
ol li > div,
ul li > div {
    display: inline-block;
}
ol {
    list-style: decimal;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin: 4px 0 5px 20px;
}
li {
    margin-bottom: 0.25em;
}
ul.square {
    list-style: square outside;
}
ul.disc {
    list-style: disc outside;
}
ol.alpha {
    list-style: lower-alpha outside;
}
.no-bullets {
    list-style: none outside;
    margin-left: 0;
}
.inline-list {
    margin-left: 0;
}
.inline-list li {
    display: inline-block;
    margin-bottom: 0;
}
.button-unstyled {
    display: flex;
    appearance: none;
    background: 0 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    margin: 0;
    padding: 0;
}
@keyframes shineAgain {
    100% {
        left: -200%;
    }
}
.btn-colors-primary {
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
}
.btn-hover-default:after,
.btn:not(:disabled):not(.standalone-icon--wrapper):not(.swiper-button-disabled):not(.disabled):not(.btn--secondary):after,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:not(.disabled):not(:disabled):after,
button.pswp__button:after {
    background-image: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.25), transparent);
    content: "";
    height: 100%;
    left: 150%;
    position: absolute;
    top: 0;
    transform: skew(-20deg);
    width: 200%;
}
.btn-hover-default:hover:after,
.btn:not(:disabled):not(.standalone-icon--wrapper):not(.swiper-button-disabled):not(.disabled):not(.btn--secondary):hover:after,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:not(.disabled):not(:disabled):hover:after,
button.pswp__button:hover:after {
    animation: shineAgain 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}
.btn-hover-default-inner span:after,
.quick-add-button-mobile span:after,
.quick-add-button-onboarding-mobile span:after,
.quick-add-button-variants-mobile span:after {
    background-image: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.25), transparent);
    content: "";
    height: 100%;
    left: 150%;
    position: absolute;
    top: 0;
    transform: skew(-20deg);
    width: 200%;
}
.btn-hover-default-inner span:hover:after,
.quick-add-button-mobile span:hover:after,
.quick-add-button-onboarding-mobile span:hover:after,
.quick-add-button-variants-mobile span:hover:after {
    animation: shineAgain 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}
.round-icon-btn-sm,
button.pswp__button {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    transition: all 0.15s ease-in-out 0s;
    padding: 0;
    border-radius: 50%;
    margin: 5px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.round-icon-btn-sm svg,
.round-icon-btn-sm svg.pswp__icn,
button.pswp__button svg,
button.pswp__button svg.pswp__icn {
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    vertical-align: middle;
    display: inline-block;
    margin: 8px;
}
.round-icon-btn-lg {
    display: block;
    position: absolute;
    overflow: hidden;
    border: 0;
    top: 50%;
    left: 50%;
    padding: 0;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1;
    border-radius: 50%;
}
.round-icon-btn-lg svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    margin: 20px;
}
.standalone-icon--wrapper {
    color: currentColor;
}
.standalone-icon--wrapper:not(.icon-no-padding) {
    min-width: 44px;
    min-height: 44px;
    padding: 12px !important;
}
.standalone-icon--wrapper:active,
.standalone-icon--wrapper:hover,
.standalone-icon--wrapper:visited {
    background-color: unset;
}
.standalone-icon--wrapper .pswp__icn,
.standalone-icon--wrapper svg {
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0;
}
.standalone-icon--wrapper:disabled .pswp__icn,
.standalone-icon--wrapper:disabled svg {
    opacity: 0.5;
    cursor: default;
}
.inline-icon--wrapper {
    display: flex;
    align-items: center;
    color: currentColor;
}
.inline-icon--wrapper svg {
    min-width: var(--inline-icon-size);
    min-height: var(--inline-icon-size);
    max-width: var(--inline-icon-size);
    max-height: var(--inline-icon-size);
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    display: inline-block;
    margin: 0;
}
.inline-icon--wrapper.icon--right svg {
    margin-left: 10px;
}
.inline-icon--wrapper.icon--left svg {
    margin-right: 10px;
}
.inline-icon--wrapper.dropdown-icon {
    display: flex;
    align-items: center;
}
.inline-icon--wrapper.dropdown-icon svg {
    margin-left: 10px;
    margin-right: 10px;
}
.loading-state-icon {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width: 767px) {
    .loading-state-icon.search-loading {
        top: unset;
        transform: translate3d(-50%, 0, 0);
    }
}
.shopify-policy__container a,
.text-link-animated .btn--underlined,
.text-link-animated a:not(.standalone-icon--wrapper) {
    display: inline;
    text-decoration: none;
    position: relative;
    background: linear-gradient(to top, var(--link-border-color) 0, var(--link-border-color) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.shopify-policy__container a:focus,
.shopify-policy__container a:hover,
.text-link-animated .btn--underlined:focus,
.text-link-animated .btn--underlined:hover,
.text-link-animated a:not(.standalone-icon--wrapper):focus,
.text-link-animated a:not(.standalone-icon--wrapper):hover {
    background-size: 0 1px, 100% 1px;
}
.text-link-animated a:not(.standalone-icon--wrapper):before {
    background: var(--link-border-color);
}
.text-inline-link-animated a {
    display: inline;
    text-decoration: none;
    position: relative;
    background: linear-gradient(to top, var(--text-color-transparent25) 0, var(--text-color-transparent25) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.text-inline-link-animated a:focus,
.text-inline-link-animated a:hover {
    background-size: 0 1px, 100% 1px;
}
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper),
.password--container .password--store-owner-links.text-link-animated a {
    background: linear-gradient(to top, var(--color-scheme-text-color-transparent50) 0, var(--color-scheme-text-color-transparent50) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
}
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper):before,
.password--container .password--store-owner-links.text-link-animated a:before {
    background: var(--color-scheme-text-color-transparent50);
}
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper):focus,
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper):hover,
.password--container .password--store-owner-links.text-link-animated a:focus,
.password--container .password--store-owner-links.text-link-animated a:hover {
    background-size: 0 1px, 100% 1px;
}
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper) {
    background: linear-gradient(to top, var(--password-main-border-color) 0, var(--password-main-border-color) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
}
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper):focus,
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper):hover {
    background-size: 0 1px, 100% 1px;
}
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper):before {
    background: var(--password-main-border-color);
}
.color-scheme--accent .nav-link-animated a:not(.standalone-icon--wrapper) span.animated-underline,
.color-scheme--dark .nav-link-animated a:not(.standalone-icon--wrapper) span.animated-underline,
.color-scheme--light .nav-link-animated a:not(.standalone-icon--wrapper) span.animated-underline {
    background-color: transparent;
    background-image: linear-gradient(to top, var(--color-scheme-text-color) 0, var(--color-scheme-text-color) 0), linear-gradient(to top, transparent 0, transparent 0);
    background-repeat: no-repeat;
    background-position: left bottom, left bottom;
    background-size: 0 1px, 100% 1px;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.color-scheme--accent .nav-link-animated a:not(.standalone-icon--wrapper):hover span,
.color-scheme--dark .nav-link-animated a:not(.standalone-icon--wrapper):hover span,
.color-scheme--light .nav-link-animated a:not(.standalone-icon--wrapper):hover span {
    background-position: left bottom, left bottom;
    background-size: 100% 1px, 100% 1px;
}
.color-scheme--accent .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined),
.color-scheme--dark .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined),
.color-scheme--light .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined) {
    background: linear-gradient(to top, var(--color-scheme-text-color-transparent50) 0, var(--color-scheme-text-color-transparent50) 0), linear-gradient(to top, var(--color-scheme-text-color) 0, var(--color-scheme-text-color) 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
}
.color-scheme--accent .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):focus,
.color-scheme--accent .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):hover,
.color-scheme--dark .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):focus,
.color-scheme--dark .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):hover,
.color-scheme--light .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):focus,
.color-scheme--light .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):hover {
    background-size: 0 1px, 100% 1px;
}
.text-link-animated-custom-color a:not(.standalone-icon--wrapper) {
    display: inline;
    text-decoration: none;
    position: relative;
    background: linear-gradient(to top, var(--custom-text-color-transparent50) 0, var(--custom-text-color-transparent50) 0), linear-gradient(to top, var(--custom-text-color) 0, var(--custom-text-color) 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.text-link-animated-custom-color a:not(.standalone-icon--wrapper):focus,
.text-link-animated-custom-color a:not(.standalone-icon--wrapper):hover {
    background-size: 0 1px, 100% 1px;
}
@media only screen and (min-width: 768px) {
    .nav-link-animated--custom .animated-link--item,
    .product__meta--vendor.nav-link-animated a,
    .register-link--wrapper a {
        background-color: transparent !important;
        background-image: linear-gradient(to top, currentColor 0, currentColor 0), linear-gradient(to top, transparent 0, transparent 0);
        background-repeat: no-repeat;
        background-position: left bottom, left bottom;
        background-size: 0 1px, 100% 1px;
        transition-property: background-size;
        transition-timing-function: ease;
        transition-duration: 0.25s;
    }
    .overlay-header-wrapper .nav-link-animated--custom .animated-link--item,
    .overlay-header-wrapper .product__meta--vendor.nav-link-animated a,
    .overlay-header-wrapper .register-link--wrapper a {
        transition-property: background-size, color !important;
    }
    .nav-link-animated--custom .animated-link--item:focus,
    .nav-link-animated--custom .animated-link--item:hover,
    .product__meta--vendor.nav-link-animated a:focus,
    .product__meta--vendor.nav-link-animated a:hover,
    .register-link--wrapper a:focus,
    .register-link--wrapper a:hover {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .nav-link-animated--custom .animated-link--item--nested span.animated-underline {
        background-color: transparent !important;
        background-image: linear-gradient(to top, currentColor 0, currentColor 0), linear-gradient(to top, transparent 0, transparent 0);
        background-repeat: no-repeat;
        background-position: left bottom, left bottom;
        background-size: 0 1px, 100% 1px;
        transition-property: background-size;
        transition-timing-function: ease;
        transition-duration: 0.25s;
    }
    .nav-link-animated--custom .animated-link--item--nested:focus span.animated-underline,
    .nav-link-animated--custom .animated-link--item--nested:hover span.animated-underline {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .nav-link-animated a span.animated-underline,
    header localization-form.nav-link-animated button span.animated-underline {
        background-color: transparent;
        background-image: linear-gradient(to top, var(--nav-text-hover) 0, var(--nav-text-hover) 0), linear-gradient(to top, transparent 0, transparent 0);
        background-repeat: no-repeat;
        background-position: left bottom, left bottom;
        background-size: 0 1px, 100% 1px;
        transition-property: background-size;
        transition-timing-function: ease;
        transition-duration: 0.25s;
    }
    .nav-link-animated a:hover span,
    header localization-form.nav-link-animated button:hover span {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .using-keyboard .nav-link-animated a:focus span.animated-underline,
    .using-keyboard header localization-form.nav-link-animated button:focus span.animated-underline {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .first-level-dropdown > .site-nav__link > .site-nav--link-wrapper > span.animated-underline,
    .top-links--icon-links.nav-link-animated span.animated-underline,
    header localization-form.nav-link-animated button span.animated-underline {
        padding-bottom: 4px;
    }
    .top-links--icon-links.nav-link-animated a span.animated-underline {
        display: flex;
        align-items: center;
    }
    header localization-form.nav-link-animated button {
        display: inline;
    }
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table.full {
    width: 100%;
    margin-bottom: 1em;
}
.table-wrap {
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}
.table-wrap .btn-wrapper-default {
    justify-content: flex-end;
}
th {
    font-weight: 700;
}
td,
th {
    text-align: left;
    padding: 15px;
    border: 0;
    border-bottom: 1px solid var(--color-scheme-border-color, var(--text-color-transparent25));
}
@media only screen and (max-width: 767px) {
    .table--responsive td:before {
        content: attr(data-label);
        float: left;
        font-size: 15px;
        padding-right: 10px;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tr {
        display: block;
    }
    .table--responsive td,
    .table--responsive tr {
        float: left;
        clear: both;
        width: 100%;
    }
    .table--responsive td,
    .table--responsive th {
        display: block;
        text-align: right;
        padding: 15px;
    }
    .table--responsive td:before {
        content: attr(data-label);
        float: left;
        text-align: center;
        font-size: 12px;
        padding-right: 10px;
    }
    .table--responsive.cart-table img {
        margin: 0 auto;
    }
    .table--responsive.cart-table .js-qty {
        float: right;
    }
}
@media screen and (max-width: 480px) {
    .table__section + .table__section {
        position: relative;
        margin-top: 10px;
        padding-top: 15px;
    }
    .table__section + .table__section:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
    }
}
.rte {
    margin-bottom: 15px;
}
.rte .h1,
.rte .h2,
.rte .h3,
.rte .h4,
.rte .h5,
.rte .h6,
.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {
    margin-top: 1em;
}
.rte .h1:first-child,
.rte .h2:first-child,
.rte .h3:first-child,
.rte .h4:first-child,
.rte .h5:first-child,
.rte .h6:first-child,
.rte h1:first-child,
.rte h2:first-child,
.rte h3:first-child,
.rte h4:first-child,
.rte h5:first-child,
.rte h6:first-child {
    margin-top: 0;
}
.rte .h1 a,
.rte .h2 a,
.rte .h3 a,
.rte .h4 a,
.rte .h5 a,
.rte .h6 a,
.rte h1 a,
.rte h2 a,
.rte h3 a,
.rte h4 a,
.rte h5 a,
.rte h6 a {
    text-decoration: none;
}
.rte > div {
    margin-bottom: 15px;
}
.rte ol,
.rte ul {
    margin-left: 0;
}
.rte li {
    margin-bottom: 0.4em;
}
.rte img {
    max-width: 100%;
}
.popup-shadow {
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.1);
}
.popup--close {
    position: absolute;
}
.drawer__close button,
.mobile-menu--close-btn,
.popup--close,
.popup--close-btn,
.shop-the-look__modal-close,
.store-availabilities-modal__close {
    right: 15px;
    top: 12px;
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border: 0;
    background: 0 0;
}
.drawer__close button:hover,
.mobile-menu--close-btn:hover,
.popup--close-btn:hover,
.popup--close:hover,
.shop-the-look__modal-close:hover,
.store-availabilities-modal__close:hover {
    cursor: pointer;
}
.mobile-menu--close-btn:not(.filter-drawer-btn) {
    margin-right: -12px;
}
.display-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
@media screen and (min-width: 768px) {
    .medium--display-table {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    .medium--display-table-cell {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }
}
.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}
.skip-to-content-link:focus-visible {
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px calc(15px + 20px);
    z-index: 9999;
}
.footer-wrapper {
    align-self: baseline;
}
.footer-wrapper.fix-to-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.footer-wrapper .footer-main .footer-main--inner {
    display: flex;
    flex-direction: column;
    column-gap: calc(var(--grid-spacing) * 0.75);
    row-gap: 30px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer-wrapper .footer-main .footer-main--inner > * {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
@media only screen and (min-width: 768px) {
    .footer-wrapper .footer-main .footer-main--inner {
        display: grid;
        grid-template-rows: 1fr;
        padding-top: 60px;
        padding-bottom: 60px;
        column-gap: var(--grid-spacing);
    }
}
@media (max-width: 767px) {
    .footer-wrapper .footer-main .footer-main--inner #newsletter-footer_form {
        padding: 0 30px;
    }
}
.footer-wrapper .footer-bottom .footer-bottom--inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}
.footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-main--inner,
.footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-main--inner,
.footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-main--inner,
.footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-main--inner {
    padding-bottom: 40px;
}
.footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-bottom--inner,
.footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-bottom--inner,
.footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-bottom--inner,
.footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-bottom--inner {
    padding-top: 0;
}
.footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .shopify-section:first-child .footer-bottom .footer-bottom--inner,
.footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .shopify-section:first-child .footer-bottom .footer-bottom--inner,
.footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .shopify-section:first-child .footer-bottom .footer-bottom--inner,
.footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .shopify-section:first-child .footer-bottom .footer-bottom--inner {
    padding-top: 15px;
    padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
    .footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-main--inner,
    .footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-main--inner,
    .footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-main--inner,
    .footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-main--inner {
        padding-bottom: 60px;
    }
    .footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-bottom--inner,
    .footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-bottom--inner,
    .footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-bottom--inner,
    .footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-bottom--inner {
        padding-top: 0;
    }
}
.footer-wrapper .shopify-section:first-child .footer-bottom .footer-bottom--inner {
    padding-top: 15px;
}
.footer-wrapper div:not(.image-with-text-overlay__cropped-image):empty {
    display: none;
}
.footer-bottom a,
.footer-main a {
    color: var(--color-scheme-text-color);
}
.h3.footer-header {
    font-size: var(--footer-heading-font-size);
    color: var(--color-scheme-text-color);
    margin-bottom: 0;
}
.footer-alignment--center {
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .site-footer {
        text-align: center;
    }
}
.image-footer svg {
    height: 200px;
}
.links-footer a {
    margin: 0.2em 0;
}
.links-footer .footer--level-2 {
    padding-left: 10px;
    font-size: 95%;
}
.links-footer ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.links-footer ul li {
    list-style-type: none;
    margin: 0;
}
.footer--has-dropdown-title {
    margin-bottom: 0.25em;
    display: inline-block;
}
.newsletter-footer .newsletter-footer--wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.newsletter-footer .newsletter-footer--wrapper .input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.newsletter-footer .newsletter-footer--wrapper .input-group .footer-email-submit {
    width: fit-content;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .newsletter-footer .newsletter-footer--wrapper .input-group .footer-email-submit {
        margin: 0;
    }
}
@media screen and (max-width: 767px) {
    .newsletter-footer .newsletter-footer--wrapper .input-group input {
        text-align: center;
    }
}
.newsletter-footer .newsletter-footer--wrapper .rte,
.newsletter-footer .newsletter-footer--wrapper p {
    margin: 0;
}
.footer-alignment--center .newsletter-footer form {
    display: flex;
    justify-content: center;
}
.footer-alignment--center .newsletter-footer form .input-group {
    width: 100%;
}
.footer-alignment--center .newsletter-footer form .input-group input {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .footer-alignment--center .newsletter-footer form .input-group {
        align-items: center;
    }
}
.contact-form p {
    font-size: 12px;
}
.footer-email-input,
.newsletter-footer input.footer-email-input {
    border: 0;
    border-bottom: 1px solid var(--color-scheme-border-color);
    padding-left: 0;
    padding-top: 0;
    background: var(--color-scheme-background-color);
    color: var(--color-scheme-text-color);
}
.footer-article,
.footer-article a,
.footer-content a {
    color: var(--color-scheme-text-color);
}
.footer-article p,
.footer-article.rte {
    margin-bottom: 0;
}
.social-media-footer ul {
    margin: 0;
    padding: 0;
}
.social-media-footer ul li {
    list-style-type: none;
    display: inline-block;
    margin-bottom: 0;
}
.social-media-footer ul li svg {
    transition: all 0.15s ease-in-out 0s;
}
.social-media-footer ul li a {
    color: var(--color-scheme-text-color);
    transition: all 0.15s ease-in-out 0s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-media-footer ul li a:hover {
    color: var(--color-scheme-text-color);
}
.bottom--footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.bottom--footer .bottom--footer---localization {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.bottom--footer .bottom--footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.bottom--footer .bottom--footer-row .inline-list.payment-icons {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.copyright--mobile {
    display: block;
}
.copyright--desktop {
    display: none;
}
.bottom--footer---links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    flex: 1 1 100%;
}
@media only screen and (min-width: 768px) {
    .bottom--footer---links {
        flex-direction: row;
    }
}
.bottom--footer---links li {
    list-style-type: none;
    display: inline-block;
    padding: 0 15px;
    line-height: 1;
}
@media only screen and (min-width: 768px) {
    .bottom--footer---links li {
        border-left: 1px solid var(--color-scheme-text-color);
    }
}
.bottom--footer---links li:first-child {
    border-left: 0;
}
.bottom--footer---links li a {
    font-size: 12px;
}
@media only screen and (max-width: 767px) {
    .bottom--footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .bottom--footer .bottom--footer-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .footer-alignment--left .localization-form-wrapper {
        justify-content: center;
        flex-direction: column;
    }
}
.localization-form-wrapper {
    display: flex;
    gap: 15px;
}
.footer-alignment--center .localization-form-wrapper {
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .footer-alignment--center .localization-form-wrapper {
        flex-wrap: wrap;
    }
    .footer-alignment--center .localization-form-wrapper localization-form {
        width: 100%;
    }
}
.localization-form-wrapper localization-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.localization-form-wrapper localization-form .icon-dropdown {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left ul.localization__list {
        left: 0;
    }
    .footer-alignment--left .social-media-footer ul {
        margin-left: -12px;
    }
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left .copyright--mobile {
        display: none;
    }
    .footer-alignment--left .copyright--desktop {
        display: block;
    }
    .footer-alignment--left .copyright--desktop li:first-child {
        padding-left: 0;
    }
    .footer-alignment--left .bottom--footer-row {
        display: flex;
        flex-wrap: wrap;
        column-gap: calc(var(--grid-spacing) * 0.75);
        row-gap: 30px;
        flex-direction: row;
        justify-content: flex-start;
    }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .footer-alignment--left .bottom--footer-row {
        column-gap: var(--grid-spacing);
    }
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left .bottom--footer-row.bottom--footer--payment-methods {
        flex-direction: row;
        width: 100%;
    }
    .footer-alignment--left .bottom--footer-row .bottom--footer---links {
        flex: none;
    }
    .footer-alignment--left .bottom--footer-row .inline-list.payment-icons {
        flex: 1 0;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 4px;
        text-align: right;
    }
    .footer-alignment--left .bottom--footer {
        align-items: flex-start;
    }
}
form {
    margin-bottom: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
@media screen and (max-width: 767px) {
    input,
    textarea {
        font-size: 16px;
    }
}
button,
input,
select,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    padding: 0;
    margin: 0;
}
input[type="image"] {
    padding-left: 0;
    padding-right: 0;
}
button,
input[type="submit"] {
    cursor: pointer;
}
input {
    border: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 10px 10px 0;
}
select,
textarea {
    border: 1px solid var(--border-color);
    padding: 10px 10px;
}
input,
select,
textarea {
    background: 0 0;
    max-width: 100%;
    border-radius: 0;
}
input.disabled,
input[disabled],
select.disabled,
select[disabled],
textarea.disabled,
textarea[disabled] {
    cursor: default;
    background-color: #f6f6f6;
    border-color: rgb(182.25, 182.25, 182.25);
}
input.input-full,
select.input-full,
textarea.input-full {
    width: 100%;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
    color: var(--text-color-transparent8);
}
textarea {
    min-height: 100px;
}
input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin: 0 8px 0 0;
    padding: 0;
    width: auto;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
}
input[type="radio"] {
    appearance: none;
    -webkit-appearance: radio;
    -moz-appearance: radio;
}
input[type="image"] {
    padding-left: 0;
    padding-right: 0;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 28px;
    text-indent: 0.01px;
    text-overflow: "";
    cursor: pointer;
}
optgroup {
    font-weight: 700;
}
textarea {
    scrollbar-width: thin;
    scrollbar-color: var(--text-color-transparent40) var(--text-color-transparent10);
}
textarea::-webkit-scrollbar {
    width: 3px;
}
textarea::-webkit-scrollbar-track {
    background: var(--text-color-transparent10);
}
textarea::-webkit-scrollbar-thumb {
    background: var(--text-color-transparent40);
}
.hidden-label {
    position: absolute;
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
.ie9 .hidden-label,
.lt-ie9 .hidden-label {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial;
}
label[for] {
    cursor: pointer;
}
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
    display: block;
    margin-bottom: 10px;
}
.form-vertical input[type="checkbox"],
.form-vertical input[type="radio"] {
    display: inline-block;
}
.form-vertical .input-label--secondary {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 12px;
}
input.error,
select.error,
textarea.error {
    border-color: #d02e2e;
    background-color: #fff6f6;
    color: #d02e2e;
}
label.error {
    color: #d02e2e;
}
.qty-error {
    margin-top: 10px;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group .input-group-btn:first-child,
.input-group .input-group-field:first-child,
.input-group input[type="hidden"]:first-child + .input-group-field {
    border-radius: 0;
}
.input-group .input-group-field:last-child {
    border-radius: 0;
}
.input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px;
}
.input-group-btn,
.input-group-field {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}
.input-group .input-group-field {
    width: 100%;
}
.input-group-btn {
    position: relative;
    white-space: nowrap;
    width: 1%;
    padding: 0;
}
.errors,
.note {
    border-radius: 0;
    padding: 6px 12px;
    margin-bottom: 15px;
    margin-top: 15px;
    border: 1px solid transparent;
    font-size: 0.9em;
    text-align: left;
}
.errors ol,
.errors ul,
.note ol,
.note ul {
    margin-top: 0;
    margin-bottom: 0;
}
.errors li:last-child,
.note li:last-child {
    margin-bottom: 0;
}
.errors p,
.note p {
    margin-bottom: 0;
}
.note {
    border-color: var(--border-color);
}
.errors ul {
    list-style: disc outside;
    margin-left: 0;
}
.errors ul li {
    list-style-type: none;
}
.form-success {
    color: #3d7f4e;
    background-color: #ecfef0;
    border-color: #3d7f4e;
}
.form-success a {
    color: #3d7f4e;
    text-decoration: underline;
}
.form-success a:hover {
    text-decoration: none;
}
.errors {
    color: #d02e2e;
    background-color: #fff6f6;
    border-color: #d02e2e;
}
.errors a {
    color: #d02e2e;
    text-decoration: underline;
}
.errors a:hover {
    text-decoration: none;
}
#CustomerLoginForm input:not(.btn):focus,
#RecoverPasswordForm input:not(.btn):focus,
#create_customer input:not(.btn):focus {
    border-bottom: 1px solid var(--border-color);
}
#CustomerLoginForm #HideRecoverPasswordLink,
#RecoverPasswordForm #HideRecoverPasswordLink,
#create_customer #HideRecoverPasswordLink {
    cursor: pointer;
}
.shopify-section {
    width: 100%;
}
.shopify-section .wrapper-spacing--v.full-width {
    padding-left: 0;
    padding-right: 0;
}
.shopify-section .wrapper-spacing--v {
    padding-top: calc(var(--padding-section-top) * 0.75);
    padding-bottom: calc(var(--padding-section-bottom) * 0.75);
}
@media screen and (min-width: 768px) {
    .shopify-section .wrapper-spacing--v {
        padding-top: var(--padding-section-top);
        padding-bottom: var(--padding-section-bottom);
    }
}
.shopify-section .wrapper-spacing--v {
    margin-top: calc(var(--margin-section-top) * 0.75);
    margin-bottom: calc(var(--margin-section-bottom) * 0.75);
}
@media screen and (min-width: 768px) {
    .shopify-section .wrapper-spacing--v {
        margin-top: var(--margin-section-top);
        margin-bottom: var(--margin-section-bottom);
    }
}
.section-header {
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .section-header {
        display: table;
        width: 100%;
    }
}
.homepage-featured-content-wrapper,
.homepage-map-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
@media screen and (min-width: 768px) {
    .shopify-section .slider-nav--above .section-title--wrapper.remove--spacing {
        margin-bottom: 0;
    }
    .shopify-section .slider-nav--above:has(.swiper-button-lock) .section-title--wrapper.remove--spacing {
        margin-bottom: 50px;
    }
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container embed,
.embed-container iframe,
.embed-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.advanced-layout--hero__text-block {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: 0 30px;
}
.homepage-featured-content-box {
    width: 50%;
    background: var(--body-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
}
.homepage-featured-content-box .rte {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .feature-row__text--full-width .homepage-featured-content-box {
        margin-top: 0;
    }
}
.homepage-featured-content-box-inner {
    padding: 30px;
    text-align: center;
    word-break: break-word;
}
.homepage-featured-content-box-inner p {
    margin-bottom: 0;
}
.homepage-featured-box-btn,
.homepage-section-btn {
    margin-top: 20px;
}
.homepage-featured-box-btn--hidden,
.homepage-section-btn--hidden {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 767px) {
    .homepage-featured-content-box:not(.slideshow-mobile-overlay-text) {
        position: relative;
        width: 100%;
        transform: none;
        text-align: center;
        max-width: 100%;
    }
}
.homepage-content--image img {
    display: block;
    padding: 20px;
}
.wrapper-spacing--h.no-spacing {
    padding-left: 0;
    padding-right: 0;
}
.grid-item__content {
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.grid-item__title .h2,
.grid-item__title h2 {
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: 1.5rem;
    margin-bottom: 0;
}
.grid-item__subheading {
    font-size: 14px;
}
.grid-item-details--hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
}
.grid-item-details--hover:focus-within,
.grid-item-details--hover:hover {
    opacity: 1;
}
@media screen and (max-width: 767px) {
    .grid-item-details--hover {
        opacity: 1;
        position: absolute;
        top: 0;
    }
}
.grid-item-details--hover.full-height {
    height: 100%;
}
.grid-item-details--hover > a {
    width: 100%;
    height: 100%;
    display: block;
}
.grid-item-details--overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.grid-item-details--overlay.full-height {
    height: 100%;
}
.color-scheme--white .grid-item-details--below-image .grid-item__subheading,
.color-scheme--white .grid-item-details--below-image .grid-item__title {
    color: var(--text-color);
}
.color-scheme--light .grid-item-details--below-image .grid-item__subheading,
.color-scheme--light .grid-item-details--below-image .grid-item__title {
    color: var(--color-scheme-light-text);
}
.color-scheme--accent .grid-item-details--below-image .grid-item__subheading,
.color-scheme--accent .grid-item-details--below-image .grid-item__title {
    color: var(--color-scheme-feature-text);
}
.color-scheme--dark .grid-item-details--below-image .grid-item__subheading,
.color-scheme--dark .grid-item-details--below-image .grid-item__title {
    color: var(--color-scheme-dark-text);
}
.homepage-featured-rich-text {
    text-align: center;
}
.homepage-featured-rich-text .rte,
.homepage-featured-rich-text p:last-child {
    margin-bottom: 0;
}
.homepage-featured-rich-text .featured-products-wrapper .featured-row__subtext {
    margin-bottom: 30px;
}
.locations-modal {
    display: none;
}
@keyframes fade-in-up {
    0% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes fade-in-up-opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.shopify-policy__title {
    margin: 30px 0 15px;
}
.shopify-policy__title .h1,
.shopify-policy__title h1 {
    margin: 0;
}
@media only screen and (min-width: 481px) {
    .shopify-policy__title {
        margin: 100px 0;
    }
}
@media only screen and (min-width: 1024px) {
    .shopify-policy__container {
        max-width: 50%;
    }
}
.grid--full:after,
.grid--rev:after,
.grid-uniform:after,
.grid:after {
    content: "";
    display: table;
    clear: both;
}
.grid__item.clear {
    clear: both;
}
.grid,
.grid--full,
.grid--rev,
.grid-uniform {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: calc(-1 * var(--grid-spacing));
}
@media only screen and (max-width: 767px) {
    .wrapper-padded .grid,
    .wrapper-padded .grid--full,
    .wrapper-padded .grid--rev,
    .wrapper-padded .grid-uniform {
        margin-left: 0;
    }
}
.grid__item {
    box-sizing: border-box;
    float: left;
    min-height: 1px;
    padding-left: var(--grid-spacing);
    vertical-align: top;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .wrapper-padded .grid__item {
        padding-left: 0;
    }
}
.grid--rev {
    direction: rtl;
    text-align: left;
}
.grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right;
}
.grid--full {
    margin-left: 0;
}
.grid--full > .grid__item {
    padding-left: 0;
}
.grid--center {
    text-align: center;
}
.grid--center > .grid__item {
    text-align: left;
}
@media screen and (min-width: 768px) {
    .grid--center.grid--full,
    .grid--center.grid--rev,
    .grid.grid--center {
        margin-left: 0;
    }
}
.one-whole {
    width: 100%;
}
.one-half {
    width: 50%;
}
.one-third {
    width: 33.333%;
}
.two-thirds {
    width: 66.666%;
}
.one-quarter {
    width: 25%;
}
.two-quarters {
    width: 50%;
}
.three-quarters {
    width: 75%;
}
.one-fifth {
    width: 20%;
}
.two-fifths {
    width: 40%;
}
.three-fifths {
    width: 60%;
}
.four-fifths {
    width: 80%;
}
.one-sixth {
    width: 16.666%;
}
.two-sixths {
    width: 33.333%;
}
.three-sixths {
    width: 50%;
}
.four-sixths {
    width: 66.666%;
}
.five-sixths {
    width: 83.333%;
}
.one-eighth {
    width: 12.5%;
}
.two-eighths {
    width: 25%;
}
.three-eighths {
    width: 37.5%;
}
.four-eighths {
    width: 50%;
}
.five-eighths {
    width: 62.5%;
}
.six-eighths {
    width: 75%;
}
.seven-eighths {
    width: 87.5%;
}
.one-tenth {
    width: 10%;
}
.two-tenths {
    width: 20%;
}
.three-tenths {
    width: 30%;
}
.four-tenths {
    width: 40%;
}
.five-tenths {
    width: 50%;
}
.six-tenths {
    width: 60%;
}
.seven-tenths {
    width: 70%;
}
.eight-tenths {
    width: 80%;
}
.nine-tenths {
    width: 90%;
}
.one-twelfth {
    width: 8.333%;
}
.two-twelfths {
    width: 16.666%;
}
.three-twelfths {
    width: 25%;
}
.four-twelfths {
    width: 33.333%;
}
.five-twelfths {
    width: 41.666%;
}
.six-twelfths {
    width: 50%;
}
.seven-twelfths {
    width: 58.333%;
}
.eight-twelfths {
    width: 66.666%;
}
.nine-twelfths {
    width: 75%;
}
.ten-twelfths {
    width: 83.333%;
}
.eleven-twelfths {
    width: 91.666%;
}
.show {
    display: block !important;
}
.hide {
    display: none !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
.left {
    float: left !important;
}
.right {
    float: right !important;
}
@media only screen and (max-width: 480px) {
    .small--one-whole {
        width: 100%;
    }
    .small--one-half {
        width: 50%;
    }
    .small--one-third {
        width: 33.333%;
    }
    .small--two-thirds {
        width: 66.666%;
    }
    .small--one-quarter {
        width: 25%;
    }
    .small--two-quarters {
        width: 50%;
    }
    .small--three-quarters {
        width: 75%;
    }
    .small--one-fifth {
        width: 20%;
    }
    .small--two-fifths {
        width: 40%;
    }
    .small--three-fifths {
        width: 60%;
    }
    .small--four-fifths {
        width: 80%;
    }
    .small--one-sixth {
        width: 16.666%;
    }
    .small--two-sixths {
        width: 33.333%;
    }
    .small--three-sixths {
        width: 50%;
    }
    .small--four-sixths {
        width: 66.666%;
    }
    .small--five-sixths {
        width: 83.333%;
    }
    .small--one-eighth {
        width: 12.5%;
    }
    .small--two-eighths {
        width: 25%;
    }
    .small--three-eighths {
        width: 37.5%;
    }
    .small--four-eighths {
        width: 50%;
    }
    .small--five-eighths {
        width: 62.5%;
    }
    .small--six-eighths {
        width: 75%;
    }
    .small--seven-eighths {
        width: 87.5%;
    }
    .small--one-tenth {
        width: 10%;
    }
    .small--two-tenths {
        width: 20%;
    }
    .small--three-tenths {
        width: 30%;
    }
    .small--four-tenths {
        width: 40%;
    }
    .small--five-tenths {
        width: 50%;
    }
    .small--six-tenths {
        width: 60%;
    }
    .small--seven-tenths {
        width: 70%;
    }
    .small--eight-tenths {
        width: 80%;
    }
    .small--nine-tenths {
        width: 90%;
    }
    .small--one-twelfth {
        width: 8.333%;
    }
    .small--two-twelfths {
        width: 16.666%;
    }
    .small--three-twelfths {
        width: 25%;
    }
    .small--four-twelfths {
        width: 33.333%;
    }
    .small--five-twelfths {
        width: 41.666%;
    }
    .small--six-twelfths {
        width: 50%;
    }
    .small--seven-twelfths {
        width: 58.333%;
    }
    .small--eight-twelfths {
        width: 66.666%;
    }
    .small--nine-twelfths {
        width: 75%;
    }
    .small--ten-twelfths {
        width: 83.333%;
    }
    .small--eleven-twelfths {
        width: 91.666%;
    }
    .small--show {
        display: block !important;
    }
    .small--hide {
        display: none !important;
    }
    .small--text-left {
        text-align: left !important;
    }
    .small--text-right {
        text-align: right !important;
    }
    .small--text-center {
        text-align: center !important;
    }
    .small--left {
        float: left !important;
    }
    .small--right {
        float: right !important;
    }
    .grid-uniform .small--five-tenths:nth-child(2n + 1),
    .grid-uniform .small--four-eighths:nth-child(2n + 1),
    .grid-uniform .small--four-twelfths:nth-child(3n + 1),
    .grid-uniform .small--one-fifth:nth-child(5n + 1),
    .grid-uniform .small--one-half:nth-child(2n + 1),
    .grid-uniform .small--one-quarter:nth-child(4n + 1),
    .grid-uniform .small--one-sixth:nth-child(6n + 1),
    .grid-uniform .small--one-third:nth-child(3n + 1),
    .grid-uniform .small--one-twelfth:nth-child(12n + 1),
    .grid-uniform .small--six-twelfths:nth-child(2n + 1),
    .grid-uniform .small--three-sixths:nth-child(2n + 1),
    .grid-uniform .small--three-twelfths:nth-child(4n + 1),
    .grid-uniform .small--two-eighths:nth-child(4n + 1),
    .grid-uniform .small--two-sixths:nth-child(3n + 1),
    .grid-uniform .small--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .medium--one-whole {
        width: 100%;
    }
    .medium--one-half {
        width: 50%;
    }
    .medium--one-third {
        width: 33.333%;
    }
    .medium--two-thirds {
        width: 66.666%;
    }
    .medium--one-quarter {
        width: 25%;
    }
    .medium--two-quarters {
        width: 50%;
    }
    .medium--three-quarters {
        width: 75%;
    }
    .medium--one-fifth {
        width: 20%;
    }
    .medium--two-fifths {
        width: 40%;
    }
    .medium--three-fifths {
        width: 60%;
    }
    .medium--four-fifths {
        width: 80%;
    }
    .medium--one-sixth {
        width: 16.666%;
    }
    .medium--two-sixths {
        width: 33.333%;
    }
    .medium--three-sixths {
        width: 50%;
    }
    .medium--four-sixths {
        width: 66.666%;
    }
    .medium--five-sixths {
        width: 83.333%;
    }
    .medium--one-eighth {
        width: 12.5%;
    }
    .medium--two-eighths {
        width: 25%;
    }
    .medium--three-eighths {
        width: 37.5%;
    }
    .medium--four-eighths {
        width: 50%;
    }
    .medium--five-eighths {
        width: 62.5%;
    }
    .medium--six-eighths {
        width: 75%;
    }
    .medium--seven-eighths {
        width: 87.5%;
    }
    .medium--one-tenth {
        width: 10%;
    }
    .medium--two-tenths {
        width: 20%;
    }
    .medium--three-tenths {
        width: 30%;
    }
    .medium--four-tenths {
        width: 40%;
    }
    .medium--five-tenths {
        width: 50%;
    }
    .medium--six-tenths {
        width: 60%;
    }
    .medium--seven-tenths {
        width: 70%;
    }
    .medium--eight-tenths {
        width: 80%;
    }
    .medium--nine-tenths {
        width: 90%;
    }
    .medium--one-twelfth {
        width: 8.333%;
    }
    .medium--two-twelfths {
        width: 16.666%;
    }
    .medium--three-twelfths {
        width: 25%;
    }
    .medium--four-twelfths {
        width: 33.333%;
    }
    .medium--five-twelfths {
        width: 41.666%;
    }
    .medium--six-twelfths {
        width: 50%;
    }
    .medium--seven-twelfths {
        width: 58.333%;
    }
    .medium--eight-twelfths {
        width: 66.666%;
    }
    .medium--nine-twelfths {
        width: 75%;
    }
    .medium--ten-twelfths {
        width: 83.333%;
    }
    .medium--eleven-twelfths {
        width: 91.666%;
    }
    .medium--show {
        display: block !important;
    }
    .medium--hide {
        display: none !important;
    }
    .medium--text-left {
        text-align: left !important;
    }
    .medium--text-right {
        text-align: right !important;
    }
    .medium--text-center {
        text-align: center !important;
    }
    .medium--left {
        float: left !important;
    }
    .medium--right {
        float: right !important;
    }
    .grid-uniform .medium--five-tenths:nth-child(2n + 1),
    .grid-uniform .medium--four-eighths:nth-child(2n + 1),
    .grid-uniform .medium--four-twelfths:nth-child(3n + 1),
    .grid-uniform .medium--one-fifth:nth-child(5n + 1),
    .grid-uniform .medium--one-half:nth-child(2n + 1),
    .grid-uniform .medium--one-quarter:nth-child(4n + 1),
    .grid-uniform .medium--one-sixth:nth-child(6n + 1),
    .grid-uniform .medium--one-third:nth-child(3n + 1),
    .grid-uniform .medium--one-twelfth:nth-child(12n + 1),
    .grid-uniform .medium--six-twelfths:nth-child(2n + 1),
    .grid-uniform .medium--three-sixths:nth-child(2n + 1),
    .grid-uniform .medium--three-twelfths:nth-child(4n + 1),
    .grid-uniform .medium--two-eighths:nth-child(4n + 1),
    .grid-uniform .medium--two-sixths:nth-child(3n + 1),
    .grid-uniform .medium--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (max-width: 767px) {
    .medium-down--one-whole {
        width: 100%;
    }
    .medium-down--one-half {
        width: 50%;
    }
    .medium-down--one-third {
        width: 33.333%;
    }
    .medium-down--two-thirds {
        width: 66.666%;
    }
    .medium-down--one-quarter {
        width: 25%;
    }
    .medium-down--two-quarters {
        width: 50%;
    }
    .medium-down--three-quarters {
        width: 75%;
    }
    .medium-down--one-fifth {
        width: 20%;
    }
    .medium-down--two-fifths {
        width: 40%;
    }
    .medium-down--three-fifths {
        width: 60%;
    }
    .medium-down--four-fifths {
        width: 80%;
    }
    .medium-down--one-sixth {
        width: 16.666%;
    }
    .medium-down--two-sixths {
        width: 33.333%;
    }
    .medium-down--three-sixths {
        width: 50%;
    }
    .medium-down--four-sixths {
        width: 66.666%;
    }
    .medium-down--five-sixths {
        width: 83.333%;
    }
    .medium-down--one-eighth {
        width: 12.5%;
    }
    .medium-down--two-eighths {
        width: 25%;
    }
    .medium-down--three-eighths {
        width: 37.5%;
    }
    .medium-down--four-eighths {
        width: 50%;
    }
    .medium-down--five-eighths {
        width: 62.5%;
    }
    .medium-down--six-eighths {
        width: 75%;
    }
    .medium-down--seven-eighths {
        width: 87.5%;
    }
    .medium-down--one-tenth {
        width: 10%;
    }
    .medium-down--two-tenths {
        width: 20%;
    }
    .medium-down--three-tenths {
        width: 30%;
    }
    .medium-down--four-tenths {
        width: 40%;
    }
    .medium-down--five-tenths {
        width: 50%;
    }
    .medium-down--six-tenths {
        width: 60%;
    }
    .medium-down--seven-tenths {
        width: 70%;
    }
    .medium-down--eight-tenths {
        width: 80%;
    }
    .medium-down--nine-tenths {
        width: 90%;
    }
    .medium-down--one-twelfth {
        width: 8.333%;
    }
    .medium-down--two-twelfths {
        width: 16.666%;
    }
    .medium-down--three-twelfths {
        width: 25%;
    }
    .medium-down--four-twelfths {
        width: 33.333%;
    }
    .medium-down--five-twelfths {
        width: 41.666%;
    }
    .medium-down--six-twelfths {
        width: 50%;
    }
    .medium-down--seven-twelfths {
        width: 58.333%;
    }
    .medium-down--eight-twelfths {
        width: 66.666%;
    }
    .medium-down--nine-twelfths {
        width: 75%;
    }
    .medium-down--ten-twelfths {
        width: 83.333%;
    }
    .medium-down--eleven-twelfths {
        width: 91.666%;
    }
    .medium-down--show {
        display: block !important;
    }
    .medium-down--hide {
        display: none !important;
    }
    .medium-down--text-left {
        text-align: left !important;
    }
    .medium-down--text-right {
        text-align: right !important;
    }
    .medium-down--text-center {
        text-align: center !important;
    }
    .medium-down--left {
        float: left !important;
    }
    .medium-down--right {
        float: right !important;
    }
    .grid-uniform .medium-down--five-tenths:nth-child(2n + 1),
    .grid-uniform .medium-down--four-eighths:nth-child(2n + 1),
    .grid-uniform .medium-down--four-twelfths:nth-child(3n + 1),
    .grid-uniform .medium-down--one-fifth:nth-child(5n + 1),
    .grid-uniform .medium-down--one-half:nth-child(2n + 1),
    .grid-uniform .medium-down--one-quarter:nth-child(4n + 1),
    .grid-uniform .medium-down--one-sixth:nth-child(6n + 1),
    .grid-uniform .medium-down--one-third:nth-child(3n + 1),
    .grid-uniform .medium-down--one-twelfth:nth-child(12n + 1),
    .grid-uniform .medium-down--six-twelfths:nth-child(2n + 1),
    .grid-uniform .medium-down--three-sixths:nth-child(2n + 1),
    .grid-uniform .medium-down--three-twelfths:nth-child(4n + 1),
    .grid-uniform .medium-down--two-eighths:nth-child(4n + 1),
    .grid-uniform .medium-down--two-sixths:nth-child(3n + 1),
    .grid-uniform .medium-down--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (min-width: 768px) {
    .large--one-whole {
        width: 100%;
    }
    .large--one-half {
        width: 50%;
    }
    .large--one-third {
        width: 33.333%;
    }
    .large--two-thirds {
        width: 66.666%;
    }
    .large--one-quarter {
        width: 25%;
    }
    .large--two-quarters {
        width: 50%;
    }
    .large--three-quarters {
        width: 75%;
    }
    .large--one-fifth {
        width: 20%;
    }
    .large--two-fifths {
        width: 40%;
    }
    .large--three-fifths {
        width: 60%;
    }
    .large--four-fifths {
        width: 80%;
    }
    .large--one-sixth {
        width: 16.666%;
    }
    .large--two-sixths {
        width: 33.333%;
    }
    .large--three-sixths {
        width: 50%;
    }
    .large--four-sixths {
        width: 66.666%;
    }
    .large--five-sixths {
        width: 83.333%;
    }
    .large--one-eighth {
        width: 12.5%;
    }
    .large--two-eighths {
        width: 25%;
    }
    .large--three-eighths {
        width: 37.5%;
    }
    .large--four-eighths {
        width: 50%;
    }
    .large--five-eighths {
        width: 62.5%;
    }
    .large--six-eighths {
        width: 75%;
    }
    .large--seven-eighths {
        width: 87.5%;
    }
    .large--one-tenth {
        width: 10%;
    }
    .large--two-tenths {
        width: 20%;
    }
    .large--three-tenths {
        width: 30%;
    }
    .large--four-tenths {
        width: 40%;
    }
    .large--five-tenths {
        width: 50%;
    }
    .large--six-tenths {
        width: 60%;
    }
    .large--seven-tenths {
        width: 70%;
    }
    .large--eight-tenths {
        width: 80%;
    }
    .large--nine-tenths {
        width: 90%;
    }
    .large--one-twelfth {
        width: 8.333%;
    }
    .large--two-twelfths {
        width: 16.666%;
    }
    .large--three-twelfths {
        width: 25%;
    }
    .large--four-twelfths {
        width: 33.333%;
    }
    .large--five-twelfths {
        width: 41.666%;
    }
    .large--six-twelfths {
        width: 50%;
    }
    .large--seven-twelfths {
        width: 58.333%;
    }
    .large--eight-twelfths {
        width: 66.666%;
    }
    .large--nine-twelfths {
        width: 75%;
    }
    .large--ten-twelfths {
        width: 83.333%;
    }
    .large--eleven-twelfths {
        width: 91.666%;
    }
    .large--show {
        display: block !important;
    }
    .large--hide {
        display: none !important;
    }
    .large--text-left {
        text-align: left !important;
    }
    .large--text-right {
        text-align: right !important;
    }
    .large--text-center {
        text-align: center !important;
    }
    .large--left {
        float: left !important;
    }
    .large--right {
        float: right !important;
    }
    .grid-uniform .large--five-tenths:nth-child(2n + 1),
    .grid-uniform .large--four-eighths:nth-child(2n + 1),
    .grid-uniform .large--four-twelfths:nth-child(3n + 1),
    .grid-uniform .large--one-fifth:nth-child(5n + 1),
    .grid-uniform .large--one-half:nth-child(2n + 1),
    .grid-uniform .large--one-quarter:nth-child(4n + 1),
    .grid-uniform .large--one-sixth:nth-child(6n + 1),
    .grid-uniform .large--one-third:nth-child(3n + 1),
    .grid-uniform .large--one-twelfth:nth-child(12n + 1),
    .grid-uniform .large--six-twelfths:nth-child(2n + 1),
    .grid-uniform .large--three-sixths:nth-child(2n + 1),
    .grid-uniform .large--three-twelfths:nth-child(4n + 1),
    .grid-uniform .large--two-eighths:nth-child(4n + 1),
    .grid-uniform .large--two-sixths:nth-child(3n + 1),
    .grid-uniform .large--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (min-width: 1200px) {
    .extra-large--one-whole {
        width: 100%;
    }
    .extra-large--one-half {
        width: 50%;
    }
    .extra-large--one-third {
        width: 33.333%;
    }
    .extra-large--two-thirds {
        width: 66.666%;
    }
    .extra-large--one-quarter {
        width: 25%;
    }
    .extra-large--two-quarters {
        width: 50%;
    }
    .extra-large--three-quarters {
        width: 75%;
    }
    .extra-large--one-fifth {
        width: 20%;
    }
    .extra-large--two-fifths {
        width: 40%;
    }
    .extra-large--three-fifths {
        width: 60%;
    }
    .extra-large--four-fifths {
        width: 80%;
    }
    .extra-large--one-sixth {
        width: 16.666%;
    }
    .extra-large--two-sixths {
        width: 33.333%;
    }
    .extra-large--three-sixths {
        width: 50%;
    }
    .extra-large--four-sixths {
        width: 66.666%;
    }
    .extra-large--five-sixths {
        width: 83.333%;
    }
    .extra-large--one-eighth {
        width: 12.5%;
    }
    .extra-large--two-eighths {
        width: 25%;
    }
    .extra-large--three-eighths {
        width: 37.5%;
    }
    .extra-large--four-eighths {
        width: 50%;
    }
    .extra-large--five-eighths {
        width: 62.5%;
    }
    .extra-large--six-eighths {
        width: 75%;
    }
    .extra-large--seven-eighths {
        width: 87.5%;
    }
    .extra-large--one-tenth {
        width: 10%;
    }
    .extra-large--two-tenths {
        width: 20%;
    }
    .extra-large--three-tenths {
        width: 30%;
    }
    .extra-large--four-tenths {
        width: 40%;
    }
    .extra-large--five-tenths {
        width: 50%;
    }
    .extra-large--six-tenths {
        width: 60%;
    }
    .extra-large--seven-tenths {
        width: 70%;
    }
    .extra-large--eight-tenths {
        width: 80%;
    }
    .extra-large--nine-tenths {
        width: 90%;
    }
    .extra-large--one-twelfth {
        width: 8.333%;
    }
    .extra-large--two-twelfths {
        width: 16.666%;
    }
    .extra-large--three-twelfths {
        width: 25%;
    }
    .extra-large--four-twelfths {
        width: 33.333%;
    }
    .extra-large--five-twelfths {
        width: 41.666%;
    }
    .extra-large--six-twelfths {
        width: 50%;
    }
    .extra-large--seven-twelfths {
        width: 58.333%;
    }
    .extra-large--eight-twelfths {
        width: 66.666%;
    }
    .extra-large--nine-twelfths {
        width: 75%;
    }
    .extra-large--ten-twelfths {
        width: 83.333%;
    }
    .extra-large--eleven-twelfths {
        width: 91.666%;
    }
    .extra-large--show {
        display: block !important;
    }
    .extra-large--hide {
        display: none !important;
    }
    .extra-large--text-left {
        text-align: left !important;
    }
    .extra-large--text-right {
        text-align: right !important;
    }
    .extra-large--text-center {
        text-align: center !important;
    }
    .extra-large--left {
        float: left !important;
    }
    .extra-large--right {
        float: right !important;
    }
    .grid-uniform .extra-large--five-tenths:nth-child(2n + 1),
    .grid-uniform .extra-large--four-eighths:nth-child(2n + 1),
    .grid-uniform .extra-large--four-twelfths:nth-child(3n + 1),
    .grid-uniform .extra-large--one-fifth:nth-child(5n + 1),
    .grid-uniform .extra-large--one-half:nth-child(2n + 1),
    .grid-uniform .extra-large--one-quarter:nth-child(4n + 1),
    .grid-uniform .extra-large--one-sixth:nth-child(6n + 1),
    .grid-uniform .extra-large--one-third:nth-child(3n + 1),
    .grid-uniform .extra-large--one-twelfth:nth-child(12n + 1),
    .grid-uniform .extra-large--six-twelfths:nth-child(2n + 1),
    .grid-uniform .extra-large--three-sixths:nth-child(2n + 1),
    .grid-uniform .extra-large--three-twelfths:nth-child(4n + 1),
    .grid-uniform .extra-large--two-eighths:nth-child(4n + 1),
    .grid-uniform .extra-large--two-sixths:nth-child(3n + 1),
    .grid-uniform .extra-large--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
[class*="push--"] {
    position: relative;
}
.push--one-whole {
    left: 100%;
}
.push--one-half {
    left: 50%;
}
.push--one-third {
    left: 33.333%;
}
.push--two-thirds {
    left: 66.666%;
}
.push--one-quarter {
    left: 25%;
}
.push--two-quarters {
    left: 50%;
}
.push--three-quarters {
    left: 75%;
}
.push--one-fifth {
    left: 20%;
}
.push--two-fifths {
    left: 40%;
}
.push--three-fifths {
    left: 60%;
}
.push--four-fifths {
    left: 80%;
}
.push--one-sixth {
    left: 16.666%;
}
.push--two-sixths {
    left: 33.333%;
}
.push--three-sixths {
    left: 50%;
}
.push--four-sixths {
    left: 66.666%;
}
.push--five-sixths {
    left: 83.333%;
}
.push--one-eighth {
    left: 12.5%;
}
.push--two-eighths {
    left: 25%;
}
.push--three-eighths {
    left: 37.5%;
}
.push--four-eighths {
    left: 50%;
}
.push--five-eighths {
    left: 62.5%;
}
.push--six-eighths {
    left: 75%;
}
.push--seven-eighths {
    left: 87.5%;
}
.push--one-tenth {
    left: 10%;
}
.push--two-tenths {
    left: 20%;
}
.push--three-tenths {
    left: 30%;
}
.push--four-tenths {
    left: 40%;
}
.push--five-tenths {
    left: 50%;
}
.push--six-tenths {
    left: 60%;
}
.push--seven-tenths {
    left: 70%;
}
.push--eight-tenths {
    left: 80%;
}
.push--nine-tenths {
    left: 90%;
}
.push--one-twelfth {
    left: 8.333%;
}
.push--two-twelfths {
    left: 16.666%;
}
.push--three-twelfths {
    left: 25%;
}
.push--four-twelfths {
    left: 33.333%;
}
.push--five-twelfths {
    left: 41.666%;
}
.push--six-twelfths {
    left: 50%;
}
.push--seven-twelfths {
    left: 58.333%;
}
.push--eight-twelfths {
    left: 66.666%;
}
.push--nine-twelfths {
    left: 75%;
}
.push--ten-twelfths {
    left: 83.333%;
}
.push--eleven-twelfths {
    left: 91.666%;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .push--medium--one-whole {
        left: 100%;
    }
    .push--medium--one-half {
        left: 50%;
    }
    .push--medium--one-third {
        left: 33.333%;
    }
    .push--medium--two-thirds {
        left: 66.666%;
    }
    .push--medium--one-quarter {
        left: 25%;
    }
    .push--medium--two-quarters {
        left: 50%;
    }
    .push--medium--three-quarters {
        left: 75%;
    }
    .push--medium--one-fifth {
        left: 20%;
    }
    .push--medium--two-fifths {
        left: 40%;
    }
    .push--medium--three-fifths {
        left: 60%;
    }
    .push--medium--four-fifths {
        left: 80%;
    }
    .push--medium--one-sixth {
        left: 16.666%;
    }
    .push--medium--two-sixths {
        left: 33.333%;
    }
    .push--medium--three-sixths {
        left: 50%;
    }
    .push--medium--four-sixths {
        left: 66.666%;
    }
    .push--medium--five-sixths {
        left: 83.333%;
    }
    .push--medium--one-eighth {
        left: 12.5%;
    }
    .push--medium--two-eighths {
        left: 25%;
    }
    .push--medium--three-eighths {
        left: 37.5%;
    }
    .push--medium--four-eighths {
        left: 50%;
    }
    .push--medium--five-eighths {
        left: 62.5%;
    }
    .push--medium--six-eighths {
        left: 75%;
    }
    .push--medium--seven-eighths {
        left: 87.5%;
    }
    .push--medium--one-tenth {
        left: 10%;
    }
    .push--medium--two-tenths {
        left: 20%;
    }
    .push--medium--three-tenths {
        left: 30%;
    }
    .push--medium--four-tenths {
        left: 40%;
    }
    .push--medium--five-tenths {
        left: 50%;
    }
    .push--medium--six-tenths {
        left: 60%;
    }
    .push--medium--seven-tenths {
        left: 70%;
    }
    .push--medium--eight-tenths {
        left: 80%;
    }
    .push--medium--nine-tenths {
        left: 90%;
    }
    .push--medium--one-twelfth {
        left: 8.333%;
    }
    .push--medium--two-twelfths {
        left: 16.666%;
    }
    .push--medium--three-twelfths {
        left: 25%;
    }
    .push--medium--four-twelfths {
        left: 33.333%;
    }
    .push--medium--five-twelfths {
        left: 41.666%;
    }
    .push--medium--six-twelfths {
        left: 50%;
    }
    .push--medium--seven-twelfths {
        left: 58.333%;
    }
    .push--medium--eight-twelfths {
        left: 66.666%;
    }
    .push--medium--nine-twelfths {
        left: 75%;
    }
    .push--medium--ten-twelfths {
        left: 83.333%;
    }
    .push--medium--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (max-width: 767px) {
    .push--medium-down--one-whole {
        left: 100%;
    }
    .push--medium-down--one-half {
        left: 50%;
    }
    .push--medium-down--one-third {
        left: 33.333%;
    }
    .push--medium-down--two-thirds {
        left: 66.666%;
    }
    .push--medium-down--one-quarter {
        left: 25%;
    }
    .push--medium-down--two-quarters {
        left: 50%;
    }
    .push--medium-down--three-quarters {
        left: 75%;
    }
    .push--medium-down--one-fifth {
        left: 20%;
    }
    .push--medium-down--two-fifths {
        left: 40%;
    }
    .push--medium-down--three-fifths {
        left: 60%;
    }
    .push--medium-down--four-fifths {
        left: 80%;
    }
    .push--medium-down--one-sixth {
        left: 16.666%;
    }
    .push--medium-down--two-sixths {
        left: 33.333%;
    }
    .push--medium-down--three-sixths {
        left: 50%;
    }
    .push--medium-down--four-sixths {
        left: 66.666%;
    }
    .push--medium-down--five-sixths {
        left: 83.333%;
    }
    .push--medium-down--one-eighth {
        left: 12.5%;
    }
    .push--medium-down--two-eighths {
        left: 25%;
    }
    .push--medium-down--three-eighths {
        left: 37.5%;
    }
    .push--medium-down--four-eighths {
        left: 50%;
    }
    .push--medium-down--five-eighths {
        left: 62.5%;
    }
    .push--medium-down--six-eighths {
        left: 75%;
    }
    .push--medium-down--seven-eighths {
        left: 87.5%;
    }
    .push--medium-down--one-tenth {
        left: 10%;
    }
    .push--medium-down--two-tenths {
        left: 20%;
    }
    .push--medium-down--three-tenths {
        left: 30%;
    }
    .push--medium-down--four-tenths {
        left: 40%;
    }
    .push--medium-down--five-tenths {
        left: 50%;
    }
    .push--medium-down--six-tenths {
        left: 60%;
    }
    .push--medium-down--seven-tenths {
        left: 70%;
    }
    .push--medium-down--eight-tenths {
        left: 80%;
    }
    .push--medium-down--nine-tenths {
        left: 90%;
    }
    .push--medium-down--one-twelfth {
        left: 8.333%;
    }
    .push--medium-down--two-twelfths {
        left: 16.666%;
    }
    .push--medium-down--three-twelfths {
        left: 25%;
    }
    .push--medium-down--four-twelfths {
        left: 33.333%;
    }
    .push--medium-down--five-twelfths {
        left: 41.666%;
    }
    .push--medium-down--six-twelfths {
        left: 50%;
    }
    .push--medium-down--seven-twelfths {
        left: 58.333%;
    }
    .push--medium-down--eight-twelfths {
        left: 66.666%;
    }
    .push--medium-down--nine-twelfths {
        left: 75%;
    }
    .push--medium-down--ten-twelfths {
        left: 83.333%;
    }
    .push--medium-down--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (min-width: 768px) {
    .push--large--one-whole {
        left: 100%;
    }
    .push--large--one-half {
        left: 50%;
    }
    .push--large--one-third {
        left: 33.333%;
    }
    .push--large--two-thirds {
        left: 66.666%;
    }
    .push--large--one-quarter {
        left: 25%;
    }
    .push--large--two-quarters {
        left: 50%;
    }
    .push--large--three-quarters {
        left: 75%;
    }
    .push--large--one-fifth {
        left: 20%;
    }
    .push--large--two-fifths {
        left: 40%;
    }
    .push--large--three-fifths {
        left: 60%;
    }
    .push--large--four-fifths {
        left: 80%;
    }
    .push--large--one-sixth {
        left: 16.666%;
    }
    .push--large--two-sixths {
        left: 33.333%;
    }
    .push--large--three-sixths {
        left: 50%;
    }
    .push--large--four-sixths {
        left: 66.666%;
    }
    .push--large--five-sixths {
        left: 83.333%;
    }
    .push--large--one-eighth {
        left: 12.5%;
    }
    .push--large--two-eighths {
        left: 25%;
    }
    .push--large--three-eighths {
        left: 37.5%;
    }
    .push--large--four-eighths {
        left: 50%;
    }
    .push--large--five-eighths {
        left: 62.5%;
    }
    .push--large--six-eighths {
        left: 75%;
    }
    .push--large--seven-eighths {
        left: 87.5%;
    }
    .push--large--one-tenth {
        left: 10%;
    }
    .push--large--two-tenths {
        left: 20%;
    }
    .push--large--three-tenths {
        left: 30%;
    }
    .push--large--four-tenths {
        left: 40%;
    }
    .push--large--five-tenths {
        left: 50%;
    }
    .push--large--six-tenths {
        left: 60%;
    }
    .push--large--seven-tenths {
        left: 70%;
    }
    .push--large--eight-tenths {
        left: 80%;
    }
    .push--large--nine-tenths {
        left: 90%;
    }
    .push--large--one-twelfth {
        left: 8.333%;
    }
    .push--large--two-twelfths {
        left: 16.666%;
    }
    .push--large--three-twelfths {
        left: 25%;
    }
    .push--large--four-twelfths {
        left: 33.333%;
    }
    .push--large--five-twelfths {
        left: 41.666%;
    }
    .push--large--six-twelfths {
        left: 50%;
    }
    .push--large--seven-twelfths {
        left: 58.333%;
    }
    .push--large--eight-twelfths {
        left: 66.666%;
    }
    .push--large--nine-twelfths {
        left: 75%;
    }
    .push--large--ten-twelfths {
        left: 83.333%;
    }
    .push--large--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (min-width: 1200px) {
    .push--extra-large--one-whole {
        left: 100%;
    }
    .push--extra-large--one-half {
        left: 50%;
    }
    .push--extra-large--one-third {
        left: 33.333%;
    }
    .push--extra-large--two-thirds {
        left: 66.666%;
    }
    .push--extra-large--one-quarter {
        left: 25%;
    }
    .push--extra-large--two-quarters {
        left: 50%;
    }
    .push--extra-large--three-quarters {
        left: 75%;
    }
    .push--extra-large--one-fifth {
        left: 20%;
    }
    .push--extra-large--two-fifths {
        left: 40%;
    }
    .push--extra-large--three-fifths {
        left: 60%;
    }
    .push--extra-large--four-fifths {
        left: 80%;
    }
    .push--extra-large--one-sixth {
        left: 16.666%;
    }
    .push--extra-large--two-sixths {
        left: 33.333%;
    }
    .push--extra-large--three-sixths {
        left: 50%;
    }
    .push--extra-large--four-sixths {
        left: 66.666%;
    }
    .push--extra-large--five-sixths {
        left: 83.333%;
    }
    .push--extra-large--one-eighth {
        left: 12.5%;
    }
    .push--extra-large--two-eighths {
        left: 25%;
    }
    .push--extra-large--three-eighths {
        left: 37.5%;
    }
    .push--extra-large--four-eighths {
        left: 50%;
    }
    .push--extra-large--five-eighths {
        left: 62.5%;
    }
    .push--extra-large--six-eighths {
        left: 75%;
    }
    .push--extra-large--seven-eighths {
        left: 87.5%;
    }
    .push--extra-large--one-tenth {
        left: 10%;
    }
    .push--extra-large--two-tenths {
        left: 20%;
    }
    .push--extra-large--three-tenths {
        left: 30%;
    }
    .push--extra-large--four-tenths {
        left: 40%;
    }
    .push--extra-large--five-tenths {
        left: 50%;
    }
    .push--extra-large--six-tenths {
        left: 60%;
    }
    .push--extra-large--seven-tenths {
        left: 70%;
    }
    .push--extra-large--eight-tenths {
        left: 80%;
    }
    .push--extra-large--nine-tenths {
        left: 90%;
    }
    .push--extra-large--one-twelfth {
        left: 8.333%;
    }
    .push--extra-large--two-twelfths {
        left: 16.666%;
    }
    .push--extra-large--three-twelfths {
        left: 25%;
    }
    .push--extra-large--four-twelfths {
        left: 33.333%;
    }
    .push--extra-large--five-twelfths {
        left: 41.666%;
    }
    .push--extra-large--six-twelfths {
        left: 50%;
    }
    .push--extra-large--seven-twelfths {
        left: 58.333%;
    }
    .push--extra-large--eight-twelfths {
        left: 66.666%;
    }
    .push--extra-large--nine-twelfths {
        left: 75%;
    }
    .push--extra-large--ten-twelfths {
        left: 83.333%;
    }
    .push--extra-large--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (max-width: 767px) {
    .grid__item {
        margin-top: 30px;
    }
}
.header-section:not(.sticky-header) {
    position: relative;
    z-index: 1000;
}
.header-section--wrapper {
    z-index: 10000;
}
.site-header {
    border-bottom: 1px solid var(--header-border-color);
    margin-bottom: 0;
    background-color: var(--header-color);
}
@media (max-width: 989px) {
    .site-header {
        display: none;
    }
}
.site-header localization-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header localization-form .icon-dropdown {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.site-header .site-header__nav ~ localization-form {
    padding-left: 20px;
}
.site-header .site-header__nav ~ localization-form ~ localization-form {
    padding-left: 0;
}
@media (min-width: 768px) {
    .site-header {
        position: relative;
    }
}
.template-index .site-header {
    margin-bottom: 0;
}
.site-header .grid--center .grid__item {
    text-align: center;
}
.site-header .grid--full.grid--center {
    position: relative;
}
.site-header .grid--full.grid--center .top-links--icon-links {
    position: absolute;
    top: 10px;
    right: 0;
}
.site-header .site-header__wrapper {
    position: relative;
    display: grid;
    align-items: center;
    gap: 15px;
}
.site-header .site-header__wrapper .site-header__wrapper__left {
    grid-column: 1/2;
    justify-self: start;
    display: flex;
}
.site-header .site-header__wrapper .site-header__wrapper__left .site-header__nav {
    align-self: center;
}
.site-header .site-header__wrapper .site-header__wrapper__left .localization-form button,
.site-header .site-header__wrapper .site-header__wrapper__left ul.site-nav li.first-level-dropdown:first-child {
    padding-left: 0;
}
.site-header .site-header__wrapper .site-header__wrapper__center {
    grid-column: 2/3;
    align-self: center;
    justify-self: center;
}
.site-header .site-header__wrapper .site-header__wrapper__right {
    grid-column: 3/4;
    justify-self: end;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: center;
}
.site-header .site-header__wrapper .site-header__wrapper__right .site-nav {
    text-align: right;
    justify-content: flex-end;
}
.site-header .site-header__wrapper.site-header__wrapper--logo-above,
.site-header .site-header__wrapper.site-header__wrapper--logo-center {
    grid-template-columns: 1fr minmax(0, auto) 1fr;
    grid-template-rows: 1fr;
}
@media only screen and (min-width: 768px) {
    .site-header .site-header__wrapper.site-header__wrapper--logo-above .site-header__wrapper__right,
    .site-header .site-header__wrapper.site-header__wrapper--logo-center .site-header__wrapper__right {
        margin-right: -12px;
    }
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left {
    grid-template-columns: minmax(0, auto) 1fr;
    grid-template-rows: 1fr;
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__right {
    grid-column: 2/3;
}
@media only screen and (min-width: 768px) {
    .site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__right .shopping-bag,
    .site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__right .shopping-cart {
        margin-right: -12px;
    }
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__center {
    display: none;
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left .site-nav {
    margin: 0;
}
.site-header .site-header__nav-standalone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    text-align: center;
}
.site-header .site-header__nav-standalone ul.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-header.logo_above {
    padding-top: 19px;
    padding-bottom: 3px;
}
.site-nav--has-dropdown ul.site-nav__dropdown li {
    padding: 0;
}
.site-header__logo.h1,
.site-header__logo.header-font,
h1.site-header__logo {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    font-size: var(--logo-font-size);
}
.site-header__logo.h1 a,
.site-header__logo.header-font a,
h1.site-header__logo a {
    display: block;
    max-width: 100%;
    font-size: var(--logo-font-size);
}
.grid--center .site-header__logo.h1 a,
.grid--center .site-header__logo.header-font a,
.grid--center h1.site-header__logo a {
    display: inline-block;
}
.site-header__logo.h1 img,
.site-header__logo.header-font img,
h1.site-header__logo img {
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}
@media only screen and (max-width: 767px) {
    .site-header__logo.h1 img,
    .site-header__logo.header-font img,
    h1.site-header__logo img {
        vertical-align: middle;
    }
}
.site-header__logo-link {
    max-width: var(--logo-max-width);
    margin: 0 auto;
}
.site-header__logo {
    transition: transform 0.3s ease;
}
.site-header__wrapper--logo-left .site-header__logo {
    transform-origin: left;
}
@media (prefers-reduced-motion: no-preference) {
    .header-section.sticked .site-header__logo {
        transform: scale(0.9);
    }
    .header-section.is-off-screen .site-header__logo {
        transform: scale(0.7);
    }
}
.sticky-header {
    position: sticky;
    top: -1px;
    background-color: var(--header-color);
    z-index: 1000;
    left: 0 !important;
    transition: all 0.25s ease;
}
.no-js .overlay-header,
.no-js .site-header {
    background-color: var(--header-color) !important;
}
.no-js .overlay-header .site-nav__dropdown,
.no-js .site-header .site-nav__dropdown {
    visibility: visible !important;
    opacity: 1 !important;
}
.no-js .overlay-header .site-header__logo-link,
.no-js .overlay-header .site-header__logo-link:visited,
.no-js .overlay-header .site-header__logo-overlay-link,
.no-js .overlay-header localization-form button,
.no-js .site-header .site-header__logo-link,
.no-js .site-header .site-header__logo-link:visited,
.no-js .site-header .site-header__logo-overlay-link,
.no-js .site-header localization-form button {
    color: var(--nav-text-color) !important;
}
.no-js .overlay-header .site-header__logo-link:focus,
.no-js .overlay-header .site-header__logo-link:hover,
.no-js .overlay-header .site-header__logo-link:visited:focus,
.no-js .overlay-header .site-header__logo-link:visited:hover,
.no-js .overlay-header .site-header__logo-overlay-link:focus,
.no-js .overlay-header .site-header__logo-overlay-link:hover,
.no-js .overlay-header localization-form button:focus,
.no-js .overlay-header localization-form button:hover,
.no-js .site-header .site-header__logo-link:focus,
.no-js .site-header .site-header__logo-link:hover,
.no-js .site-header .site-header__logo-link:visited:focus,
.no-js .site-header .site-header__logo-link:visited:hover,
.no-js .site-header .site-header__logo-overlay-link:focus,
.no-js .site-header .site-header__logo-overlay-link:hover,
.no-js .site-header localization-form button:focus,
.no-js .site-header localization-form button:hover {
    color: var(--nav-text-hover) !important;
}
.contact-page .overlay-header-wrapper,
.template-collection .overlay-header-wrapper,
.template-index .overlay-header-wrapper,
.template-list-collections .overlay-header-wrapper {
    margin-block-end: calc(-1 * var(--header-height-desktop));
}
@media (max-width: 989px) {
    .contact-page .overlay-header-wrapper,
    .template-collection .overlay-header-wrapper,
    .template-index .overlay-header-wrapper,
    .template-list-collections .overlay-header-wrapper {
        margin-block-end: calc(-1 * var(--header-height-mobile));
    }
}
.contact-page .overlay-header,
.template-collection .overlay-header,
.template-index .overlay-header,
.template-list-collections .overlay-header {
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s linear, border-bottom-color 0.3s linear;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header,
.contact-page .header-section:not(.sticky-header) .overlay-header,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header,
.template-collection .header-section:not(.sticky-header) .overlay-header,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header,
.template-index .header-section:not(.sticky-header) .overlay-header,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header,
.template-list-collections .header-section:not(.sticky-header) .overlay-header {
    position: relative;
    z-index: 1000;
    border-bottom-color: transparent;
    color: var(--overlay-header-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a {
    display: block;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a {
    color: var(--overlay-header-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown * {
    color: var(--nav-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header localization-form button {
    color: var(--overlay-header-text-color);
    opacity: 1;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-link {
    display: none;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within,
.template-index .header-section:not(.sticky-header) .overlay-header:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover {
    background: var(--header-color);
    border-bottom-color: var(--header-border-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited {
    transition: color 0.25s ease;
    color: var(--nav-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover {
    color: var(--nav-text-hover);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:hover localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover localization-form button {
    transition: color 0.25s ease;
    color: var(--nav-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-nav__link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-nav__link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.template-index .header-section:not(.sticky-header) .overlay-header .site-nav__link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-nav__link {
    color: var(--overlay-header-text-color);
}

@media only screen and (min-width: 768px) {
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover {
        background: var(--header-color);
    }
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus {
        color: var(--nav-text-hover);
    }
}
.contact-page .sticked .overlay-header,
.template-collection .sticked .overlay-header,
.template-index .sticked .overlay-header,
.template-list-collections .sticked .overlay-header {
    border-bottom-color: var(--header-border-color);
}
.contact-page .sticked .overlay-header .site-header__logo-overlay-image,
.contact-page .sticked .overlay-header .site-header__logo-overlay-link,
.template-collection .sticked .overlay-header .site-header__logo-overlay-image,
.template-collection .sticked .overlay-header .site-header__logo-overlay-link,
.template-index .sticked .overlay-header .site-header__logo-overlay-image,
.template-index .sticked .overlay-header .site-header__logo-overlay-link,
.template-list-collections .sticked .overlay-header .site-header__logo-overlay-image,
.template-list-collections .sticked .overlay-header .site-header__logo-overlay-link {
    display: none;
}
.contact-page .sticked .overlay-header .site-nav--mobile a,
.contact-page .sticked .overlay-header .site-nav--mobile button,
.template-collection .sticked .overlay-header .site-nav--mobile a,
.template-collection .sticked .overlay-header .site-nav--mobile button,
.template-index .sticked .overlay-header .site-nav--mobile a,
.template-index .sticked .overlay-header .site-nav--mobile button,
.template-list-collections .sticked .overlay-header .site-nav--mobile a,
.template-list-collections .sticked .overlay-header .site-nav--mobile button {
    color: var(--nav-text-color);
}
.contact-page .sticked .overlay-header .site-nav--mobile a:hover,
.contact-page .sticked .overlay-header .site-nav--mobile button:hover,
.template-collection .sticked .overlay-header .site-nav--mobile a:hover,
.template-collection .sticked .overlay-header .site-nav--mobile button:hover,
.template-index .sticked .overlay-header .site-nav--mobile a:hover,
.template-index .sticked .overlay-header .site-nav--mobile button:hover,
.template-list-collections .sticked .overlay-header .site-nav--mobile a:hover,
.template-list-collections .sticked .overlay-header .site-nav--mobile button:hover {
    color: var(--nav-text-hover);
}
@media only screen and (min-width: 768px) {
    .contact-page .sticked .overlay-header.force-hover,
    .contact-page .sticked .overlay-header:focus-within,
    .contact-page .sticked .overlay-header:hover,
    .template-collection .sticked .overlay-header.force-hover,
    .template-collection .sticked .overlay-header:focus-within,
    .template-collection .sticked .overlay-header:hover,
    .template-index .sticked .overlay-header.force-hover,
    .template-index .sticked .overlay-header:focus-within,
    .template-index .sticked .overlay-header:hover,
    .template-list-collections .sticked .overlay-header.force-hover,
    .template-list-collections .sticked .overlay-header:focus-within,
    .template-list-collections .sticked .overlay-header:hover {
        background: var(--header-color);
    }
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link:visited,
    .contact-page .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a:visited,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link:visited,
    .template-collection .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a:visited,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .template-index .sticked .overlay-header:hover .site-header__logo-link,
    .template-index .sticked .overlay-header:hover .site-header__logo-link:visited,
    .template-index .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a:visited,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link:visited,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a:visited {
        color: var(--nav-text-color);
    }
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link:hover,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .contact-page .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link:hover,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .template-collection .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .template-index .sticked .overlay-header:hover .site-header__logo-link:hover,
    .template-index .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .template-index .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link:hover,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover {
        color: var(--nav-text-hover);
    }
}
@media only screen and (min-width: 768px) {
    .contact-page .using-keyboard .sticked .overlay-header.force-hover,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within,
    .contact-page .using-keyboard .sticked .overlay-header:hover,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within,
    .template-collection .using-keyboard .sticked .overlay-header:hover,
    .template-index .using-keyboard .sticked .overlay-header.force-hover,
    .template-index .using-keyboard .sticked .overlay-header:focus-within,
    .template-index .using-keyboard .sticked .overlay-header:hover,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover {
        background: var(--header-color);
    }
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus {
        color: var(--nav-text-hover);
    }
}
.hover-logo {
    display: none;
}
header.overlay-header.overlay-logo.force-hover .hover-logo,
header.overlay-header.overlay-logo.overlay-header--hover .hover-logo,
header.overlay-header.overlay-logo:focus-within .hover-logo,
header.overlay-header.overlay-logo:hover .hover-logo,
nav.overlay-header.overlay-logo.force-hover .hover-logo,
nav.overlay-header.overlay-logo.overlay-header--hover .hover-logo,
nav.overlay-header.overlay-logo:focus-within .hover-logo,
nav.overlay-header.overlay-logo:hover .hover-logo {
    display: block;
}
header.overlay-header.overlay-logo.force-hover .opacity-logo,
header.overlay-header.overlay-logo.overlay-header--hover .opacity-logo,
header.overlay-header.overlay-logo:focus-within .opacity-logo,
header.overlay-header.overlay-logo:hover .opacity-logo,
nav.overlay-header.overlay-logo.force-hover .opacity-logo,
nav.overlay-header.overlay-logo.overlay-header--hover .opacity-logo,
nav.overlay-header.overlay-logo:focus-within .opacity-logo,
nav.overlay-header.overlay-logo:hover .opacity-logo {
    display: none;
}
header:not(.overlay-header) .site-header__logo-overlay-image,
header:not(.overlay-header) .site-header__logo-overlay-link {
    display: none;
}
.header--supporting-text {
    font-size: var(--header-font-size-px);
    padding-left: 5px;
}
.offers-drawer-icon-container {
    position: relative;
}
.offers-drawer-tooltip {
    position: absolute;
    bottom: -5px;
    right: 50%;
    z-index: 1;
    transform: translate(50%, calc(100% + 15px));
    width: 100px;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    padding: 8px;
    background-color: var(--tooltip-background-color);
    opacity: 0;
    animation: bounceDown 0.7s ease 1s forwards, FadeIn 0.25s ease 1s forwards;
}
.offers-drawer-tooltip.fade-out-tooltip {
    transform: translate(50%, 100%);
    animation: FadeOut 0.25s ease forwards;
}
@media screen and (min-width: 768px) {
    .offers-drawer-tooltip {
        width: 120px;
    }
}
.offers-drawer-tooltip:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 6px;
    border-style: solid;
    border-color: transparent transparent var(--tooltip-background-color) transparent;
}
.offers-drawer-tooltip a,
.offers-drawer-tooltip a:active {
    color: inherit !important;
}
@keyframes bounceDown {
    0% {
        transform: translate(50%, calc(100% - 15px));
    }
    30% {
        transform: translate(50%, calc(100% + 10px));
    }
    50% {
        transform: translate(50%, calc(100% - 2px));
    }
    70% {
        transform: translate(50%, calc(100% + 2px));
    }
    100% {
        transform: translate(50%, 100%);
    }
}
.site-header__cart-toggle {
    display: inline-block;
}
.cart-count-enabled {
    position: relative;
}
.cart-item-count-bubble {
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    transition: background-color 0.25s ease;
    border-radius: 100%;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 12px;
    text-align: center;
    top: 10px;
    right: 10px;
    background-color: var(--overlay-header-text-color);
    color: var(--header-overlay-background-color);
}
.shopping-bag .cart-item-count-bubble {
    transform: translate(45%, -25%);
}
.shopping-cart .cart-item-count-bubble {
    transform: translate(50%, -50%);
}
.header-section:has(.overlay-header) {
    background-color: transparent;
}
.header-section.sticked .cart-item-count-bubble,
.mobile-nav-bar-wrapper:not(.overlay-header) .cart-item-count-bubble,
.site-header.overlay-header.overlay-header--hover .cart-item-count-bubble,
.site-header.overlay-header:hover .cart-item-count-bubble,
.site-header:not(.overlay-header) .cart-item-count-bubble {
    background-color: var(--nav-text-color);
    color: var(--header-color);
}
.cart-item-count-header--has-label {
    font-size: var(--header-font-size-px);
}
.cart-item-count-header--has-label:before {
    content: " - ";
    display: inline;
}
.search-bar {
    width: 100%;
    min-height: 44px;
}
@media screen and (max-width: 767px) {
    .search-bar {
        margin-left: auto;
        margin-right: auto;
    }
}
.search-bar input {
    background: 0 0;
    color: var(--text-color);
}
.search-bar input::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}
.search-bar span.input-group-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 44px;
}
.search-bar .search-input--btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    color: var(--text-color);
    border: 1px solid transparent;
}
li.mega-menu-promo-card .mega-menu-promo {
    display: flex;
    flex-direction: column;
}
li.mega-menu-promo-card .mega-menu-promo.has-promo-text--below-img {
    gap: 10px;
}
@media screen and (max-width: 989px) {
    li.mega-menu-promo-card .mega-menu-promo.has-promo-text--below-img {
        gap: 8px;
    }
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper {
    display: flex;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content {
    display: block;
    padding: 0;
    line-height: 0;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content:first-child a {
    padding-top: 15px;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content:nth-child(2) {
    margin-top: 5px;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content:nth-child(2) a {
    padding-top: 8px;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-image,
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-text--wrapper {
    grid-row: 1/2;
    grid-column: 1/2;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-image {
    width: 100%;
    height: 100%;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-text--wrapper {
    z-index: 1;
    align-self: end;
    padding: 8px;
}
@media (min-width: 768px) {
    li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-text--wrapper {
        padding: 15px;
    }
}
li.mega-menu-promo-card .mega-menu-promo-text {
    width: fit-content;
    margin: 0 auto;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio {
    position: relative;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
li.mega-menu-promo-card .mega-menu-aspect-ratio.aspect-ratio--tall {
    padding-bottom: 150%;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio.aspect-ratio--wide {
    padding-bottom: 75%;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio.aspect-ratio--square {
    padding-bottom: 100%;
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text {
    text-align: center;
}
.mobile-nav .mega-menu-promo-text--wrapper .mega-menu-promo-text {
    color: var(--menu-drawer-text-color);
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h4.mega-menu-promo-title,
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h5.mega-menu-promo-subtitle {
    padding: 0;
    margin: 0;
    line-height: normal;
    display: inline;
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h4.mega-menu-promo-title {
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    text-transform: var(--header-font-case);
    font-size: var(--header-font-size-px);
    letter-spacing: var(--navigation-font-letter-spacing);
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h5.mega-menu-promo-subtitle {
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: var(--base-font-size);
    text-transform: none;
}
.mega-menu-promo-text:hover a.mega-menu-promo-title.animated-link--item,
.using-keyboard .mega-menu-promo-text:focus a.mega-menu-promo-title.animated-link--item,
.using-keyboard a.mega-menu-promo-wrapper:focus + .mega-menu-promo-text--wrapper .mega-menu-promo-title.animated-link--item,
a.mega-menu-promo-wrapper:hover + .mega-menu-promo-text--wrapper .mega-menu-promo-title.animated-link--item {
    background-position: left bottom, left bottom;
    background-size: 100% 1px, 100% 1px;
}
.mega-menu-promo-text a {
    transition: color 0.25s ease;
}
.mega-menu-wrapper .mega-menu-promo-text:hover a,
.mega-menu-wrapper a.mega-menu-promo-wrapper:hover + .mega-menu-promo-text--wrapper a {
    color: var(--nav-text-hover) !important;
}
.mobile-nav .mega-menu-promo-text:hover a,
.mobile-nav a.mega-menu-promo-wrapper:hover + .mega-menu-promo-text--wrapper a {
    color: var(--menu-drawer-text-hover-color) !important;
}
.using-keyboard .mega-menu-wrapper .mega-menu-promo-text:focus,
.using-keyboard .mega-menu-wrapper a.mega-menu-promo-wrapper:focus + .mega-menu-promo-text--wrapper a {
    color: var(--nav-text-hover) !important;
}
.using-keyboard .mobile-nav .mega-menu-promo-text:focus,
.using-keyboard .mobile-nav a.mega-menu-promo-wrapper:focus + .mega-menu-promo-text--wrapper a {
    color: var(--menu-drawer-text-hover-color) !important;
}
.site-nav {
    cursor: default;
    margin: 0;
}
.site-nav li {
    margin: 0;
    display: block;
}
.site-nav > li {
    position: relative;
    display: inline-block;
}
.site-header__logo-link,
.site-header__logo-link:visited,
.top-links.site-header__nav a,
.top-links.site-header__nav a:visited {
    transition: color 0.25s ease;
    transition-property: background-size, color !important;
    color: var(--nav-text-color);
}
.site-header__logo-link:focus,
.site-header__logo-link:hover,
.site-header__logo-link:visited:focus,
.site-header__logo-link:visited:hover,
.top-links.site-header__nav a:focus,
.top-links.site-header__nav a:hover,
.top-links.site-header__nav a:visited:focus,
.top-links.site-header__nav a:visited:hover {
    color: var(--nav-text-hover) !important;
}
.site-header__logo-link:active,
.site-header__logo-link:focus,
.site-header__logo-link:hover {
    color: var(--nav-text-hover) !important;
}
.top-links .top-links--icon-links a,
.top-links--icon-links select {
    color: var(--nav-text-color);
}
.mega-menu-wrapper .h4,
.mega-menu-wrapper .h5 {
    color: var(--nav-text-color);
}
.mega-menu-wrapper .site-nav--has-dropdown.mega-menu .site-nav__link {
    position: relative;
}
.mega-menu-wrapper .site-nav--has-dropdown.mega-menu .site-nav__link:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 100;
    background: 0 0;
}
.mega-menu-wrapper .mega-menu {
    position: relative;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown:not(.theme-editor-active) {
    transform: translateY(0);
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown {
    max-height: calc(80vh - 90px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 30px;
    -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    clip-path: inset(0 -15px -15px -15px);
    width: 100vw;
}
.site-nav--has-dropdown.nav-hover .mega-menu-wrapper .mega-menu .site-nav__dropdown,
.supports-no-touch .site-nav--has-dropdown:hover .mega-menu-wrapper .mega-menu .site-nav__dropdown {
    visibility: visible;
    transform: translateY(0);
    transition: all ease 0.5s;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown::-webkit-scrollbar {
    width: 3px;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown::-webkit-scrollbar-track {
    background-color: transparent;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown::-webkit-scrollbar-thumb {
    background-color: transparent;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown.scrolling::-webkit-scrollbar-track {
    background-color: var(--nav-text-color-transparent10);
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown.scrolling::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--nav-text-color-transparent30);
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown:has(.no--content) {
    display: none !important;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown:has(.no--content-design-mode) {
    display: block !important;
}
.mega-menu-wrapper .mega-menu.site-nav--has-dropdown.nav-hover .site-nav__dropdown {
    transition: all ease 0.5s;
}
.mega-menu-wrapper .mega-menu.force-open .site-nav__dropdown {
    transform: translateY(0);
}
.mega-menu-wrapper .container {
    max-width: 1660px;
    margin: 0 auto;
}
.mega-menu-wrapper .mega-menu-block {
    display: grid;
    gap: 15px;
    width: 100%;
}
@media (min-width: 768px) {
    .mega-menu-wrapper .mega-menu-block:not(.no--content) {
        gap: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.mega-menu-wrapper .mega-menu-block .mega-menu--links {
    display: grid;
    gap: 15px;
}
@media (min-width: 768px) {
    .mega-menu-wrapper .mega-menu-block .mega-menu--links {
        gap: 20px;
    }
}
.mega-menu-wrapper .mega-menu-block .mega-menu--links .menu-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mega-menu-wrapper .mega-menu-block li a:not(.mega-menu-promo-wrapper):not(.mega-menu-promo-text) {
    display: inline !important;
}
.mega-menu-wrapper .mega-menu-block .mega-menu--empty {
    color: var(--nav-text-color);
    padding: 30px;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: var(--base-font-size);
    text-transform: none;
}
.mega-menu-wrapper .mega-menu--promos {
    display: flex;
    gap: var(--grid-spacing);
}
.mega-menu-wrapper .mega-menu--promos > div {
    width: 100%;
}
.mega-menu-wrapper .dropdown-submenu {
    display: flex;
    float: none;
    opacity: 0;
    transform: translateY(5px);
    padding-left: 0;
}
.mega-menu-wrapper .dropdown-submenu.large--one-fifth {
    width: 20%;
}
.mega-menu-wrapper .dropdown-submenu.large--one-quarter {
    width: 25%;
}
.mega-menu-wrapper .dropdown-submenu.large--one-third {
    width: 33.33%;
}
.mega-menu-wrapper .dropdown-submenu:last-child {
    border-right: 0;
}
.mega-menu-wrapper .inner {
    width: 100%;
}
.mega-menu-wrapper .inner .h4.mega-menu-link--title,
.mega-menu-wrapper .inner .h5 {
    margin: 0;
    padding-bottom: 15px;
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    letter-spacing: var(--navigation-font-letter-spacing);
    text-transform: var(--header-font-case);
    font-size: var(--header-font-size-px);
    line-height: 1.6;
}
.mega-menu-wrapper .inner li {
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: var(--base-font-size);
    text-transform: none;
    padding-bottom: 10px;
    line-height: 1.4;
}
.mega-menu-wrapper .menu-link {
    margin: 0;
}
.force-open > .site-nav__dropdown {
    visibility: visible;
    opacity: 1;
    transition: all ease 0.3s;
}
.site-nav__dropdown {
    background: var(--header-color);
    top: 100%;
    display: block !important;
    visibility: hidden;
    position: absolute;
    left: 0;
    margin: 0;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
    .site-nav__dropdown {
        top: 100%;
    }
    .site-nav__dropdown.mega-menu-dropdown {
        position: absolute;
    }
}
.site-nav__dropdown li {
    width: 100%;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .site-nav__dropdown.standard-dropdown li {
        transform: translateY(10px);
    }
    .nav-hover .site-nav__dropdown.standard-dropdown li,
    .site-nav--has-dropdown.nav-hover.mega-menu .site-nav__dropdown.standard-dropdown li,
    .site-nav--has-dropdown.nav-hover:not(.mega-menu):hover .site-nav__dropdown.standard-dropdown li,
    .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown.standard-dropdown li {
        transform: translateY(0);
        transition: transform 0.5s ease;
    }
}
.nav-hover .site-nav__dropdown,
.site-nav--has-dropdown.nav-hover.mega-menu .site-nav__dropdown,
.site-nav--has-dropdown.nav-hover:not(.mega-menu):hover .site-nav__dropdown,
.supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.site-nav__dropdown .site-nav--has-dropdown {
    position: relative;
}
.site-nav__dropdown .site-nav__link {
    background: var(--header-color);
}
.site-nav__dropdown.standard-dropdown li:hover {
    color: var(--nav-text-hover);
}
.js .site-nav__subdropdown {
    visibility: hidden;
    transform: translateX(-12px);
    position: absolute;
    opacity: 0;
    left: 100%;
    top: -20px;
    margin: 0;
    z-index: 6;
    background: var(--header-color);
}
.sticked .site-nav__dropdown.standard-dropdown:not(.has--subdropdowns) {
    max-height: calc(80vh - 90px);
    overflow-x: hidden;
    overflow-y: auto;
}
.site-nav__dropdown.standard-dropdown:not(.has--subdropdowns) {
    max-height: calc(80vh - 90px);
    overflow-x: hidden;
    overflow-y: auto;
}
.site-nav__dropdown.standard-dropdown {
    display: grid !important;
    grid-auto-rows: minmax(0, auto);
    grid-template-columns: 1fr;
    align-items: center;
    flex-direction: column;
    min-width: 250px;
    max-width: 350px;
    padding-top: calc(30px - 10px);
    padding-bottom: calc(30px - 10px);
}
.site-nav__dropdown.standard-dropdown::-webkit-scrollbar {
    width: 3px;
}
.site-nav__dropdown.standard-dropdown::-webkit-scrollbar-track {
    background-color: transparent;
}
.site-nav__dropdown.standard-dropdown::-webkit-scrollbar-thumb {
    background-color: transparent;
}
.site-nav__dropdown.standard-dropdown.scrolling::-webkit-scrollbar-track {
    background-color: var(--nav-text-color-transparent10);
}
.site-nav__dropdown.standard-dropdown.scrolling::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--nav-text-color-transparent30);
}
.site-nav__dropdown.standard-dropdown li {
    font-size: var(--base-font-size);
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    letter-spacing: normal;
    line-height: 150%;
    text-transform: none;
}
.site-nav__dropdown.standard-dropdown li .site-nav__link {
    padding: 5px 30px;
}
.site-nav__dropdown.standard-dropdown li.site-nav--has-dropdown .site-nav__link {
    padding-right: calc(10px * 2);
    text-decoration: none;
    white-space: nowrap;
    display: block;
    margin: 0 10px;
}
.site-nav__dropdown.standard-dropdown .site-nav--link-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.site-nav__dropdown.standard-dropdown .site-nav--link-wrapper .site-nav--link-icon {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    top: 1px;
}
.site-nav__dropdown.standard-dropdown .site-nav__subdropdown {
    display: flex;
    flex-direction: column;
    width: max-content;
    min-height: 100%;
    padding: calc(30px - 10px) 0;
}
.site-nav__dropdown.standard-dropdown .site-nav__subdropdown li {
    min-height: 100%;
    word-wrap: break-word;
}
.site-nav__dropdown.standard-dropdown .site-nav__subdropdown .site-nav__link {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 5px 30px;
}
.site-nav__dropdown .site-nav__subdropdown,
.site-nav__dropdown.standard-dropdown {
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.nav-hover .nav-hover:hover .site-nav__subdropdown,
.nav-hover > .site-nav__subdropdown {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition: all ease 0.5s;
}
.nav .ul {
    width: 100%;
    position: relative;
    z-index: 5;
}
.nav .ul .li {
    position: relative;
}
.site-nav__link {
    display: block;
    text-decoration: none;
    position: relative;
    padding: 15px;
}
@media (max-width: 767px) {
    .site-nav__link {
        padding: 0;
    }
}
.site-nav__link:not(.standalone-icon--wrapper):focus,
.site-nav__link:not(.standalone-icon--wrapper):hover {
    color: var(--nav-text-hover) !important;
}
.site-nav--mobile .site-nav__link {
    display: inline-block;
    border: 0;
    background: 0 0;
}
.first-level-dropdown .site-nav__link {
    padding: 15px 0;
}
.top-links {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.top-links ul.site-nav {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    font-size: var(--header-font-size-px);
    line-height: var(--header-font-size-px) px;
}
.top-links ul li:not(:has(.offers-drawer-icon-container)) {
    display: inline-block;
    list-style-type: none;
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    letter-spacing: var(--navigation-font-letter-spacing);
    text-transform: var(--header-font-case);
}
.top-links--icon-links {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}
.top-links--icon-links li {
    margin: 0;
}
.top-links--icon-links li a {
    color: var(--nav-text-color);
    position: relative;
    display: flex;
    align-items: center;
}
.top-links--icon-links li a:hover {
    color: var(--nav-text-hover);
}
.top-links--icon-links li a:hover svg + [data-cart-count-indicator] {
    background-color: var(--nav-text-hover) !important;
}
localization-form ~ .top-links--icon-links {
    padding-left: 0;
}
body,
button,
input,
select,
textarea {
    font-size: var(--base-font-size);
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
.custom-font,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.header-font,
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-family: var(--header-font-stack);
    font-weight: var(--header-font-weight);
    font-style: var(--header-font-style);
    letter-spacing: var(--heading-spacing);
    text-transform: var(--heading-font-case);
    margin: 0 0 0.5em;
    line-height: var(--heading-line-height);
}
.custom-font a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
.header-font a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
    font-weight: inherit;
}
.subdued-text {
    opacity: 0.75;
}
.section-title--wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .section-title--wrapper {
        margin-bottom: 37.5px;
    }
}
.section-title--wrapper .section-title {
    font-size: var(--h2-size);
    margin: 0;
}
.section-title--wrapper .section-description {
    margin: 15px auto 0;
    max-width: 50%;
}
@media (max-width: 767px) {
    .section-title--wrapper .section-description {
        max-width: 100%;
    }
}
.section-title--wrapper .section-description .h1,
.section-title--wrapper .section-description .h2,
.section-title--wrapper .section-description .h3,
.section-title--wrapper .section-description .h4,
.section-title--wrapper .section-description .h5,
.section-title--wrapper .section-description .h6,
.section-title--wrapper .section-description h1,
.section-title--wrapper .section-description h2,
.section-title--wrapper .section-description h3,
.section-title--wrapper .section-description h4,
.section-title--wrapper .section-description h5,
.section-title--wrapper .section-description h6,
.section-title--wrapper .section-description p:last-child {
    margin-bottom: 0;
}
.template-title--wrapper {
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .template-title--wrapper {
        margin-bottom: 37.5px;
    }
}
.template-title--wrapper .template-title {
    margin: 0;
}
.template-title--wrapper .template-description {
    margin: 15px auto 0;
}
.template-title--wrapper .template-description p:last-child {
    margin-bottom: 0;
}
.h1,
h1 {
    font-size: var(--h1-size);
}
.h2,
h2 {
    font-size: var(--h2-size);
}
.h3,
h3 {
    font-size: var(--h3-size);
}
.h4,
h4 {
    font-size: var(--h4-size);
}
.h5,
h5 {
    font-size: var(--h5-size);
}
.h6,
h6 {
    font-size: var(--h6-size);
}
p {
    margin: 0 0 15px 0;
}
p img {
    margin: 0;
}
em {
    font-style: italic;
}
b,
strong {
    font-weight: 700;
}
small {
    font-size: 0.9em;
}
sub,
sup {
    position: relative;
    font-size: 60%;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.5em;
}
.unit-price {
    font-size: 12px;
}
.label-font {
    font-family: var(--label-font-stack);
    font-weight: var(--label-font-weight);
    font-style: var(--label-font-style);
    /* text-transform: var(--label-font-case); */
    letter-spacing: var(--label-spacing);
}
blockquote:not(.product-testimonial__blockquote) {
    font-size: 1.125em;
    line-height: 1.45;
    font-style: italic;
    margin: 0 0 30px;
    padding: 15px 30px;
    border-left: 1px solid var(--border-color);
}
blockquote:not(.product-testimonial__blockquote) p {
    margin-bottom: 0;
}
blockquote:not(.product-testimonial__blockquote) p + cite {
    margin-top: 15px;
}
blockquote:not(.product-testimonial__blockquote) cite {
    display: block;
    font-size: 0.75em;
}
blockquote:not(.product-testimonial__blockquote) cite:before {
    content: "— ";
}
code,
pre {
    background-color: #faf7f5;
    font-family: Consolas, monospace;
    font-size: 1em;
    border: 0 none;
    padding: 0 2px;
    color: #51ab62;
}
pre {
    overflow: auto;
    padding: 15px;
    margin: 0 0 30px;
}
.fallback-text {
    display: none;
}
hr {
    clear: both;
    border-top: solid var(--border-color);
    border-width: 1px 0 0;
    margin: 30px 0;
    height: 0;
}
.homepage-sections--title,
.list-collections--title,
.page--title,
.shopify-policy__body .h1,
.shopify-policy__body .h2,
.shopify-policy__body .h3,
.shopify-policy__body .h4,
.shopify-policy__body .h5,
.shopify-policy__body .h6,
.shopify-policy__body h1,
.shopify-policy__body h2,
.shopify-policy__body h3,
.shopify-policy__body h4,
.shopify-policy__body h5,
.shopify-policy__body h6,
.shopify-policy__title .h1,
.shopify-policy__title h1 {
    width: 100%;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}
.shopify-policy__body .h4,
.shopify-policy__body .h5,
.shopify-policy__body .h6,
.shopify-policy__body h4,
.shopify-policy__body h5,
.shopify-policy__body h6,
.shopify-policy__title .h1,
.shopify-policy__title h1 {
    letter-spacing: var(--heading-spacing);
    text-transform: var(--heading-font-case);
}
.cart-drawer__empty-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .cart-drawer__empty-container {
        min-height: 100%;
    }
}
@media screen and (max-width: 767px) {
    .cart-drawer__empty-container {
        flex-grow: 1;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.cart-drawer__empty-message {
    text-align: center;
}
.cart-drawer__empty-message p {
    margin: 0;
}
.cart-drawer__empty-btn-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (max-width: 767px) {
    .cart-drawer__empty-btn-container {
        gap: 15px;
    }
}
.cart-drawer__empty-btn {
    width: 100%;
}
.cart-drawer__heading {
    overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
    .cart-drawer__body.global-drawer__body--with-padding {
        padding-left: 0;
        padding-right: 0;
    }
    .cart-drawer__body .cart-drawer__form {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.cart-drawer__product_card {
    display: flex;
    gap: 15px;
    transition: opacity 0.25s ease;
}
.cart-drawer__product_card:not(:last-of-type) {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cart-drawer-text-color-transparent25);
    margin-bottom: 20px;
}
.cart-drawer__product_card:has(.is-removing) {
    opacity: 0.5;
}
.cart-drawer__product_card--image {
    width: 70px;
    flex-shrink: 0;
}
.cart-drawer__product_card--image .theme-img {
    display: block;
}
.cart-drawer__product-card--info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}
.cart-drawer__product-card--info:not(:has(.cart-drawer__product_card--badge--preorder)) {
    transform: translateY(-0.3em);
}
.cart-drawer__product-card--info--body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cart-drawer__product-card--info--body > div:first-child {
    padding-right: 26px;
}
.cart-drawer__product-card--info--footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}
.cart-drawer__product_card--vendor {
    font-size: 12px;
    word-break: break-word;
}
.cart-drawer__product_card--title {
    word-break: break-word;
}
.cart-drawer__product_card--badge {
    width: fit-content;
    color: var(--badge-font-color);
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    padding: 5px 8px;
    text-transform: uppercase;
    text-align: center;
}
.cart-drawer__product_card--badge--sale {
    background: var(--sale-badge-color);
}
.cart-drawer__product_card--badge--preorder {
    background: var(--preorder-badge-color);
}
.cart-drawer__product-card--details {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cart-drawer__product-card--detail span:first-child:not(:only-child) {
    color: var(--cart-drawer-text-color-transparent70);
}
.cart-drawer__product-card--price {
    text-align: right;
    word-break: break-word;
}
.cart-drawer__product-card--price--compare {
    text-decoration: line-through;
    color: var(--cart-drawer-text-color-transparent70);
}
.cart-drawer__product-card--price--sale {
    color: var(--on-sale-color);
}
cart-quantity {
    display: block;
}
cart-quantity.is-loading {
    opacity: 0.5;
}
.cart-drawer__product-card--quantity {
    display: flex;
    border: 1px solid var(--cart-drawer-text-color-transparent25);
}
.cart-drawer__product-card--quantity.is-loading {
    opacity: 0.5;
}
.cart-drawer__product-card--quantity--button {
    background: 0 0;
    border: 0;
    display: flex;
    align-items: center;
    padding: 8px 10px 8px 8px;
    color: inherit;
}
.cart-drawer__product-card--quantity--input {
    width: 4ch;
    padding: 0;
    border: 0 !important;
    text-align: center;
    color: inherit;
}
.cart-drawer__product-card--remove {
    position: absolute;
    top: -14px;
    right: -14px;
    padding: 14px;
    display: flex;
    background: 0 0;
    border: 0;
    color: var(--cart-drawer-text-color);
}
.cart-drawer__product-card--error {
    font-size: 12px;
    margin: 0;
}
.cart-drawer__product-card--error[aria-hidden="true"] {
    display: none;
}
.cart-drawer__sub-footer {
    padding: 10px 15px 15px 15px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__sub-footer {
        padding: 15px 30px 30px 30px;
    }
}
.cart-drawer__discounts {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}
.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 5px;
}
.cart-drawer__subtotal--heading,
.cart-drawer__subtotal--price {
    margin-bottom: 0;
}
.cart-drawer__subtotal--price {
    text-align: right;
    word-break: break-word;
}
.cart-drawer__subtotal--compare {
    text-decoration: line-through;
}
.cart-drawer__subtotal--sale {
    color: var(--on-sale-color);
}
.cart-drawer__taxes-shipping {
    font-size: 12px;
    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__taxes-shipping {
        margin-bottom: 15px;
    }
}
.cart-drawer__footer--buttons {
    display: flex;
    gap: calc(var(--grid-spacing) * 0.75);
}
@media screen and (min-width: 768px) {
    .cart-drawer__footer--buttons {
        gap: var(--grid-spacing);
    }
}
.cart-drawer__footer--button {
    flex-grow: 1;
    flex-basis: 50%;
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__notes {
        display: flex;
    }
    .cart-drawer__notes cart-update-modal {
        flex-grow: 1;
        flex-basis: 50%;
    }
    .cart-drawer__notes cart-update-modal + cart-update-modal {
        border-left: 1px solid var(--cart-drawer-text-color-transparent25);
    }
}
.cart-drawer__notes cart-update-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--cart-drawer-text-color-transparent25);
}
.cart-drawer__note--open {
    background: 0 0;
    border: 0;
    padding: 10px;
}
.cart-drawer__note--modal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    transform: translateY(100%);
    visibility: hidden;
    background-color: var(--cart-drawer-color);
    padding: 20px 15px 15px 15px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__note--modal {
        padding: 20px 30px 30px 30px;
    }
}
@media screen and (prefers-reduced-motion: no-preference) {
    .cart-drawer__note--modal {
        transition: all 0.4s ease-in;
    }
}
.cart-drawer__note--modal[aria-hidden="false"] {
    transform: translate(0);
    visibility: visible;
    transition: all 0.4s ease-out;
}
.cart-drawer__note--modal-overlay {
    position: absolute;
    height: 100vh;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    opacity: 0;
}
cart-update-modal[open] .cart-drawer__note--modal-overlay {
    visibility: visible;
    opacity: 0.5;
}
.cart-drawer__note--label {
    display: inline-block;
    margin-bottom: 2px;
}
.cart-drawer__note--textarea {
    --border-color-darken10: var(--cart-drawer-text-color);
    width: 100%;
    border: 1px solid var(--cart-drawer-text-color-transparent25);
    margin-bottom: 15px;
    color: inherit;
}
@media screen and (min-width: 768px) {
    .cart-drawer__note--textarea {
        margin-bottom: 20px;
    }
}
.cart-drawer__note--close-btn {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .cart-drawer__recommendations:not(:has(.cart-drawer__recommendations-grid--empty)) {
        height: var(--cart-recommendations-height, auto);
    }
    .cart-drawer__recommendations .product-card-basic {
        flex-shrink: 0;
        width: min(385px, 100vw - 30px - 15px - 15px - 35px);
        min-width: 230px;
    }
}
.cart-drawer__recommendations-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: opacity 0.4s ease;
    animation: fadeInRecommendations 0.4s ease;
}
@media screen and (max-width: 767px) {
    .cart-drawer__recommendations-grid {
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
    }
}
cart-drawer.hide-recommendations:not(:has(.cart-drawer__recommendations-grid--empty)) [data-cart-drawer-recommendations] {
    display: none;
}
cart-drawer:has(.is-loading) .cart-drawer__recommendations-grid {
    opacity: 0.5;
}
@keyframes fadeInRecommendations {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.cart__row {
    position: relative;
    padding-top: 30px;
}
@media screen and (min-width: 768px) {
    .cart__row .cart__row--product-details * {
        text-align: left;
    }
}
.cart__row .cart__row--title {
    color: var(--text-color);
}
.cart__row:first-child {
    margin-top: 0;
}
.cart__row:first-child {
    padding-top: 0;
}
.cart__row.grid,
.cart__row.grid--full,
.cart__row.grid--rev {
    border-top: 1px solid var(--border-color);
}
.cart__row .js-qty {
    margin: 0 auto;
}
.cart-table {
    border-collapse: inherit;
}
.cart-table.full {
    margin-bottom: 0;
}
.cart-table th {
    font-weight: 400;
}
.cart-table td,
.cart-table th {
    padding: 30px 15px;
    border: 0;
}
@media only screen and (max-width: 767px) {
    .cart-table .table--responsive td,
    .cart-table .table--responsive th,
    .cart-table form.cart .cart-table {
        text-align: center !important;
    }
    .cart-table .table--responsive.cart-table .js-qty {
        float: none;
    }
    .cart-table .cart-table td,
    .cart-table .cart-table th {
        padding: 5px;
    }
    .cart-table .cart-total-label {
        display: none !important;
    }
    .cart-table .cart__row {
        border-top: 1px solid var(--border-color);
    }
}
.cart-table.table--responsive td {
    text-align: center;
}
.cart-table.table--responsive td .js-qty {
    float: none;
}
.cart-table.table--responsive td:before {
    display: none;
}
@media (min-width: 768px) {
    .cart-table.table--responsive .cart__row--product-details {
        text-align: left;
    }
}
@media screen and (min-width: 768px) {
    .cart-table td,
    .cart-table th {
        border-top: 1px solid var(--border-color);
    }
}
.cart__image {
    display: block;
}
.cart__image img,
.cart__image svg {
    display: block;
    width: 240px !important;
    max-height: 240px !important;
    object-fit: contain;
    font-family: "object-fit: contain";
}
.cart__subtotal {
    margin: 0 0 0 10px;
    display: inline-block;
    min-width: 100px;
    font-size: var(--body-font-size-16-to-em);
}
.cart__remove {
    display: block;
    text-decoration: underline;
}
.cart-table .cart__row a {
    margin: 0;
    font-size: var(--body-font-size-16-to-em);
}

.cart-table .cart__row .cart__remove {
  margin-left: 25px;
}
.cart-table .cart__row a .order-discount {
    display: block;
}
td .item-price {
    display: block;
}
.discount--line-through {
    text-decoration: line-through;
}
.order-discount--cart-list {
    margin-left: 0;
    margin-top: 5px;
}
.order-discount--cart-list li {
    list-style-type: none;
}
.cart-total-label__discount {
    display: block;
}
.grid__item .additional-checkout-buttons {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .grid__item .additional-checkout-buttons {
        margin-top: 8px;
    }
}
.grid__item .additional-checkout-buttons > div {
    width: 100%;
    max-width: 100%;
}
.js-qty,
.js-qty button,
.js-qty input {
    border: 0;
}
.js-qty .js-qty__adjust {
    font-size: 10px;
}
.js-qty .js-qty__adjust {
    color: var(--text-color);
}
.preorder-badge.preorder-cart-badge {
    position: relative;
    top: 0;
    left: 0;
}
.collapsible-tab collapsible-button {
    display: block;
    cursor: pointer;
    user-select: none;
}
.collapsible-tab .summary {
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.collapsible-tab .summary .text-with-icon {
    margin: 15px 0;
}
.collapsible-tab .summary span svg {
    vertical-align: middle;
}
.collapsible-tab .summary .minus-icon {
    display: none;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .collapsible-tab .summary .chevron-down {
        transition: all 0.1s ease-in;
    }
}
.collapsible-tab .collapsible-content {
    opacity: 0;
    overflow: hidden;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .collapsible-tab .collapsible-content {
        transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}
.collapsible-tab .collapsible-content .content {
    visibility: hidden;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .collapsible-tab .collapsible-content .content {
        transform: translateY(30px);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}
.collapsible-tab.open collapsible-button .summary .plus-icon {
    display: none;
}
.collapsible-tab.open collapsible-button .summary .minus-icon {
    display: block;
}
.collapsible-tab.open collapsible-button .summary .chevron-down {
    transform: scaleY(-1);
}
.collapsible-tab.open .collapsible-content {
    opacity: 1;
}
.collapsible-tab.open .collapsible-content .content {
    transform: translateY(0);
    visibility: visible;
}
.no-js .collapsible-tab details summary .chevron-down,
.no-js .collapsible-tab details summary .plus-icon {
    display: block;
}
.no-js .collapsible-tab details summary .chevron-up,
.no-js .collapsible-tab details summary .minus-icon {
    display: none;
}
.no-js .collapsible-tab details[open] .chevron-down,
.no-js .collapsible-tab details[open] .plus-icon {
    display: none;
}
.no-js .collapsible-tab details[open] .chevron-up,
.no-js .collapsible-tab details[open] .minus-icon {
    display: block;
}
.countdown-timer__container {
    display: flex;
    gap: 10px;
}
.countdown-timer__component {
    display: block;
}
.countdown-timer__digit-group-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-timer__digit-group-container span {
    width: min-content;
    min-width: 100%;
    text-align: center;
    font-size: var(--body-font-size-12-to-em);
    line-height: 1;
    padding-top: 8px;
    word-break: break-all;
}
.countdown-timer__digit-group {
    display: flex;
}
.countdown-timer__digit {
    position: relative;
    overflow: hidden;
    padding: 5px 8px 8px 8px;
    border-radius: 4px;
}
.countdown-timer__digit.h1 {
    margin: 0;
    line-height: 1;
}
.countdown-timer__digit > div {
    width: 9px;
    display: flex;
    justify-content: center;
}
.countdown-timer__separator {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(10px + 4px) 5px;
}
.countdown-timer__separator-dot {
    display: block;
    height: 3px;
    width: 3px;
    border-radius: 50%;
}
.countdown-timer__separator-dot:first-child {
    margin-bottom: 10px;
}
[data-hide-when-zero].hide,
[data-timer-complete-content].hide,
countdown-timer.hide {
    display: none;
}
localization-form {
    position: relative;
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left .bottom--footer--payment-methods localization-form {
        width: auto;
        justify-content: flex-start;
    }
    .site-header localization-form {
        display: flex;
        align-items: center;
    }
}
@media only screen and (max-width: 767px) {
    .site-footer localization-form {
        display: flex;
        justify-content: center;
    }
    localization-form form {
        width: 100%;
    }
    localization-form form button {
        width: 100%;
    }
}
localization-form button {
    background-color: transparent;
    padding: 10px;
    font-size: var(--header-font-size-px);
}
.site-header localization-form button {
    border: 0;
    color: var(--nav-text-color);
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    letter-spacing: var(--navigation-font-letter-spacing);
    text-transform: var(--header-font-case);
    transition: color 0.25s ease;
}
.site-header localization-form button:hover {
    color: var(--nav-text-hover) !important;
}
.using-keyboard .site-header localization-form button:focus {
    color: var(--nav-text-hover) !important;
}
.site-footer localization-form button {
    color: var(--color-scheme-text-color);
    border: 1px solid var(--color-scheme-text-color);
    transition: all 0.15s ease-in-out 0s;
}
.site-footer localization-form button > span {
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 768px) {
    .site-footer localization-form button > span {
        justify-content: center;
    }
}
.site-footer localization-form button svg.chevron-down {
    display: flex;
    color: var(--color-scheme-text-color);
    transition: all 0.15s ease-in-out 0s;
}
.site-footer localization-form button:hover {
    color: var(--color-scheme-text-color);
    border-color: var(--color-scheme-text-color);
}
.site-footer localization-form button:hover svg.chevron-down {
    color: var(--color-scheme-text-color);
}
localization-form ul.localization__list {
    position: absolute;
    min-width: 100%;
    z-index: 6;
    margin: 0;
    list-style-type: none;
    max-height: 250px;
    overflow-y: auto;
}
localization-form ul.localization__list::-webkit-scrollbar {
    width: 3px;
}
localization-form ul.localization__list::-webkit-scrollbar-track {
    background-color: transparent;
}
@media screen and (prefers-reduced-motion: no-preference) {
    localization-form ul.localization__list {
        overflow-y: hidden;
        padding-right: 3px;
        animation: resetOverflow 0s linear 0.5s forwards;
    }
    localization-form ul.localization__list li {
        animation: dropdownFadeUp 0.5s ease;
    }
}
localization-form ul.localization__list li {
    margin: 0;
    display: block !important;
}
localization-form ul.localization__list a {
    font-size: var(--header-font-size-px);
    line-height: 1.6;
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    letter-spacing: normal;
    display: block;
    padding: 5px 10px;
    color: inherit;
    text-align: left;
}
.site-header localization-form ul.localization__list {
    background-color: var(--header-color);
    border: 1px solid var(--header-color-darken5);
    color: var(--nav-text-color);
    margin-left: 10px;
}
.site-header localization-form ul.localization__list::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--nav-text-color-transparent30);
}
.site-header localization-form ul.localization__list li:focus,
.site-header localization-form ul.localization__list li:focus-within,
.site-header localization-form ul.localization__list li:hover,
.site-header localization-form ul.localization__list li[selected] {
    background-color: var(--header-color-darken5);
}
.site-header__wrapper--logo-center localization-form ul.localization__list {
    right: 0;
}
.top-links localization-form ul.localization__list a:focus,
.top-links localization-form ul.localization__list a:focus-within,
.top-links localization-form ul.localization__list a:hover {
    color: var(--nav-text-hover) !important;
}
.site-footer localization-form ul.localization__list {
    background-color: var(--color-scheme-background-color);
    border: 1px solid var(--color-scheme-text-color);
    color: var(--color-scheme-text-color);
    bottom: 100%;
}
.site-footer localization-form ul.localization__list::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--color-scheme-text-color-transparent40);
}
.site-footer localization-form ul.localization__list li:focus,
.site-footer localization-form ul.localization__list li:focus-within,
.site-footer localization-form ul.localization__list li:hover,
.site-footer localization-form ul.localization__list li[selected] {
    background-color: var(--color-scheme-border-color);
}
.localization-form__noscript button {
    margin-top: 10px;
}
@media only screen and (min-width: 768px) {
    .localization-form__noscript button {
        width: 100%;
    }
}
.site-header .localization-form__noscript button {
    background-color: var(--nav-text-color);
    color: var(--header-color);
    margin-bottom: 10px;
}
.site-header .localization-form__noscript button:hover {
    background-color: var(--nav-text-hover);
}
.site-footer .localization-form__noscript button {
    background-color: var(--color-scheme-text-color);
    color: var(--color-scheme-background-color);
}
.site-header .localization-form__noscript .localization-selector-country {
    border-color: var(--nav-text-color);
    color: var(--nav-text-color);
}
.site-footer .localization-form__noscript .localization-selector-country {
    border-color: var(--color-scheme-text-color);
    color: var(--color-scheme-text-color);
}
.site-header .localization-form__noscript {
    margin-left: 15px;
}
.cross-sells-wrapper .cross-sells-products {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
.cross-sells-wrapper .cross-sells-products.scrollable {
    position: relative;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    padding: 0 15px 50px 0;
    max-height: 400px;
    overflow-y: auto;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container::-webkit-scrollbar {
    width: 3px;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container::-webkit-scrollbar-track {
    background: var(--text-color-transparent30);
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container::-webkit-scrollbar-thumb {
    background: var(--text-color-transparent5);
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: calc(100% - 3px);
    height: 50px;
    background: linear-gradient(180deg, var(--body-color) 0, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.3s opacity;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: calc(100% - 3px);
    height: 50px;
    background: linear-gradient(360deg, var(--body-color) 0, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.3s opacity;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container.top:before {
    opacity: 0;
    z-index: -1;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container.bottom:after {
    opacity: 0;
    z-index: -1;
}
.cross-sells-wrapper .header {
    margin-bottom: 15px;
}
body.js-drawer-location-modal-open,
body.js-drawer-open {
    overflow: hidden;
}
.drawer-overlay,
.popup-overlay {
    position: fixed;
    z-index: 1499;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--body-overlay-color);
    opacity: 0;
    transition: width 0s linear 0.6s, opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.js-drawer-open-left #NavDrawerOverlay,
.js-drawer-open-right #DrawerOverlay,
.theme-modal-open #DrawerOverlay {
    width: 100%;
    opacity: 1;
    transition: opacity 0.4s, width 0s ease-in-out 0s;
}
.fullscreen-popup-open #PopupOverlay {
    width: 100%;
    opacity: 1;
    transition: opacity 0.4s, width 0s ease-in-out 0s;
    z-index: 1501;
}
.js-drawer-location-modal-open #DrawerOverlay {
    width: 100%;
    opacity: 0.4;
    transition: opacity 0.4s, width 0s ease-in-out 0s;
    z-index: 1001;
}
.drawer {
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0;
    bottom: 0;
    max-width: 90%;
    z-index: 1500;
    color: var(--cart-drawer-text-color);
    background-color: var(--cart-drawer-color);
}
.drawer .h3 a,
.drawer h3 a {
    color: var(--cart-drawer-text-color);
}
.drawer#NavDrawer a {
    word-break: break-word;
    color: var(--menu-drawer-text-color);
}
.drawer#NavDrawer a:focus:not(.mobile-menu--close-btn),
.drawer#NavDrawer a:hover:not(.mobile-menu--close-btn) {
    color: var(--menu-drawer-text-hover-color);
}
.drawer#NavDrawer #sm-icons a:focus,
.drawer#NavDrawer #sm-icons a:hover {
    color: var(--menu-drawer-text-color);
}
.drawer#NavDrawer svg {
    display: block;
}
.drawer#NavDrawer input {
    background: var(--menu-drawer-color);
    padding: 7.5px;
}
.drawer__header {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    position: relative;
    z-index: 100;
}
.drawer__header.display-flex {
    display: flex;
}
.drawer__header .remove-margin {
    margin: 0;
}
.drawer__title {
    width: auto;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .drawer__title {
        display: none !important;
    }
}
.drawer__title span:not(.sr-only) {
    display: block;
    margin: 15px 0 0 30px;
}
.drawer__close button {
    right: 4px;
    position: absolute;
    color: var(--cart-drawer-text-color);
}
.drawer__close button.filter-drawer-btn {
    color: var(--filter-text-color);
}
.drawer--cart .drawer__close button {
    right: 18px;
}
@media screen and (max-width: 767px) {
    .drawer--cart .drawer__close button {
        right: 4px;
        top: -12px;
    }
}
.drawer--right {
    -ms-transform: translateX(-767px);
    -webkit-transform: translateX(-767px);
    transform: translateX(-767px);
    width: 767px;
    right: -767px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.1);
}
.drawer--right .drawer__title {
    text-align: left;
}
@media screen and (max-width: 767px) {
    .drawer--right .drawer__title {
        max-width: 85%;
        margin: 30px 0 0 15px;
    }
}
.drawer--right i {
    color: var(--cart-drawer-text-color);
}
.drawer--right textarea {
    color: var(--cart-drawer-text-color);
    border: 1px solid var(--cart-drawer-border-color);
    background: 0 0;
    color: var(--cart-drawer-text-color);
}
.drawer--right textarea::placeholder {
    color: var(--cart-drawer-text-color);
    opacity: 0.8;
}
.drawer--right .drawer__header {
    margin-top: 0;
    position: relative;
}
.drawer--right .account-section--btn {
    border: 0;
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
}
.drawer--right input {
    border: 0;
    border-bottom: 1px solid var(--cart-drawer-border-color);
    background: 0 0;
    color: var(--cart-drawer-text-color);
}
.drawer--right input::placeholder {
    color: var(--cart-drawer-text-color);
    opacity: 0.8;
}
.drawer--right .drawer--cart {
    background: var(--cart-drawer-color);
    color: var(--cart-drawer-text-color);
}
.drawer--right .drawer--cart .product-details-wrapper {
    text-align: center;
}
.drawer--right .drawer--cart .product-details-wrapper .product-description.readmore.closed:after {
    background-image: linear-gradient(transparent 65%, var(--cart-drawer-color) 100%);
}
.drawer--right .drawer--cart .product-details-wrapper .read-more-link:after,
.drawer--right .drawer--cart .product-details-wrapper .read-more-link:before {
    border-color: var(--cart-drawer-border-color);
}
.drawer--right .drawer--cart a {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    color: var(--cart-drawer-text-color);
}
@media screen and (min-width: 768px) {
    .drawer--right .drawer--cart .paymentButtonsWrapper .product--add-to-cart-button {
        margin-right: 0;
    }
}
.drawer--left {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.drawer-right-enter-active,
.drawer-right-leave-active {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.drawer-right-enter-active > * {
    transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s;
}
.drawer-right-leave-active > * {
    transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.drawer-right-enter,
.drawer-right-leave-to {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.drawer-right-enter > *,
.drawer-right-leave-to > * {
    opacity: 0;
}
.drawer-right-enter-to {
    -ms-transform: translateX(-767px);
    -webkit-transform: translateX(-767px);
    transform: translateX(-767px);
}
.drawer-right-enter-to > * {
    opacity: 1;
}
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        input {
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
        }
    }
}
.facets__display.is-filter-swatch .facets__list {
    margin: 0;
    display: grid;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem 1.2rem;
}
.facets__display.is-filter-swatch .facets__list .list-menu__item.facets__item {
    margin: 0;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox {
    display: flex;
    justify-content: center;
    padding: 0;
    min-width: 44px;
    min-height: 44px;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"] {
    opacity: 0;
    margin: 0;
    top: 0;
    left: auto;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox:hover input[type="checkbox"]:not(:disabled):not(:checked) + .filter-swatch--wrapper .filter-swatch--color,
.facets__display.is-filter-swatch .facets__list .facet-checkbox:hover input[type="checkbox"]:not(:disabled):not(:checked) + .filter-swatch--wrapper .filter-swatch--image {
    outline: 1px solid var(--text-color);
    outline-offset: 0;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:checked + .filter-swatch--wrapper .filter-swatch--color,
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:checked + .filter-swatch--wrapper .filter-swatch--image {
    outline: 1px solid var(--text-color);
    outline-offset: 3px;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out {
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.filter-swatch-sold-out-background {
    z-index: 1;
    background-color: var(--filter-background-color);
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.filter-swatch-sold-out-foreground {
    z-index: 2;
    background-color: var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch--label {
    color: var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list .filter-swatch--wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list .filter-swatch--wrapper .filter-swatch--swatch {
    display: flex;
    align-items: center;
    justify-content: center;
}
.facets__display.is-filter-swatch .facets__list .filter-swatch--wrapper .filter-swatch--label {
    min-width: 70px;
    text-align: center;
    color: var(--text-color);
    line-height: 1.6;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color {
    grid-template-columns: repeat(10, minmax(38px, 1fr));
}
@media screen and (max-width: 767px) {
    .facets__display.is-filter-swatch .facets__list.swatch-type-color {
        grid-template-columns: repeat(5, minmax(38px, 1fr));
    }
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .facets__item {
    justify-content: center;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .filter-swatch--color {
    min-width: 38px;
    min-height: 38px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    outline: 1px solid var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .filter-swatch--color .filter-swatch-sold-out {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
}
@media screen and (max-width: 767px) {
    .facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled {
        grid-template-columns: repeat(3, minmax(70px, 1fr));
    }
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled .filter-swatch--wrapper {
    justify-content: unset;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled .filter-swatch--color {
    min-width: unset;
    min-height: unset;
    width: 32px;
    height: 32px;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .image-swatch-empty {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.image-swatch--disabled {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
}
@media screen and (max-width: 767px) {
    .facets__display.is-filter-swatch .facets__list.swatch-type-image {
        grid-template-columns: repeat(3, minmax(70px, 1fr));
    }
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out {
    width: 141.4%;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image .filter-swatch--swatch {
    position: relative;
    padding-bottom: 100%;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image .filter-swatch--swatch .filter-swatch--image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    outline: 1px solid var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image .color-swatch-empty {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.color-swatch--disabled {
    display: none;
}
variant-dropdown {
    display: block;
    position: relative;
}
variant-dropdown .variant-dropdown [data-dropdown-button] {
    width: 100%;
    min-height: 46px;
    text-align: left;
    color: var(--text-color);
    border: 1px solid var(--text-color-transparent25);
    padding: 8px 10px;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    gap: 10px;
}
@media only screen and (max-width: 767px) {
    variant-dropdown .variant-dropdown [data-dropdown-button] {
        min-height: 52px;
    }
}
@media only screen and (max-width: 767px) {
    variant-dropdown .variant-dropdown [data-dropdown-button] .header--supporting-text {
        flex-grow: 1;
    }
}
variant-dropdown .variant-dropdown [data-dropdown-button] :focus .header--supporting-text {
    color: var(--text-color);
}
variant-dropdown .variant-dropdown [data-dropdown-button] span {
    display: inline-block;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    variant-dropdown .variant-dropdown [data-dropdown-button] span {
        display: flex;
        align-items: center;
    }
}
variant-dropdown .variant-dropdown [data-dropdown-button] .icon-dropdown {
    display: flex;
    flex-shrink: 0;
}
variant-dropdown .variant-dropdown [data-dropdown-button] .icon-dropdown svg {
    transition: transform 0.3s ease;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 100%;
    list-style: none;
    margin: 0;
    z-index: 5;
    max-height: 50vh;
    overflow-x: auto;
    white-space: nowrap;
    z-index: 101;
    color: var(--text-color);
    background-color: var(--color-primary-background);
    border: 1px solid var(--text-color-transparent25);
    border-top: 0;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li {
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    font-weight: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 5px 10px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li:first-child {
    padding-top: 10px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li:last-child {
    padding-bottom: 10px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li .status-text {
    font-size: 12px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li.sold-out .option-label,
variant-dropdown .variant-dropdown ul[data-dropdown-list] li.sold-out .status-text {
    opacity: 50%;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li.selected,
variant-dropdown .variant-dropdown ul[data-dropdown-list] li:hover {
    background-color: var(--text-color-transparent10);
}
@media screen and (prefers-reduced-motion: no-preference) {
    variant-dropdown .variant-dropdown ul[data-dropdown-list] {
        overflow-y: hidden;
        animation: resetOverflow 0s linear 0.5s forwards;
    }
    variant-dropdown .variant-dropdown ul[data-dropdown-list] li {
        animation: dropdownFadeUp 0.5s ease;
    }
}
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-enter-active,
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-leave-active {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-enter,
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-leave-to {
    opacity: 0;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list]::-webkit-scrollbar {
    width: 3px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list]::-webkit-scrollbar-track {
    background-color: transparent;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list]::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--text-color-transparent30);
}
variant-dropdown.variant-dropdown--open [data-dropdown-button] .icon-dropdown svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.option-label-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.global-drawer {
    visibility: hidden;
    display: block;
    position: fixed;
    top: 0;
    width: 450px;
    max-width: calc(100% - 30px);
    height: 100%;
    z-index: 1501;
    color: var(--cart-drawer-text-color);
    background-color: var(--cart-drawer-color);
}
@media screen and (prefers-reduced-motion: no-preference) {
    .global-drawer {
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
}
.global-drawer[data-drawer-position="right"] {
    transform: translate(100%);
    right: 0;
    box-shadow: -50px 0 150px 0 rgba(0, 0, 0, 0.05);
}
.global-drawer[data-drawer-position="right"] .global-drawer__overlay {
    right: 100%;
}
@media screen and (min-width: 768px) {
    .global-drawer[data-drawer-position="right"] .global-drawer__content:has(.global-drawer--secondary) {
        border-left: 1px solid var(--cart-drawer-text-color-transparent25);
    }
    .global-drawer[data-drawer-position="right"] .global-drawer--secondary {
        right: 100%;
    }
    .global-drawer[data-drawer-position="right"] .global-drawer--secondary__content {
        transform: translate(100%);
    }
}
.global-drawer[data-drawer-position="left"] {
    transform: translate(-100%);
    left: 0;
    box-shadow: 50px 0 150px 0 rgba(0, 0, 0, 0.05);
}
.global-drawer[data-drawer-position="left"] .global-drawer__overlay {
    left: 100%;
}
@media screen and (min-width: 768px) {
    .global-drawer[data-drawer-position="left"] .global-drawer__content:has(.global-drawer--secondary) {
        border-right: 1px solid var(--cart-drawer-text-color-transparent25);
    }
    .global-drawer[data-drawer-position="left"] .global-drawer--secondary {
        left: 100%;
    }
    .global-drawer[data-drawer-position="left"] .global-drawer--secondary__content {
        transform: translate(-100%);
    }
}
.global-drawer[aria-hidden="false"] {
    transform: translate(0);
    visibility: visible;
}
.global-drawer[aria-hidden="false"] .global-drawer__overlay {
    opacity: 1;
    visibility: visible;
}
@media screen and (min-width: 768px) {
    .global-drawer[aria-hidden="false"][data-drawer-position="right"] .global-drawer--secondary {
        box-shadow: -50px 0 150px 0 rgba(0, 0, 0, 0.05);
    }
    .global-drawer[aria-hidden="false"][data-drawer-position="left"] .global-drawer--secondary {
        box-shadow: 50px 0 150px 0 rgba(0, 0, 0, 0.05);
    }
    .global-drawer[aria-hidden="false"] .global-drawer--secondary {
        transition: box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
    }
    .global-drawer[aria-hidden="false"] .global-drawer--secondary__content {
        transform: translate(0);
    }
}
@media screen and (min-width: 768px) and (prefers-reduced-motion: no-preference) {
    .global-drawer[aria-hidden="false"] .global-drawer--secondary__content {
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) 425ms;
    }
}
@media screen and (min-width: 768px) {
    .global-drawer[aria-hidden="false"].disable-transitions .global-drawer--secondary__content {
        transition: none;
    }
}
.global-drawer ::-webkit-scrollbar {
    width: 3px;
    height: 2px;
}
.global-drawer ::-webkit-scrollbar-track {
    background-color: var(--cart-drawer-text-color-transparent10);
}
.global-drawer ::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--cart-drawer-text-color-transparent40);
}
.global-drawer__content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.global-drawer__content a:not(.btn):not(.btn--underlined),
.global-drawer__content button.btn--underlined-with-icon {
    --link-color: var(--cart-drawer-text-color);
    --link-border-color: var(--cart-drawer-text-color-transparent50);
    color: var(--cart-drawer-text-color);
}
.global-drawer__content .wrapper-spacing--v--template {
    padding-top: 15px;
    padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__content .wrapper-spacing--v--template {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.global-drawer__content .wrapper-spacing--h {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__content .wrapper-spacing--h {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.global-drawer__disable-load-in-animations .show-on-scroll {
    animation: fadeIn 0.25s ease forwards;
}
.global-drawer__disable-load-in-animations [data-animate] {
    opacity: 1 !important;
    animation: none !important;
}
.global-drawer__overlay {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--body-overlay-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}
.global-drawer__close {
    position: absolute;
    z-index: 1;
    top: 3px;
    right: 3px;
    padding: 12px;
    display: flex;
    background: 0 0;
    border: 0;
    color: var(--cart-drawer-text-color);
}
@media screen and (min-width: 768px) {
    .global-drawer__close {
        top: 18px;
        right: 18px;
        padding: 12px;
    }
}
.global-drawer__body--with-padding,
.global-drawer__footer--with-padding,
.global-drawer__sticky-header {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__body--with-padding,
    .global-drawer__footer--with-padding,
    .global-drawer__sticky-header {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.global-drawer__sticky-header {
    position: relative;
    padding-top: 15px;
    padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .global-drawer__sticky-header {
        padding-top: 30px;
    }
}
.global-drawer__sticky-header:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background-color: var(--cart-drawer-text-color-transparent25);
    bottom: 0;
    left: 15px;
    right: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__sticky-header:after {
        left: 30px;
        right: 30px;
    }
}
.global-drawer__sticky-header .h3,
.global-drawer__sticky-header h3 {
    margin: 0;
}
.global-drawer__sticky-header:has(button:only-child) {
    padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
    .global-drawer__sticky-header:has(button:only-child) {
        padding-bottom: 40px;
    }
}
.global-drawer__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    overflow-y: auto;
}
.global-drawer__body--with-padding {
    padding-top: 20px;
    padding-bottom: 20px;
}
.global-drawer__body--content {
    flex-grow: 1;
}
@media screen and (max-width: 767px) {
    .global-drawer__body--content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
@media screen and (max-width: 767px) {
    .global-drawer__sticky-bottom {
        position: relative;
    }
    .global-drawer__sticky-bottom:after {
        content: "";
        display: block;
        position: absolute;
        height: 20px;
        background: linear-gradient(rgba(0, 0, 0, 0), var(--cart-drawer-color));
        left: 0;
        right: 0;
        bottom: 100%;
        pointer-events: none;
    }
}
.global-drawer__footer {
    border-top: var(--cart-drawer-text-color-transparent25) 1px solid;
}
@media screen and (min-width: 768px) {
    .global-drawer__footer {
        position: relative;
    }
    .global-drawer__footer:after {
        content: "";
        display: block;
        position: absolute;
        height: 30px;
        background: linear-gradient(rgba(0, 0, 0, 0), var(--cart-drawer-color));
        left: 0;
        right: 0;
        bottom: calc(100% + 1px);
        pointer-events: none;
    }
}
.global-drawer__footer--with-padding {
    padding-top: 10px;
    padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__footer--with-padding {
        padding-top: 15px;
        padding-bottom: 30px;
    }
}
@media screen and (min-width: 768px) {
    .global-drawer--secondary {
        position: absolute;
        top: 0;
        height: 100%;
        overflow: hidden;
        width: 310px;
        max-width: calc(100vw - 450px - 30px);
    }
}
@media screen and (min-width: 768px) {
    .global-drawer--secondary__content {
        height: 100%;
        overflow-y: auto;
        transform: translate(100%);
        padding: 30px;
        background-color: var(--cart-drawer-color);
    }
}
@media screen and (min-width: 768px) and (prefers-reduced-motion: no-preference) {
    .global-drawer--secondary__content {
        transition: all 0.35s ease-in;
    }
}
@media screen and (max-width: 767px) {
    .global-drawer--secondary__header {
        padding: 15px;
        position: relative;
    }
    .global-drawer--secondary__header:after {
        content: "";
        display: block;
        position: absolute;
        height: 1px;
        background-color: var(--cart-drawer-text-color-transparent25);
        top: 50%;
        left: 0;
        right: 0;
        z-index: -1;
    }
}
.global-drawer--secondary__header .h5,
.global-drawer--secondary__header h5 {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .global-drawer--secondary__header .h5,
    .global-drawer--secondary__header h5 {
        margin-bottom: 0;
        display: inline-block;
        padding: 0 5px;
        background-color: var(--cart-drawer-color);
    }
}
.icon-dot-outline {
    display: flex;
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    border-radius: 100%;
    background-color: var(--color-scheme-text-color-transparent10, var(--text-color-transparent10));
    z-index: 1;
}
.icon-dot-outline .icon-dot {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    z-index: 2;
    margin: auto;
}
.icon-dot-outline .icon-dot.icon-dot.icon-dot--success {
    background-color: var(--success-color);
}
.icon-dot-outline .icon-dot.icon-dot.icon-dot--warning {
    background-color: var(--warning-color);
}
.icon-dot-outline .icon-dot.icon-dot.icon-dot--error {
    background-color: var(--error-color);
}
@media screen and (prefers-reduced-motion: no-preference) {
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--success {
        box-shadow: 0 1px 10px var(--success-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--warning {
        box-shadow: 0 1px 10px var(--warning-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--error {
        box-shadow: 0 1px 10px var(--error-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot:after {
        position: absolute;
        content: "";
        width: inherit;
        height: inherit;
        left: 0;
        top: 0;
        z-index: -1;
        border-radius: 50%;
        -webkit-animation: 2s pulsatingDot ease-in-out infinite;
        animation: 2s pulsatingDot ease-in-out infinite;
        opacity: 0.4;
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--success:after {
        color: var(--success-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--warning:after {
        color: var(--warning-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--error:after {
        color: var(--error-color);
    }
    @keyframes pulsatingDot {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0;
            opacity: 0.7;
        }
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px;
            opacity: 0;
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0;
            opacity: 0;
        }
    }
}
.icon-fallback-text .icon {
    display: none;
}
.icon:before {
    display: none;
}
.payment-icons svg {
    height: 40px;
    width: 55px;
}
.social-icons li {
    margin: 0 15px 15px;
    vertical-align: middle;
}
@media screen and (min-width: 481px) {
    .social-icons li {
        margin-left: 0;
    }
}
.social-icons li .icon {
    font-size: 30px;
    line-height: 26px;
}
.product-card-basic {
    display: flex;
    gap: 15px;
}
.product-card-basic--info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(-4px);
}
.product-card-basic--info--body {
    display: flex;
    flex-direction: column;
}
.product-card-basic--info--body .unit-price {
    color: var(--cart-drawer-text-color-transparent70);
}
.product-card-basic__image {
    width: 70px;
    flex-shrink: 0;
}
.product-card-basic__image .theme-img {
    display: block;
}
@media screen and (max-width: 767px) {
    .product-card-basic__image:not(:has(.aspect-ratio)) .theme-img {
        max-height: 105px;
        object-fit: contain;
    }
}
.product-card-basic__vendor {
    font-size: 12px;
    word-break: break-word;
}
.product-card-basic__title {
    font-size: 14px;
    word-break: break-word;
}
.product-card-basic__price .money,
.product-card-basic__price .price--from-text {
    font-size: 12px;
    overflow-wrap: anywhere;
}
.product-card-basic__price .money.price-line-through.sale-price,
.product-card-basic__price .money.sale-price {
    color: inherit;
    opacity: 0.7;
}
.product-card-basic__price .money.price-line-through.sale-price + .money,
.product-card-basic__price .money.sale-price + .money {
    color: var(--on-sale-color);
}
.product-card-basic .btn--underlined-with-icon {
    font-size: 12px;
}
.product-card-basic__add-button {
    display: flex;
}
.product-grid--wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: calc(var(--grid-spacing) * 0.75);
    position: relative;
}
@media (min-width: 768px) {
    .product-grid--wrapper {
        column-gap: var(--grid-spacing);
    }
}
.product-grid--wrapper:not(.product-grid--slider-enabled) {
    row-gap: 2em;
}
.product-grid--wrapper.grid-uniform {
    margin-left: 0;
}
.product-grid--wrapper:after {
    display: none;
}
@media (min-width: 768px) {
    .product-grid--wrapper {
        column-gap: var(--grid-spacing);
    }
}
.product-grid--wrapper .grid__item {
    margin-top: 0;
    padding-left: 0;
}
@media only screen and (max-width: 767px) {
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-fifth:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-half:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-quarter:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-third:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-whole:not(.swiper-slide) {
        width: 100% !important;
    }
    .product-grid--wrapper .grid__item.small--one-half.medium--one-fifth,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-half,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-quarter,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-third,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-whole {
        width: calc(50% - calc(var(--grid-spacing) * 0.75) / 2);
    }
}
@media only screen and (min-width: 768px) {
    .product-grid--wrapper .grid__item.medium--one-half {
        width: calc(50% - var(--grid-spacing) / 2);
    }
    .product-grid--wrapper .grid__item.medium--one-fifth,
    .product-grid--wrapper .grid__item.medium--one-quarter,
    .product-grid--wrapper .grid__item.medium--one-third,
    .product-grid--wrapper .grid__item.medium--one-whole {
        width: calc(33.3333333333% - 2 * var(--grid-spacing) / 3);
    }
}
@media only screen and (min-width: 1024px) {
    .product-grid--wrapper .grid__item.large--one-half {
        width: calc(50% - var(--grid-spacing) / 2);
    }
    .product-grid--wrapper .grid__item.large--one-third {
        width: calc(33.3333333333% - 2 * var(--grid-spacing) / 3);
    }
    .product-grid--wrapper .grid__item.large--one-quarter {
        width: calc(25% - 3 * var(--grid-spacing) / 4);
    }
    .product-grid--wrapper .grid__item.large--one-fifth {
        width: calc(20% - 4 * var(--grid-spacing) / 5);
    }
}
.grid-view-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    position: relative;
    text-align: center;
}
.grid-view-item:has(.quick-shop--block) {
    height: 100%;
}
.grid-view-item.text-align--left .product-grid--price,
.grid-view-item.text-align--left .product-grid--title,
.grid-view-item.text-align--left .product-grid--vendor {
    text-align: left;
}
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block {
    justify-content: start;
}
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block form,
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block theme-modal,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block form,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block theme-modal {
    text-align: left;
    justify-content: flex-start;
}
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block .is-loading.btn--underlined,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block .is-loading.btn--underlined {
    justify-content: flex-start;
}
.grid-view-item.text-align--center .product-grid--price,
.grid-view-item.text-align--center .product-grid--title,
.grid-view-item.text-align--center .product-grid--vendor {
    text-align: center;
}
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block {
    justify-content: center;
}
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block form,
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block theme-modal,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block form,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block theme-modal {
    text-align: center;
    justify-content: center;
}
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block .is-loading.btn--underlined,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block .is-loading.btn--underlined {
    justify-content: center;
}
.grid-view-item.text-align--right .product-grid--price,
.grid-view-item.text-align--right .product-grid--title,
.grid-view-item.text-align--right .product-grid--vendor {
    text-align: right;
}
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block {
    justify-content: end;
}
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block form,
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block theme-modal,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block form,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block theme-modal {
    text-align: right;
    justify-content: flex-end;
}
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block .is-loading.btn--underlined,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block .is-loading.btn--underlined {
    justify-content: end;
}
.grid-view-item .grid-view-item-image:not(:last-child) {
    margin-bottom: 1em;
}
.grid-view-item .product-grid--price:not(:last-child),
.grid-view-item .product-grid--rating:not(:last-child),
.grid-view-item .product-grid--title:not(:last-child) {
    padding-bottom: 0.5em;
}
.grid-view-item .product-grid--title + .product-grid--price {
    margin-top: -0.5em;
}
.grid__image {
    display: block;
    margin: 0 auto;
}
.grid__image img {
    margin: 0 auto;
}
.grid-view-item-image {
    overflow: hidden;
    position: relative;
}
.grid-view-item-image .product-card-image--bottom-wrapper {
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, auto));
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 5;
}
.grid-view-item-image .grid-view-item--placeholder .secondary-placeholder-image {
    z-index: 4;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}
.grid-view-item-image .grid-view-item--placeholder:hover .secondary-placeholder-image {
    opacity: 1;
}
.grid-view-item-image .grid-view-item--placeholder.ratio-natural {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.grid-view-item-image .grid-view-item--placeholder.ratio-natural .primary-placeholder-image,
.grid-view-item-image .grid-view-item--placeholder.ratio-natural .secondary-placeholder-image {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}
product-card .grid__image.image-height--natural {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
}
product-card .grid__image.image-height--natural .responsive-image-wrapper {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}
product-card .grid__image.image-height--natural .responsive-image-wrapper.product-card__image--swatch img {
    height: 100%;
}
product-card .grid__image.image-height--natural .responsive-image-wrapper [data-product-card-swatch-image] {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain !important;
}
product-card .grid__image.image-height--natural .product-card__image--secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
@media (max-width: 767px) {
    product-card .grid__image.image-height--natural .product-card__image--secondary {
        display: none;
    }
}
product-card .grid__image.image-height--natural .product-card__image--secondary img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}
.product-card__image {
    align-items: flex-start;
}
.product-card__image--secondary {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-scheme-background-color, var(--body-color));
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .product-card__image--secondary {
        display: none;
    }
}
.grid__image:focus .product-card__image--secondary,
.grid__image:hover .product-card__image--secondary {
    opacity: 1;
}
.product-grid--price,
.product-grid--title {
    word-wrap: break-word;
    font-size: var(--base-font-size);
}
.product-grid--vendor {
    font-size: 12px;
}
.product-grid--price-font-heading,
.product-grid--title-font-heading,
.product-grid--vendor-font-heading {
    font-family: var(--header-font-stack);
    letter-spacing: var(--heading-spacing);
    text-transform: var(--heading-font-case);
    font-weight: var(--header-font-weight);
    font-style: var(--header-font-style);
}
.product-grid--price-font-body,
.product-grid--title-font-body,
.product-grid--vendor-font-body {
    font-family: var(--body-font-stack);
}
.product-grid--price {
    overflow-wrap: break-word;
}
.product-grid--price .money {
    font-size: inherit;
}
.product-grid--price .money.price-line-through.sale-price,
.product-grid--price .money.sale-price {
    color: var(--text-color);
    opacity: 0.4;
}
.product-grid--price .money.price-line-through.sale-price + .money,
.product-grid--price .money.sale-price + .money {
    color: var(--on-sale-color);
}
.product-grid--price .money:not(.sale-price):not(.price-line-through),
.product-grid--price a,
.product-grid--title,
.product-grid--title a {
    color: var(--text-color);
}
.product-grid--title {
    font-weight: 500;
}
.product-grid--title a {
    cursor: pointer;
}
.price-line-through {
    text-decoration: line-through;
}
.price-line-through:not(.sale-price) {
    opacity: 0.4;
    font-weight: 400;
}
.sale-price {
    color: var(--on-sale-color);
}
.money {
    font-size: var(--body-font-size-16-to-em);
}
.grid-image--centered {
    text-align: center;
    display: block;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-mobile {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
        background: 0 0;
        padding: 0;
    }
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-mobile span {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: normal;
        background-color: var(--primary-btn-bg-color-opacity50);
        width: 32px;
        height: 32px;
        padding: 0;
        border-radius: 50%;
        margin: 0;
    }
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-desktop {
        display: none;
    }
}
@media only screen and (min-width: 768px) {
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-mobile {
        display: none;
    }
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-desktop {
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out;
        will-change: transform;
        width: 100%;
    }
}
@media only screen and (min-width: 768px) {
    .grid-view-item:hover .quick-add-wrapper:not(.quick-shop--block) .sold-out-button-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper:not(.quick-shop--block) .sold-out-button-desktop {
        transform: translateY(0);
        opacity: 1;
    }
}
.product-grid--quick-shop.quick-shop--block,
.quick-add-wrapper.quick-shop--block {
    position: relative;
    display: flex;
}
.product-grid--quick-shop.quick-shop--block form,
.quick-add-wrapper.quick-shop--block form {
    width: 100%;
    box-sizing: border-box;
}
.product-grid--quick-shop.quick-shop--block .btn,
.quick-add-wrapper.quick-shop--block .btn {
    width: 100%;
}
.using-mouse .quick-add-button-variants:focus,
.using-mouse .quick-add-button:focus {
    outline: 0;
}
.quick-add-wrapper:not(.quick-shop--block) {
    position: relative;
    width: 100%;
    z-index: 100;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}
.product-card-image--bottom-wrapper,
.product-card-image--bottom-wrapper .quick-add-wrapper {
    pointer-events: none;
}
.product-card-image--bottom-wrapper .quick-add-wrapper a,
.product-card-image--bottom-wrapper .quick-add-wrapper button,
.product-card-image--bottom-wrapper a,
.product-card-image--bottom-wrapper button {
    pointer-events: auto;
}
.quick-add-button-mobile,
.quick-add-button-onboarding-mobile,
.quick-add-button-variants-mobile {
    width: fit-content;
    left: calc(100% - 32px);
    position: relative;
    background: 0 0;
    padding: 0;
    border: 0;
}
.quick-add-button-mobile span,
.quick-add-button-onboarding-mobile span,
.quick-add-button-variants-mobile span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    color: var(var(--color-scheme-text-color), var(--primary-btn-text-color));
    background-color: var(var(--color-scheme-background-color), var(--primary-btn-bg-color));
    transition: all 0.15s ease-in-out 0s;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
}
.quick-add-wrapper:not(.quick-shop--block) .quick-add-button-desktop,
.quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-desktop,
.quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-desktop {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out, color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s;
    will-change: transform;
    width: 100%;
    box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-mobile {
        display: flex;
    }
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-desktop {
        display: none;
    }
}
@media only screen and (min-width: 768px) {
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-mobile {
        display: none;
    }
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-desktop {
        display: inline-block;
    }
}
.quick-add-wrapper.quick-shop--block .quick-add-button-desktop,
.quick-add-wrapper.quick-shop--block .quick-add-button-onboarding-desktop,
.quick-add-wrapper.quick-shop--block .quick-add-button-variants-desktop {
    display: inline-block;
}
.quick-add-wrapper.quick-shop--block .quick-add-button-desktop.is-loading.btn--underlined,
.quick-add-wrapper.quick-shop--block .quick-add-button-onboarding-desktop.is-loading.btn--underlined,
.quick-add-wrapper.quick-shop--block .quick-add-button-variants-desktop.is-loading.btn--underlined {
    display: flex;
    width: 100%;
}
.quick-add-wrapper.quick-shop--block .quick-add-button-desktop.is-loading.btn--underlined svg,
.quick-add-wrapper.quick-shop--block .quick-add-button-onboarding-desktop.is-loading.btn--underlined svg,
.quick-add-wrapper.quick-shop--block .quick-add-button-variants-desktop.is-loading.btn--underlined svg {
    width: auto;
}
@media only screen and (min-width: 768px) {
    .grid-view-item:has(.quick-shop--block) .grid-view-item-image:hover .quick-add-wrapper .quick-add-button-desktop,
    .grid-view-item:has(.quick-shop--block) .grid-view-item-image:hover .quick-add-wrapper .quick-add-button-onboarding-desktop,
    .grid-view-item:has(.quick-shop--block) .grid-view-item-image:hover .quick-add-wrapper .quick-add-button-variants-desktop,
    .grid-view-item:not(:has(.quick-shop--block)):hover .quick-add-wrapper .quick-add-button-desktop,
    .grid-view-item:not(:has(.quick-shop--block)):hover .quick-add-wrapper .quick-add-button-onboarding-desktop,
    .grid-view-item:not(:has(.quick-shop--block)):hover .quick-add-wrapper .quick-add-button-variants-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper .quick-add-button-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper .quick-add-button-onboarding-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper .quick-add-button-variants-desktop {
        transform: translateY(0);
        opacity: 1;
    }
}
.product-grid--rating {
    font-size: 12px;
}
.color-swatch--block [data-product-card-swatch-color-name] {
    font-size: 12px;
    margin-bottom: 2px;
}
.color-swatch--block .card-color-swatch--wrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swiper-wrapper {
    padding: 2px;
    box-sizing: border-box;
    height: auto;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    width: fit-content;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swiper-wrapper .swiper-slide:last-child {
    margin-right: 0 !important;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    z-index: 100;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-color: var(--body-color);
    box-shadow: none;
    color: currentColor;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next svg {
    width: 20px;
    height: 20px;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--body-color);
    color: currentColor;
    box-shadow: none;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    transform: translateX(-100%);
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(var(--color-scheme-background-rgb), 0) 0, rgba(var(--color-scheme-background-rgb), 1) 100%);
}
.color-swatch--block .card-color-swatch--wrapper.swatch-no-slider {
    display: flex;
}
.color-swatch--block .card-color-swatch--wrapper.swatch-no-slider .swiper-wrapper {
    width: fit-content;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border-radius: 50%;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    border: 1px solid var(--text-color-transparent25);
    padding: 1px;
    background-size: cover;
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    z-index: 1;
    cursor: pointer;
    margin: 0;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    box-sizing: content-box;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out {
    width: 19px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--body-color);
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--text-color-transparent25);
}
@media only screen and (max-width: 767px) {
    .color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input:after {
        position: absolute;
        content: "";
        top: -10px;
        right: -10px;
        left: -10px;
        bottom: -10px;
        z-index: 40;
    }
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--body-color);
    box-shadow: 0 0 0 1px currentColor;
    padding: 0 !important;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--body-color);
    box-shadow: 0 0 0 1px currentColor;
    padding: 0 !important;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.card-color-swatch-input--placeholder {
    background-color: #969696;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.square {
    border-radius: 0;
}
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-primary-background);
}
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-primary-background);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border: 1px solid var(--color-scheme-light-text-transparent25);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--color-scheme-light-background);
    box-shadow: 0 0 0 1px var(--color-scheme-light-text);
    padding: 0 !important;
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--color-scheme-light-background);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--color-scheme-light-text-transparent25);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--color-scheme-light-background);
    box-shadow: 0 0 0 1px var(--color-scheme-light-text);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-scheme-light-background);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-scheme-light-background);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border: 1px solid var(--color-scheme-feature-text-transparent25);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--color-scheme-feature-background);
    box-shadow: 0 0 0 1px var(--color-scheme-feature-text);
    padding: 0 !important;
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--color-scheme-feature-background);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--color-scheme-feature-text-transparent25);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--color-scheme-feature-background);
    box-shadow: 0 0 0 1px var(--color-scheme-feature-text);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-scheme-feature-background);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-scheme-feature-background);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border: 1px solid var(--color-scheme-dark-text-transparent25);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--color-scheme-dark-background);
    box-shadow: 0 0 0 1px var(--color-scheme-dark-text);
    padding: 0 !important;
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--color-scheme-dark-background);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--color-scheme-dark-text-transparent25);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--color-scheme-dark-background);
    box-shadow: 0 0 0 1px var(--color-scheme-dark-text);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-scheme-dark-background);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-scheme-dark-background);
}
.badge {
    transition: all 0.2s ease-in-out;
    opacity: 1;
}
.sale-badge {
    background: var(--sale-badge-color);
}
.sold-out-badge {
    background: var(--sold-out-badge-color);
}
.preorder-badge {
    background: var(--preorder-badge-color);
}
.custom-badge {
    background: var(--custom-badge-color);
    max-width: calc(100% - 30px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-badge,
.preorder-badge,
.sale-badge,
.sold-out-badge {
    color: var(--badge-font-color);
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    padding: 5px 8px;
    text-transform: uppercase;
    z-index: 5;
    position: absolute;
    top: 15px;
    left: 15px;
}
.aspect-ratio:not(.quick-view-media) {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.aspect-ratio:not(.quick-view-media) img,
.aspect-ratio:not(.quick-view-media) svg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.aspect-ratio--tall:not(.quick-view-media) {
    padding-bottom: 150%;
}
.aspect-ratio--wide:not(.quick-view-media) {
    padding-bottom: 75%;
}
.aspect-ratio--square:not(.quick-view-media) {
    padding-bottom: 100%;
}
.image-offer-container--is-link img {
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
    transition: border-color 0.25s ease-out;
}
.rating-label {
    margin-bottom: 5px;
}
.rating-icons {
    display: flex;
    flex-wrap: wrap;
}
.quick-view-drawer .rating-icons {
    justify-content: center;
}
.rating-icons__icon {
    width: 24px;
    margin-bottom: 3px;
    margin-right: 4px;
}
.rating-icons__icon--half {
    position: relative;
}
.rating-icons__icon--half > div {
    position: absolute;
    width: 100%;
}
.rating-icons__icon--half .rating-icons__image--full {
    clip: rect(0 12px 24px 0);
    z-index: 1;
}
.js-qty {
    position: relative;
    margin-bottom: 1em;
    max-width: 124px;
    min-width: 75px;
    overflow: visible;
}
.js-qty input {
    display: block;
    background: 0 0;
    text-align: center;
    width: 100%;
    max-height: 44px;
    padding: 12px 0;
    margin: 0;
}
.js-qty__adjust {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    border: 0 none;
    background: 0 0;
    text-align: center;
    overflow: hidden;
}
.js-qty__adjust .fallback-text {
    display: none;
}
.js-qty__adjust--plus {
    right: 0;
}
.js-qty__adjust--minus {
    left: 0;
}
@media (max-width: 767px) {
    #ThemeModal.is-quick-view {
        position: fixed;
        top: unset !important;
        left: 0 !important;
        right: 0;
        bottom: 0;
        opacity: 1 !important;
        visibility: hidden !important;
        max-height: calc(100vh - 20px);
        transform: translateY(100vh) scale(1) !important;
        transition: all 0.4s ease-in;
    }
    body.theme-modal-open #ThemeModal.is-quick-view {
        transition: all 0.4s ease-out;
        transform: translateY(0) scale(1) !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0;
    }
}
[data-quick-view-product] .product-single-wrapper .product-single {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 15px;
}
@media (min-width: 768px) {
    [data-quick-view-product] .product-single-wrapper .product-single {
        flex-direction: row;
        gap: 20px;
    }
    [data-quick-view-product] .product-single-wrapper .product-single.product-sticky-wrapper {
        position: relative;
    }
    [data-quick-view-product] .product-single-wrapper .product-single.product-sticky-wrapper .product-sticky {
        height: fit-content;
        position: sticky;
        top: 40px !important;
        z-index: 2;
    }
    [data-quick-view-product] .product-single-wrapper .product-single.product-sticky-wrapper .product-sticky.product-form-wrapper {
        top: 40px !important;
    }
}
[data-quick-view-product] .product-single-wrapper .product-single [data-product-media-wrapper] {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}
@media (min-width: 768px) {
    [data-quick-view-product] .product-single-wrapper .product-single [data-product-media-wrapper] {
        grid-column: 1/2;
        grid-row: 1/2;
    }
}
[data-quick-view-product] .product-single-wrapper .product-single .quick-view-view-more-wrapper {
    display: block;
    margin-top: 15px;
}
@media (min-width: 768px) {
    [data-quick-view-product] .product-single-wrapper .product-single.product-media--right {
        flex-direction: row-reverse;
    }
}
.reviews-star-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.reviews-star-rating.text-align--center {
    justify-content: center;
}
.reviews-star-rating.text-align--right {
    justify-content: flex-end;
}
.quick-view-drawer .reviews-star-rating {
    justify-content: center;
}
.reviews-star-rating__stars {
    display: flex;
    gap: calc(5px - 1px);
}
@media only screen and (max-width: 767px) {
    .social-sharing {
        position: relative;
        width: 100%;
        bottom: 0;
        right: 0;
        text-align: left;
    }
}
.social-sharing .h5,
.social-sharing h5 {
    text-transform: uppercase;
    font-size: 11px;
}
.social-sharing a {
    transition: all 0.15s ease-in-out 0s;
    display: inline-block;
    margin-bottom: -12px;
}
.social-sharing a:first-of-type {
    margin-left: -12px;
}
.drawer .social-sharing a:first-of-type {
    margin-left: 0;
}
@media only screen and (max-width: 1200px) {
    .social-sharing {
        bottom: 0;
        position: relative;
        right: 0;
        text-align: left;
    }
}
.stock-indicator-bar {
    display: flex;
    align-items: center;
    margin-top: 5px;
    position: relative;
    height: 8px;
    background-color: var(--color-scheme-text-color-transparent10, var(--text-color-transparent10));
    border-radius: 50px;
    padding-left: 2px;
}
.stock-indicator-bar .bar {
    height: calc(8px / 2);
    border-radius: 50px;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .stock-indicator-animations:not(.animate-bar) .stock-indicator-bar > .bar {
        width: calc(100% - 2px) !important;
    }
    @keyframes barExpands {
        0% {
            width: calc(100% - 2px);
        }
    }
    .stock-indicator-animations.animate-bar .stock-indicator-bar > .bar {
        animation: barExpands 1.2s ease-in-out;
    }
}
div[data-updates-on-change]:has(stock-level-indicator) {
    display: none;
}
div[data-updates-on-change]:has(stock-level-indicator):has(div.stock-indicator-wrapper) {
    display: block;
}
stock-level-indicator .stock-indicator-wrapper.hidden {
    display: none;
}
stock-level-indicator .stock-level-message {
    display: flex;
    align-items: center;
}
stock-level-indicator .stock-level-message p {
    line-height: normal;
    margin: 0;
}
stock-level-indicator .icon-dot-outline {
    margin-right: 10px;
}
stock-level-indicator .icon-dot-outline .icon-dot {
    flex: 0 0 auto;
}
.swiper-pagination-arrows {
    position: absolute;
    z-index: 1;
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--body-color-transparent50);
}
@media screen and (min-width: 768px) {
    .swiper-pagination-arrows {
        right: 20px;
        bottom: 20px;
    }
}
.swiper-pagination-arrows__next,
.swiper-pagination-arrows__prev {
    cursor: pointer;
}
.swiper-pagination-arrows__next:not(.swiper-button-lock),
.swiper-pagination-arrows__prev:not(.swiper-button-lock) {
    display: flex;
}
.swiper-button--next,
.swiper-button--prev {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 40px);
    width: 44px;
    height: 44px;
    padding: 12px;
    z-index: 9;
}
.swiper-button--prev {
    left: -25px;
}
@media screen and (min-width: 768px) {
    .product-page-related-products .swiper-button--prev {
        left: 5px;
    }
}
.swiper-button--next {
    right: -25px;
}
@media screen and (min-width: 768px) {
    .product-page-related-products .swiper-button--next {
        right: 5px;
    }
}
.swiper-button-disabled {
    cursor: auto;
}
@media screen and (max-width: 767px) {
    .swiper-button--prev {
        left: 0;
    }
    .product-page-related-products .swiper-button--prev {
        left: 0;
    }
    .recently-viewed-products .swiper-button--prev {
        left: -15px;
    }
    .swiper-button--next {
        right: 0;
    }
    .product-page-related-products .swiper-button--next {
        right: 0;
    }
    .recently-viewed-products .swiper-button--next {
        right: -15px;
    }
}
.swiper-pagination {
    position: static;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 10px;
    background: 0 0;
    border: 1px solid;
    border-color: var(--color-scheme-border-color, var(--border-color));
    opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background: var(--text-color);
}
.pswp__button {
    opacity: 1;
}
.pswp__button .pswp__icn {
    -webkit-filter: drop-shadow(1px 1px 3px var(--pswp-icon-color-secondary));
    filter: drop-shadow(1px 1px 3px var(--pswp-icon-color-secondary));
    top: 12px;
    left: 12px;
}
grid-slider {
    display: block;
    width: 100%;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}
@media screen and (prefers-reduced-motion: no-preference) {
    [data-grid-slider-wrapper] .swiper-btn--wrapper {
        transition: opacity 0.2s ease-in-out;
    }
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__none {
    display: none;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__right {
    right: 15px;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right {
    width: 100%;
    justify-content: space-between;
}
@media screen and (prefers-reduced-motion: no-preference) {
    [data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--next,
    [data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--prev {
        transition: transform 0.2s ease-out;
    }
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--prev {
    left: 0;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--next {
    right: 0;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__above {
    position: relative;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 5px;
    margin: 15px 0;
    transition: opacity 0.4s ease-in 0.5s;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__above:has(.swiper-button-lock) {
    display: none;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--next,
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--prev {
    pointer-events: all;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--next.swiper-button-disabled,
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--prev.swiper-button-disabled {
    cursor: auto;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--next.swiper-button-lock,
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--prev.swiper-button-lock {
    display: none;
}
[data-grid-slider-wrapper].swiper-initialized .swiper-btn--wrapper.swiper-btn-layout__above {
    opacity: 1;
}
[data-grid-slider-wrapper]:hover .swiper-btn--wrapper:not(.swiper-btn-layout__above) {
    opacity: 1;
}
[data-grid-slider-wrapper]:hover .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--prev {
    transform: translateX(100%);
}
[data-grid-slider-wrapper]:hover .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--next {
    transform: translateX(-100%);
}
[data-grid-slider-wrapper] .swiper-scrollbar {
    background: var(--border-color);
}
[data-grid-slider-wrapper] .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: relative;
    top: 30px;
    margin-bottom: 30px;
}
[data-grid-slider-wrapper] .swiper-scrollbar-drag {
    background: var(--text-color);
}
.color-scheme--accent [data-grid-slider-wrapper] .swiper-scrollbar,
.color-scheme--dark [data-grid-slider-wrapper] .swiper-scrollbar,
.color-scheme--light [data-grid-slider-wrapper] .swiper-scrollbar {
    background: var(--color-scheme-border-color);
}
.color-scheme--accent [data-grid-slider-wrapper] .swiper-scrollbar-drag,
.color-scheme--dark [data-grid-slider-wrapper] .swiper-scrollbar-drag,
.color-scheme--light [data-grid-slider-wrapper] .swiper-scrollbar-drag {
    background: var(--color-scheme-text-color);
}
.text-with-icon .text-with-icon--content {
    display: flex;
    gap: 10px;
}
.text-with-icon .text-with-icon--content a.link {
    color: var(--text-color);
    text-decoration: none;
}
.text-with-icon .text-with-icon--content .text-with-icon--icon {
    display: flex;
    align-items: center;
    align-self: center;
    height: 100%;
    position: relative;
    left: 0;
    top: 50%;
}
.text-with-icon .text-with-icon--content .text-with-icon--icon .responsive-image-wrapper {
    height: 100%;
}
.text-with-icon .text-with-icon--content .text-with-icon--text {
    display: inline;
    word-break: break-word;
    line-height: normal;
}
.text-with-icon .text-with-icon--content .text-with-icon--icon.link:hover + .text-with-icon--text .animated-link--item {
    background-position: left bottom, left bottom;
    background-size: 100% 1px, 100% 1px;
}
body.theme-modal-open {
    overflow: hidden;
    height: 100%;
}
#ThemeModal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    z-index: 1500;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
body.theme-modal-open #ThemeModal {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
theme-modal {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
#ThemeModal [data-modal-content] {
    position: relative;
    max-height: 90dvh;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    color: var(--text-color);
    background-color: var(--body-color);
}
@media (min-width: 768px) {
    #ThemeModal [data-modal-content] {
        max-height: 80vh;
    }
}
#ThemeModal [data-modal-content]::-webkit-scrollbar {
    width: 3px;
}
#ThemeModal [data-modal-content]::-webkit-scrollbar-track {
    background-color: transparent;
}
#ThemeModal [data-modal-content]::-webkit-scrollbar-thumb {
    background-color: transparent;
}
#ThemeModal [data-modal-content].scrolling::-webkit-scrollbar-track {
    background-color: var(--text-color-transparent10);
}
#ThemeModal [data-modal-content].scrolling::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--text-color-transparent30);
}
#ThemeModal [data-modal-content] .theme-modal--inner {
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 40px;
}
#ThemeModal [data-modal-content] .button-unstyled {
    background-color: var(--body-color);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
}
@media (min-width: 768px) {
    #ThemeModal [data-modal-content] .button-unstyled {
        top: 10px;
        right: 10px;
    }
}
#ThemeModal [data-modal-content] .theme-modal-header {
    display: flex;
    max-width: 100%;
    align-items: center;
}
#ThemeModal [data-modal-content] .theme-modal-header .h2,
#ThemeModal [data-modal-content] .theme-modal-header h2 {
    margin: 0;
}
#ThemeModal [data-modal-content] [data-modal-body] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
}
#ThemeModal [data-modal-content] [data-modal-body] iframe,
#ThemeModal [data-modal-content] [data-modal-body] img,
#ThemeModal [data-modal-content] [data-modal-body] video {
    max-width: 100%;
}
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h1,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h2,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h3,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h4,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h5,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h6,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h1,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h2,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h3,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h4,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h5,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h6,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description p {
    margin: 0;
}
#ThemeModal [data-modal-content] [data-modal-body] p:last-of-type {
    margin-bottom: 0;
}
theme-parallax {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
}
theme-parallax .parallax-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    will-change: transform;
}
.announcement_bar animated-background-text-colors {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.announcement_bar animated-background-text-colors .announcement_block {
    grid-column: 1/2;
    grid-row: 1/2;
}
.announcement_bar animated-background-text-colors ul#sm-icons {
    display: none;
}
.announcement_bar animated-background-text-colors .announcement_text {
    display: inline-block;
}
.announcement_bar animated-background-text-colors .announcement_text {
    padding-top: 8px;
    padding-bottom: 8px;
}
.announcement_bar animated-background-text-colors.announcements_only .announcement_block {
    display: grid;
}
.announcement_bar animated-background-text-colors.announcements_only .announcement_wrapper {
    grid-row: 1/2;
}
.announcement_bar animated-background-text-colors.announcements_only .announcement_text {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .announcement_bar animated-background-text-colors.announcements_only .announcement_text {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media screen and (min-width: 768px) {
    .announcement_bar animated-background-text-colors.announcements_icons_only ul#sm-icons {
        grid-column: 1/2;
        grid-row: 1/2;
        display: flex;
        justify-content: flex-end;
        padding-left: calc(60px - calc((44px - 20px) / 2));
        padding-right: calc(60px - calc((44px - 20px) / 2));
    }
}
.announcement_bar animated-background-text-colors.announcements_and_icons {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .announcement_bar animated-background-text-colors.announcements_and_icons {
        padding-left: calc(60px - calc((44px - 20px) / 2));
        padding-right: calc(60px - calc((44px - 20px) / 2));
        grid-template-columns: minmax(0, calc(44px * 6)) 1fr minmax(0, calc(44px * 6));
        grid-gap: 60px;
    }
    .announcement_bar animated-background-text-colors.announcements_and_icons .announcement_block {
        grid-column: 2/3;
        min-width: 200px;
    }
    .announcement_bar animated-background-text-colors.announcements_and_icons ul#sm-icons {
        grid-column: 3/4;
        grid-row: 1/2;
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: flex-end;
        align-items: center;
    }
}
.announcement_bar .announcement_wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.announcement_bar animated-background-text-colors * {
    color: inherit;
}
.announcement_bar .announcement_block {
    font-size: var(--announcement-text-size);
    letter-spacing: var(--announcement-text-spacing);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.02, 0.01, 0, 0.95);
}
.announcement_bar .announcement_block.active {
    opacity: 1;
    z-index: 1;
    transition-delay: 0.35s;
}
.announcement_bar animated-background-text-colors {
    transition: all 0.7s cubic-bezier(0.02, 0.01, 0, 0.95), padding 1ms;
}
.announcement_bar ul#sm-icons {
    margin: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    row-gap: 8px;
}
.announcement_bar ul#sm-icons li {
    list-style-type: none;
    margin: 0;
}
.announcement_bar ul#sm-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
}
.announcement_bar ul#sm-icons svg {
    width: 20px;
    height: 20px;
}
[data-search-dropdown-open] .announcement_bar {
    position: relative;
    z-index: 1001;
}
@charset "UTF-8";
.kb-enabled {
    overflow: hidden;
}
@media only screen and (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .kb-enabled > * {
        -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
        transition: 2s transform;
    }
}
@media only screen and (min-width: 768px) {
    .kb-enabled.in-viewport > * {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        -ms-transform: translate3d(0, 0, 0) scale(1);
        -moz-transform: translate3d(0, 0, 0) scale(1);
        -o-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
    }
}
.kb-enabled.no-anim > * {
    transition: none !important;
}
@media screen and (prefers-reduced-motion: reduce) {
    .kb-enabled {
        transform: none !important;
        transition: none !important;
    }
    .kb-enabled.in-viewport {
        transform: none !important;
        transition: none !important;
    }
    .homepage-wrapper .image-with-text-wrapper .kb-enabled .in-viewport,
    .homepage-wrapper .image-with-text-wrapper .kb-enabled .parallax,
    .homepage-wrapper .image-with-text-wrapper .kb-enabled div:not(.parallax) .img {
        transform: none !important;
        transition: none !important;
    }
}
.supports-js body.page-fade {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}
.supports-js body.page-fade.loaded {
    opacity: 1;
}
.supports-js body.page-fade.unloading {
    opacity: 0;
}
@keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes FadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.animations-disabled .fadeIn,
.animations-disabled .fadeInUp {
    animation-name: none;
}
.js .animations-disabled .show-on-scroll,
.js .drawer .show-on-scroll {
    opacity: 1;
}
.js .show-on-scroll {
    opacity: 0;
}
.collection-wrapper .shopify-section:first-child,
.homepage-wrapper .shopify-section:first-child {
    animation-name: none;
}
:root {
    --animation-translate-y: 15px;
    --animation-delay-increment: 0.15s;
    --animation-delay-offset: 0s;
}
@media (prefers-reduced-motion: no-preference) {
    .js body:not(.animations-disabled) [data-animate] {
        opacity: 0.001;
        transform: none;
    }
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate] {
        animation-name: blockFadeIn;
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate][data-animate-left] {
        animation-name: blockFadeInLeft;
    }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate][data-animate-left-bold] {
        animation-name: blockFadeInLeftBold;
    }
    .js body:not(.animations-disabled) .shown-on-scroll [data-animate][data-animate-right-bold] {
        animation-name: blockFadeInRightBold;
    }
}
@media (prefers-reduced-motion: no-preference) {
    .js body:not(.animations-disabled) [data-animate-nested] {
        animation-name: none !important;
    }
    .js body:not(.animations-disabled) .shown-on-scroll.show-on-scroll--nested [data-animate-nested] {
        animation-name: blockFadeIn !important;
    }
    .js body:not(.animations-disabled) [data-animate-overflow-container] {
        margin-bottom: calc(var(--animation-translate-y) * -1);
    }
    .js body:not(.animations-disabled) [data-animate-overflow-item] {
        padding-bottom: var(--animation-translate-y);
    }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 768px) and (hover: hover) {
    [data-animate-hover]:not(:focus-within) [data-animate-hover-block] {
        opacity: 0.001;
        transform: none;
        animation-name: FadeOut;
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    [data-animate-hover]:not(:focus-within):hover [data-animate-hover-block] {
        animation-name: blockFadeIn;
    }
    .hover-zoom-enabled [data-animate-hover-zoom] {
        overflow: hidden;
    }
    .hover-zoom-enabled [data-animate-hover-zoom] [data-animate-hover-zoom-bg-img],
    .hover-zoom-enabled [data-animate-hover-zoom] img,
    .hover-zoom-enabled [data-animate-hover-zoom] svg {
        transition: 0.8s transform;
    }
    .hover-zoom-enabled [data-animate-hover-zoom]:hover [data-animate-hover-zoom-bg-img],
    .hover-zoom-enabled [data-animate-hover-zoom]:hover img,
    .hover-zoom-enabled [data-animate-hover-zoom]:hover svg {
        transform: scale(1.04);
    }
}
[data-animate-hover-block][data-animate-order="1"],
[data-animate][data-animate-order="1"] {
    animation-delay: calc(0 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="2"],
[data-animate][data-animate-order="2"] {
    animation-delay: calc(1 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="3"],
[data-animate][data-animate-order="3"] {
    animation-delay: calc(2 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="4"],
[data-animate][data-animate-order="4"] {
    animation-delay: calc(3 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="5"],
[data-animate][data-animate-order="5"] {
    animation-delay: calc(4 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="6"],
[data-animate][data-animate-order="6"] {
    animation-delay: calc(5 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="7"],
[data-animate][data-animate-order="7"] {
    animation-delay: calc(6 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="8"],
[data-animate][data-animate-order="8"] {
    animation-delay: calc(7 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="9"],
[data-animate][data-animate-order="9"] {
    animation-delay: calc(8 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="10"],
[data-animate][data-animate-order="10"] {
    animation-delay: calc(9 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="11"],
[data-animate][data-animate-order="11"] {
    animation-delay: calc(10 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="12"],
[data-animate][data-animate-order="12"] {
    animation-delay: calc(11 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="13"],
[data-animate][data-animate-order="13"] {
    animation-delay: calc(12 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="14"],
[data-animate][data-animate-order="14"] {
    animation-delay: calc(13 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="15"],
[data-animate][data-animate-order="15"] {
    animation-delay: calc(14 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="16"],
[data-animate][data-animate-order="16"] {
    animation-delay: calc(15 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="17"],
[data-animate][data-animate-order="17"] {
    animation-delay: calc(16 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="18"],
[data-animate][data-animate-order="18"] {
    animation-delay: calc(17 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="19"],
[data-animate][data-animate-order="19"] {
    animation-delay: calc(18 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="20"],
[data-animate][data-animate-order="20"] {
    animation-delay: calc(19 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="21"],
[data-animate][data-animate-order="21"] {
    animation-delay: calc(20 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="22"],
[data-animate][data-animate-order="22"] {
    animation-delay: calc(21 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="23"],
[data-animate][data-animate-order="23"] {
    animation-delay: calc(22 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="24"],
[data-animate][data-animate-order="24"] {
    animation-delay: calc(23 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="25"],
[data-animate][data-animate-order="25"] {
    animation-delay: calc(24 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="26"],
[data-animate][data-animate-order="26"] {
    animation-delay: calc(25 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="27"],
[data-animate][data-animate-order="27"] {
    animation-delay: calc(26 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="28"],
[data-animate][data-animate-order="28"] {
    animation-delay: calc(27 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="29"],
[data-animate][data-animate-order="29"] {
    animation-delay: calc(28 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="30"],
[data-animate][data-animate-order="30"] {
    animation-delay: calc(29 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="31"],
[data-animate][data-animate-order="31"] {
    animation-delay: calc(30 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="32"],
[data-animate][data-animate-order="32"] {
    animation-delay: calc(31 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="33"],
[data-animate][data-animate-order="33"] {
    animation-delay: calc(32 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="34"],
[data-animate][data-animate-order="34"] {
    animation-delay: calc(33 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="35"],
[data-animate][data-animate-order="35"] {
    animation-delay: calc(34 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="36"],
[data-animate][data-animate-order="36"] {
    animation-delay: calc(35 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="37"],
[data-animate][data-animate-order="37"] {
    animation-delay: calc(36 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="38"],
[data-animate][data-animate-order="38"] {
    animation-delay: calc(37 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="39"],
[data-animate][data-animate-order="39"] {
    animation-delay: calc(38 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="40"],
[data-animate][data-animate-order="40"] {
    animation-delay: calc(39 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="41"],
[data-animate][data-animate-order="41"] {
    animation-delay: calc(40 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="42"],
[data-animate][data-animate-order="42"] {
    animation-delay: calc(41 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="43"],
[data-animate][data-animate-order="43"] {
    animation-delay: calc(42 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="44"],
[data-animate][data-animate-order="44"] {
    animation-delay: calc(43 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="45"],
[data-animate][data-animate-order="45"] {
    animation-delay: calc(44 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="46"],
[data-animate][data-animate-order="46"] {
    animation-delay: calc(45 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="47"],
[data-animate][data-animate-order="47"] {
    animation-delay: calc(46 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="48"],
[data-animate][data-animate-order="48"] {
    animation-delay: calc(47 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="49"],
[data-animate][data-animate-order="49"] {
    animation-delay: calc(48 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="50"],
[data-animate][data-animate-order="50"] {
    animation-delay: calc(49 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="51"],
[data-animate][data-animate-order="51"] {
    animation-delay: calc(50 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
[data-animate-hover-block][data-animate-order="52"],
[data-animate][data-animate-order="52"] {
    animation-delay: calc(51 * var(--animation-delay-increment) + var(--animation-delay-offset));
}
@media screen and (max-width: 1023px) {
    [data-animate-hover-block][data-animate-order-ipad="1"],
    [data-animate][data-animate-order-ipad="1"] {
        animation-delay: calc(0 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-ipad="2"],
    [data-animate][data-animate-order-ipad="2"] {
        animation-delay: calc(1 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
}
@media screen and (max-width: 767px) {
    [data-animate-hover-block][data-animate-order-mobile="1"],
    [data-animate][data-animate-order-mobile="1"] {
        animation-delay: calc(0 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-mobile="2"],
    [data-animate][data-animate-order-mobile="2"] {
        animation-delay: calc(1 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-mobile="3"],
    [data-animate][data-animate-order-mobile="3"] {
        animation-delay: calc(2 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
    [data-animate-hover-block][data-animate-order-mobile="4"],
    [data-animate][data-animate-order-mobile="4"] {
        animation-delay: calc(3 * var(--animation-delay-increment) + var(--animation-delay-offset));
    }
}
@keyframes blockFadeIn {
    from {
        opacity: 0.001;
        transform: translateY(var(--animation-translate-y));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes blockFadeInLeft {
    from {
        opacity: 0.001;
        transform: translateX(calc(var(--animation-translate-y) * -1));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes blockFadeInLeftBold {
    from {
        opacity: 0.001;
        transform: translateX(calc(var(--animation-translate-y) * -2));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes blockFadeInRightBold {
    from {
        opacity: 0.001;
        transform: translateX(calc(var(--animation-translate-y) * 2));
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes dropdownFadeUp {
    from {
        opacity: 0.001;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes resetOverflow {
    from {
        overflow-y: hidden;
        padding-right: 3px;
    }
    to {
        overflow-y: auto;
        padding-right: 0;
    }
}
.spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.fade-in-label {
    display: inline-block;
    animation: fadeInLabel 0.3s ease forwards;
}
.fade-in-label-simple {
    animation: fadeInLabelSimple 0.3s ease forwards;
}
@keyframes fadeInLabel {
    from {
        opacity: 0.001;
        transform: translateX(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLabelSimple {
    from {
        opacity: 0.001;
    }
    to {
        opacity: 1;
    }
}
.btn-wrapper-default {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: calc(var(--grid-spacing) * 0.75);
}
@media screen and (min-width: 481px) {
    .btn-wrapper-default {
        column-gap: var(--grid-spacing);
    }
}
.btn-wrapper-default .btn {
    word-wrap: break-word;
}
@media screen and (max-width: 767px) {
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default {
        flex-direction: column;
        row-gap: 8px;
    }
}
@media screen and (min-width: 768px) {
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default {
        column-gap: 8px;
        row-gap: 8px;
        padding-top: 15px;
        max-width: 50%;
        margin-left: auto;
    }
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default .cart--button-checkout,
    [data-wetheme-section-type="template--cart"] .btn-wrapper-default.cart--checkout-default .cart--button-update {
        flex: 1;
        height: fit-content;
        min-width: fit-content;
        max-width: 100%;
        white-space: normal;
        border: 1px solid var(--primary-btn-bg-color);
    }
}
[data-wetheme-section-type="template--cart"] .additional-checkout-buttons {
    margin-top: 8px;
}
.text-link,
a {
    color: var(--link-color);
    text-decoration: none;
    background: 0 0;
}
button {
    overflow: visible;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
.btn,
.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 10px calc(15px + 20px);
    width: auto;
    margin: 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    line-height: 1.6;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: var(--alt-btn-border-radius);
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
    font-family: var(--button-font-stack);
    font-weight: var(--button-font-weight);
    font-style: var(--button-font-style);
    text-transform: var(--button-text-case);
    font-size: var(--button-font-size-px);
    letter-spacing: var(--button-text-spacing-px);
}
.btn.btn--secondary,
.shopify-payment-button__button.shopify-payment-button__button--unbranded.btn--secondary {
    background: 0 0;
    color: var(--primary-btn-bg-color);
    border: 1px solid var(--primary-btn-bg-color);
}
.btn.disabled,
.btn.swiper-button-disabled,
.btn:disabled,
.shopify-payment-button__button.shopify-payment-button__button--unbranded.disabled,
.shopify-payment-button__button.shopify-payment-button__button--unbranded.swiper-button-disabled,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:disabled {
    opacity: 0.5;
    cursor: default;
}
.btn--underlined {
    --link-color: var(--primary-btn-bg-color);
    --link-border-color: var(--primary-btn-bg-color-opacity50);
    color: var(--primary-btn-bg-color);
    border: 0;
}
.btn--underlined.disabled,
.btn--underlined:disabled {
    opacity: 0.5;
    cursor: default;
}
.btn--underlined:has(svg:not(.btn--underlined-with-icon__icon)) {
    background: 0 0 !important;
}
.btn--underlined-with-icon {
    display: inline-flex !important;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}
.btn--underlined-with-icon svg {
    transform: translateY(1.5px);
}
.btn--full {
    width: 100%;
}
.text-link {
    display: inline;
    border: 0 none;
    background: 0 0;
    padding: 0;
    margin: 0;
}
.article-comment--btn,
.customer-account-cancel,
.newsletter-footer .footer-email-submit {
    margin-top: 15px;
}
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded:hover {
    color: var(--primary-btn-text-color) !important;
    background-color: var(--primary-btn-bg-color) !important;
}
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded.disabled,
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded:disabled,
product-form .paymentButtonsWrapper .shopify-payment-button__button.shopify-payment-button__button--unbranded[aria-disabled="true"] {
    opacity: 0.5 !important;
}
.shopify-challenge__container .shopify-challenge__button {
    margin: 20px auto !important;
}
.shopify-payment-button {
    display: block;
    width: 100%;
}
.product--add-to-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product--add-to-cart-button svg.spin {
    position: absolute;
    top: calc(50% - 0.8em);
    left: calc(50% - 0.8em);
    transform: translateX(-50%, -50%);
}
.product--add-to-cart-button,
.shopify-product-form .shopify-payment-button__button--unbranded {
    min-height: 44px;
    width: 100%;
}
.shopify-product-form .shopify-payment-button__button--branded {
    border-radius: var(--alt-btn-border-radius);
}
.shopify-product-form .shopify-payment-button__button--hidden {
    opacity: 0.5;
    cursor: default;
}
.shopify-product-form .shopify-payment-button__button--unbranded + .shopify-payment-button__button--hidden {
    display: none;
}
.shopify-product-form .shopify-payment-button__more-options {
    font-size: var(--button-font-size-px);
    width: 70%;
    margin: 15px auto 0;
    color: var(--link-color);
}
@media screen and (max-width: 480px) {
    .paymentButtonsWrapper .product--add-to-cart-button,
    .paymentButtonsWrapper .shopify-payment-button {
        width: 100%;
        max-width: 300px;
    }
}
@media screen and (min-width: 481px) {
    .paymentButtonsWrapper {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .drawer .paymentButtonsWrapper .product--add-to-cart-button,
    .drawer .paymentButtonsWrapper .shopify-payment-button {
        max-width: 100%;
    }
    .paymentButtonsWrapper .product--add-to-cart-button,
    .paymentButtonsWrapper .shopify-payment-button {
        flex-grow: 1;
    }
}
shopify-accelerated-checkout,
shopify-accelerated-checkout-cart {
    --shopify-accelerated-checkout-button-border-radius: var(--alt-btn-border-radius, 0);
    --shopify-accelerated-checkout-button-block-size: 44px;
}
body .section--testimonials-wrapper a {
    color: var(--text-color);
}
body .color-scheme--white .events-layout--grid .event-item--date {
    background: var(--color-primary-background);
}
body .color-scheme--white {
    --color-scheme-text-color: var(--text-color);
    --color-scheme-text-color-transparent10: var(--text-color-transparent10);
    --color-scheme-text-color-transparent40: var(--text-color-transparent40);
    --color-scheme-text-color-transparent50: var(--text-color-transparent50);
    --color-scheme-background-color: var(--body-color);
    --color-scheme-background-rgb: var(--color-primary-background-rgb);
    --color-scheme-border-color: var(--text-color-transparent25);
    background: var(--body-color);
    color: var(--text-color);
}
body .color-scheme--white .inline-icon--wrapper,
body .color-scheme--white .standalone-icon--wrapper,
body .color-scheme--white input,
body .color-scheme--white input::placeholder {
    color: var(--text-color);
}
body .color-scheme--white a:not(.btn):not(.standalone-icon--wrapper):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--link-color);
}
body .color-scheme--white.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
}
body .color-scheme--light {
    --color-scheme-text-color: var(--color-scheme-light-text);
    --color-scheme-text-color-transparent10: var(--color-scheme-light-text-transparent10);
    --color-scheme-text-color-transparent40: var(--color-scheme-light-text-transparent40);
    --color-scheme-text-color-transparent50: var(--color-scheme-light-text-transparent50);
    --color-scheme-background-color: var(--color-scheme-light-background);
    --color-scheme-background-rgb: var(--color-scheme-light-background-rgb);
    --color-scheme-border-color: var(--color-scheme-light-text-transparent25);
    --border-color: var(--color-scheme-light-text-transparent25);
    --body-color-transparent50: var(--color-scheme-light-background-transparent50);
    --body-color-transparent40: var(--color-scheme-light-background-transparent40);
    --body-color: var(--color-scheme-light-background);
    --text-color: var(--color-scheme-light-text);
    background-color: var(--color-scheme-light-background);
    color: var(--color-scheme-light-text);
}
body .color-scheme--light .inline-icon--wrapper,
body .color-scheme--light .standalone-icon--wrapper,
body .color-scheme--light input,
body .color-scheme--light input::placeholder {
    color: var(--color-scheme-light-text);
}
body .color-scheme--light .product-grid--price .money.price-line-through.sale-price + .money,
body .color-scheme--light .product-grid--price .money.sale-price + .money,
body .color-scheme--light a:not(.btn):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--color-scheme-light-text);
}
body .color-scheme--light .recently-viewed-products .reviews-star-rating.has-rating svg path {
    fill: var(--color-scheme-light-text);
    stroke: var(--color-scheme-light-text);
}
body .color-scheme--light .recently-viewed-products .reviews-star-rating.no-rating svg path {
    fill: none;
    opacity: 0.15;
    stroke: var(--color-scheme-light-text);
}
body .color-scheme--light.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--color-scheme-light-text);
    color: var(--color-scheme-light-background);
}
body .image-with-text-wrapper .color-scheme--light .homepage-featured-content-box {
    color: var(--color-scheme-light-text);
    background: var(--color-scheme-light-background);
}
body .map-section-wrapper .color-scheme--light .homepage-map-content-box {
    color: var(--color-scheme-light-text);
    background: var(--color-scheme-light-background);
}
body .color-scheme--light .text-slideshow__pagination-btn span {
    background-color: var(--color-scheme-light-text);
}
body .color-scheme--light .events-layout--grid .event-item--date {
    background: var(--color-scheme-light-background);
}
body .color-scheme--accent {
    --color-scheme-text-color: var(--color-scheme-feature-text);
    --color-scheme-text-color-transparent10: var(--color-scheme-feature-text-transparent10);
    --color-scheme-text-color-transparent40: var(--color-scheme-feature-text-transparent40);
    --color-scheme-text-color-transparent50: var(--color-scheme-feature-text-transparent50);
    --color-scheme-background-color: var(--color-scheme-feature-background);
    --color-scheme-background-rgb: var(--color-scheme-feature-background-rgb);
    --color-scheme-border-color: var(--color-scheme-feature-text-transparent25);
    --border-color: var(--color-scheme-feature-text-transparent25);
    --body-color-transparent50: var(--color-scheme-feature-background-transparent50);
    --body-color-transparent40: var(--color-scheme-feature-background-transparent40);
    --body-color: var(--color-scheme-feature-background);
    --text-color: var(--color-scheme-feature-text);
    background: var(--color-scheme-feature-background);
    color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .inline-icon--wrapper,
body .color-scheme--accent .standalone-icon--wrapper,
body .color-scheme--accent input,
body .color-scheme--accent input::placeholder {
    color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .product-grid--price .money.price-line-through.sale-price + .money,
body .color-scheme--accent .product-grid--price .money.sale-price + .money,
body .color-scheme--accent a:not(.btn):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .recently-viewed-products .reviews-star-rating.has-rating svg path {
    fill: var(--color-scheme-feature-text);
    stroke: var(--color-scheme-feature-text);
}
body .color-scheme--accent .recently-viewed-products .reviews-star-rating.no-rating svg path {
    fill: none;
    opacity: 0.15;
    stroke: var(--color-scheme-feature-text);
}
body .color-scheme--accent.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--color-scheme-feature-text);
    color: var(--color-scheme-feature-background);
}
body .image-with-text-wrapper .color-scheme--accent .homepage-featured-content-box {
    color: var(--color-scheme-feature-text);
    background: var(--color-scheme-feature-background);
}
body .map-section-wrapper .color-scheme--accent .homepage-map-content-box {
    color: var(--color-scheme-feature-text);
    background: var(--color-scheme-feature-background);
}
body .color-scheme--accent .text-slideshow__pagination-btn span {
    background-color: var(--color-scheme-feature-text);
}
body .color-scheme--accent .events-layout--grid .event-item--date {
    background: var(--color-scheme-feature-background);
}
body .color-scheme--dark {
    --color-scheme-text-color: var(--color-scheme-dark-text);
    --color-scheme-text-color-transparent10: var(--color-scheme-dark-text-transparent10);
    --color-scheme-text-color-transparent40: var(--color-scheme-dark-text-transparent40);
    --color-scheme-text-color-transparent50: var(--color-scheme-dark-text-transparent50);
    --color-scheme-background-color: var(--color-scheme-dark-background);
    --color-scheme-background-rgb: var(--color-scheme-dark-background-rgb);
    --color-scheme-border-color: var(--color-scheme-dark-text-transparent25);
    --border-color: var(--color-scheme-dark-text-transparent25);
    --body-color-transparent50: var(--color-scheme-dark-background-transparent50);
    --body-color-transparent40: var(--color-scheme-dark-background-transparent40);
    --body-color: var(--color-scheme-dark-background);
    --text-color: var(--color-scheme-dark-text);
    background: var(--color-scheme-dark-background);
    color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .inline-icon--wrapper,
body .color-scheme--dark .standalone-icon--wrapper,
body .color-scheme--dark input,
body .color-scheme--dark input::placeholder {
    color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .product-grid--price .money.price-line-through.sale-price + .money,
body .color-scheme--dark .product-grid--price .money.sale-price + .money,
body .color-scheme--dark a:not(.btn):not(.btn--underlined):not(.animated-link--item--nested) {
    color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .recently-viewed-products .reviews-star-rating.has-rating svg path {
    fill: var(--color-scheme-dark-text);
    stroke: var(--color-scheme-dark-text);
}
body .color-scheme--dark .recently-viewed-products .reviews-star-rating.no-rating svg path {
    fill: none;
    opacity: 0.15;
    stroke: var(--color-scheme-dark-text);
}
body .color-scheme--dark.product-section .shopify-payment-button__button--unbranded {
    background-color: var(--color-scheme-dark-text);
    color: var(--color-scheme-dark-background);
}
body .image-with-text-wrapper .color-scheme--dark .homepage-featured-content-box {
    color: var(--color-scheme-dark-text);
    background: var(--color-scheme-dark-background);
}
body .map-section-wrapper .color-scheme--dark .homepage-map-content-box {
    color: var(--color-scheme-dark-text);
    background: var(--color-scheme-dark-background);
}
body .color-scheme--dark .text-slideshow__pagination-btn span {
    background-color: var(--color-scheme-dark-text);
}
body .color-scheme--dark .events-layout--grid .event-item--date {
    background: var(--color-scheme-dark-background);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
details > summary {
    list-style: none;
    cursor: pointer;
}
details > summary::-webkit-details-marker {
    display: none;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
:focus,
:focus-visible {
    outline-offset: -1px;
}
.using-mouse :focus,
.using-mouse :focus-visible,
body:not(.using-keyboard):not(.using-mouse) :focus {
    outline: 0;
}
.using-keyboard input:focus + * + .custom-input,
.using-keyboard input:focus + .custom-input,
.using-keyboard input:focus + label,
.using-keyboard label.wrap-focus:focus-within {
    outline: 1px auto -webkit-focus-ring-color;
}
.hide {
    display: none !important;
}
.hidden {
    display: none;
}
@media only screen and (max-width: 767px) {
    .small-hide {
        display: none !important;
    }
}
@media only screen and (min-width: 768px) {
    .large-hide {
        display: none !important;
    }
}
.placeholder-noblocks {
    text-align: center;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.nav .ul:after,
.nav .ul:before {
    content: " ";
    display: table;
}
.nav .ul:after {
    clear: both;
}
.icon {
    display: inline-block;
    height: auto;
    vertical-align: middle;
    width: auto;
}
.icon--placeholder {
    background-color: rgba(120, 129, 136, 0.1);
    border: 1px solid rgba(120, 129, 136, 0.2);
    fill: rgba(120, 129, 136, 0.35);
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
}
.icon--placeholder path {
    transform: scale(1);
    transform-origin: center;
}
.homepage-collection-grid-inner .icon--placeholder {
    max-height: 50vh;
}
.homepage-collection-grid-inner .icon--placeholder path {
    transform: scale(1);
    transform-origin: center;
}
.richtext-block .h1,
.richtext-block .h2,
.richtext-block .h3,
.richtext-block .h4,
.richtext-block .h5,
.richtext-block .h6,
.richtext-block h1,
.richtext-block h2,
.richtext-block h3,
.richtext-block h4,
.richtext-block h5,
.richtext-block h6,
.richtext-block p {
    margin-bottom: 0;
}
html.js .no-js {
    display: none !important;
}
html.no-js .js {
    display: none !important;
}
.no-js.disclaimer {
    text-align: center;
    padding: 15px 15px 0;
}
html.no-js .no-js-show {
    display: block !important;
}
[tabindex="-1"]:focus {
    outline: 0;
}
.wrapper {
    padding: 0;
}
.wrapper:after {
    content: "";
    display: table;
    clear: both;
}
.wrapper-padded {
    position: relative;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 15px;
}
@media screen and (min-width: 481px) {
    .wrapper-padded {
        padding: 0 30px;
    }
}
.centered {
    margin: 0 auto;
}
.main-content {
    display: block;
}
.template-index .main-content {
    padding-top: 0;
    padding-bottom: 0;
}
svg.icon.icon--placeholder {
    background: #969696;
    fill: #5d5d5d;
    border: 1px solid #858585;
}
svg.icon.icon--placeholder.icon--placeholder--subdued {
    fill: rgba(93, 93, 93, 0.3019607843);
}
@media screen and (min-width: 768px) {
    svg.icon.icon--placeholder.icon--placeholder--subdued-desktop {
        fill: rgba(93, 93, 93, 0.3019607843);
    }
}
@media screen and (max-width: 767px) {
    svg.icon.icon--placeholder.icon--placeholder--subdued-mobile {
        fill: rgba(93, 93, 93, 0.3019607843);
    }
}
.width-full {
    width: 100%;
}
.flex {
    display: flex;
}
.flex-full {
    display: flex;
    width: 100%;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-grid {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .flex-grid .flex-grid__item.large--one-half {
        width: calc(50% - 10px);
    }
    .flex-grid .flex-grid__item.large--one-quarter {
        width: calc(25% - 10px);
    }
    .flex-grid .flex-grid__item.large--three-quarters {
        width: calc(75% - 10px);
    }
}
.border-none {
    border: 0 !important;
}
.padding-none {
    padding: 0 !important;
}
.m-0-auto {
    margin: 0 auto;
}
.text-truncate--line {
    display: -webkit-box;
    line-clamp: var(--text-line-clamp);
    -webkit-line-clamp: var(--text-line-clamp);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.touch-target {
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.touch-target:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}
.wrapper-spacing--h {
    padding-left: 60px;
    padding-right: 60px;
}
@media (max-width: 767px) {
    .wrapper-spacing--h {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.width--content {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.width--narrow {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.width--small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.width--modal {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
    .width--modal {
        max-width: calc(100% - 120px);
    }
}
.wrapper-spacing--v--template {
    padding-top: 15px;
    padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .wrapper-spacing--v--template {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.caption-padding {
    padding: 20px;
}
@media screen and (max-width: 767px) {
    .caption-padding {
        padding: 15px;
    }
}
.theme-img,
[data-media-poster] {
    border: 0 none;
    width: 100%;
    height: auto;
}
svg:not(:root) {
    overflow: hidden;
}
.theme-img,
[data-media-poster],
iframe {
    max-width: 100%;
}
.video-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    height: auto;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.aspect-ratio:not(.quick-view-media) .grid-view-item--placeholder,
.aspect-ratio:not(.quick-view-media) .responsive-image-wrapper {
    position: absolute !important;
    height: 100%;
    width: 100%;
}
.responsive-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
ol,
ul {
    margin: 0 0 15px 20px;
    padding: 0;
}
ol li,
ul li {
    list-style-position: inside;
}
ol li > div,
ul li > div {
    display: inline-block;
}
ol {
    list-style: decimal;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin: 4px 0 5px 20px;
}
li {
    margin-bottom: 0.25em;
}
ul.square {
    list-style: square outside;
}
ul.disc {
    list-style: disc outside;
}
ol.alpha {
    list-style: lower-alpha outside;
}
.no-bullets {
    list-style: none outside;
    margin-left: 0;
}
.inline-list {
    margin-left: 0;
}
.inline-list li {
    display: inline-block;
    margin-bottom: 0;
}
.button-unstyled {
    display: flex;
    appearance: none;
    background: 0 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    margin: 0;
    padding: 0;
}
@keyframes shineAgain {
    100% {
        left: -200%;
    }
}
.btn-colors-primary {
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
}
.btn-hover-default:after,
.btn:not(:disabled):not(.standalone-icon--wrapper):not(.swiper-button-disabled):not(.disabled):not(.btn--secondary):after,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:not(.disabled):not(:disabled):after,
button.pswp__button:after {
    background-image: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.25), transparent);
    content: "";
    height: 100%;
    left: 150%;
    position: absolute;
    top: 0;
    transform: skew(-20deg);
    width: 200%;
}
.btn-hover-default:hover:after,
.btn:not(:disabled):not(.standalone-icon--wrapper):not(.swiper-button-disabled):not(.disabled):not(.btn--secondary):hover:after,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:not(.disabled):not(:disabled):hover:after,
button.pswp__button:hover:after {
    animation: shineAgain 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}
.btn-hover-default-inner span:after,
.quick-add-button-mobile span:after,
.quick-add-button-onboarding-mobile span:after,
.quick-add-button-variants-mobile span:after {
    background-image: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.25), transparent);
    content: "";
    height: 100%;
    left: 150%;
    position: absolute;
    top: 0;
    transform: skew(-20deg);
    width: 200%;
}
.btn-hover-default-inner span:hover:after,
.quick-add-button-mobile span:hover:after,
.quick-add-button-onboarding-mobile span:hover:after,
.quick-add-button-variants-mobile span:hover:after {
    animation: shineAgain 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}
.round-icon-btn-sm,
button.pswp__button {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    transition: all 0.15s ease-in-out 0s;
    padding: 0;
    border-radius: 50%;
    margin: 5px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.round-icon-btn-sm svg,
.round-icon-btn-sm svg.pswp__icn,
button.pswp__button svg,
button.pswp__button svg.pswp__icn {
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    vertical-align: middle;
    display: inline-block;
    margin: 8px;
}
.round-icon-btn-lg {
    display: block;
    position: absolute;
    overflow: hidden;
    border: 0;
    top: 50%;
    left: 50%;
    padding: 0;
    transform: translate3d(-50%, -50%, 0);
    z-index: 1;
    border-radius: 50%;
}
.round-icon-btn-lg svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    margin: 20px;
}
.standalone-icon--wrapper {
    color: currentColor;
}
.standalone-icon--wrapper:not(.icon-no-padding) {
    min-width: 44px;
    min-height: 44px;
    padding: 12px !important;
}
.standalone-icon--wrapper:active,
.standalone-icon--wrapper:hover,
.standalone-icon--wrapper:visited {
    background-color: unset;
}
.standalone-icon--wrapper .pswp__icn,
.standalone-icon--wrapper svg {
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0;
}
.standalone-icon--wrapper:disabled .pswp__icn,
.standalone-icon--wrapper:disabled svg {
    opacity: 0.5;
    cursor: default;
}
.inline-icon--wrapper {
    display: flex;
    align-items: center;
    color: currentColor;
}
.inline-icon--wrapper svg {
    min-width: var(--inline-icon-size);
    min-height: var(--inline-icon-size);
    max-width: var(--inline-icon-size);
    max-height: var(--inline-icon-size);
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    display: inline-block;
    margin: 0;
}
.inline-icon--wrapper.icon--right svg {
    margin-left: 10px;
}
.inline-icon--wrapper.icon--left svg {
    margin-right: 10px;
}
.inline-icon--wrapper.dropdown-icon {
    display: flex;
    align-items: center;
}
.inline-icon--wrapper.dropdown-icon svg {
    margin-left: 10px;
    margin-right: 10px;
}
.loading-state-icon {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width: 767px) {
    .loading-state-icon.search-loading {
        top: unset;
        transform: translate3d(-50%, 0, 0);
    }
}
.shopify-policy__container a,
.text-link-animated .btn--underlined,
.text-link-animated a:not(.standalone-icon--wrapper) {
    display: inline;
    text-decoration: none;
    position: relative;
    background: linear-gradient(to top, var(--link-border-color) 0, var(--link-border-color) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.shopify-policy__container a:focus,
.shopify-policy__container a:hover,
.text-link-animated .btn--underlined:focus,
.text-link-animated .btn--underlined:hover,
.text-link-animated a:not(.standalone-icon--wrapper):focus,
.text-link-animated a:not(.standalone-icon--wrapper):hover {
    background-size: 0 1px, 100% 1px;
}
.text-link-animated a:not(.standalone-icon--wrapper):before {
    background: var(--link-border-color);
}
.text-inline-link-animated a {
    display: inline;
    text-decoration: none;
    position: relative;
    background: linear-gradient(to top, var(--text-color-transparent25) 0, var(--text-color-transparent25) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.text-inline-link-animated a:focus,
.text-inline-link-animated a:hover {
    background-size: 0 1px, 100% 1px;
}
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper),
.password--container .password--store-owner-links.text-link-animated a {
    background: linear-gradient(to top, var(--color-scheme-text-color-transparent50) 0, var(--color-scheme-text-color-transparent50) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
}
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper):before,
.password--container .password--store-owner-links.text-link-animated a:before {
    background: var(--color-scheme-text-color-transparent50);
}
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper):focus,
#password-wrapper--main .text-link-animated a:not(.standalone-icon--wrapper):hover,
.password--container .password--store-owner-links.text-link-animated a:focus,
.password--container .password--store-owner-links.text-link-animated a:hover {
    background-size: 0 1px, 100% 1px;
}
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper) {
    background: linear-gradient(to top, var(--password-main-border-color) 0, var(--password-main-border-color) 0), linear-gradient(to top, currentColor 0, currentColor 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
}
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper):focus,
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper):hover {
    background-size: 0 1px, 100% 1px;
}
#password-wrapper--main footer#password--footer.text-link-animated a:not(.standalone-icon--wrapper):before {
    background: var(--password-main-border-color);
}
.color-scheme--accent .nav-link-animated a:not(.standalone-icon--wrapper) span.animated-underline,
.color-scheme--dark .nav-link-animated a:not(.standalone-icon--wrapper) span.animated-underline,
.color-scheme--light .nav-link-animated a:not(.standalone-icon--wrapper) span.animated-underline {
    background-color: transparent;
    background-image: linear-gradient(to top, var(--color-scheme-text-color) 0, var(--color-scheme-text-color) 0), linear-gradient(to top, transparent 0, transparent 0);
    background-repeat: no-repeat;
    background-position: left bottom, left bottom;
    background-size: 0 1px, 100% 1px;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.color-scheme--accent .nav-link-animated a:not(.standalone-icon--wrapper):hover span,
.color-scheme--dark .nav-link-animated a:not(.standalone-icon--wrapper):hover span,
.color-scheme--light .nav-link-animated a:not(.standalone-icon--wrapper):hover span {
    background-position: left bottom, left bottom;
    background-size: 100% 1px, 100% 1px;
}
.color-scheme--accent .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined),
.color-scheme--dark .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined),
.color-scheme--light .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined) {
    background: linear-gradient(to top, var(--color-scheme-text-color-transparent50) 0, var(--color-scheme-text-color-transparent50) 0), linear-gradient(to top, var(--color-scheme-text-color) 0, var(--color-scheme-text-color) 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
}
.color-scheme--accent .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):focus,
.color-scheme--accent .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):hover,
.color-scheme--dark .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):focus,
.color-scheme--dark .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):hover,
.color-scheme--light .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):focus,
.color-scheme--light .text-link-animated a:not(.standalone-icon--wrapper):not(.btn--underlined):hover {
    background-size: 0 1px, 100% 1px;
}
.text-link-animated-custom-color a:not(.standalone-icon--wrapper) {
    display: inline;
    text-decoration: none;
    position: relative;
    background: linear-gradient(to top, var(--custom-text-color-transparent50) 0, var(--custom-text-color-transparent50) 0), linear-gradient(to top, var(--custom-text-color) 0, var(--custom-text-color) 0);
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}
.text-link-animated-custom-color a:not(.standalone-icon--wrapper):focus,
.text-link-animated-custom-color a:not(.standalone-icon--wrapper):hover {
    background-size: 0 1px, 100% 1px;
}
@media only screen and (min-width: 768px) {
    .nav-link-animated--custom .animated-link--item,
    .product__meta--vendor.nav-link-animated a,
    .register-link--wrapper a {
        background-color: transparent !important;
        background-image: linear-gradient(to top, currentColor 0, currentColor 0), linear-gradient(to top, transparent 0, transparent 0);
        background-repeat: no-repeat;
        background-position: left bottom, left bottom;
        background-size: 0 1px, 100% 1px;
        transition-property: background-size;
        transition-timing-function: ease;
        transition-duration: 0.25s;
    }
    .overlay-header-wrapper .nav-link-animated--custom .animated-link--item,
    .overlay-header-wrapper .product__meta--vendor.nav-link-animated a,
    .overlay-header-wrapper .register-link--wrapper a {
        transition-property: background-size, color !important;
    }
    .nav-link-animated--custom .animated-link--item:focus,
    .nav-link-animated--custom .animated-link--item:hover,
    .product__meta--vendor.nav-link-animated a:focus,
    .product__meta--vendor.nav-link-animated a:hover,
    .register-link--wrapper a:focus,
    .register-link--wrapper a:hover {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .nav-link-animated--custom .animated-link--item--nested span.animated-underline {
        background-color: transparent !important;
        background-image: linear-gradient(to top, currentColor 0, currentColor 0), linear-gradient(to top, transparent 0, transparent 0);
        background-repeat: no-repeat;
        background-position: left bottom, left bottom;
        background-size: 0 1px, 100% 1px;
        transition-property: background-size;
        transition-timing-function: ease;
        transition-duration: 0.25s;
    }
    .nav-link-animated--custom .animated-link--item--nested:focus span.animated-underline,
    .nav-link-animated--custom .animated-link--item--nested:hover span.animated-underline {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .nav-link-animated a span.animated-underline,
    header localization-form.nav-link-animated button span.animated-underline {
        background-color: transparent;
        background-image: linear-gradient(to top, var(--nav-text-hover) 0, var(--nav-text-hover) 0), linear-gradient(to top, transparent 0, transparent 0);
        background-repeat: no-repeat;
        background-position: left bottom, left bottom;
        background-size: 0 1px, 100% 1px;
        transition-property: background-size;
        transition-timing-function: ease;
        transition-duration: 0.25s;
    }
    .nav-link-animated a:hover span,
    header localization-form.nav-link-animated button:hover span {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .using-keyboard .nav-link-animated a:focus span.animated-underline,
    .using-keyboard header localization-form.nav-link-animated button:focus span.animated-underline {
        background-position: left bottom, left bottom;
        background-size: 100% 1px, 100% 1px;
    }
    .first-level-dropdown > .site-nav__link > .site-nav--link-wrapper > span.animated-underline,
    .top-links--icon-links.nav-link-animated span.animated-underline,
    header localization-form.nav-link-animated button span.animated-underline {
        padding-bottom: 4px;
    }
    .top-links--icon-links.nav-link-animated a span.animated-underline {
        display: flex;
        align-items: center;
    }
    header localization-form.nav-link-animated button {
        display: inline;
    }
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table.full {
    width: 100%;
    margin-bottom: 1em;
}
.table-wrap {
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}
.table-wrap .btn-wrapper-default {
    justify-content: flex-end;
}
th {
    font-weight: 700;
}
td,
th {
    text-align: left;
    padding: 15px;
    border: 0;
    border-bottom: 1px solid var(--color-scheme-border-color, var(--text-color-transparent25));
}
@media only screen and (max-width: 767px) {
    .table--responsive td:before {
        content: attr(data-label);
        float: left;
        font-size: 15px;
        padding-right: 10px;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tr {
        display: block;
    }
    .table--responsive td,
    .table--responsive tr {
        float: left;
        clear: both;
        width: 100%;
    }
    .table--responsive td,
    .table--responsive th {
        display: block;
        text-align: right;
        padding: 15px;
    }
    .table--responsive td:before {
        content: attr(data-label);
        float: left;
        text-align: center;
        font-size: 12px;
        padding-right: 10px;
    }
    .table--responsive.cart-table img {
        margin: 0 auto;
    }
    .table--responsive.cart-table .js-qty {
        float: right;
    }
}
@media screen and (max-width: 480px) {
    .table__section + .table__section {
        position: relative;
        margin-top: 10px;
        padding-top: 15px;
    }
    .table__section + .table__section:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
    }
}
.rte {
    margin-bottom: 15px;
}
.rte .h1,
.rte .h2,
.rte .h3,
.rte .h4,
.rte .h5,
.rte .h6,
.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {
    margin-top: 1em;
}
.rte .h1:first-child,
.rte .h2:first-child,
.rte .h3:first-child,
.rte .h4:first-child,
.rte .h5:first-child,
.rte .h6:first-child,
.rte h1:first-child,
.rte h2:first-child,
.rte h3:first-child,
.rte h4:first-child,
.rte h5:first-child,
.rte h6:first-child {
    margin-top: 0;
}
.rte .h1 a,
.rte .h2 a,
.rte .h3 a,
.rte .h4 a,
.rte .h5 a,
.rte .h6 a,
.rte h1 a,
.rte h2 a,
.rte h3 a,
.rte h4 a,
.rte h5 a,
.rte h6 a {
    text-decoration: none;
}
.rte > div {
    margin-bottom: 15px;
}
.rte ol,
.rte ul {
    margin-left: 0;
}
.rte li {
    margin-bottom: 0.4em;
}
.rte img {
    max-width: 100%;
}
.popup-shadow {
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.1);
}
.popup--close {
    position: absolute;
}
.drawer__close button,
.mobile-menu--close-btn,
.popup--close,
.popup--close-btn,
.shop-the-look__modal-close,
.store-availabilities-modal__close {
    right: 15px;
    top: 12px;
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border: 0;
    background: 0 0;
}
.drawer__close button:hover,
.mobile-menu--close-btn:hover,
.popup--close-btn:hover,
.popup--close:hover,
.shop-the-look__modal-close:hover,
.store-availabilities-modal__close:hover {
    cursor: pointer;
}
.mobile-menu--close-btn:not(.filter-drawer-btn) {
    margin-right: -12px;
}
.display-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
@media screen and (min-width: 768px) {
    .medium--display-table {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    .medium--display-table-cell {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }
}
.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}
.skip-to-content-link:focus-visible {
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px calc(15px + 20px);
    z-index: 9999;
}
.footer-wrapper {
    align-self: baseline;
}
.footer-wrapper.fix-to-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.footer-wrapper .footer-main .footer-main--inner {
    display: flex;
    flex-direction: column;
    column-gap: calc(var(--grid-spacing) * 0.75);
    row-gap: 30px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer-wrapper .footer-main .footer-main--inner > * {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
@media only screen and (min-width: 768px) {
    .footer-wrapper .footer-main .footer-main--inner {
        display: grid;
        grid-template-rows: 1fr;
        padding-top: 60px;
        padding-bottom: 60px;
        column-gap: var(--grid-spacing);
    }
}
@media (max-width: 767px) {
    .footer-wrapper .footer-main .footer-main--inner #newsletter-footer_form {
        padding: 0 30px;
    }
}
.footer-wrapper .footer-bottom .footer-bottom--inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}
.footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-main--inner,
.footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-main--inner,
.footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-main--inner,
.footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-main--inner {
    padding-bottom: 40px;
}
.footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-bottom--inner,
.footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-bottom--inner,
.footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-bottom--inner,
.footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-bottom--inner {
    padding-top: 0;
}
.footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .shopify-section:first-child .footer-bottom .footer-bottom--inner,
.footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .shopify-section:first-child .footer-bottom .footer-bottom--inner,
.footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .shopify-section:first-child .footer-bottom .footer-bottom--inner,
.footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .shopify-section:first-child .footer-bottom .footer-bottom--inner {
    padding-top: 15px;
    padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
    .footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-main--inner,
    .footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-main--inner,
    .footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-main--inner,
    .footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-main--inner {
        padding-bottom: 60px;
    }
    .footer-wrapper:has(.footer-main.accent):has(.footer-bottom.accent) .footer-bottom--inner,
    .footer-wrapper:has(.footer-main.dark):has(.footer-bottom.dark) .footer-bottom--inner,
    .footer-wrapper:has(.footer-main.light):has(.footer-bottom.light) .footer-bottom--inner,
    .footer-wrapper:has(.footer-main.white):has(.footer-bottom.white) .footer-bottom--inner {
        padding-top: 0;
    }
}
.footer-wrapper .shopify-section:first-child .footer-bottom .footer-bottom--inner {
    padding-top: 15px;
}
.footer-wrapper div:not(.image-with-text-overlay__cropped-image):empty {
    display: none;
}
.footer-bottom a,
.footer-main a {
    color: var(--color-scheme-text-color);
}
.h3.footer-header {
    font-size: var(--footer-heading-font-size);
    color: var(--color-scheme-text-color);
    margin-bottom: 0;
}
.footer-alignment--center {
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .site-footer {
        text-align: center;
    }
}
.image-footer svg {
    height: 200px;
}
.links-footer a {
    margin: 0.2em 0;
}
.links-footer .footer--level-2 {
    padding-left: 10px;
    font-size: 95%;
}
.links-footer ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.links-footer ul li {
    list-style-type: none;
    margin: 0;
}
.footer--has-dropdown-title {
    margin-bottom: 0.25em;
    display: inline-block;
}
.newsletter-footer .newsletter-footer--wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.newsletter-footer .newsletter-footer--wrapper .input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.newsletter-footer .newsletter-footer--wrapper .input-group .footer-email-submit {
    width: fit-content;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .newsletter-footer .newsletter-footer--wrapper .input-group .footer-email-submit {
        margin: 0;
    }
}
@media screen and (max-width: 767px) {
    .newsletter-footer .newsletter-footer--wrapper .input-group input {
        text-align: center;
    }
}
.newsletter-footer .newsletter-footer--wrapper .rte,
.newsletter-footer .newsletter-footer--wrapper p {
    margin: 0;
}
.footer-alignment--center .newsletter-footer form {
    display: flex;
    justify-content: center;
}
.footer-alignment--center .newsletter-footer form .input-group {
    width: 100%;
}
.footer-alignment--center .newsletter-footer form .input-group input {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .footer-alignment--center .newsletter-footer form .input-group {
        align-items: center;
    }
}
.contact-form p {
    font-size: 12px;
}
.footer-email-input,
.newsletter-footer input.footer-email-input {
    border: 0;
    border-bottom: 1px solid var(--color-scheme-border-color);
    padding-left: 0;
    padding-top: 0;
    background: var(--color-scheme-background-color);
    color: var(--color-scheme-text-color);
}
.footer-article,
.footer-article a,
.footer-content a {
    color: var(--color-scheme-text-color);
}
.footer-article p,
.footer-article.rte {
    margin-bottom: 0;
}
.social-media-footer ul {
    margin: 0;
    padding: 0;
}
.social-media-footer ul li {
    list-style-type: none;
    display: inline-block;
    margin-bottom: 0;
}
.social-media-footer ul li svg {
    transition: all 0.15s ease-in-out 0s;
}
.social-media-footer ul li a {
    color: var(--color-scheme-text-color);
    transition: all 0.15s ease-in-out 0s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-media-footer ul li a:hover {
    color: var(--color-scheme-text-color);
}
.bottom--footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.bottom--footer .bottom--footer---localization {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.bottom--footer .bottom--footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.bottom--footer .bottom--footer-row .inline-list.payment-icons {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.copyright--mobile {
    display: block;
}
.copyright--desktop {
    display: none;
}
.bottom--footer---links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    flex: 1 1 100%;
}
@media only screen and (min-width: 768px) {
    .bottom--footer---links {
        flex-direction: row;
    }
}
.bottom--footer---links li {
    list-style-type: none;
    display: inline-block;
    padding: 0 15px;
    line-height: 1;
}
@media only screen and (min-width: 768px) {
    .bottom--footer---links li {
        border-left: 1px solid var(--color-scheme-text-color);
    }
}
.bottom--footer---links li:first-child {
    border-left: 0;
}
.bottom--footer---links li a {
    font-size: 12px;
}
@media only screen and (max-width: 767px) {
    .bottom--footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .bottom--footer .bottom--footer-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .footer-alignment--left .localization-form-wrapper {
        justify-content: center;
        flex-direction: column;
    }
}
.localization-form-wrapper {
    display: flex;
    gap: 15px;
}
.footer-alignment--center .localization-form-wrapper {
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .footer-alignment--center .localization-form-wrapper {
        flex-wrap: wrap;
    }
    .footer-alignment--center .localization-form-wrapper localization-form {
        width: 100%;
    }
}
.localization-form-wrapper localization-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.localization-form-wrapper localization-form .icon-dropdown {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left ul.localization__list {
        left: 0;
    }
    .footer-alignment--left .social-media-footer ul {
        margin-left: -12px;
    }
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left .copyright--mobile {
        display: none;
    }
    .footer-alignment--left .copyright--desktop {
        display: block;
    }
    .footer-alignment--left .copyright--desktop li:first-child {
        padding-left: 0;
    }
    .footer-alignment--left .bottom--footer-row {
        display: flex;
        flex-wrap: wrap;
        column-gap: calc(var(--grid-spacing) * 0.75);
        row-gap: 30px;
        flex-direction: row;
        justify-content: flex-start;
    }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .footer-alignment--left .bottom--footer-row {
        column-gap: var(--grid-spacing);
    }
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left .bottom--footer-row.bottom--footer--payment-methods {
        flex-direction: row;
        width: 100%;
    }
    .footer-alignment--left .bottom--footer-row .bottom--footer---links {
        flex: none;
    }
    .footer-alignment--left .bottom--footer-row .inline-list.payment-icons {
        flex: 1 0;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 4px;
        text-align: right;
    }
    .footer-alignment--left .bottom--footer {
        align-items: flex-start;
    }
}
form {
    margin-bottom: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
@media screen and (max-width: 767px) {
    input,
    textarea {
        font-size: 16px;
    }
}
button,
input,
select,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    padding: 0;
    margin: 0;
}
input[type="image"] {
    padding-left: 0;
    padding-right: 0;
}
button,
input[type="submit"] {
    cursor: pointer;
}
input {
    border: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 10px 10px 0;
}
select,
textarea {
    border: 1px solid var(--border-color);
    padding: 10px 10px;
}
input,
select,
textarea {
    background: 0 0;
    max-width: 100%;
    border-radius: 0;
}
input.disabled,
input[disabled],
select.disabled,
select[disabled],
textarea.disabled,
textarea[disabled] {
    cursor: default;
    background-color: #f6f6f6;
    border-color: rgb(182.25, 182.25, 182.25);
}
input.input-full,
select.input-full,
textarea.input-full {
    width: 100%;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
    color: var(--text-color-transparent8);
}
textarea {
    min-height: 100px;
}
input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin: 0 8px 0 0;
    padding: 0;
    width: auto;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
}
input[type="radio"] {
    appearance: none;
    -webkit-appearance: radio;
    -moz-appearance: radio;
}
input[type="image"] {
    padding-left: 0;
    padding-right: 0;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 28px;
    text-indent: 0.01px;
    text-overflow: "";
    cursor: pointer;
}
optgroup {
    font-weight: 700;
}
textarea {
    scrollbar-width: thin;
    scrollbar-color: var(--text-color-transparent40) var(--text-color-transparent10);
}
textarea::-webkit-scrollbar {
    width: 3px;
}
textarea::-webkit-scrollbar-track {
    background: var(--text-color-transparent10);
}
textarea::-webkit-scrollbar-thumb {
    background: var(--text-color-transparent40);
}
.hidden-label {
    position: absolute;
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
.ie9 .hidden-label,
.lt-ie9 .hidden-label {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial;
}
label[for] {
    cursor: pointer;
}
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
    display: block;
    margin-bottom: 10px;
}
.form-vertical input[type="checkbox"],
.form-vertical input[type="radio"] {
    display: inline-block;
}
.form-vertical .input-label--secondary {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 12px;
}
input.error,
select.error,
textarea.error {
    border-color: #d02e2e;
    background-color: #fff6f6;
    color: #d02e2e;
}
label.error {
    color: #d02e2e;
}
.qty-error {
    margin-top: 10px;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group .input-group-btn:first-child,
.input-group .input-group-field:first-child,
.input-group input[type="hidden"]:first-child + .input-group-field {
    border-radius: 0;
}
.input-group .input-group-field:last-child {
    border-radius: 0;
}
.input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px;
}
.input-group-btn,
.input-group-field {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}
.input-group .input-group-field {
    width: 100%;
}
.input-group-btn {
    position: relative;
    white-space: nowrap;
    width: 1%;
    padding: 0;
}
.errors,
.note {
    border-radius: 0;
    padding: 6px 12px;
    margin-bottom: 15px;
    margin-top: 15px;
    border: 1px solid transparent;
    font-size: 0.9em;
    text-align: left;
}
.errors ol,
.errors ul,
.note ol,
.note ul {
    margin-top: 0;
    margin-bottom: 0;
}
.errors li:last-child,
.note li:last-child {
    margin-bottom: 0;
}
.errors p,
.note p {
    margin-bottom: 0;
}
.note {
    border-color: var(--border-color);
}
.errors ul {
    list-style: disc outside;
    margin-left: 0;
}
.errors ul li {
    list-style-type: none;
}
.form-success {
    color: #3d7f4e;
    background-color: #ecfef0;
    border-color: #3d7f4e;
}
.form-success a {
    color: #3d7f4e;
    text-decoration: underline;
}
.form-success a:hover {
    text-decoration: none;
}
.errors {
    color: #d02e2e;
    background-color: #fff6f6;
    border-color: #d02e2e;
}
.errors a {
    color: #d02e2e;
    text-decoration: underline;
}
.errors a:hover {
    text-decoration: none;
}
#CustomerLoginForm input:not(.btn):focus,
#RecoverPasswordForm input:not(.btn):focus,
#create_customer input:not(.btn):focus {
    border-bottom: 1px solid var(--border-color);
}
#CustomerLoginForm #HideRecoverPasswordLink,
#RecoverPasswordForm #HideRecoverPasswordLink,
#create_customer #HideRecoverPasswordLink {
    cursor: pointer;
}
.shopify-section {
    width: 100%;
}
.shopify-section .wrapper-spacing--v.full-width {
    padding-left: 0;
    padding-right: 0;
}
.shopify-section .wrapper-spacing--v {
    padding-top: calc(var(--padding-section-top) * 0.75);
    padding-bottom: calc(var(--padding-section-bottom) * 0.75);
}
@media screen and (min-width: 768px) {
    .shopify-section .wrapper-spacing--v {
        padding-top: var(--padding-section-top);
        padding-bottom: var(--padding-section-bottom);
    }
}
.shopify-section .wrapper-spacing--v {
    margin-top: calc(var(--margin-section-top) * 0.75);
    margin-bottom: calc(var(--margin-section-bottom) * 0.75);
}
@media screen and (min-width: 768px) {
    .shopify-section .wrapper-spacing--v {
        margin-top: var(--margin-section-top);
        margin-bottom: var(--margin-section-bottom);
    }
}
.section-header {
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .section-header {
        display: table;
        width: 100%;
    }
}
.homepage-featured-content-wrapper,
.homepage-map-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
@media screen and (min-width: 768px) {
    .shopify-section .slider-nav--above .section-title--wrapper.remove--spacing {
        margin-bottom: 0;
    }
    .shopify-section .slider-nav--above:has(.swiper-button-lock) .section-title--wrapper.remove--spacing {
        margin-bottom: 50px;
    }
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container embed,
.embed-container iframe,
.embed-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.advanced-layout--hero__text-block {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: 0 30px;
}
.homepage-featured-content-box {
    width: 50%;
    background: var(--body-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
}
.homepage-featured-content-box .rte {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .feature-row__text--full-width .homepage-featured-content-box {
        margin-top: 0;
    }
}
.homepage-featured-content-box-inner {
    padding: 30px;
    text-align: center;
    word-break: break-word;
}
.homepage-featured-content-box-inner p {
    margin-bottom: 0;
}
.homepage-featured-box-btn,
.homepage-section-btn {
    margin-top: 20px;
}
.homepage-featured-box-btn--hidden,
.homepage-section-btn--hidden {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 767px) {
    .homepage-featured-content-box:not(.slideshow-mobile-overlay-text) {
        position: relative;
        width: 100%;
        transform: none;
        text-align: center;
        max-width: 100%;
    }
}
.homepage-content--image img {
    display: block;
}
.wrapper-spacing--h.no-spacing {
    padding-left: 0;
    padding-right: 0;
}
.grid-item__content {
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.grid-item__title .h2,
.grid-item__title h2 {
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: 1.5rem;
    margin-bottom: 0;
}
.grid-item__subheading {
    font-size: 14px;
}
.grid-item-details--hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
}
.grid-item-details--hover:focus-within,
.grid-item-details--hover:hover {
    opacity: 1;
}
@media screen and (max-width: 767px) {
    .grid-item-details--hover {
        opacity: 1;
        position: absolute;
        top: 0;
    }
}
.grid-item-details--hover.full-height {
    height: 100%;
}
.grid-item-details--hover > a {
    width: 100%;
    height: 100%;
    display: block;
}
.grid-item-details--overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.grid-item-details--overlay.full-height {
    height: 100%;
}
.color-scheme--white .grid-item-details--below-image .grid-item__subheading,
.color-scheme--white .grid-item-details--below-image .grid-item__title {
    color: var(--text-color);
}
.color-scheme--light .grid-item-details--below-image .grid-item__subheading,
.color-scheme--light .grid-item-details--below-image .grid-item__title {
    color: var(--color-scheme-light-text);
}
.color-scheme--accent .grid-item-details--below-image .grid-item__subheading,
.color-scheme--accent .grid-item-details--below-image .grid-item__title {
    color: var(--color-scheme-feature-text);
}
.color-scheme--dark .grid-item-details--below-image .grid-item__subheading,
.color-scheme--dark .grid-item-details--below-image .grid-item__title {
    color: var(--color-scheme-dark-text);
}
.homepage-featured-rich-text {
    text-align: center;
}
.homepage-featured-rich-text .rte,
.homepage-featured-rich-text p:last-child {
    margin-bottom: 0;
}
.homepage-featured-rich-text .featured-products-wrapper .featured-row__subtext {
    margin-bottom: 30px;
}
.locations-modal {
    display: none;
}
@keyframes fade-in-up {
    0% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes fade-in-up-opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.shopify-policy__title {
    margin: 30px 0 15px;
}
.shopify-policy__title .h1,
.shopify-policy__title h1 {
    margin: 0;
}
@media only screen and (min-width: 481px) {
    .shopify-policy__title {
        margin: 100px 0;
    }
}
@media only screen and (min-width: 1024px) {
    .shopify-policy__container {
        max-width: 50%;
    }
}
.grid--full:after,
.grid--rev:after,
.grid-uniform:after,
.grid:after {
    content: "";
    display: table;
    clear: both;
}
.grid__item.clear {
    clear: both;
}
.grid,
.grid--full,
.grid--rev,
.grid-uniform {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: calc(-1 * var(--grid-spacing));
}
@media only screen and (max-width: 767px) {
    .wrapper-padded .grid,
    .wrapper-padded .grid--full,
    .wrapper-padded .grid--rev,
    .wrapper-padded .grid-uniform {
        margin-left: 0;
    }
}
.grid__item {
    box-sizing: border-box;
    float: left;
    min-height: 1px;
    padding-left: var(--grid-spacing);
    vertical-align: top;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .wrapper-padded .grid__item {
        padding-left: 0;
    }
}
.grid--rev {
    direction: rtl;
    text-align: left;
}
.grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right;
}
.grid--full {
    margin-left: 0;
}
.grid--full > .grid__item {
    padding-left: 0;
}
.grid--center {
    text-align: center;
}
.grid--center > .grid__item {
    text-align: left;
}
@media screen and (min-width: 768px) {
    .grid--center.grid--full,
    .grid--center.grid--rev,
    .grid.grid--center {
        margin-left: 0;
    }
}
.one-whole {
    width: 100%;
}
.one-half {
    width: 50%;
}
.one-third {
    width: 33.333%;
}
.two-thirds {
    width: 66.666%;
}
.one-quarter {
    width: 25%;
}
.two-quarters {
    width: 50%;
}
.three-quarters {
    width: 75%;
}
.one-fifth {
    width: 20%;
}
.two-fifths {
    width: 40%;
}
.three-fifths {
    width: 60%;
}
.four-fifths {
    width: 80%;
}
.one-sixth {
    width: 16.666%;
}
.two-sixths {
    width: 33.333%;
}
.three-sixths {
    width: 50%;
}
.four-sixths {
    width: 66.666%;
}
.five-sixths {
    width: 83.333%;
}
.one-eighth {
    width: 12.5%;
}
.two-eighths {
    width: 25%;
}
.three-eighths {
    width: 37.5%;
}
.four-eighths {
    width: 50%;
}
.five-eighths {
    width: 62.5%;
}
.six-eighths {
    width: 75%;
}
.seven-eighths {
    width: 87.5%;
}
.one-tenth {
    width: 10%;
}
.two-tenths {
    width: 20%;
}
.three-tenths {
    width: 30%;
}
.four-tenths {
    width: 40%;
}
.five-tenths {
    width: 50%;
}
.six-tenths {
    width: 60%;
}
.seven-tenths {
    width: 70%;
}
.eight-tenths {
    width: 80%;
}
.nine-tenths {
    width: 90%;
}
.one-twelfth {
    width: 8.333%;
}
.two-twelfths {
    width: 16.666%;
}
.three-twelfths {
    width: 25%;
}
.four-twelfths {
    width: 33.333%;
}
.five-twelfths {
    width: 41.666%;
}
.six-twelfths {
    width: 50%;
}
.seven-twelfths {
    width: 58.333%;
}
.eight-twelfths {
    width: 66.666%;
}
.nine-twelfths {
    width: 75%;
}
.ten-twelfths {
    width: 83.333%;
}
.eleven-twelfths {
    width: 91.666%;
}
.show {
    display: block !important;
}
.hide {
    display: none !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
.left {
    float: left !important;
}
.right {
    float: right !important;
}
@media only screen and (max-width: 480px) {
    .small--one-whole {
        width: 100%;
    }
    .small--one-half {
        width: 50%;
    }
    .small--one-third {
        width: 33.333%;
    }
    .small--two-thirds {
        width: 66.666%;
    }
    .small--one-quarter {
        width: 25%;
    }
    .small--two-quarters {
        width: 50%;
    }
    .small--three-quarters {
        width: 75%;
    }
    .small--one-fifth {
        width: 20%;
    }
    .small--two-fifths {
        width: 40%;
    }
    .small--three-fifths {
        width: 60%;
    }
    .small--four-fifths {
        width: 80%;
    }
    .small--one-sixth {
        width: 16.666%;
    }
    .small--two-sixths {
        width: 33.333%;
    }
    .small--three-sixths {
        width: 50%;
    }
    .small--four-sixths {
        width: 66.666%;
    }
    .small--five-sixths {
        width: 83.333%;
    }
    .small--one-eighth {
        width: 12.5%;
    }
    .small--two-eighths {
        width: 25%;
    }
    .small--three-eighths {
        width: 37.5%;
    }
    .small--four-eighths {
        width: 50%;
    }
    .small--five-eighths {
        width: 62.5%;
    }
    .small--six-eighths {
        width: 75%;
    }
    .small--seven-eighths {
        width: 87.5%;
    }
    .small--one-tenth {
        width: 10%;
    }
    .small--two-tenths {
        width: 20%;
    }
    .small--three-tenths {
        width: 30%;
    }
    .small--four-tenths {
        width: 40%;
    }
    .small--five-tenths {
        width: 50%;
    }
    .small--six-tenths {
        width: 60%;
    }
    .small--seven-tenths {
        width: 70%;
    }
    .small--eight-tenths {
        width: 80%;
    }
    .small--nine-tenths {
        width: 90%;
    }
    .small--one-twelfth {
        width: 8.333%;
    }
    .small--two-twelfths {
        width: 16.666%;
    }
    .small--three-twelfths {
        width: 25%;
    }
    .small--four-twelfths {
        width: 33.333%;
    }
    .small--five-twelfths {
        width: 41.666%;
    }
    .small--six-twelfths {
        width: 50%;
    }
    .small--seven-twelfths {
        width: 58.333%;
    }
    .small--eight-twelfths {
        width: 66.666%;
    }
    .small--nine-twelfths {
        width: 75%;
    }
    .small--ten-twelfths {
        width: 83.333%;
    }
    .small--eleven-twelfths {
        width: 91.666%;
    }
    .small--show {
        display: block !important;
    }
    .small--hide {
        display: none !important;
    }
    .small--text-left {
        text-align: left !important;
    }
    .small--text-right {
        text-align: right !important;
    }
    .small--text-center {
        text-align: center !important;
    }
    .small--left {
        float: left !important;
    }
    .small--right {
        float: right !important;
    }
    .grid-uniform .small--five-tenths:nth-child(2n + 1),
    .grid-uniform .small--four-eighths:nth-child(2n + 1),
    .grid-uniform .small--four-twelfths:nth-child(3n + 1),
    .grid-uniform .small--one-fifth:nth-child(5n + 1),
    .grid-uniform .small--one-half:nth-child(2n + 1),
    .grid-uniform .small--one-quarter:nth-child(4n + 1),
    .grid-uniform .small--one-sixth:nth-child(6n + 1),
    .grid-uniform .small--one-third:nth-child(3n + 1),
    .grid-uniform .small--one-twelfth:nth-child(12n + 1),
    .grid-uniform .small--six-twelfths:nth-child(2n + 1),
    .grid-uniform .small--three-sixths:nth-child(2n + 1),
    .grid-uniform .small--three-twelfths:nth-child(4n + 1),
    .grid-uniform .small--two-eighths:nth-child(4n + 1),
    .grid-uniform .small--two-sixths:nth-child(3n + 1),
    .grid-uniform .small--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .medium--one-whole {
        width: 100%;
    }
    .medium--one-half {
        width: 50%;
    }
    .medium--one-third {
        width: 33.333%;
    }
    .medium--two-thirds {
        width: 66.666%;
    }
    .medium--one-quarter {
        width: 25%;
    }
    .medium--two-quarters {
        width: 50%;
    }
    .medium--three-quarters {
        width: 75%;
    }
    .medium--one-fifth {
        width: 20%;
    }
    .medium--two-fifths {
        width: 40%;
    }
    .medium--three-fifths {
        width: 60%;
    }
    .medium--four-fifths {
        width: 80%;
    }
    .medium--one-sixth {
        width: 16.666%;
    }
    .medium--two-sixths {
        width: 33.333%;
    }
    .medium--three-sixths {
        width: 50%;
    }
    .medium--four-sixths {
        width: 66.666%;
    }
    .medium--five-sixths {
        width: 83.333%;
    }
    .medium--one-eighth {
        width: 12.5%;
    }
    .medium--two-eighths {
        width: 25%;
    }
    .medium--three-eighths {
        width: 37.5%;
    }
    .medium--four-eighths {
        width: 50%;
    }
    .medium--five-eighths {
        width: 62.5%;
    }
    .medium--six-eighths {
        width: 75%;
    }
    .medium--seven-eighths {
        width: 87.5%;
    }
    .medium--one-tenth {
        width: 10%;
    }
    .medium--two-tenths {
        width: 20%;
    }
    .medium--three-tenths {
        width: 30%;
    }
    .medium--four-tenths {
        width: 40%;
    }
    .medium--five-tenths {
        width: 50%;
    }
    .medium--six-tenths {
        width: 60%;
    }
    .medium--seven-tenths {
        width: 70%;
    }
    .medium--eight-tenths {
        width: 80%;
    }
    .medium--nine-tenths {
        width: 90%;
    }
    .medium--one-twelfth {
        width: 8.333%;
    }
    .medium--two-twelfths {
        width: 16.666%;
    }
    .medium--three-twelfths {
        width: 25%;
    }
    .medium--four-twelfths {
        width: 33.333%;
    }
    .medium--five-twelfths {
        width: 41.666%;
    }
    .medium--six-twelfths {
        width: 50%;
    }
    .medium--seven-twelfths {
        width: 58.333%;
    }
    .medium--eight-twelfths {
        width: 66.666%;
    }
    .medium--nine-twelfths {
        width: 75%;
    }
    .medium--ten-twelfths {
        width: 83.333%;
    }
    .medium--eleven-twelfths {
        width: 91.666%;
    }
    .medium--show {
        display: block !important;
    }
    .medium--hide {
        display: none !important;
    }
    .medium--text-left {
        text-align: left !important;
    }
    .medium--text-right {
        text-align: right !important;
    }
    .medium--text-center {
        text-align: center !important;
    }
    .medium--left {
        float: left !important;
    }
    .medium--right {
        float: right !important;
    }
    .grid-uniform .medium--five-tenths:nth-child(2n + 1),
    .grid-uniform .medium--four-eighths:nth-child(2n + 1),
    .grid-uniform .medium--four-twelfths:nth-child(3n + 1),
    .grid-uniform .medium--one-fifth:nth-child(5n + 1),
    .grid-uniform .medium--one-half:nth-child(2n + 1),
    .grid-uniform .medium--one-quarter:nth-child(4n + 1),
    .grid-uniform .medium--one-sixth:nth-child(6n + 1),
    .grid-uniform .medium--one-third:nth-child(3n + 1),
    .grid-uniform .medium--one-twelfth:nth-child(12n + 1),
    .grid-uniform .medium--six-twelfths:nth-child(2n + 1),
    .grid-uniform .medium--three-sixths:nth-child(2n + 1),
    .grid-uniform .medium--three-twelfths:nth-child(4n + 1),
    .grid-uniform .medium--two-eighths:nth-child(4n + 1),
    .grid-uniform .medium--two-sixths:nth-child(3n + 1),
    .grid-uniform .medium--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (max-width: 767px) {
    .medium-down--one-whole {
        width: 100%;
    }
    .medium-down--one-half {
        width: 50%;
    }
    .medium-down--one-third {
        width: 33.333%;
    }
    .medium-down--two-thirds {
        width: 66.666%;
    }
    .medium-down--one-quarter {
        width: 25%;
    }
    .medium-down--two-quarters {
        width: 50%;
    }
    .medium-down--three-quarters {
        width: 75%;
    }
    .medium-down--one-fifth {
        width: 20%;
    }
    .medium-down--two-fifths {
        width: 40%;
    }
    .medium-down--three-fifths {
        width: 60%;
    }
    .medium-down--four-fifths {
        width: 80%;
    }
    .medium-down--one-sixth {
        width: 16.666%;
    }
    .medium-down--two-sixths {
        width: 33.333%;
    }
    .medium-down--three-sixths {
        width: 50%;
    }
    .medium-down--four-sixths {
        width: 66.666%;
    }
    .medium-down--five-sixths {
        width: 83.333%;
    }
    .medium-down--one-eighth {
        width: 12.5%;
    }
    .medium-down--two-eighths {
        width: 25%;
    }
    .medium-down--three-eighths {
        width: 37.5%;
    }
    .medium-down--four-eighths {
        width: 50%;
    }
    .medium-down--five-eighths {
        width: 62.5%;
    }
    .medium-down--six-eighths {
        width: 75%;
    }
    .medium-down--seven-eighths {
        width: 87.5%;
    }
    .medium-down--one-tenth {
        width: 10%;
    }
    .medium-down--two-tenths {
        width: 20%;
    }
    .medium-down--three-tenths {
        width: 30%;
    }
    .medium-down--four-tenths {
        width: 40%;
    }
    .medium-down--five-tenths {
        width: 50%;
    }
    .medium-down--six-tenths {
        width: 60%;
    }
    .medium-down--seven-tenths {
        width: 70%;
    }
    .medium-down--eight-tenths {
        width: 80%;
    }
    .medium-down--nine-tenths {
        width: 90%;
    }
    .medium-down--one-twelfth {
        width: 8.333%;
    }
    .medium-down--two-twelfths {
        width: 16.666%;
    }
    .medium-down--three-twelfths {
        width: 25%;
    }
    .medium-down--four-twelfths {
        width: 33.333%;
    }
    .medium-down--five-twelfths {
        width: 41.666%;
    }
    .medium-down--six-twelfths {
        width: 50%;
    }
    .medium-down--seven-twelfths {
        width: 58.333%;
    }
    .medium-down--eight-twelfths {
        width: 66.666%;
    }
    .medium-down--nine-twelfths {
        width: 75%;
    }
    .medium-down--ten-twelfths {
        width: 83.333%;
    }
    .medium-down--eleven-twelfths {
        width: 91.666%;
    }
    .medium-down--show {
        display: block !important;
    }
    .medium-down--hide {
        display: none !important;
    }
    .medium-down--text-left {
        text-align: left !important;
    }
    .medium-down--text-right {
        text-align: right !important;
    }
    .medium-down--text-center {
        text-align: center !important;
    }
    .medium-down--left {
        float: left !important;
    }
    .medium-down--right {
        float: right !important;
    }
    .grid-uniform .medium-down--five-tenths:nth-child(2n + 1),
    .grid-uniform .medium-down--four-eighths:nth-child(2n + 1),
    .grid-uniform .medium-down--four-twelfths:nth-child(3n + 1),
    .grid-uniform .medium-down--one-fifth:nth-child(5n + 1),
    .grid-uniform .medium-down--one-half:nth-child(2n + 1),
    .grid-uniform .medium-down--one-quarter:nth-child(4n + 1),
    .grid-uniform .medium-down--one-sixth:nth-child(6n + 1),
    .grid-uniform .medium-down--one-third:nth-child(3n + 1),
    .grid-uniform .medium-down--one-twelfth:nth-child(12n + 1),
    .grid-uniform .medium-down--six-twelfths:nth-child(2n + 1),
    .grid-uniform .medium-down--three-sixths:nth-child(2n + 1),
    .grid-uniform .medium-down--three-twelfths:nth-child(4n + 1),
    .grid-uniform .medium-down--two-eighths:nth-child(4n + 1),
    .grid-uniform .medium-down--two-sixths:nth-child(3n + 1),
    .grid-uniform .medium-down--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (min-width: 768px) {
    .large--one-whole {
        width: 100%;
    }
    .large--one-half {
        width: 50%;
    }
    .large--one-third {
        width: 33.333%;
    }
    .large--two-thirds {
        width: 66.666%;
    }
    .large--one-quarter {
        width: 25%;
    }
    .large--two-quarters {
        width: 50%;
    }
    .large--three-quarters {
        width: 75%;
    }
    .large--one-fifth {
        width: 20%;
    }
    .large--two-fifths {
        width: 40%;
    }
    .large--three-fifths {
        width: 60%;
    }
    .large--four-fifths {
        width: 80%;
    }
    .large--one-sixth {
        width: 16.666%;
    }
    .large--two-sixths {
        width: 33.333%;
    }
    .large--three-sixths {
        width: 50%;
    }
    .large--four-sixths {
        width: 66.666%;
    }
    .large--five-sixths {
        width: 83.333%;
    }
    .large--one-eighth {
        width: 12.5%;
    }
    .large--two-eighths {
        width: 25%;
    }
    .large--three-eighths {
        width: 37.5%;
    }
    .large--four-eighths {
        width: 50%;
    }
    .large--five-eighths {
        width: 62.5%;
    }
    .large--six-eighths {
        width: 75%;
    }
    .large--seven-eighths {
        width: 87.5%;
    }
    .large--one-tenth {
        width: 10%;
    }
    .large--two-tenths {
        width: 20%;
    }
    .large--three-tenths {
        width: 30%;
    }
    .large--four-tenths {
        width: 40%;
    }
    .large--five-tenths {
        width: 50%;
    }
    .large--six-tenths {
        width: 60%;
    }
    .large--seven-tenths {
        width: 70%;
    }
    .large--eight-tenths {
        width: 80%;
    }
    .large--nine-tenths {
        width: 90%;
    }
    .large--one-twelfth {
        width: 8.333%;
    }
    .large--two-twelfths {
        width: 16.666%;
    }
    .large--three-twelfths {
        width: 25%;
    }
    .large--four-twelfths {
        width: 33.333%;
    }
    .large--five-twelfths {
        width: 41.666%;
    }
    .large--six-twelfths {
        width: 50%;
    }
    .large--seven-twelfths {
        width: 58.333%;
    }
    .large--eight-twelfths {
        width: 66.666%;
    }
    .large--nine-twelfths {
        width: 75%;
    }
    .large--ten-twelfths {
        width: 83.333%;
    }
    .large--eleven-twelfths {
        width: 91.666%;
    }
    .large--show {
        display: block !important;
    }
    .large--hide {
        display: none !important;
    }
    .large--text-left {
        text-align: left !important;
    }
    .large--text-right {
        text-align: right !important;
    }
    .large--text-center {
        text-align: center !important;
    }
    .large--left {
        float: left !important;
    }
    .large--right {
        float: right !important;
    }
    .grid-uniform .large--five-tenths:nth-child(2n + 1),
    .grid-uniform .large--four-eighths:nth-child(2n + 1),
    .grid-uniform .large--four-twelfths:nth-child(3n + 1),
    .grid-uniform .large--one-fifth:nth-child(5n + 1),
    .grid-uniform .large--one-half:nth-child(2n + 1),
    .grid-uniform .large--one-quarter:nth-child(4n + 1),
    .grid-uniform .large--one-sixth:nth-child(6n + 1),
    .grid-uniform .large--one-third:nth-child(3n + 1),
    .grid-uniform .large--one-twelfth:nth-child(12n + 1),
    .grid-uniform .large--six-twelfths:nth-child(2n + 1),
    .grid-uniform .large--three-sixths:nth-child(2n + 1),
    .grid-uniform .large--three-twelfths:nth-child(4n + 1),
    .grid-uniform .large--two-eighths:nth-child(4n + 1),
    .grid-uniform .large--two-sixths:nth-child(3n + 1),
    .grid-uniform .large--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
@media only screen and (min-width: 1200px) {
    .extra-large--one-whole {
        width: 100%;
    }
    .extra-large--one-half {
        width: 50%;
    }
    .extra-large--one-third {
        width: 33.333%;
    }
    .extra-large--two-thirds {
        width: 66.666%;
    }
    .extra-large--one-quarter {
        width: 25%;
    }
    .extra-large--two-quarters {
        width: 50%;
    }
    .extra-large--three-quarters {
        width: 75%;
    }
    .extra-large--one-fifth {
        width: 20%;
    }
    .extra-large--two-fifths {
        width: 40%;
    }
    .extra-large--three-fifths {
        width: 60%;
    }
    .extra-large--four-fifths {
        width: 80%;
    }
    .extra-large--one-sixth {
        width: 16.666%;
    }
    .extra-large--two-sixths {
        width: 33.333%;
    }
    .extra-large--three-sixths {
        width: 50%;
    }
    .extra-large--four-sixths {
        width: 66.666%;
    }
    .extra-large--five-sixths {
        width: 83.333%;
    }
    .extra-large--one-eighth {
        width: 12.5%;
    }
    .extra-large--two-eighths {
        width: 25%;
    }
    .extra-large--three-eighths {
        width: 37.5%;
    }
    .extra-large--four-eighths {
        width: 50%;
    }
    .extra-large--five-eighths {
        width: 62.5%;
    }
    .extra-large--six-eighths {
        width: 75%;
    }
    .extra-large--seven-eighths {
        width: 87.5%;
    }
    .extra-large--one-tenth {
        width: 10%;
    }
    .extra-large--two-tenths {
        width: 20%;
    }
    .extra-large--three-tenths {
        width: 30%;
    }
    .extra-large--four-tenths {
        width: 40%;
    }
    .extra-large--five-tenths {
        width: 50%;
    }
    .extra-large--six-tenths {
        width: 60%;
    }
    .extra-large--seven-tenths {
        width: 70%;
    }
    .extra-large--eight-tenths {
        width: 80%;
    }
    .extra-large--nine-tenths {
        width: 90%;
    }
    .extra-large--one-twelfth {
        width: 8.333%;
    }
    .extra-large--two-twelfths {
        width: 16.666%;
    }
    .extra-large--three-twelfths {
        width: 25%;
    }
    .extra-large--four-twelfths {
        width: 33.333%;
    }
    .extra-large--five-twelfths {
        width: 41.666%;
    }
    .extra-large--six-twelfths {
        width: 50%;
    }
    .extra-large--seven-twelfths {
        width: 58.333%;
    }
    .extra-large--eight-twelfths {
        width: 66.666%;
    }
    .extra-large--nine-twelfths {
        width: 75%;
    }
    .extra-large--ten-twelfths {
        width: 83.333%;
    }
    .extra-large--eleven-twelfths {
        width: 91.666%;
    }
    .extra-large--show {
        display: block !important;
    }
    .extra-large--hide {
        display: none !important;
    }
    .extra-large--text-left {
        text-align: left !important;
    }
    .extra-large--text-right {
        text-align: right !important;
    }
    .extra-large--text-center {
        text-align: center !important;
    }
    .extra-large--left {
        float: left !important;
    }
    .extra-large--right {
        float: right !important;
    }
    .grid-uniform .extra-large--five-tenths:nth-child(2n + 1),
    .grid-uniform .extra-large--four-eighths:nth-child(2n + 1),
    .grid-uniform .extra-large--four-twelfths:nth-child(3n + 1),
    .grid-uniform .extra-large--one-fifth:nth-child(5n + 1),
    .grid-uniform .extra-large--one-half:nth-child(2n + 1),
    .grid-uniform .extra-large--one-quarter:nth-child(4n + 1),
    .grid-uniform .extra-large--one-sixth:nth-child(6n + 1),
    .grid-uniform .extra-large--one-third:nth-child(3n + 1),
    .grid-uniform .extra-large--one-twelfth:nth-child(12n + 1),
    .grid-uniform .extra-large--six-twelfths:nth-child(2n + 1),
    .grid-uniform .extra-large--three-sixths:nth-child(2n + 1),
    .grid-uniform .extra-large--three-twelfths:nth-child(4n + 1),
    .grid-uniform .extra-large--two-eighths:nth-child(4n + 1),
    .grid-uniform .extra-large--two-sixths:nth-child(3n + 1),
    .grid-uniform .extra-large--two-twelfths:nth-child(6n + 1) {
        clear: both;
    }
}
[class*="push--"] {
    position: relative;
}
.push--one-whole {
    left: 100%;
}
.push--one-half {
    left: 50%;
}
.push--one-third {
    left: 33.333%;
}
.push--two-thirds {
    left: 66.666%;
}
.push--one-quarter {
    left: 25%;
}
.push--two-quarters {
    left: 50%;
}
.push--three-quarters {
    left: 75%;
}
.push--one-fifth {
    left: 20%;
}
.push--two-fifths {
    left: 40%;
}
.push--three-fifths {
    left: 60%;
}
.push--four-fifths {
    left: 80%;
}
.push--one-sixth {
    left: 16.666%;
}
.push--two-sixths {
    left: 33.333%;
}
.push--three-sixths {
    left: 50%;
}
.push--four-sixths {
    left: 66.666%;
}
.push--five-sixths {
    left: 83.333%;
}
.push--one-eighth {
    left: 12.5%;
}
.push--two-eighths {
    left: 25%;
}
.push--three-eighths {
    left: 37.5%;
}
.push--four-eighths {
    left: 50%;
}
.push--five-eighths {
    left: 62.5%;
}
.push--six-eighths {
    left: 75%;
}
.push--seven-eighths {
    left: 87.5%;
}
.push--one-tenth {
    left: 10%;
}
.push--two-tenths {
    left: 20%;
}
.push--three-tenths {
    left: 30%;
}
.push--four-tenths {
    left: 40%;
}
.push--five-tenths {
    left: 50%;
}
.push--six-tenths {
    left: 60%;
}
.push--seven-tenths {
    left: 70%;
}
.push--eight-tenths {
    left: 80%;
}
.push--nine-tenths {
    left: 90%;
}
.push--one-twelfth {
    left: 8.333%;
}
.push--two-twelfths {
    left: 16.666%;
}
.push--three-twelfths {
    left: 25%;
}
.push--four-twelfths {
    left: 33.333%;
}
.push--five-twelfths {
    left: 41.666%;
}
.push--six-twelfths {
    left: 50%;
}
.push--seven-twelfths {
    left: 58.333%;
}
.push--eight-twelfths {
    left: 66.666%;
}
.push--nine-twelfths {
    left: 75%;
}
.push--ten-twelfths {
    left: 83.333%;
}
.push--eleven-twelfths {
    left: 91.666%;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .push--medium--one-whole {
        left: 100%;
    }
    .push--medium--one-half {
        left: 50%;
    }
    .push--medium--one-third {
        left: 33.333%;
    }
    .push--medium--two-thirds {
        left: 66.666%;
    }
    .push--medium--one-quarter {
        left: 25%;
    }
    .push--medium--two-quarters {
        left: 50%;
    }
    .push--medium--three-quarters {
        left: 75%;
    }
    .push--medium--one-fifth {
        left: 20%;
    }
    .push--medium--two-fifths {
        left: 40%;
    }
    .push--medium--three-fifths {
        left: 60%;
    }
    .push--medium--four-fifths {
        left: 80%;
    }
    .push--medium--one-sixth {
        left: 16.666%;
    }
    .push--medium--two-sixths {
        left: 33.333%;
    }
    .push--medium--three-sixths {
        left: 50%;
    }
    .push--medium--four-sixths {
        left: 66.666%;
    }
    .push--medium--five-sixths {
        left: 83.333%;
    }
    .push--medium--one-eighth {
        left: 12.5%;
    }
    .push--medium--two-eighths {
        left: 25%;
    }
    .push--medium--three-eighths {
        left: 37.5%;
    }
    .push--medium--four-eighths {
        left: 50%;
    }
    .push--medium--five-eighths {
        left: 62.5%;
    }
    .push--medium--six-eighths {
        left: 75%;
    }
    .push--medium--seven-eighths {
        left: 87.5%;
    }
    .push--medium--one-tenth {
        left: 10%;
    }
    .push--medium--two-tenths {
        left: 20%;
    }
    .push--medium--three-tenths {
        left: 30%;
    }
    .push--medium--four-tenths {
        left: 40%;
    }
    .push--medium--five-tenths {
        left: 50%;
    }
    .push--medium--six-tenths {
        left: 60%;
    }
    .push--medium--seven-tenths {
        left: 70%;
    }
    .push--medium--eight-tenths {
        left: 80%;
    }
    .push--medium--nine-tenths {
        left: 90%;
    }
    .push--medium--one-twelfth {
        left: 8.333%;
    }
    .push--medium--two-twelfths {
        left: 16.666%;
    }
    .push--medium--three-twelfths {
        left: 25%;
    }
    .push--medium--four-twelfths {
        left: 33.333%;
    }
    .push--medium--five-twelfths {
        left: 41.666%;
    }
    .push--medium--six-twelfths {
        left: 50%;
    }
    .push--medium--seven-twelfths {
        left: 58.333%;
    }
    .push--medium--eight-twelfths {
        left: 66.666%;
    }
    .push--medium--nine-twelfths {
        left: 75%;
    }
    .push--medium--ten-twelfths {
        left: 83.333%;
    }
    .push--medium--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (max-width: 767px) {
    .push--medium-down--one-whole {
        left: 100%;
    }
    .push--medium-down--one-half {
        left: 50%;
    }
    .push--medium-down--one-third {
        left: 33.333%;
    }
    .push--medium-down--two-thirds {
        left: 66.666%;
    }
    .push--medium-down--one-quarter {
        left: 25%;
    }
    .push--medium-down--two-quarters {
        left: 50%;
    }
    .push--medium-down--three-quarters {
        left: 75%;
    }
    .push--medium-down--one-fifth {
        left: 20%;
    }
    .push--medium-down--two-fifths {
        left: 40%;
    }
    .push--medium-down--three-fifths {
        left: 60%;
    }
    .push--medium-down--four-fifths {
        left: 80%;
    }
    .push--medium-down--one-sixth {
        left: 16.666%;
    }
    .push--medium-down--two-sixths {
        left: 33.333%;
    }
    .push--medium-down--three-sixths {
        left: 50%;
    }
    .push--medium-down--four-sixths {
        left: 66.666%;
    }
    .push--medium-down--five-sixths {
        left: 83.333%;
    }
    .push--medium-down--one-eighth {
        left: 12.5%;
    }
    .push--medium-down--two-eighths {
        left: 25%;
    }
    .push--medium-down--three-eighths {
        left: 37.5%;
    }
    .push--medium-down--four-eighths {
        left: 50%;
    }
    .push--medium-down--five-eighths {
        left: 62.5%;
    }
    .push--medium-down--six-eighths {
        left: 75%;
    }
    .push--medium-down--seven-eighths {
        left: 87.5%;
    }
    .push--medium-down--one-tenth {
        left: 10%;
    }
    .push--medium-down--two-tenths {
        left: 20%;
    }
    .push--medium-down--three-tenths {
        left: 30%;
    }
    .push--medium-down--four-tenths {
        left: 40%;
    }
    .push--medium-down--five-tenths {
        left: 50%;
    }
    .push--medium-down--six-tenths {
        left: 60%;
    }
    .push--medium-down--seven-tenths {
        left: 70%;
    }
    .push--medium-down--eight-tenths {
        left: 80%;
    }
    .push--medium-down--nine-tenths {
        left: 90%;
    }
    .push--medium-down--one-twelfth {
        left: 8.333%;
    }
    .push--medium-down--two-twelfths {
        left: 16.666%;
    }
    .push--medium-down--three-twelfths {
        left: 25%;
    }
    .push--medium-down--four-twelfths {
        left: 33.333%;
    }
    .push--medium-down--five-twelfths {
        left: 41.666%;
    }
    .push--medium-down--six-twelfths {
        left: 50%;
    }
    .push--medium-down--seven-twelfths {
        left: 58.333%;
    }
    .push--medium-down--eight-twelfths {
        left: 66.666%;
    }
    .push--medium-down--nine-twelfths {
        left: 75%;
    }
    .push--medium-down--ten-twelfths {
        left: 83.333%;
    }
    .push--medium-down--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (min-width: 768px) {
    .push--large--one-whole {
        left: 100%;
    }
    .push--large--one-half {
        left: 50%;
    }
    .push--large--one-third {
        left: 33.333%;
    }
    .push--large--two-thirds {
        left: 66.666%;
    }
    .push--large--one-quarter {
        left: 25%;
    }
    .push--large--two-quarters {
        left: 50%;
    }
    .push--large--three-quarters {
        left: 75%;
    }
    .push--large--one-fifth {
        left: 20%;
    }
    .push--large--two-fifths {
        left: 40%;
    }
    .push--large--three-fifths {
        left: 60%;
    }
    .push--large--four-fifths {
        left: 80%;
    }
    .push--large--one-sixth {
        left: 16.666%;
    }
    .push--large--two-sixths {
        left: 33.333%;
    }
    .push--large--three-sixths {
        left: 50%;
    }
    .push--large--four-sixths {
        left: 66.666%;
    }
    .push--large--five-sixths {
        left: 83.333%;
    }
    .push--large--one-eighth {
        left: 12.5%;
    }
    .push--large--two-eighths {
        left: 25%;
    }
    .push--large--three-eighths {
        left: 37.5%;
    }
    .push--large--four-eighths {
        left: 50%;
    }
    .push--large--five-eighths {
        left: 62.5%;
    }
    .push--large--six-eighths {
        left: 75%;
    }
    .push--large--seven-eighths {
        left: 87.5%;
    }
    .push--large--one-tenth {
        left: 10%;
    }
    .push--large--two-tenths {
        left: 20%;
    }
    .push--large--three-tenths {
        left: 30%;
    }
    .push--large--four-tenths {
        left: 40%;
    }
    .push--large--five-tenths {
        left: 50%;
    }
    .push--large--six-tenths {
        left: 60%;
    }
    .push--large--seven-tenths {
        left: 70%;
    }
    .push--large--eight-tenths {
        left: 80%;
    }
    .push--large--nine-tenths {
        left: 90%;
    }
    .push--large--one-twelfth {
        left: 8.333%;
    }
    .push--large--two-twelfths {
        left: 16.666%;
    }
    .push--large--three-twelfths {
        left: 25%;
    }
    .push--large--four-twelfths {
        left: 33.333%;
    }
    .push--large--five-twelfths {
        left: 41.666%;
    }
    .push--large--six-twelfths {
        left: 50%;
    }
    .push--large--seven-twelfths {
        left: 58.333%;
    }
    .push--large--eight-twelfths {
        left: 66.666%;
    }
    .push--large--nine-twelfths {
        left: 75%;
    }
    .push--large--ten-twelfths {
        left: 83.333%;
    }
    .push--large--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (min-width: 1200px) {
    .push--extra-large--one-whole {
        left: 100%;
    }
    .push--extra-large--one-half {
        left: 50%;
    }
    .push--extra-large--one-third {
        left: 33.333%;
    }
    .push--extra-large--two-thirds {
        left: 66.666%;
    }
    .push--extra-large--one-quarter {
        left: 25%;
    }
    .push--extra-large--two-quarters {
        left: 50%;
    }
    .push--extra-large--three-quarters {
        left: 75%;
    }
    .push--extra-large--one-fifth {
        left: 20%;
    }
    .push--extra-large--two-fifths {
        left: 40%;
    }
    .push--extra-large--three-fifths {
        left: 60%;
    }
    .push--extra-large--four-fifths {
        left: 80%;
    }
    .push--extra-large--one-sixth {
        left: 16.666%;
    }
    .push--extra-large--two-sixths {
        left: 33.333%;
    }
    .push--extra-large--three-sixths {
        left: 50%;
    }
    .push--extra-large--four-sixths {
        left: 66.666%;
    }
    .push--extra-large--five-sixths {
        left: 83.333%;
    }
    .push--extra-large--one-eighth {
        left: 12.5%;
    }
    .push--extra-large--two-eighths {
        left: 25%;
    }
    .push--extra-large--three-eighths {
        left: 37.5%;
    }
    .push--extra-large--four-eighths {
        left: 50%;
    }
    .push--extra-large--five-eighths {
        left: 62.5%;
    }
    .push--extra-large--six-eighths {
        left: 75%;
    }
    .push--extra-large--seven-eighths {
        left: 87.5%;
    }
    .push--extra-large--one-tenth {
        left: 10%;
    }
    .push--extra-large--two-tenths {
        left: 20%;
    }
    .push--extra-large--three-tenths {
        left: 30%;
    }
    .push--extra-large--four-tenths {
        left: 40%;
    }
    .push--extra-large--five-tenths {
        left: 50%;
    }
    .push--extra-large--six-tenths {
        left: 60%;
    }
    .push--extra-large--seven-tenths {
        left: 70%;
    }
    .push--extra-large--eight-tenths {
        left: 80%;
    }
    .push--extra-large--nine-tenths {
        left: 90%;
    }
    .push--extra-large--one-twelfth {
        left: 8.333%;
    }
    .push--extra-large--two-twelfths {
        left: 16.666%;
    }
    .push--extra-large--three-twelfths {
        left: 25%;
    }
    .push--extra-large--four-twelfths {
        left: 33.333%;
    }
    .push--extra-large--five-twelfths {
        left: 41.666%;
    }
    .push--extra-large--six-twelfths {
        left: 50%;
    }
    .push--extra-large--seven-twelfths {
        left: 58.333%;
    }
    .push--extra-large--eight-twelfths {
        left: 66.666%;
    }
    .push--extra-large--nine-twelfths {
        left: 75%;
    }
    .push--extra-large--ten-twelfths {
        left: 83.333%;
    }
    .push--extra-large--eleven-twelfths {
        left: 91.666%;
    }
}
@media only screen and (max-width: 767px) {
    .grid__item {
        margin-top: 30px;
    }
}
.header-section:not(.sticky-header) {
    position: relative;
    z-index: 1000;
}
.header-section--wrapper {
    z-index: 10000;
}
.site-header {
    border-bottom: 1px solid var(--header-border-color);
    margin-bottom: 0;
    background-color: var(--header-color);
}
@media (max-width: 989px) {
    .site-header {
        display: none;
    }
}
.site-header localization-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header localization-form .icon-dropdown {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.site-header .site-header__nav ~ localization-form {
    padding-left: 20px;
}
.site-header .site-header__nav ~ localization-form ~ localization-form {
    padding-left: 0;
}
@media (min-width: 768px) {
    .site-header {
        position: relative;
    }
}
.template-index .site-header {
    margin-bottom: 0;
}
.site-header .grid--center .grid__item {
    text-align: center;
}
.site-header .grid--full.grid--center {
    position: relative;
}
.site-header .grid--full.grid--center .top-links--icon-links {
    position: absolute;
    top: 10px;
    right: 0;
}
.site-header .site-header__wrapper {
    position: relative;
    display: grid;
    align-items: center;
    gap: 15px;
}
.site-header .site-header__wrapper .site-header__wrapper__left {
    grid-column: 1/2;
    justify-self: start;
    display: flex;
}
.site-header .site-header__wrapper .site-header__wrapper__left .site-header__nav {
    align-self: center;
}
.site-header .site-header__wrapper .site-header__wrapper__left .localization-form button,
.site-header .site-header__wrapper .site-header__wrapper__left ul.site-nav li.first-level-dropdown:first-child {
    padding-left: 0;
}
.site-header .site-header__wrapper .site-header__wrapper__center {
    grid-column: 2/3;
    align-self: center;
    justify-self: center;
}
.site-header .site-header__wrapper .site-header__wrapper__right {
    grid-column: 3/4;
    justify-self: end;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: center;
}
.site-header .site-header__wrapper .site-header__wrapper__right .site-nav {
    text-align: right;
    justify-content: flex-end;
}
.site-header .site-header__wrapper.site-header__wrapper--logo-above,
.site-header .site-header__wrapper.site-header__wrapper--logo-center {
    grid-template-columns: 1fr minmax(0, auto) 1fr;
    grid-template-rows: 1fr;
}
@media only screen and (min-width: 768px) {
    .site-header .site-header__wrapper.site-header__wrapper--logo-above .site-header__wrapper__right,
    .site-header .site-header__wrapper.site-header__wrapper--logo-center .site-header__wrapper__right {
        margin-right: -12px;
    }
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left {
    grid-template-columns: minmax(0, auto) 1fr;
    grid-template-rows: 1fr;
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__right {
    grid-column: 2/3;
}
@media only screen and (min-width: 768px) {
    .site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__right .shopping-bag,
    .site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__right .shopping-cart {
        margin-right: -12px;
    }
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__center {
    display: none;
}
.site-header .site-header__wrapper.site-header__wrapper--logo-left .site-nav {
    margin: 0;
}
.site-header .site-header__nav-standalone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    text-align: center;
}
.site-header .site-header__nav-standalone ul.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-header.logo_above {
    padding-top: 19px;
    padding-bottom: 3px;
}
.site-nav--has-dropdown ul.site-nav__dropdown li {
    padding: 0;
}
.site-header__logo.h1,
.site-header__logo.header-font,
h1.site-header__logo {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    font-size: var(--logo-font-size);
}
.site-header__logo.h1 a,
.site-header__logo.header-font a,
h1.site-header__logo a {
    display: block;
    max-width: 100%;
    font-size: var(--logo-font-size);
}
.grid--center .site-header__logo.h1 a,
.grid--center .site-header__logo.header-font a,
.grid--center h1.site-header__logo a {
    display: inline-block;
}
.site-header__logo.h1 img,
.site-header__logo.header-font img,
h1.site-header__logo img {
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}
@media only screen and (max-width: 767px) {
    .site-header__logo.h1 img,
    .site-header__logo.header-font img,
    h1.site-header__logo img {
        vertical-align: middle;
    }
}
.site-header__logo-link {
    max-width: var(--logo-max-width);
    margin: 0 auto;
}
.site-header__logo {
    transition: transform 0.3s ease;
}
.site-header__wrapper--logo-left .site-header__logo {
    transform-origin: left;
}
@media (prefers-reduced-motion: no-preference) {
    .header-section.sticked .site-header__logo {
        transform: scale(0.9);
    }
    .header-section.is-off-screen .site-header__logo {
        transform: scale(0.7);
    }
}
.sticky-header {
    position: sticky;
    top: -1px;
    background-color: var(--header-color);
    z-index: 1000;
    left: 0 !important;
    transition: all 0.25s ease;
}
.no-js .overlay-header,
.no-js .site-header {
    background-color: var(--header-color) !important;
}
.no-js .overlay-header .site-nav__dropdown,
.no-js .site-header .site-nav__dropdown {
    visibility: visible !important;
    opacity: 1 !important;
}
.no-js .overlay-header .site-header__logo-link,
.no-js .overlay-header .site-header__logo-link:visited,
.no-js .overlay-header .site-header__logo-overlay-link,
.no-js .overlay-header localization-form button,
.no-js .site-header .site-header__logo-link,
.no-js .site-header .site-header__logo-link:visited,
.no-js .site-header .site-header__logo-overlay-link,
.no-js .site-header localization-form button {
    color: var(--nav-text-color) !important;
}
.no-js .overlay-header .site-header__logo-link:focus,
.no-js .overlay-header .site-header__logo-link:hover,
.no-js .overlay-header .site-header__logo-link:visited:focus,
.no-js .overlay-header .site-header__logo-link:visited:hover,
.no-js .overlay-header .site-header__logo-overlay-link:focus,
.no-js .overlay-header .site-header__logo-overlay-link:hover,
.no-js .overlay-header localization-form button:focus,
.no-js .overlay-header localization-form button:hover,
.no-js .site-header .site-header__logo-link:focus,
.no-js .site-header .site-header__logo-link:hover,
.no-js .site-header .site-header__logo-link:visited:focus,
.no-js .site-header .site-header__logo-link:visited:hover,
.no-js .site-header .site-header__logo-overlay-link:focus,
.no-js .site-header .site-header__logo-overlay-link:hover,
.no-js .site-header localization-form button:focus,
.no-js .site-header localization-form button:hover {
    color: var(--nav-text-hover) !important;
}
.contact-page .overlay-header-wrapper,
.template-collection .overlay-header-wrapper,
.template-index .overlay-header-wrapper,
.template-list-collections .overlay-header-wrapper {
    margin-block-end: calc(-1 * var(--header-height-desktop));
}
@media (max-width: 989px) {
    .contact-page .overlay-header-wrapper,
    .template-collection .overlay-header-wrapper,
    .template-index .overlay-header-wrapper,
    .template-list-collections .overlay-header-wrapper {
        margin-block-end: calc(-1 * var(--header-height-mobile));
    }
}
.contact-page .overlay-header,
.template-collection .overlay-header,
.template-index .overlay-header,
.template-list-collections .overlay-header {
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s linear, border-bottom-color 0.3s linear;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header,
.contact-page .header-section:not(.sticky-header) .overlay-header,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header,
.template-collection .header-section:not(.sticky-header) .overlay-header,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header,
.template-index .header-section:not(.sticky-header) .overlay-header,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header,
.template-list-collections .header-section:not(.sticky-header) .overlay-header {
    position: relative;
    z-index: 1000;
    border-bottom-color: transparent;
    color: var(--overlay-header-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown a {
    display: block;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown:not(.mega-menu-dropdown) a {
    color: var(--overlay-header-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown *,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .site-nav__dropdown.mega-menu-dropdown * {
    color: var(--nav-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.contact-page .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-collection .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-index .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links--icon-links select,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links--icon-links select,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .top-links.site-header__nav .site-nav:not(.mega-menu-wrapper) a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header localization-form button {
    color: var(--overlay-header-text-color);
    opacity: 1;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.template-index .header-section:not(.sticky-header) .overlay-header .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-image,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-image,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-header__logo-link {
    display: none;
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within,
.template-index .header-section:not(.sticky-header) .overlay-header:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover {
    background: var(--header-color);
    border-bottom-color: var(--header-border-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited {
    transition: color 0.25s ease;
    color: var(--nav-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:active:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links--icon-links a:hover:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:hover,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:hover {
    color: var(--nav-text-hover);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.contact-page .header-section:not(.sticky-header) .overlay-header:hover localization-form button,
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-nav .site-nav--link-text,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-collection .header-section:not(.sticky-header) .overlay-header:hover localization-form button,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-nav .site-nav--link-text,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-nav .site-nav--link-text,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.template-index .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-index .header-section:not(.sticky-header) .overlay-header:hover localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.force-hover localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header.overlay-header--hover localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:focus-within localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.force-hover localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header.overlay-header--hover localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:focus-within localization-form button,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover .top-links .top-links--icon-links a:active,
.template-list-collections .header-section:not(.sticky-header) .overlay-header:hover localization-form button,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-nav .site-nav--link-text {
    transition: color 0.25s ease;
    color: var(--nav-text-color);
}
.contact-page .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.contact-page .header-section:not(.sticky-header) .overlay-header .site-nav__link,
.template-collection .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.template-collection .header-section:not(.sticky-header) .overlay-header .site-nav__link,
.template-index .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.template-index .header-section:not(.sticky-header) .overlay-header .site-nav__link,
.template-list-collections .header-section.sticky-header:not(.sticked) .overlay-header .site-nav__link,
.template-list-collections .header-section:not(.sticky-header) .overlay-header .site-nav__link {
    color: var(--overlay-header-text-color);
}
@media only screen and (min-width: 768px) {
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover {
        background: var(--header-color);
    }
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section.sticky-header:not(.sticked) .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .header-section:not(.sticky-header) .overlay-header:hover .top-links.site-header__nav a:visited:focus {
        color: var(--nav-text-hover);
    }
}
.contact-page .sticked .overlay-header,
.template-collection .sticked .overlay-header,
.template-index .sticked .overlay-header,
.template-list-collections .sticked .overlay-header {
    border-bottom-color: var(--header-border-color);
}
.contact-page .sticked .overlay-header .site-header__logo-overlay-image,
.contact-page .sticked .overlay-header .site-header__logo-overlay-link,
.template-collection .sticked .overlay-header .site-header__logo-overlay-image,
.template-collection .sticked .overlay-header .site-header__logo-overlay-link,
.template-index .sticked .overlay-header .site-header__logo-overlay-image,
.template-index .sticked .overlay-header .site-header__logo-overlay-link,
.template-list-collections .sticked .overlay-header .site-header__logo-overlay-image,
.template-list-collections .sticked .overlay-header .site-header__logo-overlay-link {
    display: none;
}
.contact-page .sticked .overlay-header .site-nav--mobile a,
.contact-page .sticked .overlay-header .site-nav--mobile button,
.template-collection .sticked .overlay-header .site-nav--mobile a,
.template-collection .sticked .overlay-header .site-nav--mobile button,
.template-index .sticked .overlay-header .site-nav--mobile a,
.template-index .sticked .overlay-header .site-nav--mobile button,
.template-list-collections .sticked .overlay-header .site-nav--mobile a,
.template-list-collections .sticked .overlay-header .site-nav--mobile button {
    color: var(--nav-text-color);
}
.contact-page .sticked .overlay-header .site-nav--mobile a:hover,
.contact-page .sticked .overlay-header .site-nav--mobile button:hover,
.template-collection .sticked .overlay-header .site-nav--mobile a:hover,
.template-collection .sticked .overlay-header .site-nav--mobile button:hover,
.template-index .sticked .overlay-header .site-nav--mobile a:hover,
.template-index .sticked .overlay-header .site-nav--mobile button:hover,
.template-list-collections .sticked .overlay-header .site-nav--mobile a:hover,
.template-list-collections .sticked .overlay-header .site-nav--mobile button:hover {
    color: var(--nav-text-hover);
}
@media only screen and (min-width: 768px) {
    .contact-page .sticked .overlay-header.force-hover,
    .contact-page .sticked .overlay-header:focus-within,
    .contact-page .sticked .overlay-header:hover,
    .template-collection .sticked .overlay-header.force-hover,
    .template-collection .sticked .overlay-header:focus-within,
    .template-collection .sticked .overlay-header:hover,
    .template-index .sticked .overlay-header.force-hover,
    .template-index .sticked .overlay-header:focus-within,
    .template-index .sticked .overlay-header:hover,
    .template-list-collections .sticked .overlay-header.force-hover,
    .template-list-collections .sticked .overlay-header:focus-within,
    .template-list-collections .sticked .overlay-header:hover {
        background: var(--header-color);
    }
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link:visited,
    .contact-page .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a:visited,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link:visited,
    .template-collection .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a:visited,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .template-index .sticked .overlay-header:hover .site-header__logo-link,
    .template-index .sticked .overlay-header:hover .site-header__logo-link:visited,
    .template-index .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a:visited,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link:visited,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-overlay-link,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link:visited,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-overlay-link,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link:visited,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-overlay-link,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a:visited {
        color: var(--nav-text-color);
    }
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .contact-page .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .contact-page .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .contact-page .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .contact-page .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link:hover,
    .contact-page .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .contact-page .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .contact-page .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .template-collection .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .template-collection .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .template-collection .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .template-collection .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link:hover,
    .template-collection .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .template-collection .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .template-collection .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .template-index .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .template-index .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .template-index .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .template-index .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .template-index .sticked .overlay-header:hover .site-header__logo-link:hover,
    .template-index .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .template-index .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .template-index .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link:hover,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-link:visited:hover,
    .template-list-collections .sticked .overlay-header.force-hover .site-header__logo-overlay-link:hover,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a:hover,
    .template-list-collections .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:hover,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link:hover,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-link:visited:hover,
    .template-list-collections .sticked .overlay-header:focus-within .site-header__logo-overlay-link:hover,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a:hover,
    .template-list-collections .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:hover,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link:hover,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-link:visited:hover,
    .template-list-collections .sticked .overlay-header:hover .site-header__logo-overlay-link:hover,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a:hover,
    .template-list-collections .sticked .overlay-header:hover .top-links.site-header__nav a:visited:hover {
        color: var(--nav-text-hover);
    }
}
@media only screen and (min-width: 768px) {
    .contact-page .using-keyboard .sticked .overlay-header.force-hover,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within,
    .contact-page .using-keyboard .sticked .overlay-header:hover,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within,
    .template-collection .using-keyboard .sticked .overlay-header:hover,
    .template-index .using-keyboard .sticked .overlay-header.force-hover,
    .template-index .using-keyboard .sticked .overlay-header:focus-within,
    .template-index .using-keyboard .sticked .overlay-header:hover,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover {
        background: var(--header-color);
    }
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .contact-page .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-collection .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-index .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header.force-hover .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:focus-within .top-links.site-header__nav a:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .site-header__logo-link:visited:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .site-header__logo-overlay-link:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:focus,
    .template-list-collections .using-keyboard .sticked .overlay-header:hover .top-links.site-header__nav a:visited:focus {
        color: var(--nav-text-hover);
    }
}
.hover-logo {
    display: none;
}
header.overlay-header.overlay-logo.force-hover .hover-logo,
header.overlay-header.overlay-logo.overlay-header--hover .hover-logo,
header.overlay-header.overlay-logo:focus-within .hover-logo,
header.overlay-header.overlay-logo:hover .hover-logo,
nav.overlay-header.overlay-logo.force-hover .hover-logo,
nav.overlay-header.overlay-logo.overlay-header--hover .hover-logo,
nav.overlay-header.overlay-logo:focus-within .hover-logo,
nav.overlay-header.overlay-logo:hover .hover-logo {
    display: block;
}
header.overlay-header.overlay-logo.force-hover .opacity-logo,
header.overlay-header.overlay-logo.overlay-header--hover .opacity-logo,
header.overlay-header.overlay-logo:focus-within .opacity-logo,
header.overlay-header.overlay-logo:hover .opacity-logo,
nav.overlay-header.overlay-logo.force-hover .opacity-logo,
nav.overlay-header.overlay-logo.overlay-header--hover .opacity-logo,
nav.overlay-header.overlay-logo:focus-within .opacity-logo,
nav.overlay-header.overlay-logo:hover .opacity-logo {
    display: none;
}
header:not(.overlay-header) .site-header__logo-overlay-image,
header:not(.overlay-header) .site-header__logo-overlay-link {
    display: none;
}
.header--supporting-text {
    font-size: var(--header-font-size-px);
    padding-left: 5px;
}
.offers-drawer-icon-container {
    position: relative;
}
.offers-drawer-tooltip {
    position: absolute;
    bottom: -5px;
    right: 50%;
    z-index: 1;
    transform: translate(50%, calc(100% + 15px));
    width: 100px;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    padding: 8px;
    background-color: var(--tooltip-background-color);
    opacity: 0;
    animation: bounceDown 0.7s ease 1s forwards, FadeIn 0.25s ease 1s forwards;
}
.offers-drawer-tooltip.fade-out-tooltip {
    transform: translate(50%, 100%);
    animation: FadeOut 0.25s ease forwards;
}
@media screen and (min-width: 768px) {
    .offers-drawer-tooltip {
        width: 120px;
    }
}
.offers-drawer-tooltip:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 6px;
    border-style: solid;
    border-color: transparent transparent var(--tooltip-background-color) transparent;
}
.offers-drawer-tooltip a,
.offers-drawer-tooltip a:active {
    color: inherit !important;
}
@keyframes bounceDown {
    0% {
        transform: translate(50%, calc(100% - 15px));
    }
    30% {
        transform: translate(50%, calc(100% + 10px));
    }
    50% {
        transform: translate(50%, calc(100% - 2px));
    }
    70% {
        transform: translate(50%, calc(100% + 2px));
    }
    100% {
        transform: translate(50%, 100%);
    }
}
.site-header__cart-toggle {
    display: inline-block;
}
.cart-count-enabled {
    position: relative;
}
.cart-item-count-bubble {
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    transition: background-color 0.25s ease;
    border-radius: 100%;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 12px;
    text-align: center;
    top: 10px;
    right: 10px;
    background-color: var(--overlay-header-text-color);
    color: var(--header-overlay-background-color);
}
.shopping-bag .cart-item-count-bubble {
    transform: translate(45%, -25%);
}
.shopping-cart .cart-item-count-bubble {
    transform: translate(50%, -50%);
}
.header-section:has(.overlay-header) {
    background-color: transparent;
}
.header-section.sticked .cart-item-count-bubble,
.mobile-nav-bar-wrapper:not(.overlay-header) .cart-item-count-bubble,
.site-header.overlay-header.overlay-header--hover .cart-item-count-bubble,
.site-header.overlay-header:hover .cart-item-count-bubble,
.site-header:not(.overlay-header) .cart-item-count-bubble {
    background-color: var(--nav-text-color);
    color: var(--header-color);
}
.cart-item-count-header--has-label {
    font-size: var(--header-font-size-px);
}
.cart-item-count-header--has-label:before {
    content: " - ";
    display: inline;
}
.search-bar {
    width: 100%;
    min-height: 44px;
}
@media screen and (max-width: 767px) {
    .search-bar {
        margin-left: auto;
        margin-right: auto;
    }
}
.search-bar input {
    background: 0 0;
    color: var(--text-color);
}
.search-bar input::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}
.search-bar span.input-group-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 44px;
}
.search-bar .search-input--btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    color: var(--text-color);
    border: 1px solid transparent;
}
li.mega-menu-promo-card .mega-menu-promo {
    display: flex;
    flex-direction: column;
}
li.mega-menu-promo-card .mega-menu-promo.has-promo-text--below-img {
    gap: 10px;
}
@media screen and (max-width: 989px) {
    li.mega-menu-promo-card .mega-menu-promo.has-promo-text--below-img {
        gap: 8px;
    }
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper {
    display: flex;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content {
    display: block;
    padding: 0;
    line-height: 0;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content:first-child a {
    padding-top: 15px;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content:nth-child(2) {
    margin-top: 5px;
}
li.mega-menu-promo-card .mega-menu-promo-text--wrapper .mega-menu-promo-text > span.mega-menu-promo-text-content:nth-child(2) a {
    padding-top: 8px;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-image,
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-text--wrapper {
    grid-row: 1/2;
    grid-column: 1/2;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-image {
    width: 100%;
    height: 100%;
}
li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-text--wrapper {
    z-index: 1;
    align-self: end;
    padding: 8px;
}
@media (min-width: 768px) {
    li.mega-menu-promo-card .mega-menu-promo-wrapper .mega-menu-promo-text--wrapper {
        padding: 15px;
    }
}
li.mega-menu-promo-card .mega-menu-promo-text {
    width: fit-content;
    margin: 0 auto;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio {
    position: relative;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
li.mega-menu-promo-card .mega-menu-aspect-ratio.aspect-ratio--tall {
    padding-bottom: 150%;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio.aspect-ratio--wide {
    padding-bottom: 75%;
}
li.mega-menu-promo-card .mega-menu-aspect-ratio.aspect-ratio--square {
    padding-bottom: 100%;
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text {
    text-align: center;
}
.mobile-nav .mega-menu-promo-text--wrapper .mega-menu-promo-text {
    color: var(--menu-drawer-text-color);
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h4.mega-menu-promo-title,
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h5.mega-menu-promo-subtitle {
    padding: 0;
    margin: 0;
    line-height: normal;
    display: inline;
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h4.mega-menu-promo-title {
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    text-transform: var(--header-font-case);
    font-size: var(--header-font-size-px);
    letter-spacing: var(--navigation-font-letter-spacing);
}
.mega-menu-promo-text--wrapper .mega-menu-promo-text .h5.mega-menu-promo-subtitle {
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: var(--base-font-size);
    text-transform: none;
}
.mega-menu-promo-text:hover a.mega-menu-promo-title.animated-link--item,
.using-keyboard .mega-menu-promo-text:focus a.mega-menu-promo-title.animated-link--item,
.using-keyboard a.mega-menu-promo-wrapper:focus + .mega-menu-promo-text--wrapper .mega-menu-promo-title.animated-link--item,
a.mega-menu-promo-wrapper:hover + .mega-menu-promo-text--wrapper .mega-menu-promo-title.animated-link--item {
    background-position: left bottom, left bottom;
    background-size: 100% 1px, 100% 1px;
}
.mega-menu-promo-text a {
    transition: color 0.25s ease;
}
.mega-menu-wrapper .mega-menu-promo-text:hover a,
.mega-menu-wrapper a.mega-menu-promo-wrapper:hover + .mega-menu-promo-text--wrapper a {
    color: var(--nav-text-hover) !important;
}
.mobile-nav .mega-menu-promo-text:hover a,
.mobile-nav a.mega-menu-promo-wrapper:hover + .mega-menu-promo-text--wrapper a {
    color: var(--menu-drawer-text-hover-color) !important;
}
.using-keyboard .mega-menu-wrapper .mega-menu-promo-text:focus,
.using-keyboard .mega-menu-wrapper a.mega-menu-promo-wrapper:focus + .mega-menu-promo-text--wrapper a {
    color: var(--nav-text-hover) !important;
}
.using-keyboard .mobile-nav .mega-menu-promo-text:focus,
.using-keyboard .mobile-nav a.mega-menu-promo-wrapper:focus + .mega-menu-promo-text--wrapper a {
    color: var(--menu-drawer-text-hover-color) !important;
}
.site-nav {
    cursor: default;
    margin: 0;
}
.site-nav li {
    margin: 0;
    display: block;
}
.site-nav > li {
    position: relative;
    display: inline-block;
}
.site-header__logo-link,
.site-header__logo-link:visited,
.top-links.site-header__nav a,
.top-links.site-header__nav a:visited {
    transition: color 0.25s ease;
    transition-property: background-size, color !important;
    color: var(--nav-text-color);
}
.site-header__logo-link:focus,
.site-header__logo-link:hover,
.site-header__logo-link:visited:focus,
.site-header__logo-link:visited:hover,
.top-links.site-header__nav a:focus,
.top-links.site-header__nav a:hover,
.top-links.site-header__nav a:visited:focus,
.top-links.site-header__nav a:visited:hover {
    color: var(--nav-text-hover) !important;
}
.site-header__logo-link:active,
.site-header__logo-link:focus,
.site-header__logo-link:hover {
    color: var(--nav-text-hover) !important;
}
.top-links .top-links--icon-links a,
.top-links--icon-links select {
    color: var(--nav-text-color);
}
.mega-menu-wrapper .h4,
.mega-menu-wrapper .h5 {
    color: var(--nav-text-color);
}
.mega-menu-wrapper .site-nav--has-dropdown.mega-menu .site-nav__link {
    position: relative;
}
.mega-menu-wrapper .site-nav--has-dropdown.mega-menu .site-nav__link:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 100;
    background: 0 0;
}
.mega-menu-wrapper .mega-menu {
    position: relative;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown:not(.theme-editor-active) {
    transform: translateY(0);
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown {
    max-height: calc(80vh - 90px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 30px;
    -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    clip-path: inset(0 -15px -15px -15px);
    width: 100vw;
}
.site-nav--has-dropdown.nav-hover .mega-menu-wrapper .mega-menu .site-nav__dropdown,
.supports-no-touch .site-nav--has-dropdown:hover .mega-menu-wrapper .mega-menu .site-nav__dropdown {
    visibility: visible;
    transform: translateY(0);
    transition: all ease 0.5s;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown::-webkit-scrollbar {
    width: 3px;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown::-webkit-scrollbar-track {
    background-color: transparent;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown::-webkit-scrollbar-thumb {
    background-color: transparent;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown.scrolling::-webkit-scrollbar-track {
    background-color: var(--nav-text-color-transparent10);
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown.scrolling::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--nav-text-color-transparent30);
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown:has(.no--content) {
    display: none !important;
}
.mega-menu-wrapper .mega-menu .site-nav__dropdown:has(.no--content-design-mode) {
    display: block !important;
}
.mega-menu-wrapper .mega-menu.site-nav--has-dropdown.nav-hover .site-nav__dropdown {
    transition: all ease 0.5s;
}
.mega-menu-wrapper .mega-menu.force-open .site-nav__dropdown {
    transform: translateY(0);
}
.mega-menu-wrapper .container {
    max-width: 1660px;
    margin: 0 auto;
}
.mega-menu-wrapper .mega-menu-block {
    display: grid;
    gap: 15px;
    width: 100%;
}
@media (min-width: 768px) {
    .mega-menu-wrapper .mega-menu-block:not(.no--content) {
        gap: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.mega-menu-wrapper .mega-menu-block .mega-menu--links {
    display: grid;
    gap: 15px;
}
@media (min-width: 768px) {
    .mega-menu-wrapper .mega-menu-block .mega-menu--links {
        gap: 20px;
    }
}
.mega-menu-wrapper .mega-menu-block .mega-menu--links .menu-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mega-menu-wrapper .mega-menu-block li a:not(.mega-menu-promo-wrapper):not(.mega-menu-promo-text) {
    display: inline !important;
}
.mega-menu-wrapper .mega-menu-block .mega-menu--empty {
    color: var(--nav-text-color);
    padding: 30px;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: var(--base-font-size);
    text-transform: none;
}
.mega-menu-wrapper .mega-menu--promos {
    display: flex;
    gap: var(--grid-spacing);
}
.mega-menu-wrapper .mega-menu--promos > div {
    width: 100%;
}
.mega-menu-wrapper .dropdown-submenu {
    display: flex;
    float: none;
    opacity: 0;
    transform: translateY(5px);
    padding-left: 0;
}
.mega-menu-wrapper .dropdown-submenu.large--one-fifth {
    width: 20%;
}
.mega-menu-wrapper .dropdown-submenu.large--one-quarter {
    width: 25%;
}
.mega-menu-wrapper .dropdown-submenu.large--one-third {
    width: 33.33%;
}
.mega-menu-wrapper .dropdown-submenu:last-child {
    border-right: 0;
}
.mega-menu-wrapper .inner {
    width: 100%;
}
.mega-menu-wrapper .inner .h4.mega-menu-link--title,
.mega-menu-wrapper .inner .h5 {
    margin: 0;
    padding-bottom: 15px;
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    letter-spacing: var(--navigation-font-letter-spacing);
    text-transform: var(--header-font-case);
    font-size: var(--header-font-size-px);
    line-height: 1.6;
}
.mega-menu-wrapper .inner li {
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    font-size: var(--base-font-size);
    text-transform: none;
    padding-bottom: 10px;
    line-height: 1.4;
}
.mega-menu-wrapper .menu-link {
    margin: 0;
}
.force-open > .site-nav__dropdown {
    visibility: visible;
    opacity: 1;
    transition: all ease 0.3s;
}
.site-nav__dropdown {
    background: var(--header-color);
    top: 100%;
    display: block !important;
    visibility: hidden;
    position: absolute;
    left: 0;
    margin: 0;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
    .site-nav__dropdown {
        top: 100%;
    }
    .site-nav__dropdown.mega-menu-dropdown {
        position: absolute;
    }
}
.site-nav__dropdown li {
    width: 100%;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .site-nav__dropdown.standard-dropdown li {
        transform: translateY(10px);
    }
    .nav-hover .site-nav__dropdown.standard-dropdown li,
    .site-nav--has-dropdown.nav-hover.mega-menu .site-nav__dropdown.standard-dropdown li,
    .site-nav--has-dropdown.nav-hover:not(.mega-menu):hover .site-nav__dropdown.standard-dropdown li,
    .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown.standard-dropdown li {
        transform: translateY(0);
        transition: transform 0.5s ease;
    }
}
.nav-hover .site-nav__dropdown,
.site-nav--has-dropdown.nav-hover.mega-menu .site-nav__dropdown,
.site-nav--has-dropdown.nav-hover:not(.mega-menu):hover .site-nav__dropdown,
.supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.site-nav__dropdown .site-nav--has-dropdown {
    position: relative;
}
.site-nav__dropdown .site-nav__link {
    background: var(--header-color);
}
.site-nav__dropdown.standard-dropdown li:hover {
    color: var(--nav-text-hover);
}
.js .site-nav__subdropdown {
    visibility: hidden;
    transform: translateX(-12px);
    position: absolute;
    opacity: 0;
    left: 100%;
    top: -20px;
    margin: 0;
    z-index: 6;
    background: var(--header-color);
}
.sticked .site-nav__dropdown.standard-dropdown:not(.has--subdropdowns) {
    max-height: calc(80vh - 90px);
    overflow-x: hidden;
    overflow-y: auto;
}
.site-nav__dropdown.standard-dropdown:not(.has--subdropdowns) {
    max-height: calc(80vh - 90px);
    overflow-x: hidden;
    overflow-y: auto;
}
.site-nav__dropdown.standard-dropdown {
    display: grid !important;
    grid-auto-rows: minmax(0, auto);
    grid-template-columns: 1fr;
    align-items: center;
    flex-direction: column;
    min-width: 250px;
    max-width: 350px;
    padding-top: calc(30px - 10px);
    padding-bottom: calc(30px - 10px);
}
.site-nav__dropdown.standard-dropdown::-webkit-scrollbar {
    width: 3px;
}
.site-nav__dropdown.standard-dropdown::-webkit-scrollbar-track {
    background-color: transparent;
}
.site-nav__dropdown.standard-dropdown::-webkit-scrollbar-thumb {
    background-color: transparent;
}
.site-nav__dropdown.standard-dropdown.scrolling::-webkit-scrollbar-track {
    background-color: var(--nav-text-color-transparent10);
}
.site-nav__dropdown.standard-dropdown.scrolling::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--nav-text-color-transparent30);
}
.site-nav__dropdown.standard-dropdown li {
    font-size: var(--base-font-size);
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    letter-spacing: normal;
    line-height: 150%;
    text-transform: none;
}
.site-nav__dropdown.standard-dropdown li .site-nav__link {
    padding: 5px 30px;
}
.site-nav__dropdown.standard-dropdown li.site-nav--has-dropdown .site-nav__link {
    padding-right: calc(10px * 2);
}
.site-nav__dropdown.standard-dropdown .site-nav--link-wrapper {
    display: grid;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.site-nav__dropdown.standard-dropdown .site-nav--link-wrapper .site-nav--link-icon {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    top: 1px;
}
.site-nav__dropdown.standard-dropdown .site-nav__subdropdown {
    display: grid;
    grid-template-rows: repeat(12, min-content);
    grid-auto-flow: column;
    /* display: flex;
    flex-direction: column; */
    min-width: 100%;
    min-height: 100%;
    padding: calc(30px - 10px) 0;
}
.site-nav__dropdown.standard-dropdown .site-nav__subdropdown li {
    min-height: 100%;
    word-wrap: break-word;
}
.site-nav__dropdown.standard-dropdown .site-nav__subdropdown .site-nav__link {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 5px 30px;
}
.site-nav__dropdown .site-nav__subdropdown,
.site-nav__dropdown.standard-dropdown {
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
}
.nav-hover .nav-hover:hover .site-nav__subdropdown,
.nav-hover > .site-nav__subdropdown {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition: all ease 0.5s;
}
.nav .ul {
    width: 100%;
    position: relative;
    z-index: 5;
}
.nav .ul .li {
    position: relative;
}
.site-nav__link {
    display: block;
    text-decoration: none;
    position: relative;
    padding: 15px;
}
@media (max-width: 767px) {
    .site-nav__link {
        padding: 0;
    }
}
.site-nav__link:not(.standalone-icon--wrapper):focus,
.site-nav__link:not(.standalone-icon--wrapper):hover {
    color: var(--nav-text-hover) !important;
}
.site-nav--mobile .site-nav__link {
    display: inline-block;
    border: 0;
    background: 0 0;
}
.first-level-dropdown .site-nav__link {
    padding: 15px 0;
}
.top-links {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.top-links ul.site-nav {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    font-size: var(--header-font-size-px);
    line-height: var(--header-font-size-px) px;
}
.top-links ul li:not(:has(.offers-drawer-icon-container)) {
    display: inline-block;
    list-style-type: none;
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    letter-spacing: var(--navigation-font-letter-spacing);
    text-transform: var(--header-font-case);
}
.top-links--icon-links {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}
.top-links--icon-links li {
    margin: 0;
}
.top-links--icon-links li a {
    color: var(--nav-text-color);
    position: relative;
    display: flex;
    align-items: center;
}
.top-links--icon-links li a:hover {
    color: var(--nav-text-hover);
}
.top-links--icon-links li a:hover svg + [data-cart-count-indicator] {
    background-color: var(--nav-text-hover) !important;
}
localization-form ~ .top-links--icon-links {
    padding-left: 0;
}
body,
button,
input,
select,
textarea {
    font-size: var(--base-font-size);
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
.custom-font,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.header-font,
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-family: var(--header-font-stack);
    font-weight: var(--header-font-weight);
    font-style: var(--header-font-style);
    letter-spacing: var(--heading-spacing);
    text-transform: var(--heading-font-case);
    margin: 0 0 0.5em;
    line-height: var(--heading-line-height);
}
.custom-font a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
.header-font a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
    font-weight: inherit;
}
.subdued-text {
    opacity: 0.75;
}
.section-title--wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .section-title--wrapper {
        margin-bottom: 37.5px;
    }
}
.section-title--wrapper .section-title {
    font-size: var(--h2-size);
    margin: 0;
}
.section-title--wrapper .section-description {
    margin: 15px auto 0;
    max-width: 50%;
}
@media (max-width: 767px) {
    .section-title--wrapper .section-description {
        max-width: 100%;
    }
}
.section-title--wrapper .section-description .h1,
.section-title--wrapper .section-description .h2,
.section-title--wrapper .section-description .h3,
.section-title--wrapper .section-description .h4,
.section-title--wrapper .section-description .h5,
.section-title--wrapper .section-description .h6,
.section-title--wrapper .section-description h1,
.section-title--wrapper .section-description h2,
.section-title--wrapper .section-description h3,
.section-title--wrapper .section-description h4,
.section-title--wrapper .section-description h5,
.section-title--wrapper .section-description h6,
.section-title--wrapper .section-description p:last-child {
    margin-bottom: 0;
}
.template-title--wrapper {
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .template-title--wrapper {
        margin-bottom: 37.5px;
    }
}
.template-title--wrapper .template-title {
    margin: 0;
}
.template-title--wrapper .template-description {
    margin: 15px auto 0;
}
.template-title--wrapper .template-description p:last-child {
    margin-bottom: 0;
}
.h1,
h1 {
    font-size: var(--h1-size);
}
.h2,
h2 {
    font-size: var(--h2-size);
}
.h3,
h3 {
    font-size: var(--h3-size);
}
.h4,
h4 {
    font-size: var(--h4-size);
}
.h5,
h5 {
    font-size: var(--h5-size);
}
.h6,
h6 {
    font-size: var(--h6-size);
}
p {
    margin: 0 0 15px 0;
}
p img {
    margin: 0;
}
em {
    font-style: italic;
}
b,
strong {
    font-weight: 700;
}
small {
    font-size: 0.9em;
}
sub,
sup {
    position: relative;
    font-size: 60%;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.5em;
}
.unit-price {
    font-size: 12px;
}
.label-font {
    font-family: var(--label-font-stack);
    font-weight: var(--label-font-weight);
    font-style: var(--label-font-style);
    /* text-transform: var(--label-font-case); */
    letter-spacing: var(--label-spacing);
}
blockquote:not(.product-testimonial__blockquote) {
    font-size: 1.125em;
    line-height: 1.45;
    font-style: italic;
    margin: 0 0 30px;
    padding: 15px 30px;
    border-left: 1px solid var(--border-color);
}
blockquote:not(.product-testimonial__blockquote) p {
    margin-bottom: 0;
}
blockquote:not(.product-testimonial__blockquote) p + cite {
    margin-top: 15px;
}
blockquote:not(.product-testimonial__blockquote) cite {
    display: block;
    font-size: 0.75em;
}
blockquote:not(.product-testimonial__blockquote) cite:before {
    content: "— ";
}
code,
pre {
    background-color: #faf7f5;
    font-family: Consolas, monospace;
    font-size: 1em;
    border: 0 none;
    padding: 0 2px;
    color: #51ab62;
}
pre {
    overflow: auto;
    padding: 15px;
    margin: 0 0 30px;
}
.fallback-text {
    display: none;
}
hr {
    clear: both;
    border-top: solid var(--border-color);
    border-width: 1px 0 0;
    margin: 30px 0;
    height: 0;
}
.homepage-sections--title,
.list-collections--title,
.page--title,
.shopify-policy__body .h1,
.shopify-policy__body .h2,
.shopify-policy__body .h3,
.shopify-policy__body .h4,
.shopify-policy__body .h5,
.shopify-policy__body .h6,
.shopify-policy__body h1,
.shopify-policy__body h2,
.shopify-policy__body h3,
.shopify-policy__body h4,
.shopify-policy__body h5,
.shopify-policy__body h6,
.shopify-policy__title .h1,
.shopify-policy__title h1 {
    width: 100%;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}
.shopify-policy__body .h4,
.shopify-policy__body .h5,
.shopify-policy__body .h6,
.shopify-policy__body h4,
.shopify-policy__body h5,
.shopify-policy__body h6,
.shopify-policy__title .h1,
.shopify-policy__title h1 {
    letter-spacing: var(--heading-spacing);
    text-transform: var(--heading-font-case);
}
.cart-drawer__empty-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .cart-drawer__empty-container {
        min-height: 100%;
    }
}
@media screen and (max-width: 767px) {
    .cart-drawer__empty-container {
        flex-grow: 1;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.cart-drawer__empty-message {
    text-align: center;
}
.cart-drawer__empty-message p {
    margin: 0;
}
.cart-drawer__empty-btn-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (max-width: 767px) {
    .cart-drawer__empty-btn-container {
        gap: 15px;
    }
}
.cart-drawer__empty-btn {
    width: 100%;
}
.cart-drawer__heading {
    overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
    .cart-drawer__body.global-drawer__body--with-padding {
        padding-left: 0;
        padding-right: 0;
    }
    .cart-drawer__body .cart-drawer__form {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.cart-drawer__product_card {
    display: flex;
    gap: 15px;
    transition: opacity 0.25s ease;
}
.cart-drawer__product_card:not(:last-of-type) {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cart-drawer-text-color-transparent25);
    margin-bottom: 20px;
}
.cart-drawer__product_card:has(.is-removing) {
    opacity: 0.5;
}
.cart-drawer__product_card--image {
    width: 70px;
    flex-shrink: 0;
}
.cart-drawer__product_card--image .theme-img {
    display: block;
}
.cart-drawer__product-card--info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}
.cart-drawer__product-card--info:not(:has(.cart-drawer__product_card--badge--preorder)) {
    transform: translateY(-0.3em);
}
.cart-drawer__product-card--info--body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cart-drawer__product-card--info--body > div:first-child {
    padding-right: 26px;
}
.cart-drawer__product-card--info--footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}
.cart-drawer__product_card--vendor {
    font-size: 12px;
    word-break: break-word;
}
.cart-drawer__product_card--title {
    word-break: break-word;
}
.cart-drawer__product_card--badge {
    width: fit-content;
    color: var(--badge-font-color);
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    padding: 5px 8px;
    text-transform: uppercase;
    text-align: center;
}
.cart-drawer__product_card--badge--sale {
    background: var(--sale-badge-color);
}
.cart-drawer__product_card--badge--preorder {
    background: var(--preorder-badge-color);
}
.cart-drawer__product-card--details {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cart-drawer__product-card--detail span:first-child:not(:only-child) {
    color: var(--cart-drawer-text-color-transparent70);
}
.cart-drawer__product-card--price {
    text-align: right;
    word-break: break-word;
}
.cart-drawer__product-card--price--compare {
    text-decoration: line-through;
    color: var(--cart-drawer-text-color-transparent70);
}
.cart-drawer__product-card--price--sale {
    color: var(--on-sale-color);
}
cart-quantity {
    display: block;
}
cart-quantity.is-loading {
    opacity: 0.5;
}
.cart-drawer__product-card--quantity {
    display: flex;
    border: 1px solid var(--cart-drawer-text-color-transparent25);
}
.cart-drawer__product-card--quantity.is-loading {
    opacity: 0.5;
}
.cart-drawer__product-card--quantity--button {
    background: 0 0;
    border: 0;
    display: flex;
    align-items: center;
    padding: 8px 10px 8px 8px;
    color: inherit;
}
.cart-drawer__product-card--quantity--input {
    width: 4ch;
    padding: 0;
    border: 0 !important;
    text-align: center;
    color: inherit;
}
.cart-drawer__product-card--remove {
    position: absolute;
    top: -14px;
    right: -14px;
    padding: 14px;
    display: flex;
    background: 0 0;
    border: 0;
    color: var(--cart-drawer-text-color);
}
.cart-drawer__product-card--error {
    font-size: 12px;
    margin: 0;
}
.cart-drawer__product-card--error[aria-hidden="true"] {
    display: none;
}
.cart-drawer__sub-footer {
    padding: 10px 15px 15px 15px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__sub-footer {
        padding: 15px 30px 30px 30px;
    }
}
.cart-drawer__discounts {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}
.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 5px;
}
.cart-drawer__subtotal--heading,
.cart-drawer__subtotal--price {
    margin-bottom: 0;
}
.cart-drawer__subtotal--price {
    text-align: right;
    word-break: break-word;
}
.cart-drawer__subtotal--compare {
    text-decoration: line-through;
}
.cart-drawer__subtotal--sale {
    color: var(--on-sale-color);
}
.cart-drawer__taxes-shipping {
    font-size: 12px;
    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__taxes-shipping {
        margin-bottom: 15px;
    }
}
.cart-drawer__footer--buttons {
    display: flex;
    gap: calc(var(--grid-spacing) * 0.75);
}
@media screen and (min-width: 768px) {
    .cart-drawer__footer--buttons {
        gap: var(--grid-spacing);
    }
}
.cart-drawer__footer--button {
    flex-grow: 1;
    flex-basis: 50%;
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__notes {
        display: flex;
    }
    .cart-drawer__notes cart-update-modal {
        flex-grow: 1;
        flex-basis: 50%;
    }
    .cart-drawer__notes cart-update-modal + cart-update-modal {
        border-left: 1px solid var(--cart-drawer-text-color-transparent25);
    }
}
.cart-drawer__notes cart-update-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--cart-drawer-text-color-transparent25);
}
.cart-drawer__note--open {
    background: 0 0;
    border: 0;
    padding: 10px;
}
.cart-drawer__note--modal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    transform: translateY(100%);
    visibility: hidden;
    background-color: var(--cart-drawer-color);
    padding: 20px 15px 15px 15px;
}
@media screen and (min-width: 768px) {
    .cart-drawer__note--modal {
        padding: 20px 30px 30px 30px;
    }
}
@media screen and (prefers-reduced-motion: no-preference) {
    .cart-drawer__note--modal {
        transition: all 0.4s ease-in;
    }
}
.cart-drawer__note--modal[aria-hidden="false"] {
    transform: translate(0);
    visibility: visible;
    transition: all 0.4s ease-out;
}
.cart-drawer__note--modal-overlay {
    position: absolute;
    height: 100vh;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    opacity: 0;
}
cart-update-modal[open] .cart-drawer__note--modal-overlay {
    visibility: visible;
    opacity: 0.5;
}
.cart-drawer__note--label {
    display: inline-block;
    margin-bottom: 2px;
}
.cart-drawer__note--textarea {
    --border-color-darken10: var(--cart-drawer-text-color);
    width: 100%;
    border: 1px solid var(--cart-drawer-text-color-transparent25);
    margin-bottom: 15px;
    color: inherit;
}
@media screen and (min-width: 768px) {
    .cart-drawer__note--textarea {
        margin-bottom: 20px;
    }
}
.cart-drawer__note--close-btn {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .cart-drawer__recommendations:not(:has(.cart-drawer__recommendations-grid--empty)) {
        height: var(--cart-recommendations-height, auto);
    }
    .cart-drawer__recommendations .product-card-basic {
        flex-shrink: 0;
        width: min(385px, 100vw - 30px - 15px - 15px - 35px);
        min-width: 230px;
    }
}
.cart-drawer__recommendations-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: opacity 0.4s ease;
    animation: fadeInRecommendations 0.4s ease;
}
@media screen and (max-width: 767px) {
    .cart-drawer__recommendations-grid {
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
    }
}
cart-drawer.hide-recommendations:not(:has(.cart-drawer__recommendations-grid--empty)) [data-cart-drawer-recommendations] {
    display: none;
}
cart-drawer:has(.is-loading) .cart-drawer__recommendations-grid {
    opacity: 0.5;
}
@keyframes fadeInRecommendations {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.cart__row {
    position: relative;
    padding-top: 30px;
}
@media screen and (min-width: 768px) {
    .cart__row .cart__row--product-details * {
        text-align: left;
    }
}
.cart__row .cart__row--title {
    color: var(--text-color);
}
.cart__row:first-child {
    margin-top: 0;
}
.cart__row:first-child {
    padding-top: 0;
}
.cart__row.grid,
.cart__row.grid--full,
.cart__row.grid--rev {
    border-top: 1px solid var(--border-color);
}
.cart__row .js-qty {
    margin: 0 auto;
}
.cart-table {
    border-collapse: inherit;
}
.cart-table.full {
    margin-bottom: 0;
}
.cart-table th {
    font-weight: 400;
}
.cart-table td,
.cart-table th {
    padding: 30px 15px;
    border: 0;
}
@media only screen and (max-width: 767px) {
    .cart-table .table--responsive td,
    .cart-table .table--responsive th,
    .cart-table form.cart .cart-table {
        text-align: center !important;
    }
    .cart-table .table--responsive.cart-table .js-qty {
        float: none;
    }
    .cart-table .cart-table td,
    .cart-table .cart-table th {
        padding: 5px;
    }
    .cart-table .cart-total-label {
        display: none !important;
    }
    .cart-table .cart__row {
        border-top: 1px solid var(--border-color);
    }
}
.cart-table.table--responsive td {
    text-align: center;
}
.cart-table.table--responsive td .js-qty {
    float: none;
}
.cart-table.table--responsive td:before {
    display: none;
}
@media (min-width: 768px) {
    .cart-table.table--responsive .cart__row--product-details {
        text-align: left;
    }
}
@media screen and (min-width: 768px) {
    .cart-table td,
    .cart-table th {
        border-top: 1px solid var(--border-color);
    }
}
.cart__image {
    display: block;
}
.cart__image img,
.cart__image svg {
    display: block;
    width: 240px !important;
    max-height: 240px !important;
    object-fit: contain;
    font-family: "object-fit: contain";
}
.cart__subtotal {
    margin: 0 0 0 10px;
    display: inline-block;
    min-width: 100px;
    font-size: var(--body-font-size-16-to-em);
}
.cart__remove {
    display: block;
    text-decoration: underline;
}
.cart-table .cart__row a {
    margin: 0;
    font-size: var(--body-font-size-16-to-em);
}
.cart-table .cart__row a .order-discount {
    display: block;
}
td .item-price {
    display: block;
}
.discount--line-through {
    text-decoration: line-through;
}
.order-discount--cart-list {
    margin-left: 0;
    margin-top: 5px;
}
.order-discount--cart-list li {
    list-style-type: none;
}
.cart-total-label__discount {
    display: block;
}
.grid__item .additional-checkout-buttons {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .grid__item .additional-checkout-buttons {
        margin-top: 8px;
        max-width: 50%;
        margin-left: auto;
    }
}
.grid__item .additional-checkout-buttons > div {
    width: 100%;
    max-width: 100%;
}
.js-qty,
.js-qty button,
.js-qty input {
    border: 0;
}
.js-qty .js-qty__adjust {
    font-size: 10px;
}
.js-qty .js-qty__adjust {
    color: var(--text-color);
}
.preorder-badge.preorder-cart-badge {
    position: relative;
    top: 0;
    left: 0;
}
.collapsible-tab collapsible-button {
    display: block;
    cursor: pointer;
    user-select: none;
}
.collapsible-tab .summary {
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.collapsible-tab .summary .text-with-icon {
    margin: 15px 0;
}
.collapsible-tab .summary span svg {
    vertical-align: middle;
}
.collapsible-tab .summary .minus-icon {
    display: none;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .collapsible-tab .summary .chevron-down {
        transition: all 0.1s ease-in;
    }
}
.collapsible-tab .collapsible-content {
    opacity: 0;
    overflow: hidden;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .collapsible-tab .collapsible-content {
        transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}
.collapsible-tab .collapsible-content .content {
    visibility: hidden;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .collapsible-tab .collapsible-content .content {
        transform: translateY(30px);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}
.collapsible-tab.open collapsible-button .summary .plus-icon {
    display: none;
}
.collapsible-tab.open collapsible-button .summary .minus-icon {
    display: block;
}
.collapsible-tab.open collapsible-button .summary .chevron-down {
    transform: scaleY(-1);
}
.collapsible-tab.open .collapsible-content {
    opacity: 1;
}
.collapsible-tab.open .collapsible-content .content {
    transform: translateY(0);
    visibility: visible;
}
.no-js .collapsible-tab details summary .chevron-down,
.no-js .collapsible-tab details summary .plus-icon {
    display: block;
}
.no-js .collapsible-tab details summary .chevron-up,
.no-js .collapsible-tab details summary .minus-icon {
    display: none;
}
.no-js .collapsible-tab details[open] .chevron-down,
.no-js .collapsible-tab details[open] .plus-icon {
    display: none;
}
.no-js .collapsible-tab details[open] .chevron-up,
.no-js .collapsible-tab details[open] .minus-icon {
    display: block;
}
.countdown-timer__container {
    display: flex;
    gap: 10px;
}
.countdown-timer__component {
    display: block;
}
.countdown-timer__digit-group-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-timer__digit-group-container span {
    width: min-content;
    min-width: 100%;
    text-align: center;
    font-size: var(--body-font-size-12-to-em);
    line-height: 1;
    padding-top: 8px;
    word-break: break-all;
}
.countdown-timer__digit-group {
    display: flex;
}
.countdown-timer__digit {
    position: relative;
    overflow: hidden;
    padding: 5px 8px 8px 8px;
    border-radius: 4px;
}
.countdown-timer__digit.h1 {
    margin: 0;
    line-height: 1;
}
.countdown-timer__digit > div {
    width: 9px;
    display: flex;
    justify-content: center;
}
.countdown-timer__separator {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(10px + 4px) 5px;
}
.countdown-timer__separator-dot {
    display: block;
    height: 3px;
    width: 3px;
    border-radius: 50%;
}
.countdown-timer__separator-dot:first-child {
    margin-bottom: 10px;
}
[data-hide-when-zero].hide,
[data-timer-complete-content].hide,
countdown-timer.hide {
    display: none;
}
localization-form {
    position: relative;
}
@media only screen and (min-width: 768px) {
    .footer-alignment--left .bottom--footer--payment-methods localization-form {
        width: auto;
        justify-content: flex-start;
    }
    .site-header localization-form {
        display: flex;
        align-items: center;
    }
}
@media only screen and (max-width: 767px) {
    .site-footer localization-form {
        display: flex;
        justify-content: center;
    }
    localization-form form {
        width: 100%;
    }
    localization-form form button {
        width: 100%;
    }
}
localization-form button {
    background-color: transparent;
    padding: 10px;
    font-size: var(--header-font-size-px);
}
.site-header localization-form button {
    border: 0;
    color: var(--nav-text-color);
    font-family: var(--navigation-font-stack);
    font-weight: var(--navigation-font-weight);
    font-style: var(--navigation-font-style);
    letter-spacing: var(--navigation-font-letter-spacing);
    text-transform: var(--header-font-case);
    transition: color 0.25s ease;
}
.site-header localization-form button:hover {
    color: var(--nav-text-hover) !important;
}
.using-keyboard .site-header localization-form button:focus {
    color: var(--nav-text-hover) !important;
}
.site-footer localization-form button {
    color: var(--color-scheme-text-color);
    border: 1px solid var(--color-scheme-text-color);
    transition: all 0.15s ease-in-out 0s;
}
.site-footer localization-form button > span {
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 768px) {
    .site-footer localization-form button > span {
        justify-content: center;
    }
}
.site-footer localization-form button svg.chevron-down {
    display: flex;
    color: var(--color-scheme-text-color);
    transition: all 0.15s ease-in-out 0s;
}
.site-footer localization-form button:hover {
    color: var(--color-scheme-text-color);
    border-color: var(--color-scheme-text-color);
}
.site-footer localization-form button:hover svg.chevron-down {
    color: var(--color-scheme-text-color);
}
localization-form ul.localization__list {
    position: absolute;
    min-width: 100%;
    z-index: 6;
    margin: 0;
    list-style-type: none;
    max-height: 250px;
    overflow-y: auto;
}
localization-form ul.localization__list::-webkit-scrollbar {
    width: 3px;
}
localization-form ul.localization__list::-webkit-scrollbar-track {
    background-color: transparent;
}
@media screen and (prefers-reduced-motion: no-preference) {
    localization-form ul.localization__list {
        overflow-y: hidden;
        padding-right: 3px;
        animation: resetOverflow 0s linear 0.5s forwards;
    }
    localization-form ul.localization__list li {
        animation: dropdownFadeUp 0.5s ease;
    }
}
localization-form ul.localization__list li {
    margin: 0;
    display: block !important;
}
localization-form ul.localization__list a {
    font-size: var(--header-font-size-px);
    line-height: 1.6;
    font-family: var(--body-font-stack);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    letter-spacing: normal;
    display: block;
    padding: 5px 10px;
    color: inherit;
    text-align: left;
}
.site-header localization-form ul.localization__list {
    background-color: var(--header-color);
    border: 1px solid var(--header-color-darken5);
    color: var(--nav-text-color);
    margin-left: 10px;
}
.site-header localization-form ul.localization__list::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--nav-text-color-transparent30);
}
.site-header localization-form ul.localization__list li:focus,
.site-header localization-form ul.localization__list li:focus-within,
.site-header localization-form ul.localization__list li:hover,
.site-header localization-form ul.localization__list li[selected] {
    background-color: var(--header-color-darken5);
}
.site-header__wrapper--logo-center localization-form ul.localization__list {
    right: 0;
}
.top-links localization-form ul.localization__list a:focus,
.top-links localization-form ul.localization__list a:focus-within,
.top-links localization-form ul.localization__list a:hover {
    color: var(--nav-text-hover) !important;
}
.site-footer localization-form ul.localization__list {
    background-color: var(--color-scheme-background-color);
    border: 1px solid var(--color-scheme-text-color);
    color: var(--color-scheme-text-color);
    bottom: 100%;
}
.site-footer localization-form ul.localization__list::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--color-scheme-text-color-transparent40);
}
.site-footer localization-form ul.localization__list li:focus,
.site-footer localization-form ul.localization__list li:focus-within,
.site-footer localization-form ul.localization__list li:hover,
.site-footer localization-form ul.localization__list li[selected] {
    background-color: var(--color-scheme-border-color);
}
.localization-form__noscript button {
    margin-top: 10px;
}
@media only screen and (min-width: 768px) {
    .localization-form__noscript button {
        width: 100%;
    }
}
.site-header .localization-form__noscript button {
    background-color: var(--nav-text-color);
    color: var(--header-color);
    margin-bottom: 10px;
}
.site-header .localization-form__noscript button:hover {
    background-color: var(--nav-text-hover);
}
.site-footer .localization-form__noscript button {
    background-color: var(--color-scheme-text-color);
    color: var(--color-scheme-background-color);
}
.site-header .localization-form__noscript .localization-selector-country {
    border-color: var(--nav-text-color);
    color: var(--nav-text-color);
}
.site-footer .localization-form__noscript .localization-selector-country {
    border-color: var(--color-scheme-text-color);
    color: var(--color-scheme-text-color);
}
.site-header .localization-form__noscript {
    margin-left: 15px;
}
.cross-sells-wrapper .cross-sells-products {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
.cross-sells-wrapper .cross-sells-products.scrollable {
    position: relative;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    padding: 0 15px 50px 0;
    max-height: 400px;
    overflow-y: auto;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container::-webkit-scrollbar {
    width: 3px;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container::-webkit-scrollbar-track {
    background: var(--text-color-transparent30);
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container::-webkit-scrollbar-thumb {
    background: var(--text-color-transparent5);
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: calc(100% - 3px);
    height: 50px;
    background: linear-gradient(180deg, var(--body-color) 0, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.3s opacity;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: calc(100% - 3px);
    height: 50px;
    background: linear-gradient(360deg, var(--body-color) 0, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.3s opacity;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container.top:before {
    opacity: 0;
    z-index: -1;
}
.cross-sells-wrapper .cross-sells-products.scrollable scrollable-container.bottom:after {
    opacity: 0;
    z-index: -1;
}
.cross-sells-wrapper .header {
    margin-bottom: 15px;
}
body.js-drawer-location-modal-open,
body.js-drawer-open {
    overflow: hidden;
}
.drawer-overlay,
.popup-overlay {
    position: fixed;
    z-index: 1499;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--body-overlay-color);
    opacity: 0;
    transition: width 0s linear 0.6s, opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.js-drawer-open-left #NavDrawerOverlay,
.js-drawer-open-right #DrawerOverlay,
.theme-modal-open #DrawerOverlay {
    width: 100%;
    opacity: 1;
    transition: opacity 0.4s, width 0s ease-in-out 0s;
}
.fullscreen-popup-open #PopupOverlay {
    width: 100%;
    opacity: 1;
    transition: opacity 0.4s, width 0s ease-in-out 0s;
    z-index: 1501;
}
.js-drawer-location-modal-open #DrawerOverlay {
    width: 100%;
    opacity: 0.4;
    transition: opacity 0.4s, width 0s ease-in-out 0s;
    z-index: 1001;
}
.drawer {
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0;
    bottom: 0;
    max-width: 90%;
    z-index: 1500;
    color: var(--cart-drawer-text-color);
    background-color: var(--cart-drawer-color);
}
.drawer .h3 a,
.drawer h3 a {
    color: var(--cart-drawer-text-color);
}
.drawer#NavDrawer a {
    word-break: break-word;
    color: var(--menu-drawer-text-color);
}
.drawer#NavDrawer a:focus:not(.mobile-menu--close-btn),
.drawer#NavDrawer a:hover:not(.mobile-menu--close-btn) {
    color: var(--menu-drawer-text-hover-color);
}
.drawer#NavDrawer #sm-icons a:focus,
.drawer#NavDrawer #sm-icons a:hover {
    color: var(--menu-drawer-text-color);
}
.drawer#NavDrawer svg {
    display: block;
}
.drawer#NavDrawer input {
    background: var(--menu-drawer-color);
    padding: 7.5px;
}
.drawer__header {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    position: relative;
    z-index: 100;
}
.drawer__header.display-flex {
    display: flex;
}
.drawer__header .remove-margin {
    margin: 0;
}
.drawer__title {
    width: auto;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .drawer__title {
        display: none !important;
    }
}
.drawer__title span:not(.sr-only) {
    display: block;
    margin: 15px 0 0 30px;
}
.drawer__close button {
    right: 4px;
    position: absolute;
    color: var(--cart-drawer-text-color);
}
.drawer__close button.filter-drawer-btn {
    color: var(--filter-text-color);
}
.drawer--cart .drawer__close button {
    right: 18px;
}
@media screen and (max-width: 767px) {
    .drawer--cart .drawer__close button {
        right: 4px;
        top: -12px;
    }
}
.drawer--right {
    -ms-transform: translateX(-767px);
    -webkit-transform: translateX(-767px);
    transform: translateX(-767px);
    width: 767px;
    right: -767px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.1);
}
.drawer--right .drawer__title {
    text-align: left;
}
@media screen and (max-width: 767px) {
    .drawer--right .drawer__title {
        max-width: 85%;
        margin: 30px 0 0 15px;
    }
}
.drawer--right i {
    color: var(--cart-drawer-text-color);
}
.drawer--right textarea {
    color: var(--cart-drawer-text-color);
    border: 1px solid var(--cart-drawer-border-color);
    background: 0 0;
    color: var(--cart-drawer-text-color);
}
.drawer--right textarea::placeholder {
    color: var(--cart-drawer-text-color);
    opacity: 0.8;
}
.drawer--right .drawer__header {
    margin-top: 0;
    position: relative;
}
.drawer--right .account-section--btn {
    border: 0;
    background-color: var(--primary-btn-bg-color);
    color: var(--primary-btn-text-color);
}
.drawer--right input {
    border: 0;
    border-bottom: 1px solid var(--cart-drawer-border-color);
    background: 0 0;
    color: var(--cart-drawer-text-color);
}
.drawer--right input::placeholder {
    color: var(--cart-drawer-text-color);
    opacity: 0.8;
}
.drawer--right .drawer--cart {
    background: var(--cart-drawer-color);
    color: var(--cart-drawer-text-color);
}
.drawer--right .drawer--cart .product-details-wrapper {
    text-align: center;
}
.drawer--right .drawer--cart .product-details-wrapper .product-description.readmore.closed:after {
    background-image: linear-gradient(transparent 65%, var(--cart-drawer-color) 100%);
}
.drawer--right .drawer--cart .product-details-wrapper .read-more-link:after,
.drawer--right .drawer--cart .product-details-wrapper .read-more-link:before {
    border-color: var(--cart-drawer-border-color);
}
.drawer--right .drawer--cart a {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    color: var(--cart-drawer-text-color);
}
@media screen and (min-width: 768px) {
    .drawer--right .drawer--cart .paymentButtonsWrapper .product--add-to-cart-button {
        margin-right: 0;
    }
}
.drawer--left {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.drawer-right-enter-active,
.drawer-right-leave-active {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.drawer-right-enter-active > * {
    transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s;
}
.drawer-right-leave-active > * {
    transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.drawer-right-enter,
.drawer-right-leave-to {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.drawer-right-enter > *,
.drawer-right-leave-to > * {
    opacity: 0;
}
.drawer-right-enter-to {
    -ms-transform: translateX(-767px);
    -webkit-transform: translateX(-767px);
    transform: translateX(-767px);
}
.drawer-right-enter-to > * {
    opacity: 1;
}
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        input {
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
        }
    }
}
.facets__display.is-filter-swatch .facets__list {
    margin: 0;
    display: grid;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem 1.2rem;
}
.facets__display.is-filter-swatch .facets__list .list-menu__item.facets__item {
    margin: 0;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox {
    display: flex;
    justify-content: center;
    padding: 0;
    min-width: 44px;
    min-height: 44px;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"] {
    opacity: 0;
    margin: 0;
    top: 0;
    left: auto;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox:hover input[type="checkbox"]:not(:disabled):not(:checked) + .filter-swatch--wrapper .filter-swatch--color,
.facets__display.is-filter-swatch .facets__list .facet-checkbox:hover input[type="checkbox"]:not(:disabled):not(:checked) + .filter-swatch--wrapper .filter-swatch--image {
    outline: 1px solid var(--text-color);
    outline-offset: 0;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:checked + .filter-swatch--wrapper .filter-swatch--color,
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:checked + .filter-swatch--wrapper .filter-swatch--image {
    outline: 1px solid var(--text-color);
    outline-offset: 3px;
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out {
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.filter-swatch-sold-out-background {
    z-index: 1;
    background-color: var(--filter-background-color);
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.filter-swatch-sold-out-foreground {
    z-index: 2;
    background-color: var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list .facet-checkbox input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch--label {
    color: var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list .filter-swatch--wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list .filter-swatch--wrapper .filter-swatch--swatch {
    display: flex;
    align-items: center;
    justify-content: center;
}
.facets__display.is-filter-swatch .facets__list .filter-swatch--wrapper .filter-swatch--label {
    min-width: 70px;
    text-align: center;
    color: var(--text-color);
    line-height: 1.6;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color {
    grid-template-columns: repeat(10, minmax(38px, 1fr));
}
@media screen and (max-width: 767px) {
    .facets__display.is-filter-swatch .facets__list.swatch-type-color {
        grid-template-columns: repeat(5, minmax(38px, 1fr));
    }
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .facets__item {
    justify-content: center;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .filter-swatch--color {
    min-width: 38px;
    min-height: 38px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    outline: 1px solid var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .filter-swatch--color .filter-swatch-sold-out {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
}
@media screen and (max-width: 767px) {
    .facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled {
        grid-template-columns: repeat(3, minmax(70px, 1fr));
    }
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled .filter-swatch--wrapper {
    justify-content: unset;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color.swatch-labels--enabled .filter-swatch--color {
    min-width: unset;
    min-height: unset;
    width: 32px;
    height: 32px;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color .image-swatch-empty {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-color input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.image-swatch--disabled {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
}
@media screen and (max-width: 767px) {
    .facets__display.is-filter-swatch .facets__list.swatch-type-image {
        grid-template-columns: repeat(3, minmax(70px, 1fr));
    }
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out {
    width: 141.4%;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image .filter-swatch--swatch {
    position: relative;
    padding-bottom: 100%;
    width: 100%;
    height: 100%;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image .filter-swatch--swatch .filter-swatch--image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    outline: 1px solid var(--text-color-transparent25);
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image .color-swatch-empty {
    display: none;
}
.facets__display.is-filter-swatch .facets__list.swatch-type-image input[type="checkbox"]:disabled + .filter-swatch--wrapper .filter-swatch-sold-out.color-swatch--disabled {
    display: none;
}
variant-dropdown {
    display: block;
    position: relative;
}
variant-dropdown .variant-dropdown [data-dropdown-button] {
    width: 100%;
    min-height: 46px;
    text-align: left;
    color: var(--text-color);
    border: 1px solid var(--text-color-transparent25);
    padding: 8px 10px;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    gap: 10px;
}
@media only screen and (max-width: 767px) {
    variant-dropdown .variant-dropdown [data-dropdown-button] {
        min-height: 52px;
    }
}
@media only screen and (max-width: 767px) {
    variant-dropdown .variant-dropdown [data-dropdown-button] .header--supporting-text {
        flex-grow: 1;
    }
}
variant-dropdown .variant-dropdown [data-dropdown-button] :focus .header--supporting-text {
    color: var(--text-color);
}
variant-dropdown .variant-dropdown [data-dropdown-button] span {
    display: inline-block;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    variant-dropdown .variant-dropdown [data-dropdown-button] span {
        display: flex;
        align-items: center;
    }
}
variant-dropdown .variant-dropdown [data-dropdown-button] .icon-dropdown {
    display: flex;
    flex-shrink: 0;
}
variant-dropdown .variant-dropdown [data-dropdown-button] .icon-dropdown svg {
    transition: transform 0.3s ease;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 100%;
    list-style: none;
    margin: 0;
    z-index: 5;
    max-height: 50vh;
    overflow-x: auto;
    white-space: nowrap;
    z-index: 101;
    color: var(--text-color);
    background-color: var(--color-primary-background);
    border: 1px solid var(--text-color-transparent25);
    border-top: 0;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li {
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    font-weight: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 5px 10px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li:first-child {
    padding-top: 10px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li:last-child {
    padding-bottom: 10px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li .status-text {
    font-size: 12px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li.sold-out .option-label,
variant-dropdown .variant-dropdown ul[data-dropdown-list] li.sold-out .status-text {
    opacity: 50%;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list] li.selected,
variant-dropdown .variant-dropdown ul[data-dropdown-list] li:hover {
    background-color: var(--text-color-transparent10);
}
@media screen and (prefers-reduced-motion: no-preference) {
    variant-dropdown .variant-dropdown ul[data-dropdown-list] {
        overflow-y: hidden;
        animation: resetOverflow 0s linear 0.5s forwards;
    }
    variant-dropdown .variant-dropdown ul[data-dropdown-list] li {
        animation: dropdownFadeUp 0.5s ease;
    }
}
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-enter-active,
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-leave-active {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-enter,
variant-dropdown .variant-dropdown ul[data-dropdown-list].variant-dropdown-fade-leave-to {
    opacity: 0;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list]::-webkit-scrollbar {
    width: 3px;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list]::-webkit-scrollbar-track {
    background-color: transparent;
}
variant-dropdown .variant-dropdown ul[data-dropdown-list]::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--text-color-transparent30);
}
variant-dropdown.variant-dropdown--open [data-dropdown-button] .icon-dropdown svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.option-label-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.global-drawer {
    visibility: hidden;
    display: block;
    position: fixed;
    top: 0;
    width: 450px;
    max-width: calc(100% - 30px);
    height: 100%;
    z-index: 1501;
    color: var(--cart-drawer-text-color);
    background-color: var(--cart-drawer-color);
}
@media screen and (prefers-reduced-motion: no-preference) {
    .global-drawer {
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
}
.global-drawer[data-drawer-position="right"] {
    transform: translate(100%);
    right: 0;
    box-shadow: -50px 0 150px 0 rgba(0, 0, 0, 0.05);
}
.global-drawer[data-drawer-position="right"] .global-drawer__overlay {
    right: 100%;
}
@media screen and (min-width: 768px) {
    .global-drawer[data-drawer-position="right"] .global-drawer__content:has(.global-drawer--secondary) {
        border-left: 1px solid var(--cart-drawer-text-color-transparent25);
    }
    .global-drawer[data-drawer-position="right"] .global-drawer--secondary {
        right: 100%;
    }
    .global-drawer[data-drawer-position="right"] .global-drawer--secondary__content {
        transform: translate(100%);
    }
}
.global-drawer[data-drawer-position="left"] {
    transform: translate(-100%);
    left: 0;
    box-shadow: 50px 0 150px 0 rgba(0, 0, 0, 0.05);
}
.global-drawer[data-drawer-position="left"] .global-drawer__overlay {
    left: 100%;
}
@media screen and (min-width: 768px) {
    .global-drawer[data-drawer-position="left"] .global-drawer__content:has(.global-drawer--secondary) {
        border-right: 1px solid var(--cart-drawer-text-color-transparent25);
    }
    .global-drawer[data-drawer-position="left"] .global-drawer--secondary {
        left: 100%;
    }
    .global-drawer[data-drawer-position="left"] .global-drawer--secondary__content {
        transform: translate(-100%);
    }
}
.global-drawer[aria-hidden="false"] {
    transform: translate(0);
    visibility: visible;
}
.global-drawer[aria-hidden="false"] .global-drawer__overlay {
    opacity: 1;
    visibility: visible;
}
@media screen and (min-width: 768px) {
    .global-drawer[aria-hidden="false"][data-drawer-position="right"] .global-drawer--secondary {
        box-shadow: -50px 0 150px 0 rgba(0, 0, 0, 0.05);
    }
    .global-drawer[aria-hidden="false"][data-drawer-position="left"] .global-drawer--secondary {
        box-shadow: 50px 0 150px 0 rgba(0, 0, 0, 0.05);
    }
    .global-drawer[aria-hidden="false"] .global-drawer--secondary {
        transition: box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
    }
    .global-drawer[aria-hidden="false"] .global-drawer--secondary__content {
        transform: translate(0);
    }
}
@media screen and (min-width: 768px) and (prefers-reduced-motion: no-preference) {
    .global-drawer[aria-hidden="false"] .global-drawer--secondary__content {
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) 425ms;
    }
}
@media screen and (min-width: 768px) {
    .global-drawer[aria-hidden="false"].disable-transitions .global-drawer--secondary__content {
        transition: none;
    }
}
.global-drawer ::-webkit-scrollbar {
    width: 3px;
    height: 2px;
}
.global-drawer ::-webkit-scrollbar-track {
    background-color: var(--cart-drawer-text-color-transparent10);
}
.global-drawer ::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--cart-drawer-text-color-transparent40);
}
.global-drawer__content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.global-drawer__content a:not(.btn):not(.btn--underlined),
.global-drawer__content button.btn--underlined-with-icon {
    --link-color: var(--cart-drawer-text-color);
    --link-border-color: var(--cart-drawer-text-color-transparent50);
    color: var(--cart-drawer-text-color);
}
.global-drawer__content .wrapper-spacing--v--template {
    padding-top: 15px;
    padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__content .wrapper-spacing--v--template {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.global-drawer__content .wrapper-spacing--h {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__content .wrapper-spacing--h {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.global-drawer__disable-load-in-animations .show-on-scroll {
    animation: fadeIn 0.25s ease forwards;
}
.global-drawer__disable-load-in-animations [data-animate] {
    opacity: 1 !important;
    animation: none !important;
}
.global-drawer__overlay {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--body-overlay-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}
.global-drawer__close {
    position: absolute;
    z-index: 1;
    top: 3px;
    right: 3px;
    padding: 12px;
    display: flex;
    background: 0 0;
    border: 0;
    color: var(--cart-drawer-text-color);
}
@media screen and (min-width: 768px) {
    .global-drawer__close {
        top: 18px;
        right: 18px;
        padding: 12px;
    }
}
.global-drawer__body--with-padding,
.global-drawer__footer--with-padding,
.global-drawer__sticky-header {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__body--with-padding,
    .global-drawer__footer--with-padding,
    .global-drawer__sticky-header {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.global-drawer__sticky-header {
    position: relative;
    padding-top: 15px;
    padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .global-drawer__sticky-header {
        padding-top: 30px;
    }
}
.global-drawer__sticky-header:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background-color: var(--cart-drawer-text-color-transparent25);
    bottom: 0;
    left: 15px;
    right: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__sticky-header:after {
        left: 30px;
        right: 30px;
    }
}
.global-drawer__sticky-header .h3,
.global-drawer__sticky-header h3 {
    margin: 0;
}
.global-drawer__sticky-header:has(button:only-child) {
    padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
    .global-drawer__sticky-header:has(button:only-child) {
        padding-bottom: 40px;
    }
}
.global-drawer__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    overflow-y: auto;
}
.global-drawer__body--with-padding {
    padding-top: 20px;
    padding-bottom: 20px;
}
.global-drawer__body--content {
    flex-grow: 1;
}
@media screen and (max-width: 767px) {
    .global-drawer__body--content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
@media screen and (max-width: 767px) {
    .global-drawer__sticky-bottom {
        position: relative;
    }
    .global-drawer__sticky-bottom:after {
        content: "";
        display: block;
        position: absolute;
        height: 20px;
        background: linear-gradient(rgba(0, 0, 0, 0), var(--cart-drawer-color));
        left: 0;
        right: 0;
        bottom: 100%;
        pointer-events: none;
    }
}
.global-drawer__footer {
    border-top: var(--cart-drawer-text-color-transparent25) 1px solid;
}
@media screen and (min-width: 768px) {
    .global-drawer__footer {
        position: relative;
    }
    .global-drawer__footer:after {
        content: "";
        display: block;
        position: absolute;
        height: 30px;
        background: linear-gradient(rgba(0, 0, 0, 0), var(--cart-drawer-color));
        left: 0;
        right: 0;
        bottom: calc(100% + 1px);
        pointer-events: none;
    }
}
.global-drawer__footer--with-padding {
    padding-top: 10px;
    padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .global-drawer__footer--with-padding {
        padding-top: 15px;
        padding-bottom: 30px;
    }
}
@media screen and (min-width: 768px) {
    .global-drawer--secondary {
        position: absolute;
        top: 0;
        height: 100%;
        overflow: hidden;
        width: 310px;
        max-width: calc(100vw - 450px - 30px);
    }
}
@media screen and (min-width: 768px) {
    .global-drawer--secondary__content {
        height: 100%;
        overflow-y: auto;
        transform: translate(100%);
        padding: 30px;
        background-color: var(--cart-drawer-color);
    }
}
@media screen and (min-width: 768px) and (prefers-reduced-motion: no-preference) {
    .global-drawer--secondary__content {
        transition: all 0.35s ease-in;
    }
}
@media screen and (max-width: 767px) {
    .global-drawer--secondary__header {
        padding: 15px;
        position: relative;
    }
    .global-drawer--secondary__header:after {
        content: "";
        display: block;
        position: absolute;
        height: 1px;
        background-color: var(--cart-drawer-text-color-transparent25);
        top: 50%;
        left: 0;
        right: 0;
        z-index: -1;
    }
}
.global-drawer--secondary__header .h5,
.global-drawer--secondary__header h5 {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .global-drawer--secondary__header .h5,
    .global-drawer--secondary__header h5 {
        margin-bottom: 0;
        display: inline-block;
        padding: 0 5px;
        background-color: var(--cart-drawer-color);
    }
}
.icon-dot-outline {
    display: flex;
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    border-radius: 100%;
    background-color: var(--color-scheme-text-color-transparent10, var(--text-color-transparent10));
    z-index: 1;
}
.icon-dot-outline .icon-dot {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    z-index: 2;
    margin: auto;
}
.icon-dot-outline .icon-dot.icon-dot.icon-dot--success {
    background-color: var(--success-color);
}
.icon-dot-outline .icon-dot.icon-dot.icon-dot--warning {
    background-color: var(--warning-color);
}
.icon-dot-outline .icon-dot.icon-dot.icon-dot--error {
    background-color: var(--error-color);
}
@media screen and (prefers-reduced-motion: no-preference) {
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--success {
        box-shadow: 0 1px 10px var(--success-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--warning {
        box-shadow: 0 1px 10px var(--warning-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--error {
        box-shadow: 0 1px 10px var(--error-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot:after {
        position: absolute;
        content: "";
        width: inherit;
        height: inherit;
        left: 0;
        top: 0;
        z-index: -1;
        border-radius: 50%;
        -webkit-animation: 2s pulsatingDot ease-in-out infinite;
        animation: 2s pulsatingDot ease-in-out infinite;
        opacity: 0.4;
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--success:after {
        color: var(--success-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--warning:after {
        color: var(--warning-color);
    }
    .stock-indicator-animations .icon-dot--pulsing.icon-dot--error:after {
        color: var(--error-color);
    }
    @keyframes pulsatingDot {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0;
            opacity: 0.7;
        }
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px;
            opacity: 0;
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0;
            opacity: 0;
        }
    }
}
.icon-fallback-text .icon {
    display: none;
}
.icon:before {
    display: none;
}
.payment-icons svg {
    height: 40px;
    width: 55px;
}
.social-icons li {
    margin: 0 15px 15px;
    vertical-align: middle;
}
@media screen and (min-width: 481px) {
    .social-icons li {
        margin-left: 0;
    }
}
.social-icons li .icon {
    font-size: 30px;
    line-height: 26px;
}
.product-card-basic {
    display: flex;
    gap: 15px;
}
.product-card-basic--info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(-4px);
}
.product-card-basic--info--body {
    display: flex;
    flex-direction: column;
}
.product-card-basic--info--body .unit-price {
    color: var(--cart-drawer-text-color-transparent70);
}
.product-card-basic__image {
    width: 70px;
    flex-shrink: 0;
}
.product-card-basic__image .theme-img {
    display: block;
}
@media screen and (max-width: 767px) {
    .product-card-basic__image:not(:has(.aspect-ratio)) .theme-img {
        max-height: 105px;
        object-fit: contain;
    }
}
.product-card-basic__vendor {
    font-size: 12px;
    word-break: break-word;
}
.product-card-basic__title {
    font-size: 14px;
    word-break: break-word;
}
.product-card-basic__price .money,
.product-card-basic__price .price--from-text {
    font-size: 12px;
    overflow-wrap: anywhere;
}
.product-card-basic__price .money.price-line-through.sale-price,
.product-card-basic__price .money.sale-price {
    color: inherit;
    opacity: 0.7;
}
.product-card-basic__price .money.price-line-through.sale-price + .money,
.product-card-basic__price .money.sale-price + .money {
    color: var(--on-sale-color);
}
.product-card-basic .btn--underlined-with-icon {
    font-size: 12px;
}
.product-card-basic__add-button {
    display: flex;
}
.product-grid--wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: calc(var(--grid-spacing) * 0.75);
    position: relative;
}
@media (min-width: 768px) {
    .product-grid--wrapper {
        column-gap: var(--grid-spacing);
    }
}
.product-grid--wrapper:not(.product-grid--slider-enabled) {
    row-gap: 2em;
}
.product-grid--wrapper.grid-uniform {
    margin-left: 0;
}
.product-grid--wrapper:after {
    display: none;
}
@media (min-width: 768px) {
    .product-grid--wrapper {
        column-gap: var(--grid-spacing);
    }
}
.product-grid--wrapper .grid__item {
    margin-top: 0;
    padding-left: 0;
}
@media only screen and (max-width: 767px) {
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-fifth:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-half:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-quarter:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-third:not(.swiper-slide),
    .product-grid--wrapper .grid__item.small--one-whole.medium--one-whole:not(.swiper-slide) {
        width: 100% !important;
    }
    .product-grid--wrapper .grid__item.small--one-half.medium--one-fifth,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-half,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-quarter,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-third,
    .product-grid--wrapper .grid__item.small--one-half.medium--one-whole {
        width: calc(50% - calc(var(--grid-spacing) * 0.75) / 2);
    }
}
@media only screen and (min-width: 768px) {
    .product-grid--wrapper .grid__item.medium--one-half {
        width: calc(50% - var(--grid-spacing) / 2);
    }
    .product-grid--wrapper .grid__item.medium--one-fifth,
    .product-grid--wrapper .grid__item.medium--one-quarter,
    .product-grid--wrapper .grid__item.medium--one-third,
    .product-grid--wrapper .grid__item.medium--one-whole {
        width: calc(33.3333333333% - 2 * var(--grid-spacing) / 3);
    }
}
@media only screen and (min-width: 1024px) {
    .product-grid--wrapper .grid__item.large--one-half {
        width: calc(50% - var(--grid-spacing) / 2);
    }
    .product-grid--wrapper .grid__item.large--one-third {
        width: calc(33.3333333333% - 2 * var(--grid-spacing) / 3);
    }
    .product-grid--wrapper .grid__item.large--one-quarter {
        width: calc(25% - 3 * var(--grid-spacing) / 4);
    }
    .product-grid--wrapper .grid__item.large--one-fifth {
        width: calc(20% - 4 * var(--grid-spacing) / 5);
    }
}
.grid-view-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    position: relative;
    text-align: center;
}
.grid-view-item:has(.quick-shop--block) {
    height: 100%;
}
.grid-view-item.text-align--left .product-grid--price,
.grid-view-item.text-align--left .product-grid--title,
.grid-view-item.text-align--left .product-grid--vendor {
    text-align: left;
}
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block {
    justify-content: start;
}
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block form,
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block theme-modal,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block form,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block theme-modal {
    text-align: left;
    justify-content: flex-start;
}
.grid-view-item.text-align--left .product-grid--quick-shop.quick-shop--block .is-loading.btn--underlined,
.grid-view-item.text-align--left .quick-add-wrapper.quick-shop--block .is-loading.btn--underlined {
    justify-content: flex-start;
}
.grid-view-item.text-align--center .product-grid--price,
.grid-view-item.text-align--center .product-grid--title,
.grid-view-item.text-align--center .product-grid--vendor {
    text-align: center;
}
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block {
    justify-content: center;
}
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block form,
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block theme-modal,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block form,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block theme-modal {
    text-align: center;
    justify-content: center;
}
.grid-view-item.text-align--center .product-grid--quick-shop.quick-shop--block .is-loading.btn--underlined,
.grid-view-item.text-align--center .quick-add-wrapper.quick-shop--block .is-loading.btn--underlined {
    justify-content: center;
}
.grid-view-item.text-align--right .product-grid--price,
.grid-view-item.text-align--right .product-grid--title,
.grid-view-item.text-align--right .product-grid--vendor {
    text-align: right;
}
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block {
    justify-content: end;
}
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block form,
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block theme-modal,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block form,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block theme-modal {
    text-align: right;
    justify-content: flex-end;
}
.grid-view-item.text-align--right .product-grid--quick-shop.quick-shop--block .is-loading.btn--underlined,
.grid-view-item.text-align--right .quick-add-wrapper.quick-shop--block .is-loading.btn--underlined {
    justify-content: end;
}
.grid-view-item .grid-view-item-image:not(:last-child) {
    margin-bottom: 1em;
}
.grid-view-item .product-grid--price:not(:last-child),
.grid-view-item .product-grid--rating:not(:last-child),
.grid-view-item .product-grid--title:not(:last-child) {
    padding-bottom: 0.5em;
}
.grid-view-item .product-grid--title + .product-grid--price {
    margin-top: -0.5em;
}
.grid__image {
    display: block;
    margin: 0 auto;
}
.grid__image img {
    margin: 0 auto;
}
.grid-view-item-image {
    overflow: hidden;
    position: relative;
}
.grid-view-item-image .product-card-image--bottom-wrapper {
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, auto));
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 5;
}
.grid-view-item-image .grid-view-item--placeholder .secondary-placeholder-image {
    z-index: 4;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}
.grid-view-item-image .grid-view-item--placeholder:hover .secondary-placeholder-image {
    opacity: 1;
}
.grid-view-item-image .grid-view-item--placeholder.ratio-natural {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.grid-view-item-image .grid-view-item--placeholder.ratio-natural .primary-placeholder-image,
.grid-view-item-image .grid-view-item--placeholder.ratio-natural .secondary-placeholder-image {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}
product-card .grid__image.image-height--natural {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
}
product-card .grid__image.image-height--natural .responsive-image-wrapper {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}
product-card .grid__image.image-height--natural .responsive-image-wrapper.product-card__image--swatch img {
    height: 100%;
}
product-card .grid__image.image-height--natural .responsive-image-wrapper [data-product-card-swatch-image] {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain !important;
}
product-card .grid__image.image-height--natural .product-card__image--secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
@media (max-width: 767px) {
    product-card .grid__image.image-height--natural .product-card__image--secondary {
        display: none;
    }
}
product-card .grid__image.image-height--natural .product-card__image--secondary img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}
.product-card__image {
    align-items: flex-start;
}
.product-card__image--secondary {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-scheme-background-color, var(--body-color));
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .product-card__image--secondary {
        display: none;
    }
}
.grid__image:focus .product-card__image--secondary,
.grid__image:hover .product-card__image--secondary {
    opacity: 1;
}
.product-grid--price,
.product-grid--title {
    word-wrap: break-word;
    font-size: var(--base-font-size);
}
.product-grid--vendor {
    font-size: 12px;
}
.product-grid--price-font-heading,
.product-grid--title-font-heading,
.product-grid--vendor-font-heading {
    font-family: var(--header-font-stack);
    letter-spacing: var(--heading-spacing);
    text-transform: var(--heading-font-case);
    font-weight: var(--header-font-weight);
    font-style: var(--header-font-style);
}
.product-grid--price-font-body,
.product-grid--title-font-body,
.product-grid--vendor-font-body {
    font-family: var(--body-font-stack);
}
.product-grid--price {
    overflow-wrap: break-word;
}
.product-grid--price .money {
    font-size: inherit;
}
.product-grid--price .money.price-line-through.sale-price,
.product-grid--price .money.sale-price {
    color: var(--text-color);
    opacity: 0.4;
}
.product-grid--price .money.price-line-through.sale-price + .money,
.product-grid--price .money.sale-price + .money {
    color: var(--on-sale-color);
}
.product-grid--price .money:not(.sale-price):not(.price-line-through),
.product-grid--price a,
.product-grid--title,
.product-grid--title a {
    color: var(--text-color);
}
.product-grid--title {
    font-weight: 500;
}
.product-grid--title a {
    cursor: pointer;
}
.price-line-through {
    text-decoration: line-through;
}
.price-line-through:not(.sale-price) {
    opacity: 0.4;
    font-weight: 400;
}
.sale-price {
    color: var(--on-sale-color);
}
.money {
    font-size: var(--body-font-size-16-to-em);
}
.grid-image--centered {
    text-align: center;
    display: block;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-mobile {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
        background: 0 0;
        padding: 0;
    }
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-mobile span {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: normal;
        background-color: var(--primary-btn-bg-color-opacity50);
        width: 32px;
        height: 32px;
        padding: 0;
        border-radius: 50%;
        margin: 0;
    }
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-desktop {
        display: none;
    }
}
@media only screen and (min-width: 768px) {
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-mobile {
        display: none;
    }
    .quick-add-wrapper:not(.quick-shop--block) .sold-out-button.sold-out-button-desktop {
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out;
        will-change: transform;
        width: 100%;
    }
}
@media only screen and (min-width: 768px) {
    .grid-view-item:hover .quick-add-wrapper:not(.quick-shop--block) .sold-out-button-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper:not(.quick-shop--block) .sold-out-button-desktop {
        transform: translateY(0);
        opacity: 1;
    }
}
.product-grid--quick-shop.quick-shop--block,
.quick-add-wrapper.quick-shop--block {
    position: relative;
    display: flex;
}
.product-grid--quick-shop.quick-shop--block form,
.quick-add-wrapper.quick-shop--block form {
    width: 100%;
    box-sizing: border-box;
}
.product-grid--quick-shop.quick-shop--block .btn,
.quick-add-wrapper.quick-shop--block .btn {
    width: 100%;
}
.using-mouse .quick-add-button-variants:focus,
.using-mouse .quick-add-button:focus {
    outline: 0;
}
.quick-add-wrapper:not(.quick-shop--block) {
    position: relative;
    width: 100%;
    z-index: 100;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}
.product-card-image--bottom-wrapper,
.product-card-image--bottom-wrapper .quick-add-wrapper {
    pointer-events: none;
}
.product-card-image--bottom-wrapper .quick-add-wrapper a,
.product-card-image--bottom-wrapper .quick-add-wrapper button,
.product-card-image--bottom-wrapper a,
.product-card-image--bottom-wrapper button {
    pointer-events: auto;
}
.quick-add-button-mobile,
.quick-add-button-onboarding-mobile,
.quick-add-button-variants-mobile {
    width: fit-content;
    left: calc(100% - 32px);
    position: relative;
    background: 0 0;
    padding: 0;
    border: 0;
}
.quick-add-button-mobile span,
.quick-add-button-onboarding-mobile span,
.quick-add-button-variants-mobile span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    color: var(var(--color-scheme-text-color), var(--primary-btn-text-color));
    background-color: var(var(--color-scheme-background-color), var(--primary-btn-bg-color));
    transition: all 0.15s ease-in-out 0s;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
}
.quick-add-wrapper:not(.quick-shop--block) .quick-add-button-desktop,
.quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-desktop,
.quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-desktop {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out, color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s;
    will-change: transform;
    width: 100%;
    box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-mobile {
        display: flex;
    }
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-desktop {
        display: none;
    }
}
@media only screen and (min-width: 768px) {
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-mobile,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-mobile {
        display: none;
    }
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-onboarding-desktop,
    .quick-add-wrapper:not(.quick-shop--block) .quick-add-button-variants-desktop {
        display: inline-block;
    }
}
.quick-add-wrapper.quick-shop--block .quick-add-button-desktop,
.quick-add-wrapper.quick-shop--block .quick-add-button-onboarding-desktop,
.quick-add-wrapper.quick-shop--block .quick-add-button-variants-desktop {
    display: inline-block;
}
.quick-add-wrapper.quick-shop--block .quick-add-button-desktop.is-loading.btn--underlined,
.quick-add-wrapper.quick-shop--block .quick-add-button-onboarding-desktop.is-loading.btn--underlined,
.quick-add-wrapper.quick-shop--block .quick-add-button-variants-desktop.is-loading.btn--underlined {
    display: flex;
    width: 100%;
}
.quick-add-wrapper.quick-shop--block .quick-add-button-desktop.is-loading.btn--underlined svg,
.quick-add-wrapper.quick-shop--block .quick-add-button-onboarding-desktop.is-loading.btn--underlined svg,
.quick-add-wrapper.quick-shop--block .quick-add-button-variants-desktop.is-loading.btn--underlined svg {
    width: auto;
}
@media only screen and (min-width: 768px) {
    .grid-view-item:has(.quick-shop--block) .grid-view-item-image:hover .quick-add-wrapper .quick-add-button-desktop,
    .grid-view-item:has(.quick-shop--block) .grid-view-item-image:hover .quick-add-wrapper .quick-add-button-onboarding-desktop,
    .grid-view-item:has(.quick-shop--block) .grid-view-item-image:hover .quick-add-wrapper .quick-add-button-variants-desktop,
    .grid-view-item:not(:has(.quick-shop--block)):hover .quick-add-wrapper .quick-add-button-desktop,
    .grid-view-item:not(:has(.quick-shop--block)):hover .quick-add-wrapper .quick-add-button-onboarding-desktop,
    .grid-view-item:not(:has(.quick-shop--block)):hover .quick-add-wrapper .quick-add-button-variants-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper .quick-add-button-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper .quick-add-button-onboarding-desktop,
    .using-keyboard .grid-view-item:focus-within .quick-add-wrapper .quick-add-button-variants-desktop {
        transform: translateY(0);
        opacity: 1;
    }
}
.product-grid--rating {
    font-size: 12px;
}
.color-swatch--block [data-product-card-swatch-color-name] {
    font-size: 12px;
    margin-bottom: 2px;
}
.color-swatch--block .card-color-swatch--wrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swiper-wrapper {
    padding: 2px;
    box-sizing: border-box;
    height: auto;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    width: fit-content;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swiper-wrapper .swiper-slide:last-child {
    margin-right: 0 !important;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    z-index: 100;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-color: var(--body-color);
    box-shadow: none;
    color: currentColor;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next svg {
    width: 20px;
    height: 20px;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--body-color);
    color: currentColor;
    box-shadow: none;
}
.color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    transform: translateX(-100%);
    pointer-events: none;
    background-image: linear-gradient(to right, rgba(var(--color-scheme-background-rgb), 0) 0, rgba(var(--color-scheme-background-rgb), 1) 100%);
}
.color-swatch--block .card-color-swatch--wrapper.swatch-no-slider {
    display: flex;
}
.color-swatch--block .card-color-swatch--wrapper.swatch-no-slider .swiper-wrapper {
    width: fit-content;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border-radius: 50%;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    border: 1px solid var(--text-color-transparent25);
    padding: 1px;
    background-size: cover;
    width: var(--inline-icon-size);
    height: var(--inline-icon-size);
    z-index: 1;
    cursor: pointer;
    margin: 0;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    box-sizing: content-box;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out {
    width: 19px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--body-color);
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--text-color-transparent25);
}
@media only screen and (max-width: 767px) {
    .color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input:after {
        position: absolute;
        content: "";
        top: -10px;
        right: -10px;
        left: -10px;
        bottom: -10px;
        z-index: 40;
    }
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--body-color);
    box-shadow: 0 0 0 1px currentColor;
    padding: 0 !important;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--body-color);
    box-shadow: 0 0 0 1px currentColor;
    padding: 0 !important;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.card-color-swatch-input--placeholder {
    background-color: #969696;
}
.color-swatch--block .card-color-swatch--wrapper .card-color-swatch-input--wrapper button.card-color-swatch-input.square {
    border-radius: 0;
}
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-primary-background);
}
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--white .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-primary-background);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border: 1px solid var(--color-scheme-light-text-transparent25);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--color-scheme-light-background);
    box-shadow: 0 0 0 1px var(--color-scheme-light-text);
    padding: 0 !important;
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--color-scheme-light-background);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--color-scheme-light-text-transparent25);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--color-scheme-light-background);
    box-shadow: 0 0 0 1px var(--color-scheme-light-text);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-scheme-light-background);
}
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--light .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-scheme-light-background);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border: 1px solid var(--color-scheme-feature-text-transparent25);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--color-scheme-feature-background);
    box-shadow: 0 0 0 1px var(--color-scheme-feature-text);
    padding: 0 !important;
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--color-scheme-feature-background);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--color-scheme-feature-text-transparent25);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--color-scheme-feature-background);
    box-shadow: 0 0 0 1px var(--color-scheme-feature-text);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-scheme-feature-background);
}
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--accent .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-scheme-feature-background);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input {
    border: 1px solid var(--color-scheme-dark-text-transparent25);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.swatch-selected:not(.sibling-hover--active) {
    border: 2px solid var(--color-scheme-dark-background);
    box-shadow: 0 0 0 1px var(--color-scheme-dark-text);
    padding: 0 !important;
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swatch-sold-out-background {
    z-index: 1;
    background-color: var(--color-scheme-dark-background);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input.sold-out .swatch-sold-out.swach-sold-out-foreground {
    z-index: 2;
    background-color: var(--color-scheme-dark-text-transparent25);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .card-color-swatch-input--wrapper button.card-color-swatch-input:hover {
    border: 2px solid var(--color-scheme-dark-background);
    box-shadow: 0 0 0 1px var(--color-scheme-dark-text);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next {
    background-color: var(--color-scheme-dark-background);
}
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:active,
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:focus,
.color-scheme--dark .color-swatch--block .card-color-swatch--wrapper.swiper .swatch-swiper-button--next:hover {
    background-color: var(--color-scheme-dark-background);
}
.badge {
    transition: all 0.2s ease-in-out;
    opacity: 1;
}
.sale-badge {
    background: var(--sale-badge-color);
}
.sold-out-badge {
    background: var(--sold-out-badge-color);
}
.preorder-badge {
    background: var(--preorder-badge-color);
}
.custom-badge {
    background: var(--custom-badge-color);
    max-width: calc(100% - 30px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-badge,
.preorder-badge,
.sale-badge,
.sold-out-badge {
    color: var(--badge-font-color);
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    padding: 5px 8px;
    text-transform: uppercase;
    z-index: 5;
    position: absolute;
    top: 15px;
    left: 15px;
}
.aspect-ratio:not(.quick-view-media) {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.aspect-ratio:not(.quick-view-media) img,
.aspect-ratio:not(.quick-view-media) svg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.aspect-ratio--tall:not(.quick-view-media) {
    padding-bottom: 150%;
}
.aspect-ratio--wide:not(.quick-view-media) {
    padding-bottom: 75%;
}
.aspect-ratio--square:not(.quick-view-media) {
    padding-bottom: 100%;
}
.image-offer-container--is-link img {
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
    transition: border-color 0.25s ease-out;
}
.rating-label {
    margin-bottom: 5px;
}
.rating-icons {
    display: flex;
    flex-wrap: wrap;
}
.quick-view-drawer .rating-icons {
    justify-content: center;
}
.rating-icons__icon {
    width: 24px;
    margin-bottom: 3px;
    margin-right: 4px;
}
.rating-icons__icon--half {
    position: relative;
}
.rating-icons__icon--half > div {
    position: absolute;
    width: 100%;
}
.rating-icons__icon--half .rating-icons__image--full {
    clip: rect(0 12px 24px 0);
    z-index: 1;
}
.js-qty {
    position: relative;
    margin-bottom: 1em;
    max-width: 124px;
    min-width: 75px;
    overflow: visible;
}
.js-qty input {
    display: block;
    background: 0 0;
    text-align: center;
    width: 100%;
    max-height: 44px;
    padding: 12px 0;
    margin: 0;
}
.js-qty__adjust {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    border: 0 none;
    background: 0 0;
    text-align: center;
    overflow: hidden;
}
.js-qty__adjust .fallback-text {
    display: none;
}
.js-qty__adjust--plus {
    right: 0;
}
.js-qty__adjust--minus {
    left: 0;
}
@media (max-width: 767px) {
    #ThemeModal.is-quick-view {
        position: fixed;
        top: unset !important;
        left: 0 !important;
        right: 0;
        bottom: 0;
        opacity: 1 !important;
        visibility: hidden !important;
        max-height: calc(100vh - 20px);
        transform: translateY(100vh) scale(1) !important;
        transition: all 0.4s ease-in;
    }
    body.theme-modal-open #ThemeModal.is-quick-view {
        transition: all 0.4s ease-out;
        transform: translateY(0) scale(1) !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0;
    }
}
[data-quick-view-product] .product-single-wrapper .product-single {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 15px;
}
@media (min-width: 768px) {
    [data-quick-view-product] .product-single-wrapper .product-single {
        flex-direction: row;
        gap: 20px;
    }
    [data-quick-view-product] .product-single-wrapper .product-single.product-sticky-wrapper {
        position: relative;
    }
    [data-quick-view-product] .product-single-wrapper .product-single.product-sticky-wrapper .product-sticky {
        height: fit-content;
        position: sticky;
        top: 40px !important;
        z-index: 2;
    }
    [data-quick-view-product] .product-single-wrapper .product-single.product-sticky-wrapper .product-sticky.product-form-wrapper {
        top: 40px !important;
    }
}
[data-quick-view-product] .product-single-wrapper .product-single [data-product-media-wrapper] {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}
@media (min-width: 768px) {
    [data-quick-view-product] .product-single-wrapper .product-single [data-product-media-wrapper] {
        grid-column: 1/2;
        grid-row: 1/2;
    }
}
[data-quick-view-product] .product-single-wrapper .product-single .quick-view-view-more-wrapper {
    display: block;
    margin-top: 15px;
}
@media (min-width: 768px) {
    [data-quick-view-product] .product-single-wrapper .product-single.product-media--right {
        flex-direction: row-reverse;
    }
}
.reviews-star-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.reviews-star-rating.text-align--center {
    justify-content: center;
}
.reviews-star-rating.text-align--right {
    justify-content: flex-end;
}
.quick-view-drawer .reviews-star-rating {
    justify-content: center;
}
.reviews-star-rating__stars {
    display: flex;
    gap: calc(5px - 1px);
}
@media only screen and (max-width: 767px) {
    .social-sharing {
        position: relative;
        width: 100%;
        bottom: 0;
        right: 0;
        text-align: left;
    }
}
.social-sharing .h5,
.social-sharing h5 {
    text-transform: uppercase;
    font-size: 11px;
}
.social-sharing a {
    transition: all 0.15s ease-in-out 0s;
    display: inline-block;
    margin-bottom: -12px;
}
.social-sharing a:first-of-type {
    margin-left: -12px;
}
.drawer .social-sharing a:first-of-type {
    margin-left: 0;
}
@media only screen and (max-width: 1200px) {
    .social-sharing {
        bottom: 0;
        position: relative;
        right: 0;
        text-align: left;
    }
}
.stock-indicator-bar {
    display: flex;
    align-items: center;
    margin-top: 5px;
    position: relative;
    height: 8px;
    background-color: var(--color-scheme-text-color-transparent10, var(--text-color-transparent10));
    border-radius: 50px;
    padding-left: 2px;
}
.stock-indicator-bar .bar {
    height: calc(8px / 2);
    border-radius: 50px;
}
@media screen and (prefers-reduced-motion: no-preference) {
    .stock-indicator-animations:not(.animate-bar) .stock-indicator-bar > .bar {
        width: calc(100% - 2px) !important;
    }
    @keyframes barExpands {
        0% {
            width: calc(100% - 2px);
        }
    }
    .stock-indicator-animations.animate-bar .stock-indicator-bar > .bar {
        animation: barExpands 1.2s ease-in-out;
    }
}
div[data-updates-on-change]:has(stock-level-indicator) {
    display: none;
}
div[data-updates-on-change]:has(stock-level-indicator):has(div.stock-indicator-wrapper) {
    display: block;
}
stock-level-indicator .stock-indicator-wrapper.hidden {
    display: none;
}
stock-level-indicator .stock-level-message {
    display: flex;
    align-items: center;
}
stock-level-indicator .stock-level-message p {
    line-height: normal;
    margin: 0;
}
stock-level-indicator .icon-dot-outline {
    margin-right: 10px;
}
stock-level-indicator .icon-dot-outline .icon-dot {
    flex: 0 0 auto;
}
.swiper-pagination-arrows {
    position: absolute;
    z-index: 1;
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--body-color-transparent50);
}
@media screen and (min-width: 768px) {
    .swiper-pagination-arrows {
        right: 20px;
        bottom: 20px;
    }
}
.swiper-pagination-arrows__next,
.swiper-pagination-arrows__prev {
    cursor: pointer;
}
.swiper-pagination-arrows__next:not(.swiper-button-lock),
.swiper-pagination-arrows__prev:not(.swiper-button-lock) {
    display: flex;
}
.swiper-button--next,
.swiper-button--prev {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 40px);
    width: 44px;
    height: 44px;
    padding: 12px;
    z-index: 9;
}
.swiper-button--prev {
    left: -25px;
}
@media screen and (min-width: 768px) {
    .product-page-related-products .swiper-button--prev {
        left: 5px;
    }
}
.swiper-button--next {
    right: -25px;
}
@media screen and (min-width: 768px) {
    .product-page-related-products .swiper-button--next {
        right: 5px;
    }
}
.swiper-button-disabled {
    cursor: auto;
}
@media screen and (max-width: 767px) {
    .swiper-button--prev {
        left: 0;
    }
    .product-page-related-products .swiper-button--prev {
        left: 0;
    }
    .recently-viewed-products .swiper-button--prev {
        left: -15px;
    }
    .swiper-button--next {
        right: 0;
    }
    .product-page-related-products .swiper-button--next {
        right: 0;
    }
    .recently-viewed-products .swiper-button--next {
        right: -15px;
    }
}
.swiper-pagination {
    position: static;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 10px;
    background: 0 0;
    border: 1px solid;
    border-color: var(--color-scheme-border-color, var(--border-color));
    opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background: var(--text-color);
}
.pswp__button {
    opacity: 1;
}
.pswp__button .pswp__icn {
    -webkit-filter: drop-shadow(1px 1px 3px var(--pswp-icon-color-secondary));
    filter: drop-shadow(1px 1px 3px var(--pswp-icon-color-secondary));
    top: 12px;
    left: 12px;
}
grid-slider {
    display: block;
    width: 100%;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}
@media screen and (prefers-reduced-motion: no-preference) {
    [data-grid-slider-wrapper] .swiper-btn--wrapper {
        transition: opacity 0.2s ease-in-out;
    }
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__none {
    display: none;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__right {
    right: 15px;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right {
    width: 100%;
    justify-content: space-between;
}
@media screen and (prefers-reduced-motion: no-preference) {
    [data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--next,
    [data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--prev {
        transition: transform 0.2s ease-out;
    }
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--prev {
    left: 0;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--next {
    right: 0;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__above {
    position: relative;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 5px;
    margin: 15px 0;
    transition: opacity 0.4s ease-in 0.5s;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper.swiper-btn-layout__above:has(.swiper-button-lock) {
    display: none;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--next,
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--prev {
    pointer-events: all;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--next.swiper-button-disabled,
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--prev.swiper-button-disabled {
    cursor: auto;
}
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--next.swiper-button-lock,
[data-grid-slider-wrapper] .swiper-btn--wrapper .swiper-button--prev.swiper-button-lock {
    display: none;
}
[data-grid-slider-wrapper].swiper-initialized .swiper-btn--wrapper.swiper-btn-layout__above {
    opacity: 1;
}
[data-grid-slider-wrapper]:hover .swiper-btn--wrapper:not(.swiper-btn-layout__above) {
    opacity: 1;
}
[data-grid-slider-wrapper]:hover .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--prev {
    transform: translateX(100%);
}
[data-grid-slider-wrapper]:hover .swiper-btn--wrapper.swiper-btn-layout__left-and-right .swiper-button--next {
    transform: translateX(-100%);
}
[data-grid-slider-wrapper] .swiper-scrollbar {
    background: var(--border-color);
}
[data-grid-slider-wrapper] .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: relative;
    top: 30px;
    margin-bottom: 30px;
}
[data-grid-slider-wrapper] .swiper-scrollbar-drag {
    background: var(--text-color);
}
.color-scheme--accent [data-grid-slider-wrapper] .swiper-scrollbar,
.color-scheme--dark [data-grid-slider-wrapper] .swiper-scrollbar,
.color-scheme--light [data-grid-slider-wrapper] .swiper-scrollbar {
    background: var(--color-scheme-border-color);
}
.color-scheme--accent [data-grid-slider-wrapper] .swiper-scrollbar-drag,
.color-scheme--dark [data-grid-slider-wrapper] .swiper-scrollbar-drag,
.color-scheme--light [data-grid-slider-wrapper] .swiper-scrollbar-drag {
    background: var(--color-scheme-text-color);
}
.text-with-icon .text-with-icon--content {
    display: flex;
    gap: 10px;
}
.text-with-icon .text-with-icon--content a.link {
    color: var(--text-color);
    text-decoration: none;
}
.text-with-icon .text-with-icon--content .text-with-icon--icon {
    display: flex;
    align-items: center;
    align-self: center;
    height: 100%;
    position: relative;
    left: 0;
    top: 50%;
}
.text-with-icon .text-with-icon--content .text-with-icon--icon .responsive-image-wrapper {
    height: 100%;
}
.text-with-icon .text-with-icon--content .text-with-icon--text {
    display: inline;
    word-break: break-word;
    line-height: normal;
}
.text-with-icon .text-with-icon--content .text-with-icon--icon.link:hover + .text-with-icon--text .animated-link--item {
    background-position: left bottom, left bottom;
    background-size: 100% 1px, 100% 1px;
}
body.theme-modal-open {
    overflow: hidden;
    height: 100%;
}
#ThemeModal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    z-index: 1500;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
body.theme-modal-open #ThemeModal {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
theme-modal {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
#ThemeModal [data-modal-content] {
    position: relative;
    max-height: 90dvh;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    color: var(--text-color);
    background-color: var(--body-color);
}
@media (min-width: 768px) {
    #ThemeModal [data-modal-content] {
        max-height: 80vh;
    }
}
#ThemeModal [data-modal-content]::-webkit-scrollbar {
    width: 3px;
}
#ThemeModal [data-modal-content]::-webkit-scrollbar-track {
    background-color: transparent;
}
#ThemeModal [data-modal-content]::-webkit-scrollbar-thumb {
    background-color: transparent;
}
#ThemeModal [data-modal-content].scrolling::-webkit-scrollbar-track {
    background-color: var(--text-color-transparent10);
}
#ThemeModal [data-modal-content].scrolling::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--text-color-transparent30);
}
#ThemeModal [data-modal-content] .theme-modal--inner {
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 40px;
}
#ThemeModal [data-modal-content] .button-unstyled {
    background-color: var(--body-color);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
}
@media (min-width: 768px) {
    #ThemeModal [data-modal-content] .button-unstyled {
        top: 10px;
        right: 10px;
    }
}
#ThemeModal [data-modal-content] .theme-modal-header {
    display: flex;
    max-width: 100%;
    align-items: center;
}
#ThemeModal [data-modal-content] .theme-modal-header .h2,
#ThemeModal [data-modal-content] .theme-modal-header h2 {
    margin: 0;
}
#ThemeModal [data-modal-content] [data-modal-body] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
}
#ThemeModal [data-modal-content] [data-modal-body] iframe,
#ThemeModal [data-modal-content] [data-modal-body] img,
#ThemeModal [data-modal-content] [data-modal-body] video {
    max-width: 100%;
}
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h1,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h2,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h3,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h4,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h5,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description .h6,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h1,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h2,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h3,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h4,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h5,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description h6,
#ThemeModal [data-modal-content] [data-modal-body] .modal-description p {
    margin: 0;
}
#ThemeModal [data-modal-content] [data-modal-body] p:last-of-type {
    margin-bottom: 0;
}
theme-parallax {
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
}
theme-parallax .parallax-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    will-change: transform;
}
.announcement_bar animated-background-text-colors {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.announcement_bar animated-background-text-colors .announcement_block {
    grid-column: 1/2;
    grid-row: 1/2;
}
.announcement_bar animated-background-text-colors ul#sm-icons {
    display: none;
}
.announcement_bar animated-background-text-colors .announcement_text {
    display: inline-block;
}
.announcement_bar animated-background-text-colors .announcement_text {
    padding-top: 8px;
    padding-bottom: 8px;
}
.announcement_bar animated-background-text-colors.announcements_only .announcement_block {
    display: grid;
}
.announcement_bar animated-background-text-colors.announcements_only .announcement_wrapper {
    grid-row: 1/2;
}
.announcement_bar animated-background-text-colors.announcements_only .announcement_text {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .announcement_bar animated-background-text-colors.announcements_only .announcement_text {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media screen and (min-width: 768px) {
    .announcement_bar animated-background-text-colors.announcements_icons_only ul#sm-icons {
        grid-column: 1/2;
        grid-row: 1/2;
        display: flex;
        justify-content: flex-end;
        padding-left: calc(60px - calc((44px - 20px) / 2));
        padding-right: calc(60px - calc((44px - 20px) / 2));
    }
}
.announcement_bar animated-background-text-colors.announcements_and_icons {
    padding-left: 15px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .announcement_bar animated-background-text-colors.announcements_and_icons {
        padding-left: calc(60px - calc((44px - 20px) / 2));
        padding-right: calc(60px - calc((44px - 20px) / 2));
        grid-template-columns: minmax(0, calc(44px * 6)) 1fr minmax(0, calc(44px * 6));
        grid-gap: 60px;
    }
    .announcement_bar animated-background-text-colors.announcements_and_icons .announcement_block {
        grid-column: 2/3;
        min-width: 200px;
    }
    .announcement_bar animated-background-text-colors.announcements_and_icons ul#sm-icons {
        grid-column: 3/4;
        grid-row: 1/2;
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: flex-end;
        align-items: center;
    }
}
.announcement_bar .announcement_wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.announcement_bar animated-background-text-colors * {
    color: inherit;
}
.announcement_bar .announcement_block {
    font-size: var(--announcement-text-size);
    letter-spacing: var(--announcement-text-spacing);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.02, 0.01, 0, 0.95);
}
.announcement_bar .announcement_block.active {
    opacity: 1;
    z-index: 1;
    transition-delay: 0.35s;
}
.announcement_bar animated-background-text-colors {
    transition: all 0.7s cubic-bezier(0.02, 0.01, 0, 0.95), padding 1ms;
}
.announcement_bar ul#sm-icons {
    margin: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    row-gap: 8px;
}
.announcement_bar ul#sm-icons li {
    list-style-type: none;
    margin: 0;
}
.announcement_bar ul#sm-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
}
.announcement_bar ul#sm-icons svg {
    width: 20px;
    height: 20px;
}
[data-search-dropdown-open] .announcement_bar {
    position: relative;
    z-index: 1001;
}

.product-card .jdgm-prev-badge__text {
  font-size: 12px;
}
