/** Shopify CDN: Minification failed

Line 583:14 Unexpected ")"

**/
#preview-bar-iframe {
    display: none;
}

:root {
    --fifty: 50;
    --fourty: 40;
    --thirty: 30;
    --twentwo: 22;
    --eighteen: 18;

    /* font sizes pt == px */
    --pt-50: calc(var(--fifty) * 1px);
    --pt-40: calc(var(--fourty) * 1px);
    --pt-30: calc(var(--thirty) * 1px);
    --pt-22: calc(var(--twentwo) * 1px);
    --pt-18: calc(var(--eighteen) * 1px);

    /* 
                  --pt-50  @ 1200           <       35 @ 750
        calc((var(--pt-50) / 1200) * 100vw) < calc((35 / 750) * 100vw)
        (35 / 750) * 100) * 1vw 
        fontsize / breakpoint * 100vw = vw units of font size minimum
    */

    --clamp-h1: clamp(35px, min(calc((35 / 750) * 100vw), calc((var(--pt-50) / 1200) * 100vw)), var(--pt-50));
    --clamp-h2: clamp(var(--pt-30), min(calc((var(--thirty) / 750) * 100vw), calc((var(--fourty) / 1200) * 100vw)), var(--pt-40));
    --clamp-h3: clamp(var(--pt-22), min(calc((var(--twentwo) / 750) * 100vw), calc((var(--thirty) / 1200) * 100vw)), var(--pt-30));
    --clamp-h4: clamp(var(--pt-18), min(calc((var(--eighteen) / 750) * 100vw), calc((var(--twentwo) / 1200) * 100vw)), var(--pt-22));
    /* --font-h1: clamp(35px, 4vw, var(--pt-50)); */
    --font-h1: var(--clamp-h1);
    --font-h2: var(--clamp-h2);
    --font-h3: var(--clamp-h3);
    --font-h4: var(--clamp-h4);
    /* --font-h2: clamp(var(--pt-30), 4vw, var(--pt-40));
    --font-h3: clamp(var(--pt-22), 4vw, var(--pt-30));
    --font-h4: clamp(var(--pt-18), 4vw, var(--pt-22)); */
    --line-height: 1.2em;

    /* font family */
    --font-heading-family: 'Figtree', sans-serif;
    --font-body-family: 'Inter', sans-serif;

    /* colors */
    --light-blue: #E4ECEF;
    --light-blue-hover: #E4ECEF7F;
    --main-blue: #346DA8;
    --main-blue-half: #346DA87F;
    --main-blue-hover: #2D6095;
    --main-blue-tint: #5B8FBF;
    --dark-blue: #122B42;
    --dark-blue-hover: #00182D;
    --body: #4B4B4B;
    --body-light: #4B4B4B7F;
    --divider: #C7CACB;

    /* border-radius */
    --border-radius: 0px 20px 0px 20px;

    /* content */
    --content-padding-sm: 25px;
    --content-padding-md: 50px;
    --content-padding-lg: 100px;
    --content-width: 1240px;
}

main {
    & > *:last-child {
        margin-bottom: 25px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
:is(h1,
h2,
h3,
h4,
h5,
h6) * {
    font-family: var(--font-heading-family);
    line-height: normal;
    letter-spacing: normal;
    margin-top: 0.5em;
    margin-bottom: 0.75em;
}

body,
p,
li,
a,
span:not(:is(p, h1, h2, h3, h4, h5, h6, li, a) > span),
button {
    color: var(--body);
    font-size: var(--pt-18);
    font-family: var(--font-body-family);
    line-height: normal;
    letter-spacing: normal;
    margin: 0;

    &:not(body) {
        margin-top: 0.25em;
        margin-bottom: 1.25em;
    }

    &:is(span:not(:is(p, h1, h2, h3, h4, h5, h6, li, a) > span)) {
        display: inline-block;
    }

    /* span><a><span coverage */
    & span:has(+ a) {
        display: inline !important;

        & + a:has(+ span) {
            display: inline;

            & span {
                display: inline;
            }
    
            & + span {
                display: inline-block;
                margin-top: 0;
            }
        }
    }


    & > a {
        text-decoration: underline;
    }
}

.zero-margins {
    & h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0;
    }

    body,
    p,
    li,
    a,
    span:not(:is(p, h1, h2, h3, h4, h5, h6, li, a) > span),
    button {
        margin: 0;
    }
}

.default-margins {
    & h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-top: 0.5em;
        margin-bottom: 0.75em;
    }

    body,
    p,
    li,
    a,
    span:not(:is(p, h1, h2, h3, h4, h5, h6, li, a) > span),
    button {
        margin-top: 0.25em;
        margin-bottom: 1.25em;
    }
}

.mb-0 {
    margin-bottom: 0 !important;
}

.header-1 {
    font-size: var(--font-h1);
    font-weight: 700;
    line-height: var(--line-height);
    color: var(--dark-blue);

    & > * {
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        color: inherit !important;
    }
}
.header-2 {
    font-size: var(--font-h2);
    font-weight: 700;
    line-height: var(--line-height);
    color: var(--dark-blue);

    & > * {
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        color: inherit !important;
    }
}
.header-3 {
    font-size: var(--font-h3);
    font-weight: 700;
    line-height: var(--line-height);
    color: var(--dark-blue);

    & > * {
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        color: inherit !important;
    }
}
.header-4 {
    font-size: var(--font-h4);
    font-weight: 700;
    line-height: var(--line-height);
    color: var(--dark-blue);

    & > * {
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        color: inherit !important;
    }
}

.paragraph {
    font-size: var(--font-paragraph);
}

.line-height {
    line-height: var(--line-height);
}

a,
button {
    cursor: pointer;
}

:has( > button:focus-visible) {
    /* outline: var(--focused-base-outline);
    outline-offset: 15px; */
    /* box-shadow: var(--focused-base-box-shadow); */
    padding: 5px;
}

a,
.rte a {
    font-size: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--main-blue);

    &:hover {
        color: var(--dark-blue);
    }
}

img {
    display: block;
    width: auto;
    max-width: 100%;
}

/* Logo whitespace Fix */
[src*="aqua-ox-logo.png"] {
    position: relative;
    transform: translateX(-4%); /* need to offset 50 pixels from 1350, 50/1350 roughly 4% */
}
/* SECTION: components */

/* button */
.aqua-ox-btn,
.aqua-ox-btn--secondary,
.aqua-ox-btn--outline {
    background-color: var(--main-blue);
    border: 1px solid transparent;
    border-radius: 8px;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    text-decoration: none;
    font-weight: 600;
    
    &:hover {
        background-color: var(--main-blue-hover);
        color: white !important;
        text-decoration: none;
    }

    &[disabled] {
        cursor: not-allowed;
    }
}

.aqua-ox-btn--secondary {
    background-color: var(--dark-blue);
    border: 1px solid transparent;
    color: white !important;
    
    &:hover {
        color: white !important;
        background-color: var(--dark-blue-hover)
    }
}

.aqua-ox-btn--outline {
    background-color: transparent;
    border: 1px solid var(--divider);
    color: var(--body) !important;
    
    &:hover {
        background-color: var(--light-blue-hover);
        color: var(--body) !important;
    }
}

/* accordion button */
.accordion-btn {
    background: unset;
    border: unset;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    & span {
        pointer-events: none;
    }

    & .opened {
        display: none;
    }
    & .closed {
        display: block;
    }
    
    &.closed {
        & .opened {
            display: none;
        }
        & .closed {
            display: block;
        }
    }
    
    &.opened {
        & .opened {
            display: block;
        }
        & .closed {
            display: none;
        }
    }
}

/* stars */
.stars {
    /* background-image: url({{ 'aqua-ox-stars.png' |  asset_img_url: "original" }}); */
    width: 207px;
    height: 33px;
    display: block !important;
    margin: 20px auto;
}

/* judgeme stars */
.jdgm-widget.jdgm-preview-badge {
    & * {
        display: flex !important;
    }

    & .jdgm-prev-badge {
        gap: 20px;
    }
}

/* judgeme reviews */
.jdgm-rev-widg {
    display: block !important;

    & .jdgm-rev-widg__title {
        display: none;
    }

    & .jdgm-rev-widg__summary {
        display: flex;
        background: var(--light-blue);
        padding: 25px;
        gap: 20px;
        margin: 10px auto 50px;
    }

    & .jdgm-write-rev-link {
        display: none !important;
    }

    & .jdgm-rev-widg__reviews {

        & .jdgm-row-rating {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 20px;
        }

        & .jdgm-rev__author {
            font-family: var(--font-heading-family);
            font-weight: 600;
            font-size: 22px;
            color: var(--dark-blue);

            &::after {
                content: 'Verified Owner';
                display: block;
                color: var(--main-blue);
                font-family: var(--font-body-family);
                font-size: 14px;
                font-weight: 400;
            }
        }

        & .jdgm-rev__timestamp {
            font-size: 14px;
            color: var(--body-light);

        }

        & > * {
            padding: 25px 0px;
            padding-right: 25px;
            border-bottom: 1px solid var(--divider);
        }

        /* & > *:nth-child(even) {
            background: var(--light-blue-hover);
        } */

        & > * + * {
            margin-top: 25px;
        }
    }

    & .jdgm-rev__content {
        margin-top: 25px;
    }

    & .jdgm-paginate {
        margin-top: 25px;
        float: right;

        & a {
            margin: 5px;
        }
    }

    & .jdgm-spinner {
        display: none;
    }
}

/* product on sale text */
.price--on-sale {
    display: flex;

    & .price__badge-sale {
        margin-right: 1em;
        border-radius: 0px;
        line-height: normal;
        padding: 6px 13px;
    }

    & .price__container {
        order: 2;

        & .price__regular {
            color: var(--body);
        }

        & .price__sale {
            color: var(--body-light);

            & .price-item--regular {
                color: inherit;
            }

            & .price-item--sale {
                color: var(--main-blue);
            }
        }
    }
}


/* SECTION: alignment */
.aqua-ox-container {
    padding: var(--content-padding-sm);

    & .aqua-ox-row {
        max-width: var(--content-width);
        margin: 0 auto;
    }
}
@media (min-width: 750px) {
    .aqua-ox-container {
        padding: var(--content-padding-md);
    }    
}
@media (min-width: 1200px) {
    .aqua-ox-container {
        padding: var(--content-padding-md) var(--content-padding-lg);
    }
}


/* SECTION: utilities */
@media (min-width: 750px) {
    .mobile {
        display: none !important;
    }
}

/* SECTION: a11y */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }

    .aqua-ox-btn,
    .aqua-ox-btn--secondary,
    .aqua-ox-btn--outline,
    a,
    .rte a {
        transition-property: background, color;
        transition-duration: 0.3s;
    }

    canvas#cart-count-bubble {
        pointer-events: none;
        position: absolute;
        height: 50vh !important;
        width: 200px !important;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    :root {
        --transform-distance: 15px;
        --transition-duration: 0.8s;
        --opacity: 0;
    }

    :is(.title,
    .header-1,
    .header-2,
    .header-3,
    .header-4,
    .left,
    .right):not(:is(.left,
    .right) :is(.title,
    .header-1,
    .header-2,
    .header-3,
    .header-4,)) {
        transition-property: transform, opacity;
        transition-duration: var(--transition-duration);
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(var(--transform-distance));
        opacity: var(--opacity);
    }

    @media (min-width: 750px) {
        :is(.left):not(:is(.left) :is(.left)) {
            --td: calc(var(--transform-distance) * -1);
            transform: translateX(var(--td));
            opacity: var(--opacity);
        }

        :is(.right):not(:is(.right) :is(.right)) {
            transform: translateX(var(--transform-distance));
            opacity: var(--opacity);
        }
    }

    :is(.cart-items, cart-items) :is(.left, .right),
    .animated {
        transform: translate(0px, 0px) !important;
        opacity: 1 !important;
    }
}