/* airrow fans template */
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--color-gray10);
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

:root {
    --color-black: #000;
    --color-gray1: #111;
    --color-gray2: #222;
    --color-gray3: #333;
    --color-gray4: #444;
    --color-gray5: #777;
    --color-gray6: #999;
    --color-gray7: #aaa;
    --color-gray8: #ccc;
    --color-gray9: #e5e5e5;
    --color-gray10: #f1f1f1;
    --color-grayred: #8c7e7d;
    --color-white: #FFF;
    --color-blue: rgb(2, 74, 146);
    --color-blue2: rgb(0, 55, 111);
    --color-red: rgb(238, 47, 37);
    --color-red2: rgb(239, 45, 36);
    --color-yellow: #ffff00;
    --header-height: 112px;
    --search-bar-height: 0px;
    --page-width: 1600px;
    --content-row-width: 100%;
    --content-row-max-width: 1400px;
    --bs-primary: rgb(236, 26, 37);
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 105px;
        --search-bar-height: 31px;
    }
}

html, button, input, select, textarea {
    color: #232323;
}

html {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #666;
    scroll-padding-top: var(--header-height);
}

* {
    box-sizing: inherit;
}

::-moz-selection {
    background: #003755;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: #003755;
    text-shadow: none;
    color: #fff;
}

#tinymce * {
    color: #000 !important;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #999;
    margin: 2em 0;
    padding: 0;
}

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

html, body {
    min-height: 100%; /* stretch background gradient */
}

body {
    background: var(--color-white);
    font-family: "Open Sans", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    font-size: 16px;
}


body#tinymce {
    font-size: 16px;
}

a {
    color: var(--color-black);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--color-gray5);
}

h1, h2, h3, h4, h5 {
    font-family: lemonde-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--color-blue);
}

/* dark theme */
html[data-bs-theme="dark"] body {
    background: var(--color-black);
    color: var(--color-white);
}

html[data-bs-theme="dark"] a {
    color: var(--color-white);
}

html[data-bs-theme="dark"] a:hover {
    color: var(--color-gray9);
}

html[data-bs-theme="dark"] h1,
html[data-bs-theme="dark"] h2,
html[data-bs-theme="dark"] h3,
html[data-bs-theme="dark"] h4,
html[data-bs-theme="dark"] h5 {
    color: var(--color-white);
}

html[data-bs-theme="dark"] body .accordion-item {
    color: var(--color-white);
    background-color: var(--color-black);
}

html[data-bs-theme="dark"] body .accordion-button:not(.collapsed) {
    color: var(--color-white);
}

html[data-bs-theme="dark"] body .accordion-button {
    color: var(--color-gray9);
}

html[data-bs-theme="dark"] body .accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

/* general content */

.content-row {
    width: var(--content-row-width);
    max-width: var(--content-row-max-width);
    margin: auto;
    position: relative;
}

h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 600;
}

h2 {
    font-family: le-monde-sans-std-2, sans-serif;
    font-size: 26px;
    line-height: 50px;
}

h3 {
    font-size: 22px;
    line-height: 31px;
    font-weight: 400;
}

h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;;
}

h5 {
    font-size: 17px;
    line-height: 26px;
}

img {
    max-width: 100%;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
}


.theme-icon,
.theme-icon-md,
.theme-icon-lg,
.theme-icon-xl {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.theme-icon-md {
    width: 1.2rem;
    height: 1.2rem;
}

.theme-icon-lg {
    width: 2rem;
    height: 2rem;
}

.theme-icon-xl {
    width: 3rem;
    height: 3rem;
}

.imageCaption {
    color: var(--color-black);
    font-size: 15px;
    line-height: 28px;
}

section .imageCaption,
article .imageCaption {
    color: var(--color-gray4);
    font-size: 11px;
    line-height: 18px;
    font-size: 11px;
    font-style: italic;
    padding: 0.5rem 0 2rem 0;
}

.textBlock {
    text-align: left;
    max-width: 950px;
    margin: 0 auto 3rem auto;
}

blockquote {
    border-left: 5px solid var(--color-red);
    padding-left: 20px;
}

section ul li,
article ul li {
    margin-bottom: 1.5em;
}

section img,
article img,
.cms_region img,
.cms_region video {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 28px;
        line-height: 34px;
    }

    h2 {
        font-size: 22px;
        line-height: 30px;
    }

    h2.before {
        font-size: 14px;
        line-height: 22px;
    }

    h3 {
        font-size: 18px;
        line-height: 26px;
    }

    h4 {
        font-size: 16px;
        line-height: 24px;
    }

    h5 {
        font-size: 15px;
        line-height: 24px;
    }

    p {
        font-size: 13px;
        line-height: 24px;
    }

    .imageCaption {
        font-size: 14px;
        line-height: 24px;
    }

}

.button,
.btn,
button.buy,
.MessageForm_Buttons input,
.search-submit {
    display: inline-block;
    vertical-align: middle;
    padding: 1.075rem 2rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-red);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    background-color: var(--color-red);
    color: var(--color-white);
    width: auto;
}

.button:hover,
.btn:hover,
button.buy:hover,
.MessageForm_Buttons input:hover,
.search-submit:hover {
    background-color: var(--color-red2);
    border-color: var(--color-red2);
    color: var(--color-white);
}

.btn-blue {
    background-color: var(--color-blue);
    color: var(--color-black);
}

.btn-red {
    background-color: var(--color-red);
    color: var(--color-black);
    border-color: var(--color-red);
}

.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn-blue:hover {
    background-color: var(--color-blue2);
    color: var(--color-gray8);
}

.btn-red:hover {
    background-color: var(--color-red2);
    color: var(--color-gray8);
}

.btn-black:hover {
    background-color: var(--color-gray1);
    border-color: var(--color-gray1);
    color: var(--color-white);
}

.button:hover,
.MessageForm_Buttons input:hover,
.search-submit:hover {
    text-decoration: none;
    border-color: transparent;
}

div#line-items-order-summary {
    top: var(--header-height);
}

.button.primary,
.seocart_Cart input.button.buttonContinueShopping {
    color: var(--color-gray2);
    background-color: var(--color-black);
    border-color: var(--color-gray2);
}

.button.primary:hover,
.seocart_Cart input.button.buttonContinueShopping:hover {
    background-color: var(--color-gray2);
    color: var(--color-black);
}

.button.primary:active,
.seocart_Cart input.button.buttonContinueShopping:active {
    background-color: var(--color-gray5);
    border-color: var(--color-gray5);
    color: var(--color-black);
}

.button.solid,
.seocart_Cart input.button.buttonRequestQuote,
.MessageForm_Buttons input,
.search-submit {
    color: var(--color-black);
    background-color: var(--color-gray2);
    border-color: var(--color-gray2);
}

.button.solid:hover,
.seocart_Cart input.button.buttonRequestQuote:hover,
.MessageForm_Buttons input:hover,
.search-submit:hover {
    background-color: var(--color-gray5);
    border-color: var(--color-gray5);
}

.button.solid:active,
.seocart_Checkout input.button.buttonRequestQuote:active,
.MessageForm_Buttons input:active {
    background-color: var(--color-gray7);
    border-color: var(--color-gray7);
}

.seocart_Category,
.seocart_Subcategory,
.seocart_Product,
.pageWidth {
    width: 100%;
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
}

.isShoppingCartPage .contentInner {
    padding-right: 1rem;
    padding-left: 1rem;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea,
select {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-gray8);
    height: 48px;
    padding: 11px 20px;
}

textarea {
    height: auto;
}

/* content types */
ul.arrows {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

ul.arrows li {
    position: relative;
    padding-left: 28px;
}

ul.arrows li:before {
    content: '\f054';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0px;
    height: 20px;
    width: 20px;
    font-size: 20px;
    color: var(--color-red);
}

.cms_Sitemap, .ContentType_Search_container {
    margin: 7em auto;
}

/* homepage */
@media only screen and (min-width: 1600px) {
    .home .contentInner.pageWidth {
        max-width: none;
    }
}

.StreamingMedia_QualitySelector {
    display: none;
}

.home .StreamingMedia_container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media only screen and (max-width: 767px) {
    .home .StreamingMedia_container {
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 767px) {
    #ImageGallery4 img.gallery-image {
        height: 60vw;
        width: auto;
        object-fit: cover;
        object-position: left;
    }

    #ImageGallery5 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

#all-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    width: var(--content-row-width);
    max-width: var(--content-row-max-width);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

#all-categories > a {
    display: block;
    text-decoration: none;
    padding: 1rem;
    max-width: 430px;
    border-radius: 25px;
    border: 1px solid var(--color-gray6);
}

#all-categories img {
    width: 100%;
    height: 300px;
    max-height: 300px;
    aspect-ratio: 1;
    object-fit: contain;
}

#all-categories h2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
}

@media only screen and (max-width: 767px) {
    #all-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 419px) {
    #all-categories {
        grid-template-columns: repeat(1, 1fr);
    }
}

.itemPrice .seocart_PricingContainer {
    font-size: 18px;
}

.itemPrice .seocart_PricingContainer br {
    display: none;
}

.productsWrapper {
    padding: 2rem 0;
}

#productTabs button {
    font-size: 22px;
}

@media only screen and (max-width: 440px) {
    #productTabs button {
        font-size: 18px;
    }
}

#productTabs button.nav-link {
    color: var(--color-gray6);
}

#productTabs button.nav-link.active {
    color: var(--color-black);
}

.productsWrapper .item a {
    height: 550px;
}

.productsWrapper .itemImage {
    display: flex;
    padding: 0.5rem;
    position: relative;
    width: 100%;
}

.productsWrapper .itemImage img {
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: opacity 0.33s ease-in-out;
}

.productsWrapper .itemImage img ~ img {
    opacity: 0;
}

.productsWrapper .itemImage:hover img.hasAdditionalImage:first-of-type {
    opacity: 0;
}

.productsWrapper .itemImage:hover img.hasAdditionalImage ~ img {
    opacity: 1;
}

.featured-products {
    height: 500px;
}


.featured-products .product-carousel .product-card {
    padding: 10px;
    text-align: center;
    display: inline-block;
    max-width: 280px;
}

.featured-products .product-carousel .product-card img {
    max-width: 100%;
    height: 200px;
    margin: 0 auto;
    object-fit: contain;
}

.featured-products .product-carousel .product-card .product-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 8px 0;
    height: 45px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.featured-products .product-carousel .product-card .product-price {
    color: #d00;
    font-size: 1.1rem;
    font-weight: bold;
}

.featured-products .slick-dots li.slick-active button::before,
.featured-products .slick-dots li button::before {
    color: var(--color-black);
    font-size: 16px;
}

html[data-bs-theme="dark"] .featured-products .slick-dots li.slick-active button::before,
html[data-bs-theme="dark"] .featured-products .slick-dots li button::before {
    color: var(--color-white);
}

@media only screen and (max-width: 767px) {
    .featured-products button.buy {
        width: auto;
        font-size: 12px;
        white-space: nowrap;
    }
}

article {
    margin: 4rem auto;
}

html body .ContentType_Search_container td.price {
    display: none !important;
}

.cms_Sitemap, .ContentType_Search_container, .cms_FeaturedProducts {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.cms_FeaturedProducts_title {
    text-align: center;
}

.cms_FeaturedProducts_list {
    margin-bottom: 2rem !important;
}

.cms_FeaturedProducts_list {
    display: block;
}

.cms_FeaturedProducts_list tr {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cms_FeaturedProducts_list td {
    display: block;
    width: 24.25% !important;
}

.cms_FeaturedProducts_imglink {
    display: block;
}

.cms_FeaturedProducts_imglink img {
    max-width: 100%;
    height: auto;
}

.cms_FeaturedProducts_item a {
    color: var(--color-white);
    text-decoration: none;
}

.cms_FeaturedProducts_item:hover a {
    color: var(--color-gray6);
    text-decoration: none;
}

.cms_FeaturedProducts .p_itemImg {
    max-height: 310px;
    min-height: 230px;
    height: 15vw !important;
}

.cms_TestimonialsPreview {
    background-image: url('/');
    background-color: var(--color-black);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7em 0;
    background-position: center;
    position: relative;

}

/* message section */
body main div.cms_MessagingSection form {
    background: none !important;
    border: none !important;;
    width: auto !important;;
    max-width: 752px;
    margin: 25px 0 0 !important;;
    padding: 0 0 45px !important;;
}

.MessageSection_MessageForm input[type="text"],
.MessageSection_MessageForm input[type="email"],
.MessageSection_MessageForm input[type="tel"],
.MessageSection_MessageForm input[type="url"],
.MessageSection_MessageForm select,
.MessageSection_MessageForm textarea {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    padding: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #4F4F4F;
}

.MessageSection_MessageForm label {
    display: none;
}

.MessageForm_Buttons {
    text-align: left;
}

.MessageForm_Buttons input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    background: var(--color-red);
    border-radius: 32px;
    flex: none;
    order: 5;
    flex-grow: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #FFFFFF;
    border: 1px solid var(--color-red);
}

body main div.cms_MessagingSection div.MessageForm_InputItem label {
    font-size: 14px !important;
    display: inline-block;
    width: auto;
    text-align: left;
    padding: 5px 0;
    margin: 0;
}

html[data-bs-theme="dark"] body main div.cms_MessagingSection div.MessageForm_InputItem label {
    color: var(--color-white) !important;
}

body main div.cms_MessagingSection div.MessageForm_InputItem br {
    display: none;
}

body div.cms_MessagingSection .MessageSection_MessageForm .MessageForm_InputItem label span {
    font-weight: normal;
}

.MessageSection_MessageForm .MessageForm_InputItem .inputText,
.MessageSection_MessageForm .MessageForm_InputItem .inputSelect {
    width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #cfcfcf !important;
    color: #555 !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

body div.cms_MessagingSection .MessageSection_MessageForm .formFieldRequiredMarker {
    display: none;
}

body div.cms_MessagingSection .MessageSection_MessageForm .inputItem {
    display: none;
}

body div.cms_MessagingSection .MessageSection_MessageForm .MessageForm_InputItem {
    width: 100%;
}

.MessageSection_Container {
    padding: 0.75rem;
}

body .MessageSection_MessageForm .MessageSection_ExtraInfo {
    display: inline;
    color: var(--color-white);
}

@media screen and (max-width: 600px) {
    body main div.cms_MessagingSection form.MessageSection_MessageForm {
        padding-bottom: 15px;
    }

    .MessageSection_MessageForm input[type="submit"] {
        width: 100%;
    }

    body main div.cms_MessagingSection form.MessageSection_MessageForm {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-location {
        padding: 20px;
    }
}

/* testimonials */

.cms_TestimonialsPreview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.33);
    z-index: 1;
}

.cms_TestimonialsPreview * {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

@media screen and (min-width: 1775px) {
    .cms_TestimonialsPreview {
        background-position: center -27vw;
    }
}

.cms_TestimonialsPreview h2 {
    color: var(--color-black);
}

.cms_TestimonialsPreview .image {
    margin: 0.75em auto;
}

.cms_TestimonialsPreview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

/*.cms_TestimonialsPreview .testimonial {
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
}*/
.cms_TestimonialsPreview .testimonial p {
    color: var(--color-black);
    font-size: 15px;
    font-style: italic;
}

.cms_TestimonialsPreview .testimonial p.message {
    height: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* slick custom */
body .slick-prev,
body .slick-next {
    width: 32px;
    height: 32px;
}

body .slick-prev:before,
body .slick-next:before {
    font-size: 32px;
}

.cms_TestimonialsPreview .slick-prev,
.cms_TestimonialsPreview .slick-next {
    transform: translateY(175%);
}

.ContentType_SubPageList_list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cms_region .ContentType_SubPageList_list > div {
    padding: .5rem;
    width: 25%;
    margin-bottom: 2rem;
}

.cms_region .ContentType_SubPageList_listCell.ContentType_SubPageList_listColumn1 {
    transition: all 0.2s ease-in-out;
}

.cms_region .ContentType_SubPageList_listCell.ContentType_SubPageList_listColumn1:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

@media only screen and (max-width: 1100px) {
    .cms_region .ContentType_SubPageList_list > div {
        width: 50%;
    }
}

.ContentType_SubPageList_list .SubPageList_coverImage img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    max-width: 285px;
}

.ContentType_SubPageList_list .SubPageList_summaryPageTitle {
    padding: 0.5rem;
}

.ContentType_SubPageList_list .SubPageList_summaryPageTitle a {
    font-size: 18px;
}

/*.ContentType_SubPageList_list .SubPageList_summaryPageTitle a:after {
    content: 'Read More';
    display: block;
    color: var(--color-blue);
    text-transform: uppercase;
    font-size: 14px;
    padding: 0.5rem 0;
}*/

#contentMain div.pagination a {
    background: #fff;
    text-decoration: none;
}

#contentMain div.pagination a,
#contentMain div.pagination span.current,
#contentMain div.pagination span.ellipsis {
    padding: 7px 12px 5px 11px;
}

div.ContentType_ImageGallery_Summary_title {
    font-weight: normal;
    text-align: left;
    padding: 0;
    font-size: 100%;
}

.ContentType_ImageGallery_Summary_title a,
.SubPageList_summaryPageTitle a,
.ContentType_Image_Summary_title a {
    text-decoration: none;
}

.ContentType_SubPageList_list43 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media only screen and (max-width: 1100px) {
    body .ContentType_SubPageList_list43 .ContentType_SubPageList_listCell {
        width: 50%;
    }
}

@media only screen and (max-width: 700px) {
    body .ContentType_SubPageList_list43 .ContentType_SubPageList_listCell {
        width: 100%;
    }
}

.ContentType_SubPageList_listColumn2 {
    border-left: 1px solid #ddd;
}

.summaryContainer {
    padding: .5em;
}

.summaryContainer img {
    border: 2px solid #000;
    border-radius: 8px;
    max-width: 100%;
}

.thumbnails-adv ul.thumbs img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

#content .summaryContainer a {
    color: #555;
    text-decoration: none;
}

#content .summaryContainer a:hover {
    color: #aaa;
}

#content .summaryContainer .contentLink {
    padding-top: .35em;
}

#content .summaryContainer .contentLink a {
    font-size: 80%;
    font-weight: normal;
    color: #888;
    text-decoration: underline;
    padding: 0 0 0 1.1em;
    background: transparent url(/cirkuit/includes/images/bullets/greyBullet.gif) .25em center no-repeat;
}

#content .summaryContainer .contentLink a:hover {
    text-decoration: none;
}

.summaryTitlebar {
    background: #fff;
    padding: .5em;
    border-bottom: 1px solid #ddd;
}

.summaryTitlebar .summaryTitle {
    color: #343434;
    font-weight: bold;
    font-size: 120%;
}

/* header */
body header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--color-white);
}

.headerTop {
    background-color: var(--color-blue);
    color: var(--color-white);
    position: relative;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 1;
}

.headerTop a {
    color: var(--color-white);
    text-decoration: none;
    padding: .25rem .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.headerTop li.quote a {
    background-color: var(--color-red);
}

.headerTop .cart {
    position: relative;
}

.headerWrap {
    background: var(--color-gray5) url('/images/template/header.gif');
}

.headerWrap::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.headerWrapInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    color: var(--color-black);
}

.headerWrap .left {
    padding: 0.25rem 0;
    flex: 2;
}

.headerWrap .left .logoWrap {
    position: relative;
}

.headerWrap .middle {
    flex: 1;
}

.headerWrap .middle,
.headerWrap .right {
    flex: 1;
}

.mainNav, .preNav {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
}

/* nav */
.mainNav {
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
}

.mainNav li {
    padding: 0 0.33rem;
    position: relative;
    list-style-type: none;
}

.mainNav li:last-child {
    padding-right: 0;
}

.mainNav li a {
    color: var(--bs-body-color);
    text-transform: capitalize;
    font-size: 15px;
    letter-spacing: .033em;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    text-decoration: none;
    display: block;
    font-weight: normal;
}

.mainNav li > a:after {
    content: '';
    display: inline-block;
    background-image: url('/images/template/arrow-nav.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 9px;
    height: 8px;
    line-height: 12px;
    margin-left: 4px;
    vertical-align: middle;
}

.mainNav li:hover a {
    color: var(--color-gray3);
}

.mainNav li:hover > a:after {
    transform: rotateX(180deg);
    margin-top: -7px;
}

.mainNav li > a:only-child:after,
.mainNav li:hover > a:only-child:after,
.mainNav li.mainNavHeader a:after {
    content: '';
    display: none;
}

/* hamburger menu */
header .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 1rem;
    user-select: none;
    margin: 0;
}

header .menu-icon .navicon {
    background: var(--color-gray5);
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 20px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
    background: var(--color-gray5);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: opacity .2s ease-out;
    width: 100%;
    z-index: 4;
}

header .menu-icon .navicon:before {
    top: 5px;
}

header .menu-icon .navicon:after {
    top: -5px;
}

header .menu-icon-close .navicon {
    background: transparent;
}

header .menu-icon-close .navicon:before,
header .menu-icon-close .navicon:after {
    top: 0;
}

header .menu-icon-close .navicon:before {
    transform: rotate(-45deg);
}

header .menu-icon-close .navicon:after {
    transform: rotate(45deg);
}

header .mainNavWrap nav {
    height: 100vh;
    position: fixed;
    width: calc(100% - 50px);
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-body-bg);
    display: block;
    transform: translate3d(100%, 0, 0);
    transition: transform .25s ease-in-out;
    overflow-y: scroll;
    z-index: 3;
    max-width: 350px;
}

header .mainNav li,
header .mainNav li:last-child {
    width: 100%;
}

header .mainNav li hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

header .mainNav > li > a,
header .mainNav > li:last-child > a {
    display: block;
    text-align: left;
}

header .mainNav li > a:after {
    position: absolute;
    right: 1px;
    top: 4px;
    padding: 1rem;
    background-size: 9px 8px;
    background-position: center;
}

header .mainNavWrap ul.mainNav {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
}

header .mainNav ul {
    position: relative;
}

header .mainNavWrap .mobileMenuShow {
    display: block;
}

header .mainNavWrap .social {
    display: flex;
}

header .menu-btn:checked ~ .menu-icon {
    z-index: 3;
}

header .mainNavWrap {
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.2s ease-in-out;
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    visibility: hidden;
}

header .menu-btn:checked ~ .mainNavWrap {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.8);
}

header .menu-icon-close {
    opacity: 0;
    visibility: hidden;
    top: 0;
    position: absolute;
    float: right;
    right: 0;
    padding: 1rem;
    transition: opacity .5s ease-in-out;
    color: var(--bs-body-color);
}

header .menu-btn:checked ~ .mainNavWrap nav {
    transform: translateX(0);
}

header .menu-btn:checked ~ .mainNavWrap .menu-icon-close {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

body.menu-opened {
    max-height: 100vh;
    overflow: hidden;
}

body.menu-opened .mainNav li > a ~ ul {
    display: none;
}

body.menu-opened .mainNav li.hovered > a ~ ul {
    display: block;
    top: 0;
    right: 0;
    left: 0;
}

body.menu-opened .mainNav li:hover > a:after {
    transform: rotateX(0);
    margin: 0;
}

body.menu-opened .mainNav li.hovered > a:after {
    transform: rotateX(180deg);
    margin: 0;
}

/* subnav */
.mainNav ul {
    display: none;
    position: absolute;
    z-index: 3;
    top: 132px;
    left: -10px;
    padding: 0;
    margin: 1rem 0 0 0;
    min-width: 300px;
    border-top: 1px solid var(--color-gray9);
}

.mainNav li:hover > a ~ ul {
    display: block;
}

.mainNav li ul li {
    padding: 0;
}

.mainNav li ul li {
    padding-left: 1rem;
}

.mainNav li ul li:first-child {
    padding-top: 1rem;
}

.mainNav li ul li:last-child {
    border-bottom: 1px solid var(--color-gray9);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.mainNav li ul a,
.mainNav li:hover ul a {
    font-size: 14px;
    text-transform: none;
    background-color: var(--color-white);
    color: var(--color-gray2);
    padding-left: 0.5rem;
    padding-right: calc(1rem + 23px);
}

/* main */
main,
.home main.noCoverImage.isCmsPage {
    margin-top: calc(var(--header-height) + var(--search-bar-height));
}

#cms-cover-image {
    background-position: center top 20%;
    padding-top: 10vw;
    padding-bottom: 10vw;
    background-color: var(--color-blue);
    min-height: 400px;
    -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, .07);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, .07);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#cms-cover-image:after {
    content: '';
    display: block;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDMuNEMxMDUwLjU5IDE4IDEwMTkuNCA4NC44OSA3MzQuNDIgODQuODljLTMyMCAwLTMyMC04NC4zLTY0MC04NC4zQzU5LjQuNTkgMjguMiAxLjYgMCAzLjRWMTQwaDEyODB6IiBmaWxsLW9wYWNpdHk9Ii4zIi8+PHBhdGggZD0iTTAgMjQuMzFjNDMuNDYtNS42OSA5NC41Ni05LjI1IDE1OC40Mi05LjI1IDMyMCAwIDMyMCA4OS4yNCA2NDAgODkuMjQgMjU2LjEzIDAgMzA3LjI4LTU3LjE2IDQ4MS41OC04MFYxNDBIMHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMTI4MCA1MS43NmMtMjAxIDEyLjQ5LTI0Mi40MyA1My40LTUxMy41OCA1My40LTMyMCAwLTMyMC01Ny02NDAtNTctNDguODUuMDEtOTAuMjEgMS4zNS0xMjYuNDIgMy42VjE0MGgxMjgweiIvPjwvZz48L3N2Zz4=);
    background-size: 100% 100px;
    position: absolute;
    pointer-events: none;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    z-index: 10;
    transform: scale(1, 1);
}

body ul#accountBreadcrumbs {
    padding: 1rem 0;
    margin: 0;
}

.hr {
    display: block;
    height: 1px;
    margin: 2rem auto 2rem auto;
    background-color: var(--color-gray8);
    width: 120px;
}

.hr.left {
    margin-left: 0;
}

@media only screen and (max-width: 768px) {
    .hr.left {
        margin-left: auto;
    }
}

/* responsive gallery */
#content .responsive-gallery .gallery-image {
    background-attachment: fixed;
}

#content .responsive-gallery .gallery-caption-wrapper {
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#content .responsive-gallery .gallery-caption-container {
    display: flex;
    width: 100%;
    font-size: inherit;
    justify-content: center;
}

#content .responsive-gallery .gallery-caption-container .gallery-caption {
    width: 100%;
}

html #ImageGallery2 .responsive-gallery {
    min-height: 724px;
    height: calc(80vh - var(--header-height));
}

#content .responsive-gallery .btn {
    font-size: 19px;
    min-width: 200px;
}

#content .responsive-gallery .gallery-caption h1, #content .responsive-gallery .gallery-caption h2, #content .responsive-gallery .gallery-caption p {
    color: var(--color-white);
}

#content .responsive-gallery .gallery-caption h1,
#content .responsive-gallery .gallery-caption .h1 {
    text-shadow: 1px 1px 2px rgb(0 0 0 / .66);
    font-size: 44px;
}

#content .responsive-gallery .gallery-nav-items {
    bottom: 5%;
}

#content .responsive-gallery .gallery-caption::before {
    display: none;
}

#content .responsive-gallery .gallery-nav-item.active {
    background-color: var(--color-gray5);
}

@media screen and (max-width: 1250px) {
    html #ImageGallery4 .responsive-gallery {
        min-height: auto;
        height: auto;
        width: 100%;
        aspect-ratio: 2.63/1;
    }

    body #content .gallery-image.gallery-image {
        background-size: contain;
        background-position: center center;
        background-attachment: unset;
    }
}

@media only screen and (max-width: 767px) {
    #content .responsive-gallery .gallery-caption h1,
    #content .responsive-gallery .gallery-caption .h1 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 470px) {
    #content .responsive-gallery .gallery-caption img {
        max-width: 150px;
        height: auto;
        display: inline-block !important;
        margin: 0 !important;
    }

    #content .responsive-gallery .gallery-caption h1,
    #content .responsive-gallery .gallery-caption .h1 {
        font-size: 14px;
        line-height: 1em;
    }

    #content .responsive-gallery .btn {
        font-size: 14px;
        min-width: unset;
        padding: 0.33em;
    }
}

/* content */
.heading-divider {
    background-image: linear-gradient(180deg, #111133 0%, #1a428a 100%);
}

.heading-divider:after {
    content: '';
    display: block;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMTdweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0zMjAgMjhDMTYwIDI4IDgwIDQ5IDAgNzBWMGgxMjgwdjcwYy04MCAyMS0xNjAgNDItMzIwIDQyLTMyMCAwLTMyMC04NC02NDAtODR6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 100% 95px;
    bottom: 0;
    height: 95px;
    z-index: 1;
    transform: scale(1, -1);
}

.heading-divider h1 {
    font-weight: 600;
    font-size: 80px;
    line-height: 1em;
    color: var(--color-black);
}

@media only screen and (max-width: 768px) {
    .heading-divider h1 {
        font-size: 34px;
    }
}

.contentImageBackground {
    height: 100%;
    background-size: cover;
}

body #tms_breadcrumbs ul.breadcrumbs, ul.breadcrumbs {
    list-style: none;
    margin: 0;
    padding: 1rem 0 0.75rem 0;
}

/* service locator */
.serviceLocator {
    background-color: var(--color-blue);
    border-radius: 5px;
    color: var(--color-black);
    max-width: 300px;
}

body .cms_region .serviceLocator label {
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
    width: 250px;
    border-radius: 0;
    line-height: 1.3em;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: lemonde-sans, sans-serif;
    font-size: 26px;
    text-align: center;
}

body .serviceLocator .locator-form {
    align-items: flex-start;
}

body .serviceLocator .category-input,
body .serviceLocator .city-input,
body .serviceLocator .country-input,
body .serviceLocator .feet-input,
body .serviceLocator .go-input,
body .serviceLocator .state-input {
    width: 100%;
    margin: 5px 0;
}

body .serviceLocator .go-input {
    width: 100%;
    text-align: center;
}

body .serviceLocator .go-input button {
    background-color: var(--color-red);
    color: var(--color-black);
    border-color: var(--color-red);
    border-radius: 3px;
}

body .cms_region .serviceLocator .city-input ~ p {
    font-size: 12px;
    color: var(--color-black);
    margin-top: 0 !important;
    text-indent: 10px;
}

.serviceLocator p.calculator-output-results {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 0 20px 0 10px;
    line-height: normal;
}

.serviceLocator p.calculator-output-disclaimer {
    text-align: center;
    color: #f2f2f2;
    font-size: 11px;
    font-style: italic;
    padding-left: 40px;
    padding-right: 40px;
    line-height: normal;
}

/* tabs */
.cms_region.cms_TabsAccordion {
    width: var(--content-row-width);
    max-width: var(--content-row-max-width);
    margin: 0 auto;
}

.cms_region.cms_TabsAccordion .ui-widget.ui-widget-content,
.seocart_Tabs.ui-widget.ui-widget-content {
    border: 1px solid var(--color-gray10);
}

.cms_region.cms_TabsAccordion .ui-widget,
.seocart_Tabs.ui-widget {
    font-size: 14px;
}

.cms_region.cms_TabsAccordion .ui-widget-header,
.seocart_Tabs .ui-widget-header {
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-gray9);
}

html.productsupport .cms_region.cms_TabsAccordion .scroll-tab-header {
    scroll-margin-top: calc(var(--header-height) + 72px);
    margin-top: 4rem;
}

html.industries .cms_region.cms_NavigationLinks .scroll-tab-header {
    scroll-margin-top: calc(var(--header-height) + 72px);
}

/* cms accordion */
.cms_TabsAccordion .ui-accordion {
    padding-bottom: 2rem;
}

.cms_TabsAccordion .ui-accordion .ui-accordion-header {
    margin-top: 1rem;
}

.cms_TabsAccordion .ui-accordion .ui-state-default,
.cms_TabsAccordion .ui-accordion .ui-widget-content .ui-state-default,
.cms_TabsAccordion .ui-accordion .ui-widget-header .ui-state-default {
    background: var(--color-gray9);
    font-weight: bold;
    color: var(--color-blue2);
}

.cms_TabsAccordion .ui-accordion .ui-accordion-content {
    margin-bottom: 1rem;
}

/* slick gallery */
.cms_ImageGallery_13 {
    background-color: var(--color-gray2);
    color: var(--color-black);
}

.cms_ImageGallery_13 p,
.cms_ImageGallery_13 h2 {
    color: var(--color-black);
}

.cms_ImageGallery_13 .gallery-image-wrap,
.cms_ImageGallery_13 .gallery-caption-wrap {
    display: inline-flex;
    width: 50%;
    justify-content: center;
    align-items: center;
}

body .cms_ImageGallery_13 .slick-slider .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cms_ImageGallery_13 .slick-initialized .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .cms_ImageGallery_13 .gallery-image-wrap,
    .cms_ImageGallery_13 .gallery-caption-wrap {
        width: 100%;
    }
}

/* search */
.cms_Search .search-add-to-cart {
    display: none;
}

.cms_Search td.image .image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cms_Search .search-submit {
    display: inline-block;
    height: 48px;
    vertical-align: top;
}

.cms_Search .search-input-container,
.cms_Search .search-type {
    width: 50%;
}

.cms_Search .search-price {
    display: none;
}

.cms_Search .seocart_SearchPageNumbersContainer {
    clear: both;
}

.cms_Search .search-sort-view {
    margin-bottom: 1rem;
}

.cms_Search .search-sort-view select option[value="pricel"],
.cms_Search .search-sort-view select option[value="priceh"],
.cms_Search .search-sort-view select option[value="popula"],
.cms_Search .searchSortBy select option[value="pricel"],
.cms_Search .searchSortBy select option[value="priceh"],
.cms_Search .searchSortBy select option[value="popula"] {
    display: none;
}

#advancedSearchForm .searchPrice,
#advancedSearchForm .searchPrice ~ .seperator {
    display: none;
}

@media only screen and (max-width: 430px) {
    .search-input-container {
        max-width: 100%;
    }

    body input.search-text {
        max-width: 240px;
    }

    .cms_Search .search-sort-view {
        display: none;
        float: none;
    }

    .seocart_Search_AdvancedInput {
        max-width: 100%;
    }

    .cms_Search .search-sort-view select {
        max-width: 150px;
    }

    .search-price {
        padding-top: .5rem;
    }

    .cms_Search tr.search-item-list td div.image {
        margin: 0 auto;
        max-width: 100%;
        height: auto;
        padding-bottom: 1rem;
    }

    .cms_Search tr.search-item-list td div.image img {
        max-width: 100%;
        height: auto;
    }

    body .cms_Search .ContentType_Search_container .search-item {
        padding: 1rem 0 !important;
        border-bottom: 1px solid #dedede !important;
    }

    body .cms_Search .search-input-container,
    body .cms_Search .search-type {
        width: 100%;
    }
}

/* footer */
#footerSubscribe {
    background-color: var(--color-gray5);
    color: var(--color-white);
}

#footer {
    background-color: var(--color-blue2);
    border-top: 3px solid var(--color-gray9);
    color: var(--color-white);
}

#footer .col,
#footer p,
#footer a {
    color: var(--color-white);
    line-height: 26px;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

#footer li {
    list-style: disc inside;
}

#footer li a {
    font-size: 12px;
}

#footer a:hover {
    color: var(--color-red);
}

#footer ul {
    padding: 0;
    margin: 0;
    list-style-type: disc;
}

#footer ul.social li {
    list-style: none;
}

.newsletterForm .inputText,
.newsletterForm .inputSubmit {
    width: 100%;
    height: 48px;
}

.newsletterForm .inputSubmit {
    padding: 0 1rem;
}

footer .copyright p {
    font-size: 10px;
}

/* responsive */

@media screen and (max-width: 1620px) {
    .pageWidth,
    .cms_Image_wrapAll .cms_Image_textAbove {
        width: 100%;
    }

    .breadcrumbsContainer {
        padding-left: 0.5rem;
    }

    .breadcrumbsContainer {
        padding-right: 0.5rem;
    }

    .cms_Image_wrapAll .cms_Image_textAbove {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 1130px) {

}

@media screen and (max-width: 768px) {

    header .headerWrap .middle {
        position: absolute;
        top: calc(var(--header-height));
        width: 100%;
        left: 0;
        background-color: #fff;
        padding-bottom: 0;
    }

    header .headerWrap .middle .searchWrap {
        max-width: none;
    }

    header .headerWrap {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
        padding: 0;
    }

    header .logoWrap a {
        display: block;
    }

    header .logoWrap img {
        width: 100%;
        height: auto;
    }

    header .headerWrap .left {
        width: 100%;
    }
}

/* homepage */
body .responsive-gallery .gallery-caption-container {
    padding: 3rem 0rem;
}

/* product detail page */
body .seocart_Product .productWrapper {
    flex-wrap: wrap;
    margin-top: 0;
}

.seocart_Product .productImageWrapper img.photo {
    max-width: 100%;
    height: auto;
}

body .seocart_Product .productDetailWrapper {
    padding: 1rem;
}

body .productButtons .button {
    max-width: 375px;
}

.seocart_Product .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--color-black);
}

.seocart_Product .form-floating > .form-control:not(:placeholder-shown) ~ label::after {
    background-color: transparent;
}

@media screen and (max-width: 1130px) {
    body .seocart_CategoryProductContainer .seocart_ProductWrapper {
        margin-bottom: 1rem;
        width: 49%;
        text-align: center;
        padding: 0 0.25rem 0 0.25rem;
    }
}

@media screen and (max-width: 845px) {
    body .seocart_SubcategorySidebar {
        width: calc(180px);
    }

    body .seocart_SubcategoryMain {
        /*width: calc( 100% - 210px );*/
    }
}

@media screen and (max-width: 1023px) {
    .sidebar-filters-subcategories .sidebar-child-category a {
        font-size: 12px;
    }

    .seocart_CategoryProductContainer .seocart_ProductWrapper .seocart_ProductDetails a {
        font-size: 13px;
    }

    body .seocart_CategoryProductContainer .seocart_ProductWrapper img {
        max-width: 100%;
        height: auto;
    }

    body .seocart_CategoryProductContainer .seocart_ProductWrapper .seocart_ProductImage {
        min-height: 125px;
        max-width: 100%;
    }

    body .seocart_CategoryProductContainer .seocart_ProductWrapper .seocart_ProductDetails a {
        font-size: 12px;
    }

    body .seocart_CategoryProductContainer .seocart_ProductWrapper .seocart_ProductDetails {
        padding: 0.5rem 0;
    }
}

@media screen and (max-width: 767px) {
    .headerWrap .left .social {
        display: none;
    }

    .familyOwned {
        margin-bottom: 1rem;
    }

    .cms_TestimonialsPreview .slick-next {
        right: 5px;
    }

    .cms_TestimonialsPreview .slick-prev {
        left: 5px;
    }

    header li.cart .shoppingCartItems {
        display: none !important;
    }

    /* homepage */
    body .serviceLocator {
        margin: 0 auto;
    }

    body #ImageGallery1 .responsive-gallery {
        height: auto;
        min-height: auto;
    }

    body #ImageGallery1 .responsive-gallery .gallery-image,
    body #ImageGallery1 .responsive-gallery .gallery-caption-wrapper {
        position: relative;
    }

    .contentNoSidebar > .cms_Imagesingle .cms_Image_wrapAll.bg-cover .cms_Image_container.cms_Image_fullWidth {
        height: 160vw;
        max-height: 600px;
    }

    section, .cms_Sitemap,
    .ContentType_Search_container,
    .cms_FeaturedProducts {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .textBlock {
        margin-bottom: 1.5rem;
    }

    .cms_FeaturedProducts_list table,
    .cms_FeaturedProducts_list tbody,
    .cms_FeaturedProducts_list tr,
    .cms_FeaturedProducts_list td {
        display: inline-block;
        vertical-align: top;
        width: 100% !important;
    }

    .cms_TestimonialsPreview {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .cms_TestimonialsPreview .testimonial {
        display: none;
    }

    .cms_TestimonialsPreview .testimonial:first-child {
        display: block;
        width: 100%;
    }

    .cms_TestimonialsPreview .testimonial p.message {
        height: 220px;
    }

    .cms_TestimonialsPreview .slick-prev,
    .cms_TestimonialsPreview .slick-next {
        transform: translateY(295%);
        z-index: 3;
    }

    /* message section */
    .MessageForm_InputItem, .inputItem {
        width: 100%;
    }

    body .MessageForm_InputItem.MessageForm_MessageTextItem .inputText {
        width: 95% !important;
    }

    body .MessageSection_AllMessages .MessageSection_Message {
        width: 100%;
        margin-bottom: 5rem !important;
    }

    /* category/cms page header text */
    body .seocart_Category_image_container h1 {
        font-size: 22px;
    }

    /*body .seocart_Category_image_container {
        margin-bottom: -490px;
    }*/
    .cms_Image_wrapAll .cms_Image_textAbove * {
        color: var(--color-gray1);
    }

    /*body .seocart_Subcategory .categoryWrapper.pageWidth {
        padding-top:calc(130px + 1rem);
    }*/
    /*.noCoverImage .cms_Image_wrapAll .cms_Image_textAbove {
        margin-bottom: -580px;
    }
    .noCoverImage .cms_Imagesingle {
        padding-bottom:calc(160px + 1rem);
    }*/

}

/*@media screen and (max-width:470px) {
    body .seocart_Category_image_container {
        margin-bottom: -135vw;
    }
}*/

/* wishlist */
@media only screen and (min-width: 1024px) {
    .allResultsWrapper .seocart_ProductImage .seocart_WishListButtonWrapper button.wishlist {
        font-size: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .seocart_Product .seocart_WishListButtonWrapper {
        position: absolute;
        right: .5em;
        top: 1em;
        z-index: 10;
    }
}

@media only screen and (max-width: 1023px) {
    .allResultsWrapper .seocart_ProductImage .seocart_WishListButtonWrapper button.wishlist {
        opacity: 1;
        visibility: visible;
    }
}

.allResultsWrapper .seocart_ProductImage .seocart_WishListButtonWrapper button.wishlist {
    opacity: 0;
    visibility: hidden;
    color: var(--color-black);
    transform: scale(1);
    transition: transform, opacity;
}

.allResultsWrapper .seocart_ProductImage:hover .seocart_WishListButtonWrapper button.wishlist {
    opacity: 1;
    visibility: visible;
}

.allResultsWrapper .seocart_WishListButtonWrapper button.wishlist:hover {
    transform: scale(1.3);
}

.seocart_WishListButtonWrapper button.wishlist {
    font-variation-settings: 'wght' 400;
    font-weight: 400;
    outline: none;
    background: none;
    border: none;
    padding: 0;
    color: var(--color-black);
    transition: color 0.1s ease-in-out;
    display: flex;
    align-items: center;
}

.seocart_WishListButtonWrapper button.wishlist:before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1664 596q0-81-21.5-143t-55-98.5-81.5-59.5-94-31-98-8-112 25.5-110.5 64-86.5 72-60 61.5q-18 22-49 22t-49-22q-24-28-60-61.5t-86.5-72-110.5-64-112-25.5-98 8-94 31-81.5 59.5-55 98.5-21.5 143q0 168 187 355l581 560 580-559q188-188 188-356zm128 0q0 221-229 450l-623 600q-18 18-44 18t-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z' fill='%23858585'/%3E%3C/svg%3E ");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
    margin-right: 0.5rem;
}

.seocart_WishListButtonWrapper button.wishlist.added:before {
    background-image: url("data:image/svg+xml,%3Csvg width='1792' height='1792' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M896 1664q-26 0-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344q0 221-229 450l-623 600q-18 18-44 18z' fill='%23333333'/%3E%3C/svg%3E");
}

.allResultsWrapper .itemWrapper a .seocart_WishListButtonWrapper button.wishlist:not(.added),
.seocart_Category_wrapper .itemWrapper a .seocart_WishListButtonWrapper button.wishlist:not(.added) {
    transform: scale(1);
    transition: transform, opacity;
}

.allResultsWrapper .itemWrapper a:hover .seocart_WishListButtonWrapper button.wishlist,
.seocart_Category_wrapper .itemWrapper a:hover .seocart_WishListButtonWrapper button.wishlist {
    opacity: 1;
    visibility: visible;
}

.allResultsWrapper .seocart_WishListButtonWrapper,
.seocart_Category_wrapper .seocart_WishListButtonWrapper {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

/* category pages */
.seocart_Category_header_text {
    margin-left: auto;
    margin-right: auto;
}

.seocart_Category_image img {
    width: 1450px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/*.seocart_Category_image img {
    visibility: hidden;
    max-width: 100% !important;
    display: none;
}
.seocart_Category_image {
    background-size: cover;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 500px;
    height: 50vw;
    background-position: center center;
}*/
/*.seocart_Category_image:before {
    display:block;
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.5);
}*/
.seocart_Category_image_container {
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.seocart_Category_image_container * {
    color: #FFF;
}

/*.seocart_Category_image_container span.highlight {
	display:inline-block;
	background-color: rgba(51,51,51,0.6);
	padding:5px;
}
.cms_Imagesingle h1,
.cms_Imagesingle h2,
.cms_Imagesingle p {
    background-color: rgba(51,51,51,0.6);
}*/
/*@media screen and (max-width: 1620px) {
    .seocart_Category_image_container {
        padding:0 1rem;
    }
}*/

.sidebarMobileToggle {
    display: none;
}

.seocart_SubcategorySidebar {
    display: inline-block;
    vertical-align: top;
    width: calc(250px);
    padding: 0.5rem;
    margin-top: 5px;
    margin-left: 15px;
    box-sizing: border-box;
}

.sidebar-categories {
    padding: 0;
}

.sidebar-categories ul {
    padding-left: 0.5rem;
}

.sidebar-categories li {
    list-style-type: none;
}

.categorySectionWrapper h2.subcategory-list-heading {
    line-height: 1;
    padding-bottom: 0.5rem;
}

.categorySectionWrapper h2.subcategory-list-heading a {
    text-decoration: none;
    font-weight: normal;
    display: block;
}

.subcategory-list li {
    width: 100px;
    padding: 0 5px;
    font-size: 12px;
    line-height: 1.15;
}

.subcategory-list li a {
    display: block;
    text-decoration: none;
    text-align: center;
    color: var(--color-gray1);
}

.subcategory-list li a .image {
    width: 90px;
    height: 90px;
    border: 1px solid var(--color-gray5);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.subcategory-list li a:hover {
    color: var(--color-gray5);
}

.subcategory-list li a:hover .image {
    background-color: var(--color-blue);
}

.sidebar-filters-subcategories .sidebar-child-category a,
.sidebar-categories li a,
.seocart_SubcategorySearchByPrice ul li a {
    display: block;
    color: var(--color-gray2);
    text-decoration: none;
    font-size: 14px;
    padding: 0.25rem 0;
}

.sidebar-filters-subcategories .sidebar-child-category.current a,
.sidebar-categories .seocart_NavigationCurrent {
    font-weight: bold;
    color: var(--color-blue);
}

.category-details {
    display: inline-block;
    vertical-align: top;
    /*width: calc(100% - 280px);*/
    padding: 15px;
    box-sizing: border-box;
}

.seocart_SubcategorySearchByPrice {
    display: none;
}

.sidebar-filters-categories {
    margin: 1rem auto;
    position: sticky;
    top: var(--header-height);
    z-index: 1;
    background-color: #FFF;
}

.sidebar-parent-category a {
    font-weight: bold;
    font-size: 16px;
}

.sidebar-filters-subcategories .sidebar-child-category {
    display: inline-block;
}

.sidebar-filters-subcategories .sidebar-child-category a {
    display: inline-block;
    text-transform: uppercase;
    color: var(--color-gray4);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 1.15rem 0.5rem;
}

.sidebar-filters-subcategories .sidebar-child-category:after {
    content: '|';
    display: inline-block;
    margin: 0 0.5em;
    color: var(--color-gray9);
}

.sidebar-filters-subcategories .sidebar-child-category:last-child:after {
    content: '';
}

.sidebar-filters-subcategories .sidebar-child-category.current a,
.sidebar-filters-subcategories .sidebar-child-category a:hover {
    color: var(--color-gray4);
}

.sidebar-filters-subcategories .sidebar-child-category.current a {
    font-weight: bold;
}

.sidebar-filter,
.seocart_SubcategorySearchByPrice ul ul li {
    padding: 2px 0;
}

.sidebar-title {
    font-weight: bold;
    color: #212121;
    margin-bottom: 5px;
}

.sidebar-filter-remove {
    float: right;
    vertical-align: middle;
}

.sidebar-filter-remove img {
    width: 15px;
    height: 15px;
}

.sidebar-filters-set {
    padding-right: 7px;
    margin-bottom: 15px;
}

.sidebar-subtitle,
.seocart_SubcategorySearchByPrice ul li span {
    text-align: left;
    margin-top: 5px;
    color: var(--color-gray2);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    padding-bottom: 5px;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.sidebar-filters-value {
    padding: 0 7px;
}

.sidebar-filters-unset {
    margin-top: 1em;
}

.sidebar-filters-unset a input {
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}

.seocart_SubcategorySearchByPrice ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-filter-group,
.seocart_SubcategorySearchByPrice ul ul {
    padding: 0;
    margin-bottom: 2rem;
    list-style-type: none;
}

.sidebar-filters-set .sidebar-filter {
    position: relative;
    padding-left: 12px;
    padding-right: 0;
    font-size: 14px;
}

.sidebar-filters-set .sidebar-filter a {
    position: absolute;
    padding: 0;
    right: 0;
    top: 0;
}

.sidebar-filters-set .sidebar-filter a.remove-filter::before {
    content: '\f00d';
    right: 0;
    left: auto;
}

.sidebar-filter a,
.seocart_SubcategorySearchByPrice ul li a {
    font-size: 12px;
    text-decoration: none;
    padding: 4px 3px 4px 20px;
    position: relative;
    color: var(--color-gray4);
}

.sidebar-filter a::before,
.seocart_SubcategorySearchByPrice ul li a:before {
    content: '\f096';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0px;
    height: 14px;
    width: 14px;
    font-size: 16px;
    color: var(--color-gray4);
}

.sidebar-filter a:hover,
.seocart_SubcategorySearchByPrice ul li a:hover {
    color: var(--color-gray6);
}

.sidebar-filter a:hover:before,
.seocart_SubcategorySearchByPrice ul li a:hover:before {
    color: var(--color-gray6);
}

.sidebar-filter.set a::before {
    content: '\f046';
    color: #000;
}

.sidebar-filter.set:hover a::before {
    color: #c5c5c5;
}

/*
.sidebar-filter a:hover::after,
.sidebar-filter.set a::after {
    content: 'x';
    position: absolute;
    left: 1px;
    top: -1px;
    height: 10px;
    width: 10px;
}*/

.sidebar-filter a:hover::after {
    color: #000;
}

.sidebar-filter.set a:hover::after {
    color: transparent;
}

.seocart_SubcategoryMain {
    display: inline-block;
    vertical-align: top;
    /*width: calc( 100% - 280px );*/
    width: 100%;
    /*padding-left: 15px;
    padding-bottom:15px;*/
    padding: 15px;
    box-sizing: border-box;
}

.seocart_CategoryProductContainer {
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.seocart_CategoryProductContainer .seocart_ProductWrapper {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.seocart_CategoryProductContainer .seocart_ProductWrapper .seocart_ProductImage {
    min-height: 182px;
    max-width: 500px;
    margin-bottom: 15px;
}

.seocart_CategoryProductContainer .seocart_ProductWrapper .seocart_ProductDetails {
    text-align: center;
    padding: 1rem 0;
}

.seocart_CategoryProductContainer .seocart_ProductWrapper .seocart_ProductDetails a {
    color: var(--color-gray3);
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    text-decoration: none;
}

.seocart_Subcategory_PaginationLinks {
    font-size: 14px;
}

.seocart_Subcategory_PaginationLinks em {
    font-style: normal;
    font-weight: bold;
}

.seocart_Subcategory_PaginationLinks a.seocart_Subcategory_PaginationLinkNumber {
    display: inline-block;
    padding: 1px 3px;
    border-radius: 3px;
    background: rgb(73, 41, 23);
    text-decoration: none;
    color: #FFF;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.13);
}

@media only screen and (max-width: 767px) {
    .seocart_Category_image {
        height: 85vw;
    }

    .sidebarMobileToggle {
        display: block;
        background: #eaeaea;
        color: #212121;
        padding: 10px;
        cursor: pointer;
        text-transform: uppercase;
        margin-bottom: 7px;
        margin-top: 7px;
    }

    body .seocart_SubcategorySidebar {
        display: none;
        width: 100%;
        box-sizing: border-box;
        margin: 1rem auto;
    }

    body .seocart_SubcategoryMain,
    .category-details {
        width: 100%;
        padding: 0;
    }

    td.seocart_Subcategory_PaginationShowing {
        font-size: 14px;
    }

    .seocart_Subcategory_PaginationLinks {
        white-space: nowrap;
    }

    .seocart_Subcategory_PaginationLinks a.seocart_Subcategory_PaginationLinkNumber {
        display: none;
    }

    .seocart_Subcategory_PaginationLinks em {
        margin: 0 2px;
    }

    #hover-zoom-image,
    #hover-zoom-region {
        display: none;
    }

    .seocart_Subcategory_PaginationLinkPrevious,
    .seocart_Subcategory_PaginationLinkNext {
        text-decoration: none;
    }

    .seocart_Subcategory_PaginationLinkPrevious:before,
    .seocart_Subcategory_PaginationLinkNext:before {
        font-family: FontAwesome;
        font-size: 18px;
        color: #eff9ff;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        /* padding: 3px 5px; */
        width: 25px;
        height: 25px;
        display: inline-block;
        text-align: center;
        padding: 5px;
        box-sizing: border-box;
        vertical-align: middle;
        line-height: 18px;
    }

    .seocart_Subcategory_PaginationLinkPrevious:before {
        content: '\f053';
        padding-left: 1px;
    }

    .seocart_Subcategory_PaginationLinkNext:before {
        content: '\f054';
        padding-right: 1px;
    }

    .seocart_Subcategory_PaginationLinkPrevious span,
    .seocart_Subcategory_PaginationLinkNext span {
        display: none;
    }
}


.subcategory-link a {
    font-size: 200%;
    padding: 50px;
}

.subcategory-product-reviews {
    font-size: 0;
    padding: 7px 0;
}

.categoryContentsWrap ul {
    margin: 0;
    padding: 0;
}

.categoryContentsWrap > ul > li {
    border-right: none;
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding: .5em 0 4em 0;
}

.categoryContentsWrap li {
    display: inline-block;
    border-right: 1px solid #FFFFFF;
}

.categoryContentsWrap > ul > li > a {
    display: block;
    font-size: 95%;
    color: #222;
    font-weight: 700;
}

.categoryContentsWrap li a {
    color: #222;
    text-transform: uppercase;
    font-size: 100%;
    text-decoration: none;
    padding: 0.5em;
    display: inline-block;
    outline: none;
    text-align: left;
}

.categoryContentsWrap li ul {
    font-size: 95%;
}

.categoryContentsWrap li ul li {
    display: block;
    width: 100%;
    padding: 0 1em 0 .5em;
    border-left: 1px solid #eee;
    margin-left: .5em;
    line-height: 1.2;
}

.categoryContentsWrap li ul li a {
    display: block;
    text-transform: none;
    color: #999;
    font-weight: 400;
    padding: .25em 0 .25em .5em;
    transition: color 0.25s ease-in-out;
}

.categoryContentsWrap li ul li a:hover {
    color: #555;
}

/* product page */
html.servicerepair .product-images {
    display: none;
}

.seocart_Product {
    margin-bottom: 2rem;
}

.seocart_Product .productWrapper {
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.seocart_Product .productImageWrapper {
    position: relative;
}

.seocart_Product .productDetailWrapper {
    padding: 1rem 1rem 1rem 4rem;
}

.seocart_Product .productDetailDescription img {
    max-width: 100%;
    height: auto;
}

.productAdditionalImageWrapper {
    position: absolute;
    top: 0;
    right: 0;
}

.productAdditionalImageWrapper ul {
    margin: 0;
    padding: 0;
}

.productAdditionalImageWrapper ul li {
    border: 1px solid #FFF;
    border-bottom: 0;
    border-collapse: collapse;
    list-style-type: none;
}

.productAdditionalImageWrapper ul li:last-child {
    border-bottom: 1px solid #FFF;
}

.productAdditionalImageWrapper ul li a,
.productImageWrapper a {
    display: block;
    position: relative;
    cursor: zoom-in;
}

.productAdditionalImageWrapper ul li a.video:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    height: 27px;
    width: 27px;
    background: transparent url(/images/template/video-play.svg) no-repeat center center;
    top: calc(50% - 13.5px);
    left: calc(50% - 13.5px);

}

.seocart_ProductAttributeContainer ~ .userInputFields {
    display: none;
}

.productDetailPriceWrapper > span,
.relatedProductWrapper strong {
    text-transform: uppercase;
    font-size: 11px;
    color: var(--color-gray4);
    letter-spacing: 0.1em;
}

.seocart_PricingContainer {
    font-size: 22px;
    padding: 0.25rem 0 1.5rem 0;
}

.productButtons .button {
    width: 100%;
    margin-bottom: 0.75rem;
    margin-left: 0;
    margin-right: 0;
}

.seocart_Product .seocart_WishListButtonWrapper {
    padding: 1rem 0;
}

.seocart_Product .seocart_WishListButtonWrapper button.wishlist,
.seocart_Subcategory .seocart_WishListButtonWrapper button.wishlist {
    outline: none;
    background: none;
    border: none;
    padding: 0;
    color: var(--color-gray1);
    transition: color 0.1s ease-in-out;
}

.seocart_Product .seocart_WishListButtonWrapper button.wishlist {
    color: var(--color-red);
}

input.seocart_ProductQuantityInput[type="number"] {
    height: 56px;
    margin-right: 1rem;
}

.btn-buy,
button.buy {
    font-size: 16px;
    height: 56px;
    width: 200px;
    max-width: 200px;
    transition: all 0.3s ease-in-out;
}

.btn-buy:after {
    content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23FFFFFF' class='bi bi-chevron-right' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    opacity: 1;
}

.btn-buy strong {
    font-variation-settings: 'wght' 400;
    font-weight: 400;
}

@media screen and (max-width: 767px) {

    .btn.btn-buy:after {
        display: block;
        content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23FFFFFF' class='bi bi-chevron-right' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        opacity: 1;
    }

    .btn.btn-buy:hover:after {
        content: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23B1F347' class='bi bi-chevron-right' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
}

.product-details-overall-rating {
    width: 100%;
}

.product-details-overall-rating strong {
    width: 100%;
    display: block;
}

.product-details-overall-rating strong .product-reviews-average {
    float: right;
    padding-top: 10px;
    padding-right: 10px;
}

.button-review {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 16px;
    width: 333px;
    height: 56px;
    background: #000000;
    border-radius: 32px;

    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    color: #FFFFFF;
    border: none;
}

#submit-review {
    display: none;
}

#submit-review input {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #4F4F4F;
}

#submit-review button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 16px;

    width: 333px;
    height: 56px;
    background: #000000;
    border-radius: 32px;

    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    color: #FFFFFF;
    border: none;
}

#submit-review .error {
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #ccc;
    display: none;
}

.form-container .success {
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #FF0000;
    display: none;
}

#submit-review button:after,
#submit-review button:hover:after {
    display: none !important;
}


.product-review-rating-container .rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
}

.product-review-rating-container .rating > input {
    display: none;
}

.product-review-rating-container .rating > label {
    position: relative;
    width: 1em;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

.product-review-rating-container .rating > label::before {
    content: "\2605";
    position: absolute;
    opacity: 0;
}

.product-review-rating-container .rating > label:hover:before,
.product-review-rating-container .rating > label:hover ~ label:before {
    opacity: 1 !important;
}

.product-review-rating-container .rating > input:checked ~ label:before {
    opacity: 1;
}

.product-review-rating-container .rating:hover > input:checked ~ label:before {
    opacity: 0.4;
}


@media screen and (max-width: 1199px) {
    #submit-review button,
    .button-review {
        width: 100%;
    }

    .product-details-overall-rating strong .product-reviews-average {
        padding-top: 0px;
        margin-top: 5px !important;
    }
}

/*.seocart_Product .seocart_WishListButtonWrapper button.wishlist:before {
    content: '\f08a';
    font-family: FontAwesome;
    color:var(--color-gray1);
    padding-right:0.5rem;
    transition:color 0.1s ease-in-out;
}
.seocart_Product .seocart_WishListButtonWrapper button.wishlist:hover,
.seocart_Product .seocart_WishListButtonWrapper button.wishlist:hover:before {
    color:var(--color-red);
}*/

.seocart_Subcategory .seocart_ProductImage .seocart_WishListButtonWrapper button.wishlist {
    opacity: 0;
    visibility: hidden;
    color: var(--color-red);
    transform: scale(1);
    transition: transform, opacity;
}

.seocart_Subcategory .seocart_ProductImage:hover .seocart_WishListButtonWrapper button.wishlist {
    opacity: 1;
    visibility: visible;
}

.seocart_Subcategory .seocart_WishListButtonWrapper button.wishlist:hover {
    transform: scale(1.3);
}

.seocart_Subcategory .seocart_WishListButtonWrapper {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

.seocart_Subcategory .seocart_ProductImage {
    position: relative;
    display: inline-block;
}

.seocart_Account {
    padding: 2rem 0;
}

.seocart_Account .accountHeader li a:hover {
    display: inline-block;
}

table.checkout_content input[type="text"] {
    min-width: 50%;
}

@media only screen and (min-width: 1024px) {
    .seocart_Subcategory .seocart_ProductImage .seocart_WishListButtonWrapper button.wishlist {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1023px) {
    .seocart_Subcategory .seocart_ProductImage .seocart_WishListButtonWrapper button.wishlist {
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (max-width: 421px) {
    #accountContent.wishlist ul li {
        float: none;
    }
}

section.relatedProductWrapper {
    margin: 4rem 0;
}

.relatedProduct {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.relatedProduct .relatedProductImage img,
.relatedProductsWrapper img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    width: 200px;
    height: 200px;
}

.relatedProduct .relatedProductName a {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-gray3);
    font-size: 13px;
}

/* print styles */
@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }
}


/* search page styling */
@media only screen and (max-width: 430px) {
    #advancedSearchForm .fieldPadding {
        padding: 0.5em;
    }

    #advancedSearchForm .cartSearchInput input[type="text"] {
        width: 70%;
    }
}

/* mini cart */
header li.cart .shoppingCartItems {
    display: none;
    position: absolute;
    right: 13px;
    top: 24px;
    padding-top: 15px;
    z-index: 1000;
    width: 350px;
}

header li.cart:hover .shoppingCartItems {
    display: block;
}

.shoppingCartItemsContainer {
    border: 1px solid var(--color-gray7);
    background: var(--color-gray10);
    border-radius: 10px;
    color: var(--color-black);
}

html[data-bs-theme="dark"] .shoppingCartItemsContainer {
    border: 1px solid var(--color-gray4);
    background: var(--color-gray3);
    color: var(--color-white);
}

.shoppingCartItemsContainer .empty p {
    color: var(--color-gray3);
}

html[data-bs-theme="dark"] .shoppingCartItemsContainer .empty p {
    color: var(--color-gray8);
}

.shoppingCartItemsContainer a.btn {
    justify-content: center;
}

#miniCartPreviewItems table {
    width: 100%;
}

#miniCartPreviewItems table tr td {
    border-bottom: 1px solid var(--color-gray4);
    padding: 0.5em;
    vertical-align: middle;
}

#miniCartPreviewItems table tr td.image a {
    width: 70px;
    height: 90px;
    background-size: contain;
    background-position: center;
}

#miniCartPreviewItems table tr td.details {
    text-align: left;
    position: relative;
}

#miniCartPreviewItems table tr td.details a {
    white-space: normal;
    color: var(--color-gray2);
    display: block;
}

html[data-bs-theme="dark"] #miniCartPreviewItems table tr td.details a {
    color: var(--color-gray9);
}

#miniCartPreviewItems table tr td.details i {
    color: #AAA;
}

#miniCartPreviewItems table tr td span {
    display: block;
}

#miniCartPreviewItems table tr td.details span.name {
    display: block;
    font-size: 14px;
}

#miniCartPreviewItems table tr td.details span.quantity {
    display: block;
    padding: 3px 0;
    font-size: 14px;
}

#miniCartPreviewItems table tr td.details span.price {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

#miniCartPreviewItems table tr td.details a.close {
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    color: var(--color-gray3);
}

#miniCartPreviewItems table tr td.details a.close:hover {
    color: var(--color-gray2);
}

html[data-bs-theme="dark"] #miniCartPreviewItems table tr td.details a.close {
    color: var(--color-gray7);
}

html[data-bs-theme="dark"] #miniCartPreviewItems table tr td.details a.close:hover {
    color: var(--color-gray9);
}

#miniCartPreviewItems a.button {
    font-size: 14px;
    margin: 1rem;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2);
    transition: all 0.05s;
    text-transform: uppercase;
    text-align: center;
    background: #41a1ec;
    background: -moz-linear-gradient(180deg, #afc909 0%, #67802b 80%, #67802b 100%);
    background: -webkit-linear-gradient(180deg, #afc909 0%, #67802b 80%, #67802b 100%);
    background: linear-gradient(180deg, #afc909 0%, #67802b 80%, #67802b 100%);
    border: 1px solid #7a9716;
    color: #fff;
    box-sizing: border-box;
}

#miniCartPreviewItems a.button:hover {
    text-decoration: none;
    box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2);
    color: #fff;
    transform: scale(1.01);

    background: #afc909;
    background: -moz-linear-gradient(180deg, #afc909 0%, #afc909 80%, #afc909 100%);
    background: -webkit-linear-gradient(180deg, #afc909 0%, #afc909 80%, #afc909 100%);
    background: linear-gradient(180deg, #afc909 0%, #afc909 80%, #afc909 100%);
}

#miniCartPreviewItems .empty a.button {
    background: #41a1ec;
    background: -moz-linear-gradient(180deg, #3ba1f0 0%, #0670c5 80%, #0670c5 100%);
    background: -webkit-linear-gradient(180deg, #3ba1f0 0%, #0670c5 80%, #0670c5 100%);
    background: linear-gradient(180deg, #3ba1f0 0%, #0670c5 80%, #0670c5 100%);
    border: 1px solid #1c7dca;
}

#miniCartPreviewItems .empty a.button:hover {
    background: #0670c5;
    background: -moz-linear-gradient(180deg, #0670c5 0%, #0670c5 80%, #0670c5 100%);
    background: -webkit-linear-gradient(180deg, #0670c5 0%, #0670c5 80%, #0670c5 100%);
    background: linear-gradient(180deg, #0670c5 0%, #0670c5 80%, #0670c5 100%);
}

#miniCartPreviewItems .borderArrowTop {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 9px solid var(--color-gray7);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    top: 0;
    right: 7px;
}

html[data-bs-theme="dark"] #miniCartPreviewItems .borderArrowTop {
    border-bottom: 9px solid var(--color-gray4);
}

#miniCartPreviewItems .borderArrowTop:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 8px solid var(--color-gray10);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    top: -3px;
    right: -5px;
}

html[data-bs-theme="dark"] #miniCartPreviewItems .borderArrowTop:after {
    border-bottom: 8px solid var(--color-gray3);
}

#miniCartWrapper {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    z-index: 20000001;
    position: fixed;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.33);
    top: 0;
    bottom: 0;
    height: 100%;
    transition: .2s ease-out background-color;
    text-align: center;
    width: 100%;
}

#miniCartContainer {
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    display: block;
    vertical-align: middle;
    margin-top: 20vh;
}

#miniCart {
    position: relative;
    padding: 25px 15px;
    background: var(--color-gray9);
    max-width: 675px;
    margin: 0 auto;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

html[data-bs-theme="dark"] #miniCart {
    background: var(--color-gray2);
}

html[data-bs-theme="dark"] #miniCartHeader {
    border-bottom: 1px solid var(--color-gray8);
}

html[data-bs-theme="dark"] #miniCartItems .miniCartItemDetails {
    border-right: 1px solid var(--color-gray8);
}

html[data-bs-theme="dark"] #miniCartItems .miniCartItemDetails {
    border-right: 1px solid var(--color-gray8);
}

#miniCartClose {
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 10px;
    z-index: 100;
    line-height: 55px;
}

#miniCartHeader {
    padding: 10px 0;
    text-align: left;
    border-bottom: 1px solid var(--color-gray4);
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 90%;
    text-transform: uppercase;
    color: #00cc00;
}

#miniCartItems {
    display: inline-block;
    width: 59%;
    vertical-align: top;
}

#miniCartDetails {
    display: inline-block;
    vertical-align: top;
    width: 39%;
}

#miniCartItems .miniCartItemRow {
    display: flex;
    align-items: center;
    text-align: left;
}

#miniCartItems .miniCartItemImage {
    flex-grow: 1;
}

#miniCartItems .miniCartItemDetails {
    padding: 10px;
    flex-grow: 99;
    border-right: 1px solid var(--color-gray4);
}

#miniCartTotalItems {
    font-weight: bold;
    margin: 10px 20px;
    border-bottom: 1px dotted var(--color-gray4);
    padding: 10px 0;
}

#miniCartSubtotal, #miniCartSubtotal strong {
    text-transform: uppercase;
    font-weight: bold;
}

#miniCartCheckout a {
    margin: 1rem 0;
}

#miniCartContinueShopping button {
    background: none;
    border: none;
    color: #0670c5;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    outline: none;
}

#miniCartClose button {
    background: none;
    border: none;
    color: #414141;
    font-size: 18px;
    cursor: pointer;
    outline: none;
}

#miniCartPreviewItems .buttonContainer a {
    display: block;
}

@media only screen and ( max-width: 710px ) {
    #miniCartContainer {
        margin-top: 3vh;
    }

    #miniCartItems {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    #miniCartItems .miniCartItemImage img {
        max-height: 100px;
        width: auto;
    }

    #miniCartItems .miniCartItemDetails {
        border-right: none;
    }

    #miniCartDetails {
        width: auto;
    }
}

/* seo-cart checkout styling */
body .checkout-header,
body .pay-separator,
body #loginRegisterModal .nav-item a.active {
    color: var(--color-black);
}

html[data-bs-theme="dark"] body .checkout-header,
html[data-bs-theme="dark"] body .pay-separator,
html[data-bs-theme="dark"] body #loginRegisterModal .nav-item a.active {
    color: var(--color-white);
}

body #loginRegisterModal .nav-item a.active {
    border-color: var(--color-red2);
}

body #loginRegisterModal .nav-item a,
body #loginRegisterModal a.forgot {
    color: var(--color-gray6);
}

body #line-items-order-summary-wrapper,
body .modal-content {
    background-color: var(--color-white);
    color: var(--color-black);
}

html[data-bs-theme="dark"] body #line-items-order-summary-wrapper,
html[data-bs-theme="dark"] body .modal-content {
    background-color: var(--color-black);
    color: var(--color-white);
}

body .modal-content {
    border: 1px solid var(--color-gray4);
}

body .form-floating > label {
    color: var(--color-gray4);
}

.seocart_Cart .btn.disabled,
.seocart_Cart .btn.disabled:hover {
    border-color: var(--color-gray5);
}

.seocart_Cart_QuantityDropdownContainer .btn {
    padding: 0.5rem;
}

/* homepage */
#ImageGallery4 img.gallery-image {
    max-height: 700px;
}

/* catalog featured */
#ImageGallery5 {
    box-shadow: 0 0 1em rgba(0, 0, 0, .25) inset;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#ImageGallery5 .gallery-slide {
    width: 100%;
    display: flex !important;
    justify-content: center;
    gap: 2rem;
}

#ImageGallery5 .gallery-caption-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

/* testimonials */
.cms_CodeSnippet_175 {
    color: var(--color-gray2);
}

.what-people-are-saying {
    max-width: 1400px;
    padding: 0 1em;
    margin: 0 auto;
}

.what-people-are-saying .reviews {
    gap: 32px;
}

.what-people-are-saying .review {
    width: 33%;
    font-size: 17px;
    line-height: 26px;
}

.what-people-are-saying .review p {
    font-size: 17px;
    line-height: 23px;
    height: 150px;
    text-overflow: ellipsis;
}

.what-people-are-saying .review hr {
    margin: 1em 0;
    max-width: 40px;
}

.what-people-are-saying .review .author {
    font-family: 'Inter', sans-serif;
    font-variation-settings: 'wght' 600;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
}

.what-people-are-saying .review .location {
    font-size: 15px;
    line-height: 24px;
}

/* message section */
body main div.cms_MessagingSection form {
    background: none !important;
    border: none !important;;
    width: auto !important;;
    max-width: 752px;
    margin: 25px 0 0 !important;;
    padding: 0 0 45px !important;;
}

.MessageSection_MessageForm input[type="text"],
.MessageSection_MessageForm input[type="email"],
.MessageSection_MessageForm input[type="tel"],
.MessageSection_MessageForm input[type="url"],
.MessageSection_MessageForm select,
.MessageSection_MessageForm textarea {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    padding: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #4F4F4F;
}

.MessageSection_MessageForm label {
    display: none;
}

.MessageForm_Buttons {
    text-align: left;
}

.MessageForm_Buttons input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    background: var(--color-red);
    border-radius: 32px;
    flex: none;
    order: 5;
    flex-grow: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #FFFFFF;
    border: 1px solid var(--color-red);
}

body main div.cms_MessagingSection div.MessageForm_InputItem label {
    font-size: 14px !important;
    display: inline-block;
    width: auto;
    text-align: left;
    padding: 5px 0;
    margin: 0;
}

html[data-bs-theme="dark"] body main div.cms_MessagingSection div.MessageForm_InputItem label {
    color: var(--color-white) !important;
}

body main div.cms_MessagingSection div.MessageForm_InputItem br {
    display: none;
}

body div.cms_MessagingSection .MessageSection_MessageForm .MessageForm_InputItem label span {
    font-weight: normal;
}

.MessageSection_MessageForm .MessageForm_InputItem .inputText,
.MessageSection_MessageForm .MessageForm_InputItem .inputSelect {
    width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #cfcfcf !important;
    color: #555 !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

body div.cms_MessagingSection .MessageSection_MessageForm .formFieldRequiredMarker {
    display: none;
}

body div.cms_MessagingSection .MessageSection_MessageForm .inputItem {
    display: none;
}

body div.cms_MessagingSection .MessageSection_MessageForm .MessageForm_InputItem {
    width: 100%;
}

.MessageSection_Container {
    padding: 0.75rem;
}

body .MessageSection_MessageForm .MessageSection_ExtraInfo {
    display: inline;
    color: var(--color-white);
}

@media screen and (max-width: 600px) {
    body main div.cms_MessagingSection form.MessageSection_MessageForm {
        padding-bottom: 15px;
    }

    .MessageSection_MessageForm input[type="submit"] {
        width: 100%;
    }

    body main div.cms_MessagingSection form.MessageSection_MessageForm {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-location {
        padding: 20px;
    }
}