#miniCartModalFlyout {
    display: none;
}
 :root, html, body, html body {
    font-size: 16px;
}

:root {
    --margin: 1.5rem;

    @media (width <= 750px) {
        --margin: .75rem;
        --side-margin: var(--margin);
    }

    --margin-x2: calc(var(--margin) * 2);
    --half-margin: calc(var(--margin) / 2);
    --quarter-margin: calc(var(--margin) / 4);
    --black: #000;
    --black-1: color-mix(in srgb, var(--black) 90%, var(--white));
    --black-2: color-mix(in srgb, var(--black) 80%, var(--white));
    --border-color-on-black-bg: color-mix(in srgb, var(--black) 80%, var(--white));
    --app-color-1: #007ca5;
    --app-color-2: #b72f33;
    --app-color-3: hsl(42.86deg 100% 40.55%);
    --app-color-4: #004090;
    --a-color: var(--app-color-4);
    --white-on-black-text-color: #ccc;
    --bg-color: #007ca5;
    --bg-color-2: #c2e3ed;
    --bg-color-3: #f5f5f5;
    --header-bg-color: var(--app-color-4);
    --main-font-family: Roboto, sans-serif;
    --main-font-family-2: 'Source Sans Pro', Roboto, sans-serif;
    --compact-font-family: 'Roboto Condensed', 'Arial Narrow', Roboto, sans-serif;
    --white: #fff;
    --white-2: color-mix(in srgb, var(--white) 98%, var(--black));
    --app-color-1: #007ca5;
    --app-color-2: #b72f33;
    --brand-color: var(--app-color-3);
    --brand-color-dark1: #b78500;
    --brand-color-2: #333;
    --brand-color-3: #777;
    --brand-color-4: #ddd;
    --brand-text-color: #56555a;
    --text-color: #000;
    --text-color-1: var(--text-color);
    --text-color-reverse: #fff;
    --p-margin: 1em;
    --bg-color: #007ca5;
    --bg-color-2: #c2e3ed;
    --bg-color-main: var(--black);
    --paging-color: #E6F2FF;
    --side-margin: var(--margin-x2);
    --empty-text-color: #808080;
    --smaller-font-size: .875rem;
    --regular-font-size: .925rem;
    --bold-border-radius: 2px;
    --transition-delay: 100ms;
    --event-bg-color: #e4e4e4;
    --pass-event-bg-color: #eee;
    --border-radius: .75rem;
    --min-button-width: 70px;
    --button-hover-background-color: #e5e5e5;
    --button-pressed-background-color: #d5d5d5;
    --button-pressed-background: linear-gradient(var(--button-pressed-background-color), var( --button-hover-background-color));
    --button-hover-background-type2: linear-gradient(var(--app-color), #0c159e);
    --button-pressed-background-type2: #2701a7;
    --button-pressed-background-type3: linear-gradient(var(--button-pressed-background-color), var( --button-hover-background-color));
    --min-clickable-size-1: 1rem;
    --button-padding: calc(var(--margin) / 3) calc(var(--margin) / 2);
    --ribbon-height-1: 40px;
    --regular-line-height: 1.4;
    --text-content-max-width: 700px;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0 none;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: var(--text-color);
}

a:active, a:link, a:visited {
    color: var(--a-color);
    text-decoration: none;
}

html {
    accent-color: var(--brand-color);
}

    html > body {
        overflow: visible;
    }

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ol, ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

body {
    margin: 0px;
    padding: 0px;
    font: var(--regular-font-size)/1.4 var(--main-font-family);
    color: #000;
    height: 100%;
}

p, strong, em, b, div, .formTable td, form table td {
    font-size: inherit;
    color: inherit;
}

    div strong {
        font-size: inherit;
    }

strong {
    font-weight: bold;
}

h1 {
    font-size: 24px;
    margin-bottom: 1em;
    line-height: 110%;
    color: black;
    font-weight: 700;
    padding: 0;
    letter-spacing: -.5px;
}

h2 {
    font-size: 18px;
    margin-bottom: .8em;
    line-height: 110%;
    color: black;
    font-weight: 700;
    padding: 0;
    letter-spacing: -.3px;
}

h3 {
    color: #000;
    font-size: 10pt;
    font-weight: bold;
    text-align: left;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

#mainContent ol, #mainContent ul :not(.productSummary ul) {
    /* padding: 0px 25px;*/
}

    #mainContent ol li {
        list-style: decimal outside;
    }

#mainContent td {
    padding: 0;
}

#mainContent input[type="text"],
#mainContent input[type="email"],
#mainContent input[type="password"],
.modal-body input[type="text"],
.modal-body input[type="password"],
.modal-content input[type="password"],
.modal-content input[type="text"],
.modal-form input[type="text"],
html body .modal-form input[type="text"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="date"],
body .mce-container-body input {
    padding: 0 2px;
    border: solid 1px #999;
    border-radius: 2px;
    font-weight: bold;
    font-family: inherit;
    margin: 0;
    height: 28px;
    box-sizing: border-box;
}

textarea,
body textarea,
#mainContent textarea {
    padding: 2px;
    border: solid 1px #999;
    border-radius: 2px;
    font-family: inherit;
    margin: 0;
    font-size: inherit;
    font-weight: 400;
}

select,
#mainContent select,
.playground select,
.modal-body select,
.modal-content select,
/*#newReceiptForwardingRule .modal-form select,*/
.modal-form select,
html body .modal-form select,
.modal-content select {
    border: solid 1px #999;
    border-radius: 2px;
    font-weight: bold;
    font-family: inherit;
    height: 28px;
    font-size: inherit;
}

div.wait.loading,
td.wait.loading {
    background: white url(/images/wait.gif) no-repeat 2px 2px;
    min-width: 20px;
    min-height: 20px;
}

table td.wait.loading {
    background-position: center center;
}

body h1#h1, body h1#h1 select {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 110%;
    color: #222;
    padding: 0;
    font-weight: 700;
}

    body h1#h1 a {
        text-decoration: underline;
    }

@media screen and (max-width: 600px) {
    body h1#h1, body h1#h1 select {
        font-size: 18px;
    }
}

body #h1:before {
    position: relative;
    font-size: 100%;
    margin-right: 3px;
    margin-left: 0;
}

body h1#h1 select {
    height: 40px;
    border-color: #087398;
    margin-bottom: 0;
}

.wait {
    opacity: 0.5;
}

body input[type=checkbox], body input[type=radio] {
    vertical-align: middle;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 2px;
    width: 17px;
    height: 17px;
}

p a, p a[role=button] {
    text-decoration: underline !important;
}

span.beta:after, a.beta:after {
    content: 'beta';
    font-size: 11px;
    margin-left: 2px;
    text-decoration: none !important;
    display: inline-block;
    position: relative;
    top: -5px;
}

h1.with-select select,
body h1.with-select select,
#mainContent h1.with-select select,
body #mainContent h1.with-select select,
body .playground h1.with-select select {
    color: var(--a-color);
    font-size: inherit;
    height: auto;
    letter-spacing: -1px;
}

body h1.with-select:before {
    margin-left: 0;
}

table tr th,
#mainContent table tr th {
}

input[type="text"]:-ms-input-placeholder {
    color: #ccc;
    font-style: italic;
    font-weight: 500 !important;
    vertical-align: middle;
    font-family: var(--main-font-family);
}

input[type="text"]::-webkit-input-placeholder {
    color: #ccc;
    font-style: italic;
    font-weight: 500 !important;
    vertical-align: middle;
    font-family: var(--main-font-family);
}

input[type="text"]::-moz-placeholder {
    color: #ccc;
    font-style: italic;
    font-weight: 500 !important;
    vertical-align: middle;
    font-family: var(--main-font-family);
}

.dealer-brand .oz-brand {
    display: none !important;
    visibility: hidden !important;
}

.icon-user-1 {
    transform: scale(.9); /* EM: the new user icon looks too big compared to other icons */
}
 
 html > body, html > body #masterWrap {
    height: auto;
}

#pagewrapper {
    position: relative;
}

/*#navwrapper {
    position: relative;
    max-width: 1000px;
}
*/
@media screen and (min-width: 951px) {
    /* body #navwrapper {
        position: sticky;
        top: 0;
        z-index: 4;
        opacity: .98;
        flex: 1;
    }*/
}

body {
    background-color: #f5f5f5;
}

#masterWrap {
    margin: 0 auto;
    width: 100%;
    z-index: 0;
    /*max-width: 1800px;*/
    /*background-color: white;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

    #masterWrap > .wrapper {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        text-align: left;
        z-index: 100;
        position: relative;
    }

#mainContent .main-container {
    padding: 20px 2% 15px 2%;
}

body .lrmargin > h1#h1, body .lrmargin > h1 {
    margin: 0;
    padding: 20px 0;
}

body.no-scroll, html.no-scroll {
    overflow: hidden;
}

body #mainContent {
    min-height: 300px;
    padding: 0 0 20px 0;
    position: relative;
    margin: 0 auto;
    position: relative;
    background: #fff;
}

.oneColumn {
    width: 995px;
    float: left;
    margin: 0 0 0 28px;
    padding: 20px;
}

.lmargin {
    padding-left: var(--side-margin);
}

.rmargin {
    padding-right: var(--side-margin);
}

.bmargin {
    margin-bottom: 1em;
}

.lrmargin {
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
}

.fullmargin {
    padding: var(--side-margin);
}

.playground.fullmargin.with-subsections {
    background: var(--brand-color-4);
}

    .playground.fullmargin.with-subsections .section {
        background: var(--white-2);
        border-radius: 2px;
    }

.semifullmargin {
    padding: 1vw var(--side-margin);
}

.tmargin {
    padding-top: var(--side-margin);
}

.bmargin {
    padding-bottom: var(--side-margin);
}

.tbmargin {
    padding-top: var(--side-margin);
    padding-bottom: var(--side-margin);
}

html body .lmargin {
    padding: var(--side-margin);
}

html body .lrmargin,
html body #mainContent .lrmargin {
    padding-inline: var(--side-margin);
}

html body .fullmargin {
    padding: var(--side-margin);
}

body .wait, body .wait * {
    cursor: wait !important;
}

#mainContent .section {
    /*margin-bottom: 2.5em;*/
}

    #mainContent .section.with-bg {
        padding: .5em 1em;
        border-radius: 2px;
    }

    #mainContent .section .subsection {
        margin-bottom: .75em;
    }

    #mainContent .section:not(.genericContent) h2 {
        font-weight: bold;
        margin: 0;
        padding-left: 0;
        font-family: var(--main-font-family);
        line-height: 100%;
    }

        #mainContent .section:not(.genericContent) h2:before {
            opacity: .5;
            position: relative;
            left: -1px;
            font-size: 110%;
            margin-left: 0;
        }

.wrapper .decor4 {
    display: none;
}

.wrapper .decor3 {
    display: none;
}
 header {
    display: block;
    width: 100%;
}

#headerWrap {
    width: 100%;
    color: var(--white);
    position: relative;
}

#zillaHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 var(--side-margin);
    border-bottom: solid 2px #eee;
    /*margin-bottom: 7px;*/
    /*height: 65px;*/
}

    #zillaHeader a {
        color: inherit;
    }

#preheader {
    height: 30px;
    background-color: var(--bg-color);
    color: white;
    display: flex;
    justify-content: flex-end;
}

.quick_view #preheader,
.quick_view #zillaHeader {
    display: none;
}

#headerlogo {
    flex: 6 4 auto;
}

#headerdealerlogo {
    flex: 4 6 auto;
    padding-left: 10px;
}

    #headerdealerlogo img {
        max-width: 100%;
        max-height: 100%;
    }

#headerlogo, #headerdealerlogo {
    display: flex;
    align-items: center;
    height: 100%;
}

.headerlogo-css {
    width: auto !important;
    margin: 6px 0 0 0 !important;
}

.headersearchinput-wrap a.icon-cancel {
    display: none;
}

@media screen and (max-width: 950px) {
    #zillaHeader {
        padding: 4px var(--side-margin) 4px var(--side-margin);
    }

    #preheader {
        display: none;
    }

    #headerlogo, #headerdealerlogo {
        max-width: 100px;
    }

    #zillaHeader #headersearch {
        display: none;
    }

    #zillaHeader.search-opened #headersearchinput {
        padding-right: 30px;
    }

    .search-modal #headersearch .headersearch-internals {
        width: calc(100% - 40px);
        margin: 0;
        max-width: calc(100% - 40px);
        height: calc(100vh - 30px);
    }

        .search-modal #headersearch .headersearch-internals ul.ui-menu {
            top: 38px !important;
            bottom: 0;
            overflow-y: scroll;
            overflow-x: hidden;
            display: block !important;
            box-shadow: none !important;
            border: none !important;
            width: 100% !important;
        }

            .search-modal #headersearch .headersearch-internals ul.ui-menu li {
                border-bottom: 1px dashed var(--bg-color);
            }

                .search-modal #headersearch .headersearch-internals ul.ui-menu li a {
                    padding: 13px 10px 13px 25px;
                }
}

    #headersearch .headersearch-internals {
        display: flex;
        position: relative;
        width: 100%;
        max-width: 500px;
        /* autocomplete position fix */
        /*padding: 5px 1%;*/
        margin: 0 auto;
    }

#headersearchinput, #headersearchinput:focus {
    font-family: inherit;
    border: solid 2px var(--bg-color);
    border-radius: 3px;
    /*font-size: 13px;*/
    font-weight: 700;
    outline: none;
    width: 100%;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#minicartItems {
    position: relative;
}

body #mobile-search-switcher:before {
    font-size: 13px;
    background: gray;
    border-radius: 50%;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    height: 28px;
    width: 28px;
    transform: scale(.98);
}

.prod-menu, #mobileAccountSettings {
    display: none;
}


@media screen and (max-width: 950px) {

    html body #minicartItems a.cart:before,
    html body #mobile-search-switcher:before {
        font-size: 18px;
        color: var(--bg-color);
        background-color: white;
        margin: 0;
    }

    body #minicartItems.no-items a.cart:before {
        background: none;
    }

    body #mobile-search-switcher:before {
        display: inline-flex;
    }

    body #mobileAccountSettings {
        display: flex;
    }

    body .header-wrapper {
        padding: 4px calc(var(--side-margin)) 4px calc(var(--side-margin));
    }

    body #zillaHeader {
        height: auto;
        display: block;
    }

    body #headersearch {
        flex-grow: 0;
        padding-right: 0;
        margin: 0;
        grid-row: 1 / span 1;
        grid-column: 2 / span 1;
    }

    html body #headerMenu {
        padding-right: 10px;
    }

    body #zillaHeader {
        margin: 0 0 5px 0;
        display: grid;
        grid-template-columns: 110px 1fr;
        grid-template-rows: 1fr;
        grid-column-gap: var(--side-margin);
    }

    html body #compareWrap.no-items #masterCompareButton:before {
        background: var(--bg-color);
    }


    html #miniShoppingCartContainer {
        grid-row: 1 / span 1;
        align-items: center;
        padding-left: 20px;
    }

        html #miniShoppingCartContainer > * {
            margin-right: 10px;
        }

            html #miniShoppingCartContainer > *:last-child {
                margin-right: 0;
            }

    input#headersearchinput.wait, input#headersearchinput.wait:focus {
        opacity: 1;
    }

    .cart-name {
        display: none;
    }

    #preheader #tool-nav #accountSettings > a {
        color: var(--bg-color);
        margin: 0;
        padding: 0;
    }

    #mobileAccountSettings #mobileEditContentContainer,
    #mobileAccountSettings #mobileSitePreviewContainer {
        display: none;
    }
}

@media screen and (max-width: 550px) {

    html #minicartItems a.cart,
    html #compareWrap > a {
        font-size: 0;
    }

    #mobileAccountSettings > a {
        font-size: 0;
    }

        #mobileAccountSettings > a span:before {
            font-size: 18px;
            margin-top: 6px;
        }
}

@media screen and (max-width: 400px) {



    #headerMenu .prod-menu {
        display: inline-block;
    }

    #headerMenu .prod-title {
        display: none;
    }

    #headerMenu .prod-menu:before, #headerMenu .prod-menu:after {
        content: '';
        display: block;
        width: 18px;
        border-top: solid 2px;
        border-bottom: solid 2px;
        height: 4px;
    }

    #headerMenu .prod-menu:after {
        border-top: none;
        height: 4px;
    }
}

input#headersearchinput.wait, input#headersearchinput.wait:focus {
    background: white url(/images/wait.gif) no-repeat 85% 50%;
}

#headerGoSearch {
    display: inline-block;
    color: var(--bg-color);
    font-family: var(--main-font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 108%;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    background: var(--bg-color-2);
    border-radius: var(--bold-border-radius);
    height: 38px;
    vertical-align: top;
    width: 70px;
    text-align: center;
    padding: 0;
    border: solid 2px var(--bg-color);
}

/*#headerMenu {
    margin: 0 20px;
}*/

#headerGoSearch {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    left: -2px;
    margin: 0;
}

    #headerGoSearch:hover {
        color: white;
        background-color: var(--bg-color);
    }

@media screen and (max-width: 950px) {
    body #headerGoSearch {
        width: 45px;
        order: 3;
        /*background: #fff;*/
        /*border-left: none;*/
        left: 0;
    }

        body #headerGoSearch:hover {
            color: white;
            /*background-color: var(--bg-color);*/
        }

    /*body #headerGoSearch {
        border: none;
        border-left: solid 1px var(--bg-color-2);
    }*/
}

@media screen and (min-width: 951px) {
    body #headerMenu {
        display: none;
    }

    #zillaHeader:not(.cobranded) #logo img {
        height: 53px;
        max-height: unset;
        transition: height .1s;
    }

    .header-fixed #zillaHeader:not(.cobranded) #logo img {
        height: 38px;
        max-height: unset;
        transition: height .1s;
    }

    #headerlogo, #headerdealerlogo {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header-fixed #zillaHeader {
        opacity: .98;
        height: 50px;
    }
}

#logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    height: 100%;
}

    #logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        display: block;
        transition: width 100ms;
        margin: 0 auto;
    }

#headersearch .icon-search:before {
    color: var(--bg-color);
    font-size: 16px;
    position: absolute;
    left: 4px;
    top: 11px;
}

#brand {
    display: flex;
    height: 100%;
    align-self: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 1 150px;
}

#zillaHeader.cobranded #brand {
    flex-basis: 220px;
}

#zillaHeader.cobranded #headersearch {
    flex-basis: 180px;
}

@media screen and (max-width: 950px) {
    body #brand {
        grid-row: 1 / span 2;
        /*position: absolute;
        left: 0;
        top: -40px;*/
        display: flex;
        width: 100%;
        /*height: 40px;*/
    }
}

@media screen and (min-width: 980px) {
    #brand.brand-css {
        width: 365px;
    }
}

.headersearchinput-wrap {
    flex: 1 0 auto;
}

    .headersearchinput-wrap .decor {
        position: absolute;
    }

@media screen and (max-width: 950px) {
    body .headersearchinput-wrap {
        flex: 1 0 auto;
        order: 2;
    }
}

#headersearch .prod-menu:before, #headersearch .prod-menu:after {
    content: '';
    display: block;
    width: 14px;
    border-top: solid 2px;
    border-bottom: solid 2px;
    height: 2px;
}

#headersearch .prod-menu:after {
    border-top: none;
    height: 2px;
}

#miniShoppingCartContainer {
    display: flex;
    align-items: center;
    grid-row: 2 / span 1;
    justify-content: space-between;
}
 :root {
    --ease: ease-in;
    --header-section1-height: 100px;
    --header-section2-height: 68px;
    --header-section2-y: 0px;
    --header-height: calc(var(--header-section1-height) + var(--header-section2-height));
    --header-transition: height .24s ease, transform .24s var(--ease);
}

.ocd body #zillaHeader {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    min-height: var(--header-section1-height);
    align-items: center;
    border: none;
    transition: var(--header-transition);
    background: var(--black);
    gap: var(--margin);
}

@media (max-width: 1050px) {
    .ocd body #zillaHeader {
        flex-direction: column;
        height: auto;
        padding: var(--margin);
    }
}

body #header #navlinks {
    height: var(--header-section2-height);
    background: var(--black);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: var(--header-transition);
    transform: translateY(var(--header-section2-y));
}

.ocd body #headerWrap #header #navlinks .menu-burger {
    display: none;
    cursor: pointer;
}

    .ocd body #headerWrap #header #navlinks .menu-burger:active {
        background: none;
        color: inherit;
    }

body #headerWrap:not(.mini-view) #header #navlinks {
    border-top: solid 1px #111;
}

body #header .mini-view #navlinks {
    overflow: hidden;
}

.ocd #preheader {
    height: 35px;
    text-align: right;
}

.ocd #headersearch {
    --search-button-width: 2.3rem;
    align-self: auto;
    position: relative;
    text-align: left;
    white-space: nowrap;
    flex: 0 0 auto;
}

.ocd #headersearchtagline {
    color: #004a87;
    font-family: var(--main-font-family);
    font-size: 15px;
    font-weight: 100;
    text-align: center;
    width: 355px;
}

.ocd #headersearchinput, .ocd #headersearchinput:focus {
    border: solid 1px #fff;
    border-radius: 2px;
    box-shadow: 0 0 2px #eee;
    font-weight: 300;
    max-width: 400px;
    width: 170px;
}

.ocd #headersearchbutton {
    background: #004a87;
    border: 1px solid #D2D2D2;
    color: #fff;
    cursor: pointer;
    float: left;
    font-weight: bold;
    height: 20px;
    margin-left: 10px;
}

.ocd body #headerGoSearch {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-weight: 500;
    position: absolute;
    right: 0;
    width: var(--search-button-width);
    left: initial;
    bottom: 0;
    top: 0;
    height: auto;
    margin: 0;
    border-radius: 0 var(--item-border-radius) var(--item-border-radius) 0;
}

.ocd .headersearchinput-wrap {
    flex: initial;
    margin-right: initial;
}

.ocd #headerGoSearch, #headerMenu {
    border-radius: 2px;
    box-shadow: 0px 0px 1px #7d7d7d;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    height: 30px;
    line-height: 100%;
    padding: 0 10px;
}

.ocd body #headerMenu {
    padding-left: 20px;
    width: 80px;
}

    .ocd body #headerMenu .decor {
        border-top: 7px solid #007ca5;
    }

    .ocd body #headerMenu.expanded .decor {
        bottom: -4px;
    }

.ocd #logo {
    width: 90%;
}

.ocd #headersearch .icon-search:before {
    color: #c6cbcc;
    left: 4px;
    top: 12px;
}

.ocd #brand {
    flex-grow: .2;
    min-width: 200px;
}

.ocd .headersearchinput-wrap .decor {
    position: absolute;
}

.ocd #headerGoSearch, #headerMenu {
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e5e5e5));
    border: none;
}

.ocd #shopperStatus {
    opacity: 1;
    transition: opacity 0.25s, visibility 0.25s, width 0.5s;
    visibility: visible;
}

.ocd body #zillaHeader #shopperStatus[items-count="0"] {
    opacity: 0;
    transition: opacity 0.25s, visibility 0.25s, width 0.5s;
    visibility: hidden;
    width: 0;
}

/*@media screen and (max-width: 950px) {
    body #headerGoSearch {
        left: initial;
    }

    .ocd body #headersearch #headerMenu {
        display: inline-block;
    }
}*/

@media screen and (max-width: 740px) {

    .ocd body #zillaHeader { 
        box-shadow: 0px 0px 2px white;
    }

    .ocd body #headerWrap #header #navlinks .menu-burger {
        display: flex;
        font-size: 210%;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .ocd body #navlinks #ulNav {
        display: none;
    }
}

/*@media screen and (max-width: 750px) {
    .ocd #preheader {
        align-items: center;
        display: flex;
        height: 40px;
    }

    .ocd body #headersearchinput, body #headersearchinput:focus {
        width: calc(100% - 127px);
    }

    .ocd body #zillaHeader {
        display: block;
        height: 50px;
    }

    .ocd body #headersearch {
        width: 98%;
    }



    .ocd body #brand {
        top: -40px;
    }
}
*/
 /*
    The purpose of this file is to provide a place for CSS which is shared accross various areas on the site, 
    such as the main area and franchisee area.
*/


@media screen and (min-width:0px) {
    head ~ body {
        height: 100%;
    }
}

.address .route-code {
    padding-top: 3px;
    display: block;
    position: relative;
    left: -5px;
}

.red, .error, .errorLg {
    color: #ff0000;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.nomargin {
    margin: 0 !important;
}

.withmargin {
    margin: 0 0 0 25px !important;
}

.nopadding {
    padding: 0 !important;
}

.noborder {
    border: 0 none !important;
}

.floatlt, .floatleft {
    float: left;
}

.floatrt, .floatright {
    float: right;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

.right {
    text-align: right;
}

.clearboth {
    clear: both;
}

.clearrt, .clearright {
    clear: right;
}

.clearlt, .clearleft {
    clear: left;
}

.clearer {
    clear: both;
    height: 1px;
    overflow: hidden;
    margin-top: -1px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.inputs input, .inputs button, .inputs select, .inputs span,
.inputs > * {
    vertical-align: top;
}

.inputs.middle > *{
    vertical-align: middle;
}

body #masterWrap .gift_wrap,
body .modal .gift_wrap {
    display: flex;
    align-items: center;
    color: #a1282b;
}

    body #masterWrap .gift_wrap .icon-gift,
    body .modal .gift_wrap .icon-gift {
        font-size: 30px;
    }

        body #masterWrap .gift_wrap .icon-gift:before,
        body .modal .gift_wrap .icon-gift:before {
            margin: 0;
        }

    body #masterWrap .gift_wrap .quantity,
    body .modal .gift_wrap .quantity {
        font-family: var(--main-font-family);
        font-weight: 900;
        font-size: 15px;
        margin-left: 3px;
    }

.icon-user.contact-person:before, .icon-user.contact:before {
    opacity: .3;
}

a.icon-user.contact-person:hover:before,
a[role="button"].icon-user.contact-person:not(.disabled):hover:before {
    opacity: .3;
}
 hr {
    background-color: #ccc;
    border: none;
    height: 1px;
}

table {
    border: 0 none !important;
}

form table td input, form table td textarea, form table td select {
    display: inline-block;
}

#t2__0 {
    padding: 0;
}


.formTable, form table {
    /*background:transparent url(CustomImages/bgform.png) 0 bottom repeat-x;*/
}
    /*.formTable td, form table td
{
    padding:5px !important;
    text-align:left !important;
    vertical-align:top !important;
}*/
    .formTable td.labelCell {
        width: 180px;
        padding-top: 9px !important;
    }

    .formTable td.valueCell {
    }

    .formTable td.separatorCell {
        width: 30px;
    }

    .formTable td.buttonCell {
        height: 50px;
        text-align: center;
    }

    .formTable p.instruction {
        font-size: 11px;
        font-style: italic;
        margin: 4px 0;
    }

    .formTable td.valueCell select {
        width: 230px;
    }

    .formTable td.valueCell .selector, form table .selector {
        width: 230px;
        margin-left: -2px;
        display: block;
    }

        .formTable td.valueCell .selector span, form table .selector span {
            width: 205px;
        }

    .formTable td.valueCell input[type=text], form table input[type=text] {
        /* width:230px; */
    }

    .formTable td.valueCell textarea, form table textarea {
        width: 230px;
        height: 100px;
    }

#frmCreateAccount > br:nth-of-type(1), #frmCreateAccount > br:nth-of-type(2),
#tblAccount td > br, #tblBillingInfo td > br, #tblShippingInfo td > br,
#pnlAccountInfo hr, #accountinfo_gif, #accountaspx37, #pnlBilling hr,
#pnlShipping hr, #accountaspx29, #imgAddressbook ~ br, #imgAccountinfo ~ br,
#imgAddressbook ~ table table tr:first-child, #lnkChangeBilling img,
#imgAccountinfo ~ table table tr:nth-child(2), #lnkChangeShipping img,
#addressbook_gif ~ br, #pnlAddressListBottom > hr, #pnlAddressListBottom > br,
#ErrorPanel br, #CheckoutSequence br, #pnlCheckoutImage br,
form[action*=checkoutshipping] + div div table table table tr:nth-of-type(2),
form[action*=checkoutshipping] + div div table td br,
div#pnlOrderSummary div table table table tr:nth-of-type(2),
div#pnlOrderSummary div table td br, #btnContinueCheckout2 {
    display: none;
}

#imgAddressbook ~ table td, #imgAccountinfo ~ table td {
    padding: 0 !important;
}

#imgAccountinfo ~ table table td {
    padding: 5px !important;
}

#imgAccountinfo ~ table table tr:first-child td {
    padding: 0 !important;
}

#pnlMain > form > br:nth-of-type(3) {
    clear: both !important;
}

#pnlAccountInfo, #pnlBillingInfo, #pnlShippingInfo {
    float: left;
    padding: 0;
    margin: 0;
    border: 0;
}

#pnlAccountInfo {
    width: 100%;
}

#pnlBillingInfo, #pnlShippingInfo {
    width: 50%;
}

#pnlNotCheckOutButtons {
    float: right;
}

#pnlOrderHistory table table table tr:first-child td {
    background: var(--bg-color);
    height: 38px;
    text-align: center;
    vertical-align: middle;
}

    #pnlOrderHistory table table table tr:first-child td b span {
        color: #fff;
        text-transform: uppercase;
        font-family: Arial, GothamUltraRegular;
        font-size: 11px;
        font-weight: 900 !important;
    }

    #pnlOrderHistory table table table tr:first-child td:first-child {
        -webkit-border-top-left-radius: 6px;
        -moz-border-radius-topleft: 6px;
        border-top-left-radius: 6px;
    }

    #pnlOrderHistory table table table tr:first-child td:last-child {
        -webkit-border-top-right-radius: 6px;
        -moz-border-radius-topright: 6px;
        border-top-right-radius: 6px;
    }

#pnlBilling b, #pnlShipping b, #imgAccountinfo ~ table table tr:first-child td b {
    display: block;
    width: 100%;
    height: 38px;
    background: var(--bg-color);
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    border-top-right-radius: 6px;
}

#pnlBilling b, #pnlShipping b {
    margin: 0 -5px;
}

#pnlCheckoutImage, #pnlHeaderGraphic, #CheckoutSequence, .CheckoutSequence {
    background: transparent url(CustomImages/bgSteps.png) 0 0 repeat-x;
}

#pnlPaymentOptions {
    float: left;
    width: 300px;
    padding: 20px 0;
}

    #pnlPaymentOptions > table td {
        padding: 0 !important;
        vertical-align: middle !important;
    }

#pnlAddressList ol {
    padding: 0;
}

    #pnlAddressList ol li {
        list-style: none;
        display: block;
        padding: 10px 20px 2px;
        margin: 0 0 5px 0;
        background: #cdecf7;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

        #pnlAddressList ol li input[type=image] {
            float: right;
            margin: 0 3px;
        }

#pnlBilling, #pnlShipping {
    position: relative;
    padding: 0 5px;
}

#pnlPayPalExpressPane p font {
    color: #666 !important;
}

#pnlErrorMsg, #ErrorPanel {
    padding: 4px 10px;
    margin: 20px 0;
    background: #f9e0de;
    border: 1px solid red;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

div#pnlCheckoutImage + div#pnlErrorMsg, #frmCreateAccount #pnlErrorMsg {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 none !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}

div#pnlErrorMsg + p {
    margin: 10px 20px 0;
}

    div#pnlErrorMsg + p a b {
        color: var(--bg-color);
    }

#pnlCreditCardPane form > table td {
    padding: 0 !important;
}

#pnlCreditCardPane > form > p > b, #Label6, #Label7, #ShipSelectionMsg p b,
#checkoutreviewaspx8, #checkoutreviewaspx9, #ordercs57, .ProductNameText span {
    color: var(--bg-color);
    text-transform: uppercase;
    font-family: Arial, GothamUltraRegular;
    font-size: 16px;
    font-weight: 700 !important;
}

.FreeShippingThresholdPrompt {
    color: #8e1003;
}

#pnlOrderSummary {
    float: left;
    width: 100%;
}

#AccountForm > center {
    text-align: left !important;
    padding: 0 5px;
}

#paymentPanes {
    border-top: 0 none !important;
    border-right: 0 none !important;
    border-bottom: 0 none !important;
    border-left: 1px solid #ccc !important;
    padding: 20px 25px !important;
    float: left;
    width: 600px !important;
}

#accountaspx12, #accountaspx30, #accountaspx32 {
    line-height: 38px;
    font-size: 11px;
    font-family: Arial, GothamUltraRegular;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: #fff;
    padding-left: 15px;
}

#accountaspx55 {
    display: block;
    font-size: 13px;
    color: #000;
    text-align: center;
    font-style: italic;
}

#lnkChangeBilling ~ b {
    background: transparent;
    height: auto;
    display: inline-block;
    margin: 5px 0 0;
}

#lnkChangeBilling, #lnkChangeShipping {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 38px;
    background: transparent url(CustomImages/change2.png) 0 0 no-repeat;
    border-left: 1px solid #fff;
}

    #lnkChangeBilling:hover, #lnkChangeShipping:hover {
        background-position: 0px -38px;
    }

#LoginButton, #btnRequestNewPassword, #btnContinueCheckout,
#btnUpdateAccount, #btnNewAddress, #btnReturn,
#btnContinueToCheckOut, .PaymentPageContinueCheckoutButton,
#RegisterAndCheckoutButton, #btnSignInAndCheckout,
.ReviewPageContinueCheckoutButton {
    display: block;
    height: 38px;
    color: #fff;
    font-family: Arial, GothamUltraRegular;
    font-weight: 900;
    font-size: 11px;
    text-align: center;
    padding: 0 8px 8px 0 !important;
    background-color: transparent;
    background-image: url(CustomImages/buttonsprite.png);
    background-repeat: no-repeat;
    margin: 0;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
}

#lnkAddBillingAddress, #lnkAddShippingAddress, #lnkAddAddress {
    display: block;
    width: 207px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-family: Arial, GothamUltraRegular;
    font-size: 10px;
    font-weight: 900 !important;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 8px 8px 0 !important;
    background: transparent url(CustomImages/buttonsprite.png) 0px -152px no-repeat;
    margin: 0 0;
    border: 0;
}

#lnkAddAddress {
    font-size: 11px;
    margin: 0 0;
}

#LoginButton {
    width: 77px;
    background-position: 0px 0px;
}

    #LoginButton:hover {
        background-position: -900px 0px;
    }

#btnRequestNewPassword {
    width: 215px;
    background-position: 0px -152px;
}

#btnContinueToCheckOut, .PaymentPageContinueCheckoutButton,
.ReviewPageContinueCheckoutButton {
    width: 160px;
    background-position: 0px -76px;
    margin: 10px auto;
}

#btnContinueCheckout {
    width: 215px;
    background-position: 0px -152px;
    margin: 10px auto;
}

    #btnContinueCheckout.ShippingPageContinueCheckoutButton,
    #RegisterAndCheckoutButton, #btnSignInAndCheckout {
        width: 215px;
        background-position: 0px -152px;
        margin: 0 0;
    }

#btnUpdateAccount, #btnNewAddress, #btnReturn {
    width: 160px;
    background-position: 0px -76px;
}

#btnNewAddress {
    margin: 0 auto;
}

#btnContinueCheckout.ShippingPageContinueCheckoutButton:hover,
#RegisterAndCheckoutButton:hover, #btnSignInAndCheckout:hover,
#btnContinueCheckout:hover, #btnRequestNewPassword:hover,
#lnkAddBillingAddress:hover, #lnkAddShippingAddress:hover, #lnkAddAddress:hover {
    background-position: -900px -152px;
}

#btnUpdateAccount:hover, #btnNewAddress:hover, #btnReturn:hover,
#btnContinueToCheckOut:hover, .PaymentPageContinueCheckoutButton:hover,
.ReviewPageContinueCheckoutButton:hover {
    background-position: -900px -76px;
}



#contactUsAddress {
    font-size: 14px !important;
}


#ShipSelectionMsg p b {
    display: block;
    padding: 0 0 10px 0;
}

form[action*=checkoutshipping] + div div table td,
div#pnlOrderSummary div table td {
    color: #000;
    padding: 0 !important;
}

form[action*=checkoutshipping] + div div table table table,
div#pnlOrderSummary div table table table {
    background: #eff9fc;
}

    form[action*=checkoutshipping] + div div table table table td,
    div#pnlOrderSummary div table table table td {
        padding: 4px 12px !important;
        vertical-align: middle !important;
        color: #000;
    }

        form[action*=checkoutshipping] + div div table table table td > br,
        div#pnlOrderSummary div table table table td > br {
            display: block;
        }

        form[action*=checkoutshipping] + div div table table table td a b,
        div#pnlOrderSummary div table table table td a b {
            color: var(--bg-color);
        }

    form[action*=checkoutshipping] + div div table table table tr:nth-of-type(2n),
    div#pnlOrderSummary div table table table tr:nth-of-type(2n) {
        display: none;
    }

    form[action*=checkoutshipping] + div div table table table tr:nth-of-type(4n+3),
    div#pnlOrderSummary div table table table tr:nth-of-type(4n+3) {
        background: #cdecf7;
    }

    form[action*=checkoutshipping] + div div table table table tr:nth-of-type(1) td,
    div#pnlOrderSummary div table table table tr:nth-of-type(1) td {
        height: 38px;
        background: var(--bg-color);
        vertical-align: middle !important;
    }

        form[action*=checkoutshipping] + div div table table table tr:nth-of-type(1) td b,
        div#pnlOrderSummary div table table table tr:nth-of-type(1) td b {
            color: #fff;
            font-size: 11px;
            font-family: Arial, GothamUltraRegular;
            font-weight: 900 !important;
            text-transform: uppercase;
            padding: 0 12px;
        }

        form[action*=checkoutshipping] + div div table table table tr:nth-of-type(1) td:nth-of-type(1),
        div#pnlOrderSummary div table table table tr:nth-of-type(1) td:nth-of-type(1) {
            -webkit-border-top-left-radius: 6px;
            -moz-border-radius-topleft: 6px;
            border-top-left-radius: 6px;
        }

        form[action*=checkoutshipping] + div div table table table tr:nth-of-type(1) td:nth-of-type(3),
        div#pnlOrderSummary div table table table tr:nth-of-type(1) td:nth-of-type(3) {
            -webkit-border-top-right-radius: 6px;
            -moz-border-radius-topright: 6px;
            border-top-right-radius: 6px;
        }

form[action*=checkoutshipping] + div div div table,
div#pnlOrderSummary div div table {
    background: #fcf7e8;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-bottom-left-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-bottomright: 6px;
    border-bottom-right-radius: 6px;
}

    form[action*=checkoutshipping] + div div div table td,
    {
        padding: 4px 8px !important;
        vertical-align: middle !important;
    }

    div#pnlOrderSummary div div table td {
        padding: 0 8px !important;
        vertical-align: middle !important;
        text-align: right !important;
    }

        form[action*=checkoutshipping] + div div div table td:nth-of-type(1),
        div#pnlOrderSummary div div table td:nth-of-type(1) {
            font-size: 12px;
            font-family: Arial, GothamUltraRegular;
            font-weight: 900 !important;
            text-transform: uppercase;
            vertical-align: middle !important;
        }

    div#pnlOrderSummary div div table tr:nth-of-type(4) td:nth-of-type(1) {
        font-size: 14px;
        color: #8e1003;
    }

    div#pnlOrderSummary div div table td:nth-of-type(2) {
        font-size: 12px;
        font-weight: bold;
        color: #000;
    }

    form[action*=checkoutshipping] + div div div table td:nth-of-type(2),
    div#pnlOrderSummary div div table tr:nth-of-type(4) td:nth-of-type(2) {
        font-size: 22px;
        font-weight: bold;
        color: var(--bg-color);
        padding: 4px 8px !important;
    }

div#pnlOrderSummary div table table table td[align=center] {
    text-align: center !important;
}

div#pnlOrderSummary div table table table td[align=right] {
    text-align: right !important;
}

/*#region checkoutanon.aspx */

#HeaderPanel, #FormPanel, #table1 {
    width: 100% !important;
}

#table2 td {
    padding: 0 !important;
    height: auto !important;
}

/*#endregion*/

#SearchUnselected {
    margin-bottom: 0;
}

    #SearchUnselected .icon-cancel {
        text-indent: 0;
        text-decoration: none;
        font-size: 105%;
        font-weight: bold;
        display: none;
        text-indent: 0;
        color: #555;
        position: relative;
        top: 1px;
    }

    #SearchUnselected.val .icon-cancel {
        display: inline-block;
    }

    #SearchUnselected .icon-cancel:hover {
        color: #000;
    }


    #SearchUnselected.val #RNsearchBox {
        width: 162px;
    }

#printServiceCustomization {
    position: relative;
}

    #printServiceCustomization * {
        color: #8e1003;
        font-size: 13px;
        font-weight: normal;
        font-family: Roboto Condensed;
    }

    #printServiceCustomization > div.name {
        position: absolute;
        top: -3px;
        left: -63px;
        min-width: 120px;
        text-align: center;
        max-width: 150px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        background-color: #fff;
        font-family: var(--main-font-family);
        border: 3px solid;
        border-radius: 7px;
        display: inline-block;
        font-weight: 700;
        padding: 5px 7px;
        font-size: 21px;
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    }

    #printServiceCustomization.short > div.name {
        left: -40px;
        top: -9px;
        -webkit-transform: rotate(-15deg);
        -moz-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        -o-transform: rotate(-15deg);
    }

    #printServiceCustomization > div:not(.name) {
        position: absolute;
        top: -12px;
        right: 0;
        line-height: 13px;
    }

body #printServiceCustomization a {
    text-decoration: underline;
    display: inline-block;
    margin-top: 3px;
    margin-right: 7px;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}
 .ocd #headerWrap {
    color: inherit;
    /*z-index: 15;*/
    --main-font-family: var(--main-font-family-2);
}

/* header */

body #header {
    /*margin: 0 auto;
    max-width: 1600px;
    padding: 0 15px;*/
    color: var(--white-on-black-text-color);
}

    body #header button {
        font-weight: inherit;
    }

body #headerWrap:not(.mini-view) #zillaHeader .logo {
    align-self: center;
}

body #headerWrap #zillaHeader .logo {
    text-align: center;
}

body #zillaHeader .logo > a {
    display: flex;
    width: 100%;
    max-width: 350px;
}

    body #zillaHeader .logo > a > img {
        width: 100%;
    }

body #zillaHeader .header-content {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex: 1;
}

    body #zillaHeader .header-content .header-content-top {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }


        body #zillaHeader .header-content .header-content-top .header-top-line {
            --item-border-radius: 1px;
            --item-bg-color: #0000002f;
            --item-bg-color-hover: #0000005f;
            align-items: stretch;
            display: flex;
            justify-content: center;
            order: 2;
            /*height: 2.7rem;*/
            gap: var(--half-margin) var(--margin);
            flex-wrap: wrap;
            /*margin-block: var(--half-margin);*/
        }

            body #zillaHeader .header-content .header-content-top .header-top-line > * {
                min-height: var(--ribbon-height-1);
            }

            body #zillaHeader .header-content .header-content-top .header-top-line .header-top-line-item-wrap {
                display: flex;
                align-items: stretch;
                align-self: stretch;
                position: relative;
                border-radius: 5rem;
            }

                body #zillaHeader .header-content .header-content-top .header-top-line .header-top-line-item-wrap .welcome-wrap {
                    display: flex;
                    align-items: center;
                }

            body #zillaHeader .header-content .header-content-top .header-top-line .header-top-line-item {
                height: auto;
                align-self: stretch;
                border-radius: var(--item-border-radius);
            }

                body #zillaHeader .header-content .header-content-top .header-top-line .header-top-line-item.type1 {
                    display: flex;
                    align-items: center;
                    gap: var(--quarter-margin);
                    justify-content: center;
                    background: var(--item-bg-color);
                    outline: solid 4px var(--item-bg-color);
                    outline-offset: -2px;
                }

                    body #zillaHeader .header-content .header-content-top .header-top-line .header-top-line-item-wrap:hover .header-top-line-item.type1,
                    body #zillaHeader .header-content .header-content-top .header-top-line .header-top-line-item.type1:hover {
                        --item-bg-color: var(--brand-color);
                        --indicator-color: var(--white);
                        color: var(--white);
                    }

        body #zillaHeader .header-content .header-content-top .header-bottom-line {
            align-items: center;
            display: flex;
            justify-content: center;
            order: 1;
        }

@media screen and (min-width: 751px) and (max-width: 1490px) {
    /* body #zillaHeader .header-content .header-content-top {
        flex-direction: column;
    }
*/
    /* html body #zillaHeader .header-content .header-content-bottom {
        margin-top: 10px;
    }*/

    body #zillaHeader .header-content .header-content-top .header-top-line {
        order: 1;
    }

    body #zillaHeader .header-content .header-content-top .header-bottom-line {
        order: 2;
        padding-top: 15px;
    }

    /*.ocd body #zillaHeader .header-content #headersearchinput,
    .ocd body #zillaHeader .header-content #headersearchinput:focus,
    .ocd body #zillaHeader .header-content #headersearchinput.collapsed {
        border: 1px solid #494949 !important;
        width: 140px;
    }*/
}


body #zillaHeader .header-content #headersearchinput.collapsed {
    border: none !important;
    /*width: 29px;*/
}

body #zillaHeader .header-content .header-content-top .header-navigation {
    display: flex;
    margin-right: 15px;
}

body#body1 #zillaHeader .header-content .header-content-top .header-top-line > nav .icon-user:before {
    font-size: 17px;
    vertical-align: middle;
}

body#body1 #zillaHeader .header-content .header-content-top .header-top-line > nav a {
}

.ocd body#body1 #zillaHeader .header-content .header-content-top .header-top-line > nav ul.ddown a:hover {
    color: white;
}

body #zillaHeader .header-content .header-content-top .header-top-line > nav .ddown {
    z-index: 10000;
}

#zillaHeader .header-content .header-content-top {
    --indicator-color: #494949;
}

body #zillaHeader .header-content .header-content-top .header-top-line > nav a .indicator {
    border-color: var(--indicator-color);
}

#zillaHeader .header-content .header-content-top ul.header-navigation li {
    border-right: 1px solid var(--indicator-color);
    padding-left: 8px;
    padding-right: 8px;
    text-transform: uppercase;
}

    #zillaHeader .header-content .header-content-top ul.header-navigation li:first-child {
        padding-left: 0;
    }

    #zillaHeader .header-content .header-content-top ul.header-navigation li:last-child {
        border-right: none;
        padding-right: 0;
    }

#zillaHeader .header-content .header-content-top .user-welcome-link {
    min-width: 90px; /* For short names, the link is short and that makes a horizontal scroll appear */
    padding-right: calc(var(--margin) * 1.2);
}

.ocd body #headersearch .icon-search:before {
    top: 11px;
}

body #zillaHeader .header-content #headersearchinput,
body #zillaHeader .header-content #headersearchinput:focus {
    box-shadow: none;
    padding-inline: 1rem var(--search-button-width);
    transition: background 0.25s, width 0.2s;
    width: 170px;
}

/*@media screen and (min-width: 751px) and (max-width: 809px) {
    body #zillaHeader .header-content .header-content-top #call-action,
    body #zillaHeader .header-content .header-content-top #headersearch,
    .ocd #schedule-consultation {
        margin-right: 10px;
    }
}*/

body #zillaHeader .header-content .header-content-top #shopperStatus {
    flex-grow: 0;
}

    body #zillaHeader .header-content .header-content-top #shopperStatus,
    body #zillaHeader .header-content .header-content-top #shopperStatus .header-top-line-item-wrap {
        aspect-ratio: 1;
    }

        body #zillaHeader .header-content .header-content-top #shopperStatus #shoppingbag {
            position: relative;
        }

            body #zillaHeader .header-content .header-content-top #call-action a#customerServicePhone:before,
            body #zillaHeader .header-content .header-content-top #shopperStatus #shoppingbag .bag > a,
            body #zillaHeader .header-content .header-content-top #shopperStatus #shoppingbag .bag #minicartItemsWrap {
                font-size: 20px;
            }

body #zillaHeader .header-content .header-content-top #call-action a#customerServicePhone {
    display: inline-block;
    font-size: 110%;
    font-weight: 900;
    line-height: 22px;
    vertical-align: middle;
}

    body #zillaHeader .header-content .header-content-top #call-action a#customerServicePhone:before {
        position: relative;
        top: 1px;
    }

#ulNav {
    justify-content: center;
}

    #ulNav > li {
    }

    #ulNav li:last-child {
        border-right: none;
    }

    #ulNav li a {
        border: none;
        box-shadow: none;
        font-weight: 400;
        font-family: var(--main-font-family-2);
        text-transform: uppercase;
        font-size: 90%;
    }

@media (min-width: 1100px) {
    #ulNav li a {
        letter-spacing: .5px;
    }
}

body #zillaHeader #startProject {
    display: none;
}

body #headerGoSearch {
    background: white;
    border-radius: 0;
    box-shadow: none;
    font-weight: 500;
    height: 38px;
    margin: 1px;
    position: absolute;
    right: 0;
    width: 29px;
}

body#body1 #headerGoSearch:before {
    color: #494949;
}



.ocd #masterWrap #headerWrap #header #zillaHeader #headerMenu .decor {
    background: white;
    border: none;
    border-left: solid 1px var(--brand-color);
    border-top: solid 1px var(--brand-color);
    bottom: -10px;
    display: block;
    height: 8px;
    left: 10px;
    position: absolute;
    transform: rotate(45deg);
    width: 8px;
    z-index: 1;
}

.ocd #schedule-consultation {
}

    .ocd #schedule-consultation .start-project-button {
        padding-left: 10px;
        display: flex;
        align-items: center;
    }

        .ocd #schedule-consultation .start-project-button:before {
            font-size: 18px;
        }

.ocd body#body1 #zillaHeader .mobile-logo {
    display: none;
}

.ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .header-top-line > nav > ul > li > ul {
    left: auto;
    right: 0;
}

.ocd body #zillaHeader .header-content .header-content-top #call-action {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-end;
    line-height: 1;
    white-space: nowrap;
}

.ocd #zillaHeader {
    background: none;
}

#schedule-consultation button {
    /*font-size: 13px;*/
    transition: font-size 0.1s, min-width 0.1s;
}

@media screen and (min-width: 1300px) {
    #schedule-consultation.icon-only button {
        font-size: 0;
        min-width: 50px;
        padding: 0 10px;
    }

        #schedule-consultation.icon-only button:before {
            font-size: 18px;
        }
}

#masterWrap .wrapper header#headerWrap {
    z-index: 10000;
}

@media screen and (min-width: 1100px) {
    .ocd body #pagewrapper {
        border-top: none;
    }

    #masterWrap .wrapper header#headerWrap {
        opacity: 0.98;
        position: fixed;
        top: 0;
        left: 0;
        /*border-bottom: solid 2px var(--border-color-on-black-bg);*/
    }

    body.print #masterWrap .wrapper #pagewrapper {
        margin-top: 0;
    }

    #masterWrap .wrapper #pagewrapper {
        margin-top: calc(var(--header-section1-height) + var(--header-section2-height));
    }

    body.quick_view #masterWrap .wrapper #pagewrapper {
        margin-top: 0;
    }

    .ocd body #masterWrap #zillaHeader {
        transition: height 0.12s, padding-bottom 0.12s;
    }

    .ocd body #masterWrap #headerWrap #zillaHeader .logo > a {
        transition: height 0.12s, width 0.12s;
    }

    .ocd body #masterWrap #headerWrap.mini-view {
        --header-section1-height: 65px;
        --header-section2-height: 0px;
        --header-section2-y: calc(0px - var(--header-section1-height));
    }

        .ocd body #masterWrap #headerWrap.mini-view #header {
            box-shadow: 0 2px 1px var(--black-2);
        }

        /*.ocd body #masterWrap #headerWrap #zillaHeader .header-content-bottom {
        transition: opacity 0.06s, visibility 0.06s, height 0.12s, margin 0.12s;
    }

    .ocd body #masterWrap #headerWrap #zillaHeader .header-content-bottom {
        opacity: 1;
        visibility: visible;
    }

    .ocd body #masterWrap #headerWrap.mini-view #zillaHeader .header-content-bottom {
        height: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
    }*/

        .ocd body #masterWrap #headerWrap.mini-view #zillaHeader .mini-logo {
            display: inline-block;
        }

    .ocd body #headerWrap.mini-view #zillaHeader {
        align-items: center;
    }

    .ocd body #headerWrap #zillaHeader > * {
        transform: scale(1);
        transition: transform .24s var(--ease);
    }

    .ocd body #headerWrap #zillaHeader > .header-content {
        transform-origin: right center;
    }

    .ocd body #headerWrap.mini-view #zillaHeader > .header-content {
        transform: scale(.9);
    }

    .ocd body #headerWrap #zillaHeader > .logo {
        transform-origin: left center;
    }

    .ocd body #headerWrap.mini-view #zillaHeader > .logo {
        transform: scale(.7);
    }

    .ocd body #headerWrap,
    .ocd body #masterWrap .wrapper header#headerWrap #headerGoSearch {
        transition: background 0.12s;
    }
}

.ocd body #headerWrap #zillaHeader > .logo {
    flex: 1;
}

.ocd body #headerWrap #zillaHeader > .header-content {
    flex: 4;
    max-width: max-content;
}

@media screen and (min-width: 1401px) {
    .ocd body #masterWrap .wrapper header#headerWrap.mini-view #headersearch .headersearchinput-wrap #headersearchinput.collapsed {
        background: var(--bg-color-3);
    }
}

@media screen and (min-width: 751px) and (max-width: 1210px) {
    /*html.ocd body#body1 #zillaHeader .header-content #headersearchinput {
        width: 130px;
    }

    .ocd body #zillaHeader .header-content .header-content-top #call-action a#customerServicePhone {
        font-size: 17px;
    }

    .ocd body #masterWrap #headerWrap #zillaHeader .logo > a {
        width: auto;
    }*/

    .ocd body #masterWrap #headerWrap #zillaHeader .logo {
        align-self: center;
    }

    /* .ocd body #masterWrap #headerWrap #zillaHeader .header-content .header-content-bottom #ulNav > li > a {
        padding-left: 10px;
        padding-right: 40px;
    }*/

    /*  .ocd body #masterWrap #headerWrap #zillaHeader .header-content .header-content-bottom #ulNav > li > a .indicator {
            right: 18px !important;
        }*/

    /*.ocd body #zillaHeader .header-content .header-content-top #call-action,
    .ocd body #zillaHeader .header-content .header-content-top #headersearch,
    .ocd body #schedule-consultation {
        margin-right: 10px;
    }*/
}

/*@media screen and (min-width: 751px) and (max-width: 850px) {
    html body #header {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 750px) {
    ul.header-navigation li #chooseUs span {
        display: none;
    }

    .ocd #masterWrap #headerWrap #header {
        height: auto;
        padding: 0;
    }

        .ocd #masterWrap #headerWrap #header .user-welcome {
            display: none;
        }

        .ocd #masterWrap #headerWrap #header #zillaHeader {
            flex-wrap: wrap;
            height: auto;
            justify-content: space-between;
            padding: 5px;
        }

            .ocd #masterWrap #headerWrap #header #zillaHeader .logo {
                display: none;
            }

    .ocd body #zillaHeader .header-content .header-content-top #call-action .phone-title {
        display: none;
    }

    .ocd body #zillaHeader .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 5px;
    }

        .ocd body #zillaHeader .header-content .header-content-top {
            flex-direction: column;
            flex-wrap: wrap;
            width: 100%;
        }

            .ocd body #zillaHeader .header-content .header-content-top .header-top-line {
                flex-wrap: wrap;
                justify-content: space-between;
            }

            .ocd body #zillaHeader .header-content .header-content-top .header-top-line {
                order: 1;
                padding-bottom: 38px;
                position: relative;
            }

            .ocd body #zillaHeader .header-content .header-content-top .header-bottom-line {
                margin-right: 75px;
                order: 2;
                position: absolute;
            }

    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .mobile-logo {
        display: inline-block;
        order: 0;
        width: 100px;
    }

        .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .mobile-logo img {
            margin-left: 5px;
            width: 100%;
        }

    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #call-action {
        margin-right: 0;
        order: 1;
    }

    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #schedule-consultation {
        margin-right: 0;
        order: 2;
    }

        .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #schedule-consultation button {
            font-size: 0;
            margin-right: 0;
            min-width: 45px;
            padding: 0;
            justify-content: center;
            display: flex;
        }

            .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #schedule-consultation button:before {
                font-size: 20px;
            }

    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #shopperStatus {
        margin-right: 5px;
        order: 3;
    }

    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .header-top-line > nav {
        margin-right: 5px;
        order: 4;
    }


    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #headersearch {
        background: none;
        margin: 10px 0 5px 0;
        order: 9;
        width: 100%;
    }

        .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #headersearch #headersearchinput {
            width: 100%;
        }

            .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top #headersearch #headersearchinput.collapsed {
                border: 1px solid #494949 !important
            }

    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .header-navigation {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0;
        order: 10;
    }

        .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .header-navigation li {
            margin-right: 5px;
            padding: 0 5px 0 0;
        }

            .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .header-navigation li:nth-child(2) {
                display: none;
            }

    .ocd #ulNav > li {
        border-right: none;
    }

    .ocd #masterWrap #headerWrap #header #zillaHeader .header-content .header-content-top .menu-button {
        bottom: 0;
        display: inline-block;
        order: 11;
        position: absolute;
        right: 0;
    }

    .ocd #masterWrap #headerWrap #header #zillaHeader #headersearch {
        margin: 5px 0 0 0;
        order: 5;
        width: 100%;
    }*/



/* .ocd body #zillaHeader .header-content .header-content-bottom {
        margin-top: 0;
        width: 100%;
    }*/

/*.ocd #footer .footer-content .footer-top {
        flex-direction: column;
        padding: 10px;
    }

        .ocd #footer .footer-content .footer-top .footer-data .address-list {
            flex-direction: column;
        }

        .ocd #footer .footer-content .footer-top .footer-data .main-address div, .ocd #footer .footer-content .footer-top .footer-data .main-address a {
            font-size: 15px;
            line-height: 22px;
            margin-bottom: 5px;
            margin-top: 0;
        }

        .ocd #footer .footer-content .footer-top .footer-data .main-address {
            margin-right: 0;
        }

        .ocd #footer .footer-content .footer-top .site-links {
            margin-top: 10px;
            width: 100%;
        }

    .ocd #footer .footer-content .footer-bottom {
        margin: 0;
        padding: 10px;
    }

    .ocd #footer .footer-content .footer-top .footer-data h4 {
        font-size: 20px;
    }

    .ocd #footer .footer-content .footer-top .site-links .call-title {
        font-size: 16px;
    }

    .ocd #footer .footer-content .footer-top .site-links .call-number, .ocd #footer .footer-content .site-links .call-number a {
        font-size: 33px;
    }

    .ocd #footer .footer-content .footer-top .site-links .social-title {
        margin: 10px 0;
    }

    .ocd #footer .footer-content {
        margin: 0;
    }
}


@media screen and (max-width: 950px) {
    .ocd #masterWrap #headerWrap #header #zillaHeader #headerMenu {
        display: inline-block;
        margin: 0;
        padding-left: 30px;
        position: relative;
        width: 70px;
        margin-left: 10px;
    }

        .ocd #masterWrap #headerWrap #header #zillaHeader #headerMenu .decor {
            display: none;
        }

    .ocd #masterWrap #headerMenu .icon-cancel-1, .ocd #masterWrap #headerMenu .icon-menu {
        font-size: 21px;
        left: 3px;
        top: 9px;
        position: absolute;
    }
}*/
 /*#topNavBar .nav {
    margin: 0;
    display: flex;
    justify-content: space-around;
    vertical-align: top;
    position: relative;
    padding: 0;
    list-style: none;
    line-height: 1;
    text-align: left;
    flex-flow: row nowrap;
    align-items: stretch;
}

    #ulNav li .ddown {
        position: absolute;
        top: -100000px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.5);
        background: #fff;
        margin: 0;
        padding: 20px;
        z-index: 500;
        left: calc(-2vw + 3px);
        border-radius: 2px;
        min-width: 220px;
    }*/

li#nav-print.print-services ul.ddown {
    left: unset;
}

#ulNav li .ddown .icon-search:before {
    margin-left: 0;
}

#topNavBar .nav li:is(#nav-0,#nav-1,#nav-2,#nav-3) .ddown {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    white-space: nowrap;
    gap: .3rem;
}

#topNavBar .nav > li.hover .ddown,
#topNavBar .nav > li:hover .ddown {
    transition-delay: .175s;
    top: 100%;
}

#topNavBar .nav li {
    display: flex;
}

.no-flexbox #topNavBar .nav {
    display: block;
    height: 100%;
}

@media screen and (max-width: 950px) {
    html body #topNavBar .nav li > .ddown {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        white-space: nowrap;
    }

    body #topNavBar .nav {
        flex-direction: column;
        margin: 0 auto;
        width: 100%;
    }

        body #topNavBar .nav > li:not(:last-child), body #topNavBar .nav > li:not(:last-child):hover,
        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav li.back-navigation-title {
            border-bottom: solid 1px #0090c0;
        }


        body #topNavBar .nav > li li:not(:last-child) {
            border-bottom: dotted 1px #0090c0;
        }

        body #topNavBar .nav > li:last-child {
            border-bottom: none;
        }

        body #topNavBar .nav li br {
            display: none;
        }

    body #topNavBar ul.nav li a:link,
    body #topNavBar ul.nav li a:visited {
        color: var(--bg-color);
    }

    body #topNavBar ul.nav li a[href*="#nav"] {
        color: var(--text-color) !important;
    }

    body #topNavBar .nav li a.topNavLink {
        font-weight: 900;
        height: 28px;
        margin: 0;
    }

    body #topNavBar .nav .ddown a {
        font-size: 100%;
        font-weight: 400;
        border-radius: 2px;
    }

   /* body #navlinks, body #navigation {
        height: auto;
    }*/

   /* html body #ulNav li .ddown {
        max-width: none !important;
        width: 100% !important;
    }*/

/*    #navwrapper {
        height: 0;
        transition: height .2s ease-in;
        overflow: auto;
        grid-column: 1 / span 2;
    }*/

    .modal.big.mobile-products-menu-modal,
    .modal.big.search-modal {
        margin-left: 100vw;
        transition: margin-left 0.15s;
        /*transform: translateX(100vw);
        transition: transform 0.3s;*/
        left: 5px !important;
        right: 5px !important;
        top: 5px !important;
        bottom: 5px !important;
        max-height: calc(100vh - 10px) !important;
    }

        .modal.big.mobile-products-menu-modal.opened,
        .modal.big.search-modal.opened {
            /*transform: translateX(0);*/
            margin-left: 0;
        }

        .modal.big.mobile-products-menu-modal div.cancel,
        .modal.big.search-modal div.cancel {
            z-index: 10001;
            top: 5px;
            right: 5px;
        }

        .modal.big.search-modal div.cancel {
            top: 8px;
            right: 8px;
        }

    .modal.big.search-modal {
        padding: 10px;
    }

   /* .modal.big.mobile-products-menu-modal #navwrapper {
        height: 100%;
        margin-right: 45px;
    }

    .modal.big.mobile-products-menu-modal #topNavBar .nav li {
        display: list-item;
        width: 100%;
    }

        .modal.big.mobile-products-menu-modal #topNavBar .nav li > a.topNavLink > span:after {
            display: none;
        }

        .modal.big.mobile-products-menu-modal #topNavBar .nav li > .ddown {
            padding: 0;
        }
*/
    html body #topNavBar .nav > li > a > span {
        border: none;
    }

    html body .ddown a h2 {
        font-size: 12px;
    }

    .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > .ddown {
        visibility: hidden;
        /*display: none; */
    }

    .modal.big.mobile-products-menu-modal #topNavBar #ulNav > li {
        display: list-item;
    }

    .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li,
    .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li .ddown li {
        padding-left: 40px;
    }

        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > a.topNavLink,
        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li .ddown li > a {
            padding-left: 0;
            padding-top: 14px;
            padding-bottom: 14px;
            height: auto;
        }

        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > a.open-second-level,
        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > ul > li a.open-third-level,
        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav li.back-navigation-title a.close-second-level,
        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav li.back-navigation-title a.close-third-level {
            position: absolute;
            left: 0px;
            text-decoration: none;
            padding: 13px 10px;
            top: 0;
        }

        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > ul,
        .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > ul > li > ul {
            margin-left: 100vw;
            transition: margin-left 0.3s, visibility 0.3s ease-in-out;
            /*transform: translateX(100%);
            transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;*/
            position: fixed;
            height: calc(100vh - 10px);
            right: 5px;
            top: 5px;
            left: 5px;
            bottom: 5px;
            overflow-y: auto;
            overflow-x: hidden;
            margin-right: 45px;
            width: calc(100vw - 55px) !important;
            padding: 0;
            box-shadow: none;
            /* margin-left: 0;*/
            flex-direction: column;
            visibility: hidden;
            flex-wrap: nowrap;
        }

            .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > ul.open-ddown.ddown,
            .modal.big.mobile-products-menu-modal #topNavBar #ulNav.nav > li > ul > li > ul.open-ddown {
                /*transform: translateX(0);*/
                margin-left: 0;
                visibility: visible;
            }

    html body .modal.big.mobile-products-menu-modal #ulNav li .ddown li:hover > a {
        color: var(--bg-color);
        background: #fff;
    }

    body #ulNav li .ddown {
        /*position: static;
        box-shadow: none;
        width: 100%;
        display: none;*/
    }

    body #topNavBar .nav > li.active .ddown {
        display: block;
    }

    body #topNavBar .nav > li.active a.topNavLink {
        background: #fff;
    }

    body #topNavBar .nav > li.active .ddown,
    body #topNavBar .nav > li.active .ddown {
        opacity: 1;
        transition-delay: .175s;
        z-index: 500;
        visibility: visible;
    }

    html body #topNavBar .nav > li:hover > a > span {
        border-bottom-color: transparent;
    }
}

@media screen and (min-width: 951px) {
    /*#navwrapper {
        height: auto !important;*/ /* !important is to override inlined height */
    /*}*/

    #topNavBar .nav li:hover > a,
    #topNavBar .nav a:hover {
        background-color: #fff;
        color: var(--a-color);
    }
}


#topNavBar .nav .ddown a {
    padding: 7px;
    text-decoration: none;
    display: block;
    border-radius: 2px;
}

#ulNav li .ddown a {
}

#topNavBar .nav li /* all list items */ {
    display: flex;
    position: relative;
    align-items: stretch;
}

#topNavBar .nav a label {
    cursor: pointer;
    line-height: 110%;
}

.no-flexbox #topNavBar .nav a.topNavLink {
    display: block;
    height: 100%;
    padding-top: 7px;
}

/*#topNavBar .nav a.topNavLink, a.topNavLink {
    padding: 5px 10px;
    display: flex;
    font-weight: 700;
    text-decoration: none;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--compact-font-family);
}*/

#liMyCategories {
    display: none !important;
}

@media screen and (max-width: 1200px) {
    body #topNavBar .nav a.topNavLink {
        font-size: 100%;
        padding-left: 5px;
        padding-right: 5px;
        font-size: 12px;
    }
}

#topNavBar .nav > li > a {
    display: flex;
    display: -webkit-flex;
}

    #topNavBar .nav > li > a > span {
        text-align: center;
        border-bottom: solid 2px white;
        border-top: solid 2px white; /* to compensate for bottom border */
    }

#topNavBar .nav > li:hover > a > span {
    border-bottom-color: var(--bg-color);
}

#topNavBar .nav > li:not(.no-ddown) > a > span:not(.indicator):after, #headerMenu > span.prod-title:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 5px);
    width: 4px;
    height: 4px;
    border-right: solid 1.5px;
    border-bottom: solid 1.5px;
    transform: rotate(45deg);
}

#topNavBar .nav > li > a > span {
    border-bottom: solid 2px white;
}

#topNavBar .nav > li:hover {
    background-image: none;
    border-bottom: 0;
}

#topNavBar .nav > li .amp {
    font-size: 85%;
    font-weight: 100;
    font-style: italic;
}

#topNavBar .nav > li:hover a.topNavLink {
    background: #fff;
}

#ulNav li .ddown li {
    clear: both;
    line-height: 80%;
    height: auto;
    position: relative;
}

body #ulNav li .ddown li:hover > a,
body #ulNav li .ddown li:hover > a:active,
body #ulNav li .ddown .main li:hover > a,
body #ulNav li .ddown .main li:hover > a:active {
    background: var(--bg-color);
    color: #fff;
}

#topNavBar .nav li.print-services .ddown {
    max-width: 170px;
}

#topNavBar .nav li.industry .ddown {
    max-width: 130px;
}

#ulNav li .ddown ul {
    margin: 0;
    padding: 0;
    display: none;
}

#topNavBar .nav li:last-child .ddown {
    /*right: 0;*/
    left: auto;
}


#ulNav li .ddown li {
    float: none;
    display: block;
}

#topNavBar .nav li:hover ul ul ul,
#topNavBar .nav li.sfhover ul ul,
#topNavBar .nav li.sfhover ul ul ul {
    display: none;
}

#topNavBar .nav a.selected {
    color: #052E52;
}

#topNavBar .nav ul li {
    padding: 0;
}

#categorymenu {
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    list-style-type: none;
}

    #categorymenu li {
        display: inline;
    }

        #categorymenu li a {
            padding: 0.2em 1em;
            background: #fc6;
            color: #000;
            text-decoration: none;
            float: left;
            border: 1px solid #000;
        }

            #categorymenu li a:hover {
                background: #08c;
                color: #fff;
            }

#topNavBar.spr .ddown a:hover h2 {
    color: white;
}

#topNavBar.spr .ddown a h2 {
    padding: 0;
    margin: 0;
    background: none !important;
    font-size: 120%;
    font-weight: 500;
}

#topNavBar.spr .nav li:not(.print-services):not(.industry) .ddown a {
    font-weight: normal;
}

#topNavBar.spr ul li:not(.print-services):not(.industry) ul.ddown > li {
    margin: .2em 0 .5em 0;
}

#topNavBar.spr .nav li .ddown a {
    font-size: 12px;
}

#topNavBar.spr .nav li ul.ddown {
    width: 102%;
    left: 0px;
    right: 0px;
    margin: 0px -1%;
}

#topNavBar.spr .ddown {
    display: flex;
    flex-flow: column wrap;
    align-content: flex-start;
}

#topNavBar.spr .nav li.print-services .ddown,
#topNavBar.spr .nav li.industry .ddown {
    max-width: initial;
}

#topNavBar.spr ul.nav li {
    position: initial;
}

#topNavBar.spr ul.ddown.several {
    max-height: 150px;
}

#topNavBar.spr ul.ddown.few {
    max-height: 100px;
}

#topNavBar.spr ul.ddown.average {
    max-height: 400px;
}

#topNavBar.spr ul.ddown.many {
    max-height: 700px;
}

@media screen and (max-width: 950px) {
    body #topNavBar {
        background-color: #fff;
    }
}

ul#ulNav br {
    display: none;
}

#nav-1 .amp {
    margin-right: 5px;
}

.ddown a h2 {
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    margin-bottom: initial;
    line-height: 100%;
    letter-spacing: initial;
}

#ulNav li ul.ddown > li:not(:last-child) {
}

/*   ---   */

#ulNav li .ddown li ul {
    position: absolute;
    left: calc(100% - 20px);
    white-space: nowrap;
    top: -20px;
    background: white;
    border-radius: 2px;
    padding: 1vw;
    min-width: 250px;
    z-index: 10;
    background: white;
    opacity: .98;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}

    #ulNav li .ddown li ul.size5 {
        top: -20px;
    }

    #ulNav li .ddown li ul.size10 {
        top: -80px;
    }

    #ulNav li .ddown li ul.size15 {
        top: -200px;
    }

#ulNav li .ddown li:hover ul {
    display: block;
}


#topNavBar .new-group {
}

#topNavBar .nav li.my_categories {
    display: none;
}

@media only screen and (max-width: 1250px) {
    #topNavBar .nav li#nav-deals {
        display: none;
    }
}

@media only screen and (max-width: 1150px) {
    #topNavBar .nav li#nav-paper {
        display: none;
    }
}

@media only screen and (max-width: 1100px) {
    #topNavBar .nav li#nav-ink-toner {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    #topNavBar .nav li#nav-print {
        display: none;
    }
}
 .ocd #topNavBar .nav > li > a > span {
    border-bottom: 0;
}
 #zillaHeader > nav {
    flex-grow: 1;
    margin: 0;
}

#ulNav {
}

#zillaHeader nav > ul,
#ulNav {
    align-items: center;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: stretch;
}

    #zillaHeader nav > ul > li,
    #ulNav > li {
        list-style-type: none;
        margin: 0;
        padding: 0;
        position: relative;
        align-items: stretch;
    }

        #zillaHeader nav > ul > li > .ddown,
        #ulNav > li > .ddown {
            background: var(--black);
            box-shadow: none;
            box-shadow: 0 5px 5px #1e1e1e;
            left: 0;
            overflow: hidden;
            padding: 0;
            padding: 5px 0;
            position: absolute;
            transition-duration: .1s;
            visibility: hidden;
            min-width: 125px;
            top: 100%;
            width: max-content;
            padding-block: var(--half-margin);
        }

@media screen and (max-width: 950px) {
    #navlinks #ulNav > li:last-child > .ddown {
        right: 0;
        left: unset;
    }
}

.ocd #zillaHeader nav > ul > li > .ddown,
#ulNav > li > .ddown {
    min-width: 100%;
}

#zillaHeader nav > ul > li > .single-category,
#ulNav > li > .single-category {
    display: none;
}

#zillaHeader nav > ul > li:hover > .ddown {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#zillaHeader nav > ul > li.action-wrapper:hover > a.dropdown-button > .indicator {
    background: white;
    display: block;
    height: 5px !important;
    left: 0;
    position: absolute;
    top: 42px !important;
    transform: none;
    width: calc(100% + 1px) !important;
    z-index: 9000;
}

#zillaHeader nav > ul > li:hover > .ddown,
#ulNav > li:hover > .ddown {
    border-radius: 2px;
    max-height: initial;
    transition-delay: .15s;
    transition-duration: .24s;
    transition-property: max-height, visibility;
    visibility: visible;
    z-index: 1001;
}

#zillaHeader nav > ul a,
#ulNav a {
    color: inherit;
    display: block;
    font-weight: 500;
    padding: var(--quarter-margin) var(--half-margin);
    white-space: nowrap;
}

#header #ulNav,
#header #ulNav > li {
    display: flex;
    align-items: stretch;
}

    #header #ulNav > li > a {
        padding-block: 0;
        display: flex;
        align-items: center;
    }

#ulNav > li > a {
    padding-inline: var(--margin);
    outline: none;
}

#zillaHeader nav > ul a.dropdown-button:hover,
#zillaHeader #ulNav a.dropdown-button:hover,
#zillaHeader #ulNav li:hover a.dropdown-button {
    text-decoration: none;
    background: var(--brand-color);
    color: var(--white);
}

#zillaHeader nav > ul .ddown a,
#ulNav .ddown a {
    padding: var(--half-margin) var(--margin-x2);
}
/*#zillaHeader nav > ul > li > a{
            border-bottom: solid 1px var(--brand-color);
            padding: 0;
            line-height: 140%;
    }*/
#zillaHeader nav > ul > li > a:hover {
    text-decoration: none;
}

#zillaHeader nav > ul ul ul a {
    padding-left: 20px;
}

#zillaHeader nav > ul #userMenu a {
    display: inline;
    padding: 0;
    text-decoration: underline;
}

body#body1 #zillaHeader nav > ul ul a:hover,
body#body1 #ulNav a:hover {
    background: var(--brand-color);
    color: white;
}

#zillaHeader nav > ul > li:hover > .ddown li {
}

#mobileNavMenu {
    height: 100%;
    width: 100%;
    max-width: unset;
    max-height: unset;
    background: black;
}

    #mobileNavMenu #navMenuControl {
        display: flex;
        color: white;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 20px;
    }

        #mobileNavMenu #navMenuControl .cancel:before,
        #mobileNavMenu #navMenuControl .cancel:after {
            background: white;
        }

    #mobileNavMenu #navlinks #ulNav {
        align-items: unset;
        color: white;
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

        #mobileNavMenu #ulNav > li > .ddown {
            visibility: initial;
            box-shadow: none;
            position: static;
        }

@media screen and (max-width: 750px) {
    #zillaHeader nav > ul.action-wrapper.active > li > .ddown {
        border-radius: 2px;
        max-height: 300px;
        transition-delay: .15s;
        transition-duration: .24s;
        transition-property: max-height, visibility;
        visibility: visible;
        z-index: 1001;
    }

    /* .ocd #masterWrap #headerWrap #header #zillaHeader .navwrapper {
        flex-grow: 1;
        height: 0;
        order: 6;
        overflow: hidden;
        transition: height .2s ease-in;
    }

    .ocd #masterWrap #headerWrap #header #zillaHeader .navwrapper > ul {
        align-items: stretch;
        border: solid 1px var(--brand-color);
        border-radius: 2px;
        box-shadow: 0 0 2px var(--brand-color);
        flex-direction: column;
        margin-top: 5px;
    }

    .ocd #masterWrap #headerWrap #header #zillaHeader .navwrapper > ul > li { flex-grow: 1; }

    .ocd #masterWrap #headerWrap #header #zillaHeader .navwrapper > ul > li > a {
        border: none;
        border-radius: 0;
        box-shadow: 0 0 2px var(--brand-color);
        font-weight: bold;
        margin-right: 0;
        padding-left: 10px;
    }

    .ocd #masterWrap #headerWrap #header #zillaHeader .navwrapper .indicator { display: none; }

    .ocd #masterWrap #headerWrap #header #zillaHeader .navwrapper > ul > li > ul {
        border-left: none;
        border-right: none;
        display: block;
        max-height: initial;
        overflow: initial;
        position: relative;
        top: 0;
        visibility: visible;
        width: 100%;
    }

    .ocd #masterWrap #zillaHeader nav.navwrapper ul > li.action-wrapper#nav-2 > ul {
        left: initial;
        right: 0;
    }

    .ocd #masterWrap #zillaHeader nav.navwrapper ul > li.action-wrapper:hover > a { top: 0; }

    .ocd #masterWrap #zillaHeader nav.navwrapper ul > li > .ddown { top: 40px; }

    .ocd #masterWrap #zillaHeader nav.navwrapper ul > li.action-wrapper#nav-2 > a { margin-right: 0; }*/

    .ocd #masterWrap #zillaHeader #accountSettings nav > ul > li > a {
        overflow: hidden;
        padding-left: 0;
        text-align: right;
        text-overflow: ellipsis;
    }

    .ocd #masterWrap #zillaHeader #accountSettings nav > ul > li > ul.ddown {
        left: calc(50vw - 125px);
        right: 0;
        width: 250px;
    }
}

@media screen and (max-width: 950px) {

    .modal.big.mobile-products-menu-modal .navwrapper .nav .indicator {
        display: none;
    }
}
 body, html {
    /*background: var(--bg-color-main);*/
    font-family: var(--main-font-family);
}

a, p, span, div, input, select, button {
    font-family: var(--main-font-family) !important;
}

body {
    overflow: auto;
}

p {
    font-family: var(--main-font-family);
}

.ocd-brand-name {
    font-family: var(--main-font-family);
    font-weight: 700;
    letter-spacing: 0;
}

    .ocd-brand-name .c {
        display: inline-block;
        font-size: 90%;
        transform: rotate(-18deg);
    }

.section-wrapper {
    align-items: flex-start;
    display: flex;
    font-size: 0;
    justify-content: center;
    justify-content: space-between;
}

    .section-wrapper > section {
        flex-grow: 1;
        font-size: 13px;
        vertical-align: top;
    }

.gallery img {
    width: 100%;
}




/*body #zillaHeader .header-content .header-content-bottom {
    margin-top: 15px;
}*/


/* header */

#mainContent #sectionHeaderBar {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    height: initial;
    justify-content: space-between;
    padding: 1vw;
    position: relative;
}

    #mainContent #sectionHeaderBar .category-text-content {
        max-width: var(--text-content-max-width);
        text-align: initial;
        margin: 0 auto;
    }

.ocd #sectionHeaderBar h1#h1 {
    display: inline-block;
    vertical-align: middle;
}

.ocd #sectionHeaderBar p {
    font-size: 14px;
    margin: 1em 0 !important;
}

    .ocd #sectionHeaderBar p:last-child {
        margin-bottom: 0 !important;
    }

#mainContent section.start-creating > h1 {
    font-family: var(--main-font-family);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -.5px;
    line-height: 115%;
    margin: 3px 20px 5px 0;
}

section.start-creating .canvas {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAIUlEQVQoU2O8ffu2LwMRgBGkUFVVdTMhtaMK8YYQ0cEDAO63JulOwqN5AAAAAElFTkSuQmCC) repeat;
    border: solid 1px #aaa;
    border-radius: 2px;
    box-shadow: 0 0 3px #555;
    height: 507px;
    width: 850px;
}


.html-logo {
    color: white;
    font-family: var(--main-font-family);
    font-size: 50px;
    font-weight: 400;
}


#zillaHeader .category a {
    color: white;
    font-family: var(--main-font-family);
    font-size: 12px;
    line-height: 120%;
}

#zillaHeader .category > a {
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

#zillaHeader .category > ul {
    display: none;
    margin-right: 10px;
    vertical-align: top;
}

#zillaHeader .links {
    margin: 0 0 10px 0;
    padding: 0;
}

    #zillaHeader .links li {
        display: inline-block;
        list-style-type: none;
        margin: 0 10px 0 0;
        padding: 0;
    }

    #zillaHeader .links a {
        color: white;
        font-family: var(--main-font-family);
        font-size: 13px;
        font-weight: 400;
    }

    #zillaHeader .links .shopping-cart a:before {
        font-size: 16px;
        font-weight: normal;
    }

#zillaHeader .tools {
    align-self: flex-start;
    padding-top: 20px;
}



























body #zillaHeader .category > a {
    color: #80888a;
    margin: 0;
}


body #zillaHeader .links a {
    color: #80888a;
}

body #zillaHeader .tools {
    padding: 10px 0;
}

body #headerMenu {
    border-radius: 0;
    box-shadow: none;
    color: #5a6367;
    font-weight: 500;
    margin: 1px;
    position: absolute;
    right: 0;
}

body #headersearchinput, body #headersearchinput:focus {
    border: solid 1px var(--brand-color);
    box-shadow: 0 0 2px var(--brand-color);
    font-size: 14px;
    width: 100%;
}

input::placeholder {
    color: #aeb2b3 !important;
    font-family: var(--main-font-family) !important;
    font-size: 12px;
    font-style: normal !important;
    font-weight: 100 !important;
}

#tool-nav {
    display: flex;
}


body #preheader {
    height: auto;
}

body #accountSettings {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    line-height: 19px;
}

    body #accountSettings > *:not(:last-child) {
        margin-right: 20px;
    }

#affiliatePhone {
    line-height: 140%;
}

    #affiliatePhone a {
        white-space: nowrap;
    }

    #affiliatePhone .icon-phone:before {
        margin: 0 2px 0 0;
    }

html body h1#h1, html body h1#h1 select {
    font-weight: 300;
}

#registerForgot .register:after {
    content: '';
    display: block;
}

body div.form.form-type2.login .row label:first-child {
    width: 80px;
}

body div.form.form-type2 .row label {
    margin-top: 0;
}

html body .ui-autocomplete.ui-menu {
    border: solid 1px #494949 !important;
    border-top: none !important;
    box-shadow: 0 0 2px #494949;
}

html body#body1 .ui-autocomplete .ui-state-focus, html body#body1 .ui-autocomplete .ui-state-focus strong {
    background: var(--brand-color);
    color: white !important;
}

.productCompareControl {
    display: none;
}

body ul.products {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 0;
    padding: 0;
}

    body ul.products li {
        border: solid 1px var(--brand-color);
        border-radius: 0;
        box-shadow: 0 0 3px var(--brand-color);
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* IE10+ specific styles go here */
    html.ocd body ul.products {
        display: flex;
        flex-flow: wrap;
    }

        html.ocd body ul.products li {
            margin-bottom: 10px;
            margin-right: 10px;
            width: 250px;
        }
}

body .comparisonTD {
    display: none;
}

body ul.products li a.details {
    color: var(--black);
    display: block;
    line-height: 1.4;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    font-weight: 700;
}

    body ul.products li a.details .rating_star{
        display: none;
    }

    body ul.products li .thumbnail {
        border-radius: 2px;
        display: block;
        margin: 0 auto var(--margin) auto;
        max-height: 100px;
        max-width: 100%;
    }

.ocd ul.products li {
    background: white;
    padding: 15px;
}

body ul.products li .sku {
    display: none;
}

body#body1 #mainContent .products .product .displayPrice {
    font-family: 'Roboto Condensed' !important;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
}

.products .product .addToCartWrap.inputs {
    text-align: center;
}

.ocd #mainContent .products .product .displayPrice,
.ocd #mainContent .products .product .displayPriceGreen {
    font-weight: inherit;
}

body .displayPrice .uom {
    color: #8c8b8e !important;
    font-family: 'Roboto Condensed' !important;
    font-size: 100%;
}

body .displayPrice::first-letter {
    margin-right: 3px;
}

#mainContent .addToCartWrap input[type="text"] {
    border: solid 1px #bbb;
}


body #shoppingbag .bag {
    align-items: flex-end;
    justify-content: unset;
    width: auto !important;
}

body #shoppingbag .bag {
    background: none;
    border: none;
    height: auto;
    padding: 0;
}

body #minicartHandle {
    background: none;
    height: auto;
    margin-right: 0;
    opacity: 1;
    width: auto;
}

body #shoppingbag .check-out:before {
    font-size: 1.3rem;
    left: 0;
}

#minicartHandle:before {
    display: none;
}

body #shoppingbag .check-out {
    margin: 0 !important;
    aspect-ratio: 1;
}

    body #shoppingbag .check-out:before {
        left: 0;
        margin: 0;
    }

body #shoppingbag .count {
    margin-bottom: 0;
}

body #shoppingbag.hover .bag, body #shoppingbag.autovisible .bag {
    border: none;
}

body #shoppingbag.hover #minicartHandle {
    background: none;
}

body #shoppingbag #minicartHandle {
    display: flex;
    gap: .5rem;
    text-decoration: none;
}

    body #shoppingbag #minicartHandle + #minicartItemsWrap {
        color: #0067a5;
    }

.ocd body #miniCartModalFlyout {
    background: white;
    box-shadow: 0 0px 7px #888;
    left: -151px;
    top: 42px;
    width: 300px;
}

    .ocd body #miniCartModalFlyout.headerout {
        top: 0;
    }

body #shoppingbag.hover #miniCartModalFlyout {
    overflow: visible;
}

body .shopping_cart.type1 .cart_items li {
    background: none;
}

body #miniCartModal {
    background: none;
    border: none;
}

#miniCartModal .decor {
    background: white;
    border-left: solid 1px #cfcfcf;
    border-top: solid 1px #cfcfcf;
    height: 11px;
    left: 168px;
    position: absolute;
    top: -7px;
    transform: rotate(45deg);
    width: 11px;
}

body #shoppingbag.hover #miniCartModalFlyout,
body #shoppingbag.autovisible #miniCartModalFlyout,
body #shoppingbag.autovisible.done #miniCartModalFlyout:hover {
    transition: max-height .1s ease-in;
    z-index: 50000;
}

body #miniCartModal ul li {
    border-bottom: dotted 1px #b2b6b7;
}


html body #headersearch .ui-autocomplete .ui-menu-item a {
    padding: 5px 10px;
}

html body #mainContent .cqb_inc, html body #mainContent .cqb_dec {
    display: none !important;
}


html body #mainContent .possibilities ul {
    margin: 0;
    padding: 0;
}

    html body #mainContent .possibilities ul a {
        color: black !important;
    }

    html body #mainContent .possibilities ul li {
        margin: 3px 0;
    }

.possibilities:hover {
    opacity: .99 !important;
}


body .lmargin {
    padding-left: 20px;
}

body .fullmargin {
    padding: var(--margin);
}


html body .address.emphasize .desc {
    font-weight: normal !important;
}

body #billingAddressForm .editor {
    margin-top: 0;
}

body {
    font-family: var(--main-font-family) !important;
}

    body #billingAddressForm .data .container {
        font-weight: normal;
        margin: 0;
    }

html body .modal .address_editor_content {
    min-height: 330px;
}

body #shoppingCartContent table th {
    background-color: #cecece;
}

body #shoppingCartContent table td {
    background: none;
    border-color: #ddd;
}

body #shoppingCartContent {
    max-width: 800px;
}

/*#zillaHeader .action-wrapper .dropdown-button .indicator {
    border-color: var(--brand-color) !important;
    border-width: 1px !important;
    height: 9px !important;
    right: 35px !important;
    top: calc(50% - 7px) !important;
    width: 9px !important;
}*/

#zillaHeader .header-content-top .action-wrapper .dropdown-button .indicator {
    border-width: 2px !important;
    height: 6px !important;
    right: var(--half-margin) !important;
    top: calc(50% - 5px) !important;
    width: 6px !important;
}

/*@media screen and (max-width: 750px) {
    #zillaHeader .action-wrapper.active .dropdown-button .indicator {
        border-color: white !important;
        display: none;
    }

    body #zillaHeader .header-content .header-content-top #call-action a#customerServicePhone {
        display: flex;
        font-size: 0;
    }
}*/


#zillaHeader .action-wrapper .dropdown-button:not(.default-button):enabled:hover .indicator {
    border-color: #5a6367;
}

body #zillaHeader nav > ul a {
    line-height: 100%;
    white-space: normal;
}

#entityPageSummaryWrap {
    font-size: 15px;
    font-weight: 300;
    line-height: 140%;
}

.genericContent {
    max-width: 700px;
}

    .genericContent :is(p, ul, ol):not(:last-child) {
        margin-bottom: var(--p-margin);
    }

    .genericContent h1#h1,
    html body #mainContent .genericContent h1#h1 {
        max-width: none;
    }

    .genericContent ul li, .genericContent ol li, .genericContent p,
    #mainContent .genericContent ul li, #mainContent .genericContent ol li,
    #mainContent .genericContent p {
        font-size: inherit;
    }


html body #mainContent {
    padding-bottom: 0;
}


.ocd #footer {
    background: var(--black);
    color: white;
    display: block;
    justify-content: center;
    padding: var(--margin-x2) var(--margin);
}

#footer .genericContent {
    max-width: unset;
}

#footer .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

    #footer .footer-content .footer-top {
        border-bottom: 1px solid var(--border-color-on-black-bg); /*#262626*/
        border-top: 1px solid var(--border-color-on-black-bg);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 0;
        gap: var(--margin-x2);
        padding-block: var(--margin-x2);
    }

        #footer .footer-content .footer-top .footer-data {
            flex: 1;
        }

            #footer .footer-content .footer-top .footer-data h4 {
                color: white;
                font-size: 25px;
                text-transform: uppercase;
            }

            #footer .footer-content .footer-top .footer-data .address-list {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: var(--margin);
            }

        #footer .footer-content .footer-top .badges {
            text-align: center;
            flex: 0;
        }

            #footer .footer-content .footer-top .badges ul {
                display: flex;
                align-items: center;
                justify-content: center;
                max-width: none;
            }

                #footer .footer-content .footer-top .badges ul li {
                    margin: 0 10px;
                }

                    #footer .footer-content .footer-top .badges ul li img {
                        max-height: 100px;
                        max-width: 100px;
                    }

                    #footer .footer-content .footer-top .badges ul li.be {
                        width: 135px;
                        height: 78px;
                        overflow: hidden;
                    }

                    #footer .footer-content .footer-top .badges ul li iframe {
                        transform: scale(.5);
                        transform-origin: 0 0;
                    }

                    #footer .footer-content .footer-top .badges ul li div div {
                        display: none !important;
                    }

        #footer .footer-content .footer-top .footer-data .main-address {
            /*margin-right: 40px;*/
        }

            #footer .footer-content .footer-top .footer-data .main-address:last-child {
                margin-right: 0;
            }

            #footer .footer-content .footer-top .footer-data .main-address div,
            #footer .footer-content .footer-top .footer-data .main-address a {
                color: #8c8b8e;
                font-size: 18px;
                line-height: 30px;
                margin-top: var(--half-margin);
            }

        #footer .footer-content .footer-top .site-links {
            display: flex;
            flex-direction: column;
            gap: var(--half-margin);
        }

            #footer .footer-content .footer-top .site-links .call-title {
                color: #8c8b8e;
                font-family: 'Roboto Condensed' !important;
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
            }

            #footer .footer-content .footer-top .site-links .call-number, #footer .footer-content .site-links .call-number a {
                color: #c8942b;
                font-size: 40px;
                line-height: 100%;
            }


            #footer .footer-content .footer-top .site-links .social-title {
                color: #8c8b8e;
                font-family: 'Roboto Condensed' !important;
                font-size: 18px;
                font-weight: bold;
                margin-top: var(--margin);
                text-transform: uppercase;
            }

            #footer .footer-content .footer-top .site-links ul.social-links {
                display: flex;
                max-width: initial;
            }

            #footer .footer-content .footer-top .site-links .social-links li {
                margin-right: 20px;
            }

@media screen and (max-width: 750px) {
    #footer .footer-content .footer-top .site-links .social-links li {
        margin-right: 10px;
    }

    body #footer .site-links ul li:not(:last-child) {
        margin-right: 10px;
        padding-right: 10px;
        border-right: solid 1px #868686;
    }

    #footer .footer-content .footer-top .site-links ul.social-links {
        justify-content: center;
    }

    #footer .footer-content .footer-top .site-links,
    .ocd #footer .footer-content .footer-top .footer-data .address-list {
        align-items: center;
        text-align: center;
    }
}

#footer .footer-content .footer-top .site-links .social-links a {
    color: #c8942b;
    font-size: 40px;
    font-size: 28px;
}

#footer .footer-content .footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 65px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#footer .copyright {
    color: #8c8b8e;
    display: flex;
    flex-direction: row;
    font-size: 12px;
    gap: var(--half-margin);
    align-items: center;
}

    #footer .copyright > * {
        min-height: 1rem;
    }

    #footer .copyright .sep, #footer .terms .sep {
        border-right: solid 1px #8c8b8e;
    }

body#body1 #footer .terms a {
    color: #8c8b8e;
    margin-right: 0;
}

form#form1 {
    height: inherit;
    min-height: 100%;
}

#masterWrap {
    --main-font-family: var(--main-font-family-2);
    height: inherit;
    min-height: 100%;
}

    #masterWrap > .wrapper {
        min-height: calc(100% - 80px);
    }


.icon-address-book {
    display: none !important;
}

body .lrmargin {
    padding-left: 1.5%;
    padding-right: 1.5%;
}

.ocd body .displayPrice {
    color: #8c8b8e !important;
    font-family: 'Roboto Condensed' !important;
}

.ocd #mainContent #sectionHeaderBar {
    text-align: center;
    padding: var(--margin-x2) var(--margin);
    display: flex;
    justify-content: center;
}

.ocd body #mainContent .products .details:hover button.quick_view,
.ocd body #mainContent .products .details:hover button.quick_view:hover,
.ocd body #mainContent .products .details:hover button.quick_view:focus,
.ocd body #mainContent .products .details:hover button.quick_view:active {
    color: var(--brand-color);
}

.ocd .products .product .productAction input[type=button],
.ocd .products .product .productAction button {
    font-weight: 500;
}


@media screen and (max-width: 750px) {

    #footer .copyright > * {
        margin-bottom: 5px;
    }

    #footer .copyright {
        flex-direction: column;
    }

    #footer .fullmargin > * {
        text-align: center;
    }
}

.main-phone > label {
    display: inline-block;
    font-size: 90%;
    margin-bottom: 3px;
}

.main-phone > .email {
    display: none;
}


.on-task #startProject {
    display: none;
}

#startProject button {
    font-size: 12px !important;
    height: 40px;
    min-width: 130px;
    padding: 0 15px;
}

a.ocd-button {
    padding: 4px 10px;
}

.ocd #zillaHeader nav > ul a {
    /* EM: this made main nav become black rather than grey
        color: inherit;*/
}

.ocd .form_type1 label.title {
    font-size: inherit;
}

.ocd #leftCheckout .checkout_step h2 {
    margin-left: 0;
    margin-right: 0;
}

.ocd #mainContent #sectionHeaderBar .breadcrumbs {
    display: none;
}

.ocd #categoryImages h2 { /*display: none; Evgeny: why this? This needs to be visible on /c-36.aspx */
}

.ocd #zillaHeader #accountSettings nav > ul a {
    white-space: nowrap;
}

.ocd .modal .modal-header h3 {
    font-weight: 500;
}

.ocd #chatPopup.modal .modal-header div.cancel.close:before,
.ocd #chatPopup.modal .modal-header div.cancel.close:after {
    background: #000000;
}

#footer .sep {
    border-right: solid 1px #eee;
    margin: 0 5px;
}

#footer .copyright {
}

#footer .terms {
    font-size: 12px;
}

.call-or {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
}

.call-content {
    align-content: center;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    margin: 10px 0 0 0;
    text-align: center;
}

    .call-content .call-phone {
        color: #cc950b;
        font-size: 19px;
        text-decoration: underline;
        white-space: nowrap;
    }

    .call-content .call-text {
        font-size: 15px;
        font-weight: 400;
        margin-top: 10px;
    }

@media screen and (max-width: 750px) {
    .ocd #pnlExtMomFeatures li:not(.current) {
        display: none;
    }

    .ocd body#body1 #mainContent #pnlExtMomFeatures .left-menu-block li > a {
        font-size: inherit;
    }

    .ocd .account-section-wrapper {
        display: flex;
        flex-direction: column;
    }

    .ocd .registry-public-link-container input {
        max-width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .create-account-form .multiple > div, .create-account-form .password > div {
        width: 100%;
    }

        .create-account-form .multiple > div input, .create-account-form .password > div input, .create-account-form .row input {
            max-width: 100%;
            width: 100%;
        }
}

#footer .terms > a {
    font-size: 12px;
    margin-right: 5px;
}

.quick-create-project {
    margin-top: 20px;
    padding-left: 75px;
}

#btnReturnToProject {
    margin-left: 20px;
}

#footer .site-links .blog-link a {
    font-family: 'Roboto Condensed' !important;
    font-weight: bold;
    line-height: 95%;
    text-transform: uppercase;
}

#mainContent #sectionHeaderBar,
#mainContent .genericContent h1#h1,
#mainContent #entityPageSummaryWrap .genericContent h1,
#mainContent .section.genericContent .h1-with-menu{
    border-bottom: 5px solid var(--app-color-3);
    padding-bottom: 25px;
}

html.ocd body .thank-you {
    text-align: center;
}
 #minicartItems {
    display: flex;
    flex-direction: column;
    text-align: center;
}

    #minicartItems a.cart {
        font-weight: 900;
        color: var(--bg-color);
        display: flex;
        align-items: center;
    }

        #minicartItems.no-items a.cart {
            color: gray;
        }

        #minicartItems a.cart:before {
            font-size: 15px;
            background: var(--bg-color);
            border-radius: 50%;
            text-align: center;
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 51%;
            height: 28px;
            width: 28px;
            transform: scale(.98);
        }

    #minicartItems.no-items a.cart:before {
        background: gray;
    } .ocd #shoppingbagHidden {
    position: absolute;
    right: 10%;
    top: 0;
    visibility: hidden;
}

#shopperStatus .check-out span.text {
    display: none;
}

.ocd #masterWrap #headerWrap #shopperStatus #minicartItemsWrap {
    position: absolute;
    left: 0;
}

.ocd #masterWrap #headerWrap #shoppingbag .count {
    font-size: inherit;
    min-width: 0;
    font-weight: bold;
    padding: 0;
    line-height: inherit;
    left: 12px;
    margin: 0;
    top: -6px;
    color: #ffffff;
    background: #e8adba;
    z-index: 1000;
    position: relative;
    font-size: 9px;
    padding: 0;
    border-radius: 7px;
    border: 1px solid #e8adba;
    font-weight: bold;
    text-align: right;
    width: 15px;
    height: 15px;
    line-height: 13px;
    text-align: center;
    box-shadow: 0 0 1px #86696f;
    display: none;
}

@media screen and (max-width: 950px) {
    .ocd body #shopperStatus {
        min-width: initial;
        text-align: initial;
        position: relative;
        top: auto;
        right: auto;
    }

    body #shoppingbag .bag {
        padding-left: 0;
        height: auto;
        border: none;
    }
}
/*
    @media screen and (max-width: 750px) {

        .ocd #masterWrap #headerWrap #shopperStatus[items-count="0"] {
            display: none;
        }

        .ocd #masterWrap #headerWrap #shopperStatus {
            margin: 0;
            right: 0;
            position: relative;
            top: 0;
            width: initial;
            min-width: initial;
            flex-grow: 0;
        }

            .ocd #masterWrap #headerWrap #shopperStatus #shoppingbag {
                text-align: right;
            }

                .ocd #masterWrap #headerWrap #shopperStatus #shoppingbag .bag {
                    display: block;
                    height: auto;
                }

            .ocd #masterWrap #headerWrap #shopperStatus .check-out:before {
                font-size: 22px;
            }

            .ocd #masterWrap #headerWrap #shopperStatus .check-out span.text {
                display: inline;
                left: 26px;
                text-decoration: none;
                top: 0;
            }
    }*/

    @media screen and (min-width: 1081px) {
        .ocd body #shopperStatus {
            text-align: left;
            min-width: 0;
        }

        .ocd body #shoppingbag .bag {
            min-width: 0;
        }
    } #mainContent .products .product .displayPrice,
#mainContent .products .product .displayPriceGreen {
    display: block;
    height: 25px;
    text-align: center;
    font-weight: bold;
    padding: 0;
    position: relative;
    line-height: 18px;
    margin: 3px 0;
}

#mainContent .products .product .displayPrice {
    color: #8e1003;
    font-size: 16px;
    line-height: 30px;
}

#mainContent .products .product .displayPriceGreen {
    color: #008600;
    font-size: 16px;
    height: 28px;
}

.displayPriceGreen {
    color: #008600;
    font-weight: bold;
}

#mainContent .products .product .productPrice .PriceText {
    text-decoration: line-through;
    color: #808080;
}

#mainContent .products .product .productPrice .SalePriceText {
    color: #8e1003;
}

#mainContent .products .product .productPrice .customerLevelPrice {
    display: none;
}

#featuredProducts small, #featuredProducts .productCompareControl label {
    font-size: 11px;
    color: #0163B1;
    font-weight: bold;
}

@media screen and (max-width: 800px) {
    .comparisonTD .productCompareControl label {
        padding: 3px;
    }
}

#featuredProducts .productAction input[type=text] {
    margin: 0;
}

#featuredProducts .productAction select {
    width: 35px;
    min-width: 35px !important;
    margin-left: 2px;
}

#featuredProducts .productAction .selector {
    width: 35px;
    min-width: 35px !important;
}

    #featuredProducts .productAction .selector span {
        width: 10px;
    }

#featuredProducts .productAction select option {
    padding: 0 5px;
}

#featuredProducts .AddToWishButton, .featuredProductCell .AddToWishButton {
    display: none;
}

.featuredProductCell {
    background: transparent url(/images/CustomImages/bgGridViewRow.png) 0 0 repeat-x;
}

.products .product .productAction {
    margin-top: 0;
    text-align: center;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products .product .AddToCartButton {
    border: 0;
    cursor: pointer;
    vertical-align: top;
}

    .products .product .AddToCartButton i {
        font-style: normal;
    }

.products .product .productAction input[type=button], .products .product .productAction button,
.products .product .productAction button {
    /*
        EM: why we need this?        
        margin: 0 auto;*/
    white-space: nowrap;
}

.products .product .AddToWishButton {
    display: none !important;
}

#mainContent .products .product .productAction input[type=text] {
    width: 28px !important;
    padding-left: 0;
    padding-right: 0;
    margin-right: 1px;
}

.products .product .productAction select {
    width: 35px;
    min-width: 35px !important;
    margin-left: 2px;
}

.products .product .productAction .selector {
    width: 35px;
    min-width: 35px !important;
}

    .products .product .productAction .selector span {
        width: 10px;
    }

.products .product .productAction select option {
    padding: 0 5px;
}

.StockHint_OutOfStock {
    color: #A92A2E;
    font-weight: 900;
}

ul.products .StockHint_OutOfStock {
    display: block;
    margin: .3em 0;
    text-align: center;
    max-height: 28px;
    line-height: 14px;
    font-size: 13px;
}

.StockHint_Indented_OutOfStock {
    color: #A92A2E;
}

body #mainContent ul.products li {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: .5vw;
}

    body #mainContent ul.products li.more {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    @media screen and (min-width: 800px) {
        body #mainContent ul.products li {
        border: solid 1px #eee;
        border-radius: 2px;
    }
}

#mainContent ul.products {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

    #mainContent ul.products li {
        max-width: 200px;
    }

@supports (display: grid) {
    body #mainContent ul.products {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        grid-gap: var(--half-margin);
        grid-auto-rows: minmax(200px, 1fr);
    }

        body #mainContent ul.products li {
            max-width: none;
        }
}

ul.products li {
    position: relative;
    border: solid 1px white;
    flex: 0 1 230px;
}

#mainContent ul.products li.with-rebates {
    border-color: #FCE475;
    border-radius: 2px;
}

#mainContent ul.products li:first-child.with-rebates {
    margin-left: 2px;
    margin-right: 1px;
}

.wide-layout ul.products li {
    width: 160px;
}

ul.products li .decor {
    /*background: -webkit-gradient(linear, left top, left bottom, from(#e5f1f5), to(#fefefe));
        background: -moz-linear-gradient(top, #e5f1f5, #fefefe);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5f1f5', endColorstr='#fefefe');
        background-image: -ms-linear-gradient(top, #e5f1f5, #fefefe);
        height: 20px;*/
    display: none;
}

ul.products li:nth-child(1) .decor,
ul.products li:nth-child(2) .decor,
ul.products li:nth-child(3) .decor,
ul.products li:nth-child(4) .decor {
    display: none;
}

.wide-layout ul.products li:nth-child(5) .decor,
.wide-layout ul.products li:nth-child(6) .decor {
    display: none;
}

ul.products li .thumbnail {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100px;
    height: 100px;
    border-radius: 2px;
}

ul.products li a:visited, .featuredProductCell .featuredNameWrap a:visited,
#featuredProducts .productTitle a:visited {
    color: #7B308D;
}

ul.products li a.details {
    text-align: center;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 130%;
    margin: 1% auto 0 auto;
    font-weight: 500;
    font-size: inherit;
    max-width: 100%;
}

ul.products li .displayPrice {
    margin: .4em 0;
    position: relative;
    overflow: visible;
}

ul.products .sku {
    text-align: center;
    font-size: 11px;
    opacity: .8;
    font-family: var(--compact-font-family);
}

ul.products .log-in-to-view-price {
    text-align: center;
    margin: 10px 0;
}

.productCell .log-in-to-view-price {
    top: 10px;
}

    ul.products .log-in-to-view-price a, ul.products .log-in-to-view-price a:hover, .productCell .log-in-to-view-price a {
        color: green;
        font-weight: bold;
        font-size: 90%;
    }

#mainContent ul.products .your-price {
    text-align: center;
    position: relative;
    top: -10px;
    white-space: nowrap;
    font-size: 85%;
    display: none;
}

#mainContent ul.products .bulk-advantage {
    font-size: 12px;
    text-align: center;
    position: relative;
    top: -10px;
    white-space: nowrap;
}

    #mainContent ul.products .bulk-advantage strong {
        color: #8e1003;
        font-size: 100%;
    }

.products .addToCartWrap {
    text-align: center;
    padding-bottom: 7px;
    position: relative;
}

    .products .addToCartWrap.wait.loading {
        background-position: 5% 35%;
    }

    .products .addToCartWrap.icon-ok:before {
        color: green;
        position: absolute;
        top: calc(50% - 10px);
        left: -20px;
    }

.product .displayPrice {
    color: #8e1003;
    font-size: 16px;
}

.products-wrap .productPrice span.displayPrice {
    display: block;
    font-weight: bold;
    text-align: center;
    color: #8e1003;
    font-size: 18px;
}

span.displayPrice {
    margin: auto;
    float: none;
}

.displayPrice .uom {
    color: #8e1003;
    font-weight: normal;
    font-size: 80%;
}

#mainContent .featuredPriceWrap .your-price {
    display: none;
}

.displayPriceGreen .uom {
    font-weight: normal;
    font-size: 80%;
    color: #008600;
}

.oldPrice {
    color: #8e1003;
    text-decoration: line-through;
    font-size: 18px;
    padding-left: 5px;
    position: relative;
    top: -2px;
    display: block;
}

.displayPriceGreen .oldPrice {
    font-size: 80%;
    display: block;
    line-height: 110%;
}

.product-detail-page .displayPrice .uom, .product-detail-page .displayPriceGreen .uom {
    font-size: 50%;
}

.products-wrap .productPrice .PriceText {
    text-decoration: line-through;
    color: #808080;
}

.products-wrap .productPrice .SalePriceText {
    color: #8e1003;
}

.products-wrap .productPrice .MSRP {
    font-size: 11px;
    color: #000;
    font-weight: normal;
}

    .products-wrap .productPrice .MSRP span.retailPrice {
        font-size: 11px;
        color: #666;
        text-decoration: line-through;
        font-weight: normal;
    }

.products-wrap .productPrice .customerLevelPrice {
    display: none;
}

.products-wrap small, .products-wrap .price,
.products-wrap .productCompareControl label, .product .price,
.featuredProductCell .price {
    font-size: 11px;
    /*color: #0163B1;*/
    font-weight: bold;
}

@media screen and (max-width: 395px) {
    body #mainContent ul.products li.product {
    }

        body #mainContent ul.products li.product:nth-child(even), body #mainContent ul.products li.product:nth-child(even) {
            margin-right: 0px;
        }
}

input.cartQtyBox, input.MiniCartQuantity, input.cartQtyBox.uniform-input, input.MiniCartQuantity.uniform-input {
    width: 28px;
    background-color: #fff !important;
    text-align: center;
    font-weight: bold;
}

#mainContent .products .product .rating_star {
    position: absolute;
    top: 89px;
    background-color: #fff;
    opacity: .5;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

#mainContent #featuredZone #featuredProducts.products .product .rating_star {
    top: 150px;
}

li.product .discount-container {
    text-align: center;
    font-weight: bold;
    line-height: 100%;
    position: relative;
    top: 2px;
    font-size: 90%;
}

.lead-time-container {
    border-radius: 2px;
    color: var(--app-color-2);
    padding-top: 5px;
    font-weight: 500;
    display: block;
}

#mainContent .addToCartWrap .cartMessage,
.qty-and-add .cartMessage {
    position: absolute;
    left: 0;
    top: 29px;
    box-shadow: 0 1px 1px #ccc;
    white-space: nowrap;
    display: block;
    background: #F2FF00;
    padding: 4px 9px 4px 7px;
    border-radius: 2px;
    font-size: 12px;
    z-index: 10;
}

#mainContent #compareProductsTable .addToCartWrap .cartMessage {
    top: 40px;
}

#addToCartWrap a.manage,
.cartMessage a.manage {
    margin-left: 8px;
    margin-left: 8px;
    font-weight: bold;
    color: #000 !important;
    text-decoration: underline !important;
} .playground button,
.modal-body button:not(.link-like),
.modal button:not(.link-like),
button.regular,
button,
input[type=button],
input[type=submit],
input[type=button].regular,
.playground input[type="button"]:not(.default-button),
.playground input[type="submit"]:not(.default-button),
#searchbuttun,
button.delete,
#header .read_all,
#searchbutton,
body .mce-window .mce-btn.mce-primary > button[type="button"] {
    padding: 0 1em;
    background: linear-gradient(#f5f5f5, #e5e5e5);
    border: solid 1px #999;
    border-radius: 2px;
    /*font-size: 13px;*/
    font-weight: 700;
    color: #000;
    margin: 0;
    height: 28px;
    line-height: 100%;
    font-family: var(--main-font-family);
    vertical-align: middle;
}

:is(a[role=button], .playground button, .modal-body button:not(.link-like), .modal button:not(.link-like), button.regular, button, input[type=button], input[type=submit], input[type=button].regular, .playground input[type="button"], .playground input[type="submit"]):not(.default-button):not(:disabled):active {
    background: linear-gradient(#e5e5e5, #f5f5f5);
}
 .x {
    --x-boldness: 2px;
}

:is(.x, .o) {
    --padding: 0px;
    --b-color: inherit;
    --border-radius: 50%;
    --outline-width: 3px;
    --size: 24px;
    height: var(--size);
    position: relative;
}

/* a.o is for icon-only buttons that have a circular background on hover */
:is(body, #a #b #c) :is(.x, .o) {
    outline: solid var(--outline-width) var(--b-color);
    background: var(--b-color);
    cursor: pointer;
    overflow: hidden;
    padding: var(--padding);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius);
    text-decoration: none;
    box-shadow: none;
    min-width: var(--min-clickable-size-1);
}

#mainContent :is(.x, .o) {
}

body .o:before {
    margin: 0;
}

:is(body, #a #b #c) :is(.x, .o):is(:hover, :focus) {
    --b-color: var(--button-hover-background-color);
}

:is(body, #a #b #c) :is(.x, .o):active {
    --b-color: var(--button-pressed-background-color);
}

body .x:hover:after, body .x:hover:before {
    background: #223a65;
    opacity: 1;
}

body .x:before, body .x:after {
    background: var(--text-color);
    content: '';
    opacity: .8;
    position: absolute;
    width: calc(100% - 2px - var(--padding) * 2);
    height: var(--x-boldness);
}

body .x:before {
    transform: rotate(45deg);
}

body .x:after {
    transform: rotate(-45deg);
}

button.o,
.playground button.o {
    background: none;
}

.o-icon-buttons {
    gap: 10px;
}
 
@font-face {
    font-family: 'newbaskb';
    font-style: normal;
    font-weight: 400;
    src: local('newbaskb'), url(/css/fonts/newbaskb.ttf) format('truetype');
}


#startProject {
    display: none;
}



.ocd .start-project-section {
    margin-right: 20px;
    max-width: 305px;
    padding: 0;
    width: 100%;
}

#mainContent section.start-project-section > .intro h1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    top: -4px;
}

section.start-project-section > .intro p {
    margin: 1.1em 0 1.5em 0;
}

#mainContent section.start-project-section > .intro h2 {
    font-size: 15px;
    font-weight: 400;
    line-height: 120%;
    margin: 17px 0 0 0;
    padding: 0;
}

#mainContent section.start-project-section > .intro ul {
    margin: 10px 0 0 0;
    padding: 0;
}

    #mainContent section.start-project-section > .intro ul li {
        color: #d7a6b0;
        font-weight: 400;
        font-weight: bold;
        margin: .3em 0 .3em 0;
        padding: 0;
        text-align: center;
    }

        #mainContent section.start-project-section > .intro ul li span {
            color: #56555a;
            font-size: 15px;
            position: relative;
        }

.image-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

    .image-list .image {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        border: solid 1px #f9f9f9;
        border-radius: 2px;
        cursor: zoom-in;
        height: 300px;
        margin: 20px 40px 20px 0;
        width: 450px;
    }

        .image-list .image .image-zoomed {
            background-color: rgba(255, 255, 255, .98);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            bottom: 0;
            display: block;
            left: 0;
            opacity: 0;
            pointer-events: none;
            position: fixed;
            right: -5000px;
            top: 0;
            transition: opacity .12s linear .12s, left 0s linear .24s, top 0s linear .24s, right 0s linear .24s, bottom 0s linear .24s;
            z-index: 10000;
        }

        .image-list .image.zoomed .image-zoomed {
            bottom: 0;
            cursor: zoom-out;
            left: 0;
            opacity: 1;
            pointer-events: all;
            right: 0;
            top: 0;
            transition: opacity .24s;
        }

.addToFavoritesWrap {
    display: none;
}


body .featuredHeader h1 {
    display: inline-block;
    float: none;
    font-family: var(--main-font-family);
    font-size: 23px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    text-transform: none;
}

h1 + .clarification {
    font-family: var(--main-font-family);
    font-size: 16px;
    font-weight: 100;
    margin-left: 20px;
    text-transform: none;
    white-space: normal;
}

.homepage-images {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

    .homepage-images .home-image {
        width: 50%;
    }

        .homepage-images .home-image:nth-child(even) {
            padding: 0 0 20px 10px;
        }

        .homepage-images .home-image:nth-child(odd) {
            padding: 0 10px 20px 0;
        }

        .homepage-images .home-image a {
            align-items: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white;
            display: flex;
            font-family: 'newbaskb' !important;
            font-size: 3.5vw;
            font-weight: 900;
            height: calc((100vw - 40px - 20px) / 2 * 0.546);
            justify-content: center;
            position: relative;
            text-transform: uppercase;
            width: 100%;
        }

            .homepage-images .home-image a:hover {
                text-decoration: none;
            }

@media screen and (max-width: 950px) {
    .homepage-images .home-image a {
        height: calc((100vw - (100vw * 0.02) - 20px) / 2 * 0.546);
    }
}

.subhead-content ul.products li.product:last-child {
    margin-right: 0;
}

.subscribers-section {
    margin-top: 40px;
    position: relative;
}

    .subscribers-section h2 {
        font-size: 27px;
        margin-bottom: 5px;
        text-align: center;
    }

    .subscribers-section h3 {
        font-size: 22px;
        margin-bottom: 5px;
        text-align: center;
    }

        .subscribers-section h2 a, .subscribers-section h3 a {
            color: #cc950b;
        }

            .subscribers-section h2 a:hover, .subscribers-section h3 a:hover {
                text-decoration: none;
            }

    .subscribers-section .sign-up-subscribers {
        position: relative;
    }

        .subscribers-section .sign-up-subscribers div {
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            max-width: 1000px;
            padding-bottom: 83%;
        }

    .subscribers-section .subscribers-container {
        margin: 0 auto;
        max-width: 1000px;
        width: 100%;
    }

.technologies-section {
    margin-top: 40px;
    position: relative;
}

body .technologies-section h2 {
    color: #cc950b;
    font-size: 27px;
    margin-bottom: 5px;
    text-align: center;
}


.technologies-section .technologies-link {
    position: relative;
}

    .technologies-section .technologies-link div {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        max-width: 1000px;
        padding-bottom: 83%;
    }

.technologies-section .technologies-container {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.navigation-section {
    margin-top: 40px;
    position: relative;
}

    .navigation-section h3 {
        font-size: 29px;
        font-weight: 500;
        margin-bottom: 5px;
        text-align: center;
        text-transform: uppercase;
    }

    .navigation-section h4 {
        font-size: 27px;
        margin: 0 auto;
        margin-bottom: 5px;
        max-width: 1000px;
        text-align: center;
    }

    .navigation-section .call-container {
        border-bottom: 2px solid black;
        border-top: 2px solid black;
        font-size: 24px;
        margin: 10px auto;
        max-width: 1000px;
        padding: 20px;
        text-align: center;
    }

    .navigation-section .navigation-container {
        display: flex;
        margin: 0 auto;
        margin-top: 20px;
        max-width: 1000px;
    }

        .navigation-section .navigation-container ul {
            font-size: 16px;
            width: 20%;
        }

            .navigation-section .navigation-container ul li:first-child {
                font-weight: bold;
            }

            .navigation-section .navigation-container ul li a {
                line-height: 30px;
            }

.main-gallery-image .swiper-container {
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    width: 100%;
}

    .main-gallery-image .swiper-container .swiper-slide {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .main-gallery-image .swiper-container :is(.swiper-button-next, .swiper-button-prev) {
        background: transparent;
        border: none;
        color: var(--app-color-4);
        width: 5rem;
        height: auto;
        aspect-ratio: 1;
        margin-top: -.5rem;
        top: 50%;
        padding: unset;
        border-radius: 50%;
        background: #0000000f;
    }

:is(body, #a #b #c) .main-gallery-image .swiper-container :is(.swiper-button-next, .swiper-button-prev):hover {
    background: #0000001f;
}

:is(body, #a #b #c) .main-gallery-image .swiper-container :is(.swiper-button-next, .swiper-button-prev):active {
    background: #0000003f;
}

.main-gallery-image .swiper-container :is(.swiper-button-prev, .swiper-button-next)::before {
    border: solid 12px var(--brand-color);
    border-bottom: none;
    border-left: none;
    border-radius: .8rem;
    content: '';
    aspect-ratio: 1;
    position: absolute;
    display: block;
    inset: 0;
    scale: .4;
    transform: translate(-10%, 10%);
}

.main-gallery-image .swiper-container .swiper-button-next::before {
    rotate: 45deg;
}

.main-gallery-image .swiper-container .swiper-button-prev::before {
    rotate: -135deg;
}

.main-gallery-image .swiper-container .swiper-button-next:focus, .main-gallery-image .swiper-container .swiper-button-prev:focus {
    outline: none;
}

.main-gallery-image .swiper-container .swiper-button-next {
    right: 5%;
}

.main-gallery-image .swiper-container .swiper-button-prev {
    left: 5%;
}

.promotion-section {
    display: flex;
    height: 535px;
    position: relative;
    width: 100%;
}

    .promotion-section .soaring-panel {
        display: flex;
        height: 630px;
        position: absolute;
        top: -95px;
        width: 100%;
        z-index: 10;
    }

    .promotion-section .schedule-section {
        background: #d09d36;
        display: inline-block;
        height: 100%;
        width: 45%;
    }


        .promotion-section .schedule-section .action-container {
            display: flex;
            justify-content: flex-end;
            padding: 50px 50px 90px 3vw;
        }

            .promotion-section .schedule-section .action-container .start-project-button {
                background: #d09d36;
                border: 1px solid white !important;
                color: white;
                font-weight: 400;
                height: 50px !important;
                padding: 0 25px;
                text-transform: uppercase;
                width: auto;
            }

        .promotion-section .schedule-section .schedule-description {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 45px 45px 3vw;
        }

#pagewrapper .new-subscribers h2, #pagewrapper .new-subscribers h2 a {
    font-family: 'Roboto Condensed' !important;
    font-size: 2.05vw;
    font-weight: bold;
}

.promotion-section .schedule-section .schedule-description h2 {
    color: white;
    text-transform: uppercase;
}

.promotion-section .schedule-section .schedule-description p {
    color: white;
    font-size: 19px;
    font-weight: 100;
    margin-top: 35px;
}

body#body1 .promotion-section .schedule-section .schedule-description p a {
    color: white;
}

.promotion-section .promotion-description {
    background: white;
    display: inline-block;
    height: calc(100% - 95px);
    margin-top: 95px;
    padding: 100px 90px;
    width: 55%;
}

    .promotion-section .promotion-description h2 {
        color: #494949;
        max-width: 520px;
        text-transform: uppercase;
    }

    .promotion-section .promotion-description p {
        color: #494949;
        font-size: 19px;
        font-weight: 100;
        margin-top: 35px;
        max-width: 520px;
    }

    .promotion-section .promotion-description a {
        color: #d39f38;
        display: inline-block;
        font-size: 15px;
        margin-top: 15px;
    }

    .promotion-section .promotion-description p.bolded {
        font-weight: bold;
    }

.case-study {
    background-color: #6d2635;
    display: flex;
    height: 340px;
}

    .case-study .case-study-description {
        display: flex;
        height: 100%;
        position: relative;
        width: 45%;
    }

        .case-study .case-study-description > div {
            display: flex;
        }

            .case-study .case-study-description > div:first-child {
                align-items: center;
                justify-content: center;
                margin-left: 3vw;
                width: 42px;
            }

            .case-study .case-study-description > div:last-child {
                align-items: center;
                justify-content: flex-end;
                padding: 20px 50px 20px 20px;
                width: calc(100% - 42px - 3vw);
            }

    .case-study .case-study-video {
        height: 100%;
        padding: 27px 90px;
        width: 55%;
    }

#pagewrapper .case-study h2 {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    color: #a0616f;
    display: inline-block;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    font-family: 'Roboto Condensed' !important;
    font-size: 40px;
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
}

#pagewrapper .case-study p {
    color: white;
    font-size: 19px;
    font-style: italic;
    font-weight: 100;
    max-width: 305px;
}

.new-subscribers {
    display: flex;
    height: 450px;
    background: #e5e5e5;
}

    .new-subscribers .new-subscribers-action {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        width: 37%;
    }

        .new-subscribers .new-subscribers-action div.action-content {
            margin: 0 3vw;
        }

        .new-subscribers .new-subscribers-action h2 {
            color: #494949;
            margin-bottom: 0;
            text-transform: uppercase;
        }

        .new-subscribers .new-subscribers-action h3 {
            color: #c8942b;
            font-size: 20px;
            font-weight: 100;
            margin-bottom: 0;
            margin-top: 5px;
            text-transform: uppercase;
        }

body#body1 .new-subscribers .new-subscribers-action .action-input {
    margin-top: 25px;
    position: relative;
}

    body#body1 .new-subscribers .new-subscribers-action .action-input input[type="text"] {
        border: 1px solid #494949;
        font-size: 15px;
        font-style: italic;
        height: 45px;
        padding: 15px 60px 15px 20px;
        width: 100%;
    }

        body#body1 .new-subscribers .new-subscribers-action .action-input input[type="text"]::-webkit-input-placeholder {
            font-size: 18px;
            font-style: italic !important;
        }

        body#body1 .new-subscribers .new-subscribers-action .action-input input[type="text"]::-moz-placeholder {
            font-size: 14px;
            font-style: italic !important;
        }

        body#body1 .new-subscribers .new-subscribers-action .action-input input[type="text"]:-ms-input-placeholder {
            font-size: 14px;
            font-style: italic !important;
        }

        body#body1 .new-subscribers .new-subscribers-action .action-input input[type="text"]:-moz-placeholder {
            font-size: 14px;
            font-style: italic !important;
        }

        body#body1 .new-subscribers .new-subscribers-action .action-input input[type="text"]::placeholder {
            font-size: 14px;
            font-style: italic !important;
        }

    body#body1 .new-subscribers .new-subscribers-action .action-input input[type="submit"] {
        background: none;
        border: none;
        color: #c8942b;
        font-size: 15px;
        height: 45px;
        padding: 0 20px;
        position: absolute;
        right: 0;
        top: 0;
    }

.new-subscribers .new-subscribers-image {
    height: 100%;
    width: 63%;
}

    .new-subscribers .new-subscribers-image .image {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        width: 100%;
    }

.main-background-start {
    background: url(/images/ce/homepage/iStock-507704592.png);
    background-color: #f5f5f5;
    background-position: right top;
    background-repeat: no-repeat;
    height: 1675px;
    width: 100%;
}

.blog-container {
    display: flex;
    height: 640px;
    width: 100%;
}

    .blog-container .blog-image {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 53%;
    }

    .blog-container .blog-description {
        position: relative;
        width: 47%;
    }

        .blog-container .blog-description .fly-background {
            background: white;
            height: 485px;
            left: -245px;
            padding: 120px 75px;
            position: absolute;
            top: 70px;
            width: 245px;
        }

        .blog-container .blog-description .fly-description {
            height: 485px;
            left: -245px;
            padding: 120px 75px;
            position: absolute;
            top: 70px;
            width: 700px;
        }

            .blog-container .blog-description .fly-description h3 {
                color: #494949;
                text-transform: uppercase;
            }

                .blog-container .blog-description .fly-description h3 a {
                    color: #494949;
                    margin-top: 0;
                }

            .blog-container .blog-description .fly-description h2 {
                color: #dba842;
                margin-bottom: 0;
                text-transform: uppercase;
            }

            .blog-container .blog-description .fly-description p {
                color: #494949;
                font-size: 19px;
                font-weight: 100;
                margin-top: 30px;
                max-width: 520px;
            }

            .blog-container .blog-description .fly-description a {
                color: #d39f38;
                display: inline-block;
                font-size: 15px;
                margin-top: 15px;
            }

.gallery-container {
    display: flex;
    height: 780px;
    margin-top: 255px;
    width: 100%;
}

    .gallery-container .gallery-preview {
        padding: 45px 45px 45px 3vw;
        width: 50%;
    }

        .gallery-container .gallery-preview h2, .gallery-container .gallery-preview h2 a {
            color: #494949;
            text-transform: uppercase;
        }

    .gallery-container .gallery-quote {
        padding: 190px 45px 45px 65px;
        position: relative;
        width: 50%;
    }

        .gallery-container .gallery-quote .quote {
            color: #dec490;
            font-size: 140px;
            left: 0;
            position: absolute;
            top: 115px;
        }

        .gallery-container .gallery-quote p {
            color: #494949;
            font-size: 32px;
            font-style: italic;
            font-weight: 100;
            margin-top: 30px;
            max-width: 520px;
        }

        .gallery-container .gallery-quote .quote-who {
            display: inline-block;
            font-size: 16px;
            font-style: italic;
            margin-top: 35px;
        }

    .gallery-container .collage {
        height: 100%;
        position: relative;
        width: 100%;
    }

        .gallery-container .collage .collage-image {
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            border: 7px solid white;
            display: inline-block;
            height: 15vw;
            position: absolute;
            width: 15vw;
        }

            .gallery-container .collage .collage-image:nth-child(1) {
                left: 10px;
                top: 15px;
                transform: rotate(-15deg);
            }

            .gallery-container .collage .collage-image:nth-child(2) {
                left: 13vw;
                top: 1vw;
                transform: rotate(10deg);
            }

            .gallery-container .collage .collage-image:nth-child(3) {
                left: 28vw;
                top: 3vw;
                transform: rotate(-5deg);
            }

            .gallery-container .collage .collage-image:nth-child(4) {
                left: 1vw;
                top: 13vw;
                transform: rotate(-20deg);
            }

            .gallery-container .collage .collage-image:nth-child(5) {
                left: 14vw;
                top: 14vw;
            }

            .gallery-container .collage .collage-image:nth-child(6) {
                left: 28vw;
                top: 16vw;
                transform: rotate(5deg);
            }

.trend-section {
    background-color: #f5f5f5;
    display: flex;
    height: 640px;
    width: 100%;
}

    .trend-section .trend-container {
        height: 100%;
        position: relative;
        width: 47%;
    }

        .trend-section .trend-container .trend-description {
            background: white;
            display: flex;
            flex-direction: column;
            height: 485px;
            justify-content: center;
            left: 3vw;
            padding: 70px;
            position: absolute;
            right: -80px;
            top: 75px;
        }

            .trend-section .trend-container .trend-description h3 {
                color: #494949;
                text-transform: uppercase;
            }

            .trend-section .trend-container .trend-description h2 {
                color: #dba842;
                margin-bottom: 0;
                text-transform: uppercase;
            }

            .trend-section .trend-container .trend-description p {
                color: #494949;
                font-size: 19px;
                font-weight: 100;
                margin-top: 30px;
                max-width: 520px;
            }

            .trend-section .trend-container .trend-description a {
                color: #d39f38;
                display: inline-block;
                font-size: 15px;
                margin-top: 15px;
            }

    .trend-section .trend-image {
        background-image: url(/images/ce/homepage/Black_with_Gold_Closet.jpg);
        background-position: 100% 50%;
        height: 100%;
        max-width: 915px;
        width: 53%;
    }

section.products-section {
    background: url('/images/ce/homepage/iStock-507704592-bottom.png');
    background-color: white;
    background-position: right top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    padding-top: 115px;
    width: 100%;
}

    section.products-section .product-list {
        margin-left: calc(3vw + 70px);
        margin-right: calc(3vw + 70px);
        width: 100%;
    }

        section.products-section .product-list .featured_products .featuredHeader h1 {
            color: #494949;
            font-family: 'Roboto Condensed' !important;
            font-size: 35px;
            font-weight: bold;
            text-transform: uppercase;
        }

        section.products-section .product-list .featured_products div.sub-header {
            color: #d39f38;
            font-size: 22px;
            margin-top: 5px;
            text-transform: uppercase;
        }

            section.products-section .product-list .featured_products div.sub-header.must-haves {
                margin-top: 15px;
            }

            section.products-section .product-list .featured_products div.sub-header a {
                color: inherit;
            }

        section.products-section .product-list .featured_products .featured.products {
            margin-bottom: 60px;
            margin-top: 60px;
        }

@media screen and (max-width: 1200px) {
    .homepage-images .home-image a {
        height: calc((100vw - (100vw * 0.02) - 4px) / 2 * 0.5526);
    }


    .navigation-section .navigation-container {
        flex-direction: column;
    }

        .navigation-section .navigation-container ul {
            margin-bottom: 20px;
            width: 100%;
        }

    #pagewrapper .case-study {
        flex-direction: column;
        height: auto;
    }

        #pagewrapper .case-study .case-study-description {
            flex-direction: column;
            padding: 0;
            width: 100%;
        }

            #pagewrapper .case-study .case-study-description > div {
                padding: 10px;
                width: 100%;
            }

                #pagewrapper .case-study .case-study-description > div:first-child {
                    margin-left: 0;
                    padding-bottom: 0;
                }

            #pagewrapper .case-study .case-study-description h2 {
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                -webkit-transform: rotate(0deg);
                filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
                font-size: 25px;
                font-size: 30px;
                margin: 0;
                padding: 10px 0;
            }

        #pagewrapper .case-study .case-study-video {
            padding: 0;
            width: 100%;
        }

            #pagewrapper .case-study .case-study-video iframe {
                width: 100%;
            }

    .ocd .homepage-images {
        margin-top: 10px;
    }

        .ocd .homepage-images .home-image:nth-child(even) {
            padding: 0 0 4px 2px;
        }

        .ocd .homepage-images .home-image:nth-child(odd) {
            padding: 0 2px 4px 0;
        }

    .ocd #mainContent .start-project-section {
        margin: 0;
        max-width: 100%;
        padding: 0;
    }

    .ocd .subscribers-section, .ocd .technologies-section, .ocd .navigation-section {
        margin-top: 10px;
    }

    .ocd #mainContent .section-wrapper {
        flex-direction: column;
    }

    .ocd #mainContent .start-project-section div.intro > p {
        text-align: center;
    }

    .ocd #mainContent .gallery-container {
        width: 100%;
    }

        .ocd #mainContent .gallery-container .tools, .ocd #mainContent .gallery-container .like-action {
            opacity: 1;
        }

        .ocd #mainContent .gallery-container .possibilities {
            right: -100%;
            width: calc(100% - 70px);
        }

        .ocd #mainContent .gallery-container.open .possibilities {
            right: 0;
        }

        .ocd #mainContent .gallery-container.open .explore-prompt {
            right: calc(100% - 70px);
        }

        .ocd #mainContent .gallery-container .explore-categories {
            align-items: flex-start;
            display: flex;
            flex-direction: row;
            height: 255px;
            justify-content: center;
            margin: 0 10px;
            overflow-y: auto;
        }
}

@media screen and (max-width: 420px) {
    .ocd #mainContent .gallery-container .explore-categories {
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
    }
}
/*
body #pagewrapper {
    border-top: solid 3px #e7e7e7;
    margin-top: 10px;
}
*/
.ocd body ul.products li a.details {
    font-size: 16px;
}

    .ocd body ul.products li a.details img {
        margin-bottom: 5px;
    }

#mainContent ul.testimonial-navigation {
    font-size: 14px;
    left: 15px;
    padding: 0;
    position: absolute;
    top: 215px;
}

    #mainContent ul.testimonial-navigation li {
        color: #494949;
        cursor: pointer;
        font-size: 50px;
        line-height: 40px;
        opacity: 0.1;
    }

        #mainContent ul.testimonial-navigation li.active-nav {
            opacity: 1;
            transition: opacity 1s ease;
        }


@media screen and (max-width: 1200px) {
    .ocd .promotion-section {
        height: auto;
    }

        .ocd .promotion-section .soaring-panel {
            flex-direction: column;
            height: auto;
            position: relative;
            top: 0;
        }

            .ocd .promotion-section .soaring-panel > * {
                height: auto;
                margin: 0;
                padding: 10px;
                width: 100%;
            }

        .ocd .promotion-section .schedule-section .action-container {
            justify-content: center;
            padding: 10px;
        }

    .ocd #pagewrapper h2, #pagewrapper h2 a {
        font-size: 21px;
        line-height: 26px;
        margin-bottom: 5px;
    }

    .ocd .promotion-section .schedule-section .schedule-description p,
    .ocd .promotion-section .promotion-description p,
    .ocd .blog-container .blog-description .fly-description p,
    .ocd .gallery-container .gallery-quote p,
    .ocd .trend-section .trend-container .trend-description p {
        font-size: 18px;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .ocd .promotion-section .schedule-section .schedule-description {
        padding: 0;
    }

    .ocd .new-subscribers {
        height: 300px;
        position: relative;
    }

        .ocd .new-subscribers .new-subscribers-action {
            width: 0%;
        }

            .ocd .new-subscribers .new-subscribers-action .action-content {
                background: white;
                display: flex;
                flex-direction: column;
                height: 250px;
                justify-content: center;
                margin: 0;
                padding: 10px;
                position: absolute;
                right: 60px;
                top: 25px;
                width: calc(100% - 60px);
            }

        .ocd .new-subscribers .new-subscribers-image {
            width: 100%;
        }


    .ocd .main-background-start {
        background: none;
        height: auto;
    }

    .ocd .blog-container {
        height: 400px;
        position: relative;
    }

        .ocd .blog-container .blog-image {
            width: 100%;
        }

        .ocd .blog-container .blog-description {
            position: initial;
            width: 0%;
        }

            .ocd .blog-container .blog-description .fly-background {
                background: white;
                height: 345px;
                left: 50px;
                opacity: 0.95;
                padding: 0;
                position: absolute;
                top: 30px;
                width: calc(100% - 50px);
            }

            .ocd .blog-container .blog-description .fly-description {
                height: 485px;
                left: 65px;
                padding: 0;
                position: absolute;
                top: 45px;
                width: calc(100% - 80px);
            }

    .ocd .main-background-start .gallery-container {
        flex-direction: column;
        height: calc(70vw + 200px);
        margin: 0;
        padding: 10px;
    }

    .ocd .gallery-container .gallery-preview {
        min-width: initial;
        padding: 0;
        width: 100%;
    }

    .ocd .gallery-container .gallery-quote {
        width: 100%;
    }

    .ocd .gallery-container .collage {
        height: 70vw;
    }

        .ocd .gallery-container .collage .collage-image {
            height: 32vw;
            width: 32vw;
        }

            .ocd .gallery-container .collage .collage-image:nth-child(1) {
                left: 3vw;
                top: 1vw;
                transform: rotate(-15deg);
            }

            .ocd .gallery-container .collage .collage-image:nth-child(2) {
                left: 30vw;
                top: 1vw;
                transform: rotate(10deg);
            }

            .ocd .gallery-container .collage .collage-image:nth-child(3) {
                left: 59vw;
                top: 2vw;
                transform: rotate(-5deg);
            }

            .ocd .gallery-container .collage .collage-image:nth-child(4) {
                left: 5vw;
                top: 27vw;
                transform: rotate(-20deg);
            }

            .ocd .gallery-container .collage .collage-image:nth-child(5) {
                left: 31vw;
                top: 27vw;
            }

            .ocd .gallery-container .collage .collage-image:nth-child(6) {
                left: 58vw;
                top: 30vw;
                transform: rotate(5deg);
            }

    .ocd .gallery-container .gallery-quote {
        padding: 10px;
    }

        .ocd .gallery-container .gallery-quote .quote {
            font-size: 67px;
            top: -30px;
        }

        .ocd .gallery-container .gallery-quote .quote-who {
            margin-top: 10px;
        }

    .ocd .trend-section {
        height: auto;
    }

    .ocd .trend-section {
        height: 500px;
        position: relative;
        width: 100%;
    }

        .ocd .trend-section .trend-container {
            position: initial;
            width: 0;
        }

        .ocd .trend-section .trend-image {
            width: 100%;
        }

    .ocd section.products-section {
        background: none;
        padding: 10px;
    }

    .ocd .trend-section .trend-container .trend-description {
        background: white;
        display: flex;
        flex-direction: column;
        height: 440px;
        justify-content: center;
        left: 0;
        padding: 10px;
        position: absolute;
        right: 60px;
        top: 30px;
    }

        .ocd .trend-section .trend-container .trend-description p {
            font-size: 17px;
        }

    .ocd section.products-section .product-list {
        margin: 0;
    }

        .ocd section.products-section .product-list .featured_products .featured.products {
            margin: 10px 0;
        }

    .ocd #zillaHeader .header-content .header-content-top ul.header-navigation li a {
        font-size: 12px;
    }

    .ocd #footer .terms .sep {
        display: none;
    }

    .ocd body#body1 #footer .terms a {
        border-right: 1px solid #8c8b8e;
        margin-right: 5px;
        padding-right: 5px;
    }

        .ocd body#body1 #footer .terms a:last-child {
            border-right: none;
            margin-right: 0;
            padding-right: 0;
        }

    .ocd .subhead-content ul.products li.product {
        margin-bottom: 10px;
        margin-right: 10px;
        width: calc(25% - 10px);
    }

        .ocd .subhead-content ul.products li.product:nth-child(4n + 4) {
            margin-right: 0;
        }
}

.main-gallery-image {
    position: relative;
    background-color: var(--black-2);

    & .transform {
        background: #0000005e;
        color: white;
        font-size: 1rem;
        font-style: italic;
        font-weight: 400;
        padding: var(--quarter-margin) var(--margin);
        text-decoration: none;
        z-index: 12;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: var(--ribbon-height-1);
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}

@media screen and (max-width: 650px) {
    body .main-gallery-image .transform {
        text-align: center;
        width: 100%;
    }
}

#subscriptionSuccessContainer {
    font-weight: bold;
}
 
#mainContent .featured ul.products {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
}
 html body .featured .more_items {
    display: none;
}

html body #mainContent .featured ul {
    padding: 0;
}

html body .featured {
    margin: 60px 0;
}
html body .featuredHeader {
    background: none;
    border: none;
    display: block;
    height: auto;
    padding: 0;
}
    html body .featuredHeader h1 {
        line-height: 120%;
    }

html body ul.products li a.details {
    max-width: initial;
}

html .swiper-container .swiper-button-next:before {
    margin: 0;
}

@media screen and (max-width: 650px) { /*EK, need remove*/
    body #mainContent ul.products li.product, body #mainContent ul.products li.product {
        width: calc(50% - 5px);
        max-width: calc(50% - 5px);
        margin-right: 5px;
    }

    html body .featuredHeader h1 {
        display: inline-block !important;
    }
}

 /**
 * Swiper 3.4.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: October 16, 2016
 */
.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate(0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform,height}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;-moz-background-size:27px 44px;-webkit-background-size:27px 44px;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{top:10px;right:10px;}.swiper-pagination-bullet{width:12px;height:12px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-ms-appearance:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 5px}.swiper-pagination-progress{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progress .swiper-pagination-progressbar{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar{-webkit-transform-origin:right top;-moz-transform-origin:right top;-ms-transform-origin:right top;-o-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progress{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progress{width:4px;height:100%;left:0;top:0}.swiper-pagination-progress.swiper-pagination-white{background:rgba(255,255,255,.5)}.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar{background:#fff}.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar{background:#000}.swiper-container-3d{-webkit-perspective:1200px;-moz-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper{-ms-perspective:1200px}.swiper-container-cube,.swiper-container-flip{overflow:visible}.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-slide{visibility:hidden;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-moz-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-moz-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;-moz-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}