/************
	RESET
*************/
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, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
    }

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


header, section, footer, aside, nav, main, article, figure {
    display: block;
}

/*****************
	TYPOGRAPHY
******************/
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #6d6e71;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    color: #000;
}

h1 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 38px;
}

h2 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 30px;
}

h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
    font-weight: 400;
}

h5 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

h6 {
    font-size: 17px;
    font-weight: 700;
}

.sub-header {
    margin: -15px 0 20px;
}

.excerpt {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

a {
    color: #858234;
    text-decoration: underline;
}

    a:hover {
        color: #6a6829;
    }

hr {
    border: none;
    border-bottom: 1px solid #a2a2a2;
    padding: 0;
    margin: 15px 0;
}

/* ::selection {background:#5cb7e0; color:#ffffff;} */
/* ::-moz-selection {background:#5cb7e0; color:#ffffff;} */


/* CONTENT TYPOGRAPHY */
.content {
    line-height: 1.4;
}

    .content::after {
        content: "";
        clear: both;
        display: table;
    }

    .content *:first-child {
        margin-top: 0;
    }

    .content p, .content ul, .content ol, .content table {
        margin: 0 0 15px;
    }

    .content ul {
        list-style: disc;
    }

    .content ol {
        list-style: decimal;
    }

    .content li {
        margin: 0 0 5px 20px;
    }

    .content img {
        max-width: 100%;
    }

    .content table {
        max-width: 100%;
    }

        .content table th, .content table td {
            border: 1px solid #a2a2a2;
            text-align: left;
            padding: 5px;
            vertical-align: top;
        }




/**************
	HELPERS
***************/
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.overflow {
    overflow: hidden;
}

.wide {
    width: 100%;
}

.text-red {
    color: #fe2700;
}

.text-green {
    color: #00c83b;
}

.text-grey {
    color: #a2a2a2;
}

.table {
    display: table;
}

.tcell {
    display: table-cell;
    vertical-align: top;
}

.va-mid {
    vertical-align: middle;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}



/**************
	INPUTS
***************/
input, textarea, button, select {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #484848;
}

    input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #989898;
    }

    input::-moz-placeholder, textarea::-moz-placeholder {
        color: #989898;
        opacity: 1;
    }

    input:-ms-input-placeholder, textarea:-ms-input-placeholder {
        color: #989898;
    }

    input::input-placeholder, textarea::input-placeholder {
        color: #989898;
    }

    input[type=date]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        display: none;
    }

    input[type=date]::-webkit-calendar-picker-indicator {
        -webkit-appearance: none;
        display: none;
    }

    input[type=date]::-webkit-clear-button {
        display: block;
        -webkit-appearance: none;
    }

.textbox {
    width: 300px;
    height: 45px;
    padding: 0 15px;
    margin: 0;
    border: 1px solid #989898;
    background: #fff;
    outline: none;
    border-radius: 0;
    transition: border-color 100ms linear;
}

    .textbox:focus {
        border-color: #484848;
    }

    .textbox.error {
        border-color: #ea482a;
    }

    .textbox.wide {
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

textarea.textbox {
    resize: vertical;
    padding: 15px;
    height: 200px;
}

.form p {
    margin-bottom: 5px;
}




/***************
	BUTTONS
****************/
button {
    -webkit-appearance: none;
    appearance: normal;
}

.button {
    -webkit-appearance: none;
    appearance: normal;
    height: 46px;
    line-height: 46px;
    padding: 0 15px;
    margin: 0;
    border: none;
    background: #858234;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 100ms linear;
}

    .button:hover {
        color: #ffffff;
        background: #6a6829;
    }

    .button:active {
        background: #5a5819;
    }

a.button {
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;
}

    a.button i {
        display: inline-block;
        font-style: normal;
        line-height: 1;
        vertical-align: middle;
    }

    a.button.wide {
        text-align: center;
    }

.more {
    padding: 18px 44px;
    text-transform: uppercase;
    color: #000;
    border: 1px solid #e1e3e6;
    text-decoration: none;
    transition: all 100ms linear;
    display: inline-block;
}

    .more:hover, .more:active {
        color: #000;
        background-color: #e1e3e6;
    }



/***************
	SHARED
****************/
.mobile-only {
    display: none;
}

.mobile-only-inline-block {
    display: none;
}

.desktop-only {
    display: block;
}

.desktop-table-only {
    display: table !important;
}

.desktop-only-sections {
    display: block;
}

.desktop-medium-only {
    display: table;
}

.medium-down-only {
    display: none;
}

/* pagination */
.pagination {
    clear: both;
    margin-top: 30px;
}

    .pagination.disabled {
        display: none;
    }

    .pagination a, .pagination span {
        padding: 0 8px;
        color: #333;
        vertical-align: middle;
        text-decoration: none;
    }

        .pagination a:hover {
            color: #e26e33;
        }

        .pagination a.pagination-current {
            color: #e26e33;
            cursor: default;
            font-size: 22px;
            font-weight: 700;
        }

.pagination-prev {
    margin-right: 20px;
}

.pagination-next {
    margin-left: 20px;
}

    .pagination-prev.disabled, .pagination-next.disabled {
        display: none;
    }



/************
	STYLE
*************/
html {
    background: #fff;
    height: 100%;
}

body {
    height: 100%;
    min-width: 320px;
}

#wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    background: #fff;
    position: relative;
}

.layout {
    width: 1170px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}



/* HEADER */
#header {
    position: relative;
    z-index: 9999;
}

    #header a {
        color: #2a2d30;
        text-decoration: none;
    }

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
}

.top-bar {
    padding: 18px 0;
    border-bottom: 2px solid #dadada;
    font-size: 13px;
}

    .top-bar:after {
        display: block;
        content: '';
        clear: both;
    }

    .top-bar .lang {
        float: left;
    }

        .top-bar .lang:after {
            clear: both;
        }

        .top-bar .lang li {
            float: left;
            padding-left: 7px;
            margin-left: 7px;
            border-left: 1px solid #d3d6db;
        }

            .top-bar .lang li:first-child {
                border-left: none;
                padding-left: 0;
                margin-left: 0;
            }

    .top-bar .contact {
        float: right;
    }

        .top-bar .contact:after {
            clear: both;
        }

        .top-bar .contact li {
            float: left;
            margin-left: 72px;
        }

            .top-bar .contact li:first-child {
                margin-left: 0;
            }

#site-logo {
    float: left;
    display: block;
    margin: 8px 0;
}

    #site-logo img {
        display: block;
    }

#header nav {
    display: block;
    background-color: #000;
    padding: 20px 0;
}

    #header nav:after {
        display: block;
        content: '';
        clear: both;
    }

/* NAV */
/*nav { float: right; margin: 0; }*/
#main-nav {
    display: table;
    height: 16px;
    width: 100%;
}
    /*#main-nav:after { content: ''; display: inline-block; width: 100%; }*/
    #main-nav a {
        text-align: center;
        display: block;
        font-size: 16px;
        color: #ffffff;
        text-decoration: none;
        transition: color 100ms linear;
        display: block;
        text-transform: uppercase;
    }

    #main-nav > li {
        display: table-cell;
    }

        #main-nav > li > div {
            position: relative;
            height: 16px;
        }

        #main-nav > li:first-child {
            text-align: left;
        }

        #main-nav > li:last-child {
            text-align: right;
        }

    #main-nav a {
        font-size: 16px;
        color: #ffffff;
        text-decoration: none;
        transition: color 100ms linear;
        display: block;
        text-transform: uppercase;
    }

    #main-nav > li.active > div > a, #main-nav > li > div > a:hover {
        color: #858234;
    }

    #main-nav > li:hover .sub {
        visibility: visible;
        opacity: 1;
    }

    #main-nav .sub {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        top: 100%;
        left: -15px;
        background: #000;
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        transition: opacity 200ms linear;
    }

        #main-nav .sub li {
            margin: 0 15px;
            border-top: 1px solid rgba(100,100,100,0.2);
        }

            #main-nav .sub li:first-child {
                border-top: none;
                padding-top: 20px;
            }

            #main-nav .sub li a {
                display: block;
                padding: 18px 0;
                white-space: nowrap;
                min-width: 175px;
            }

                #main-nav .sub li.active a, #main-nav .sub li a:hover {
                    color: #858234;
                }

.search-wrapper {
    border: 2px solid #e6e8eb;
    padding-right: 27px;
    box-sizing: border-box;
    width: 272px;
    position: relative;
    margin: 35px auto 0;
}

.search-box {
    width: 100%;
    border: none;
    box-sizing: border-box;
    height: 40px;
}
/*.search-wrapper .search-box { width: 100%; border: none; box-sizing: border-box; height: 40px; }*/
.search-wrapper span {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
}

.search-box::-webkit-input-placeholder {
    text-transform: uppercase;
}

.search-box::-moz-placeholder {
    text-transform: uppercase;
}

.search-box:-ms-input-placeholder {
    text-transform: uppercase;
}

.search-box::input-placeholder {
    text-transform: uppercase;
}

/*.search-wrapper .search-box::-webkit-input-placeholder { text-transform: uppercase; }
.search-wrapper .search-box::-moz-placeholder { text-transform: uppercase; }
.search-wrapper .search-box:-ms-input-placeholder { text-transform: uppercase; }
.search-wrapper .search-box::input-placeholder { text-transform: uppercase; }*/

.search-topics .search-wrapper {
    width: 100%;
}

.shopping-cart-header {
    border: 1px solid #e6e8eb;
    width: 272px;
    box-sizing: border-box;
    margin-top: 35px;
    height: 42px;
    margin-right: 30px;
    position: relative;
    font-style: italic;
    line-height: 42px;
    color: #9aa2ab;
    font-size: 15px;
}

    .shopping-cart-header a {
        display: block;
        padding-left: 63px;
    }

    .shopping-cart-header .cart-icon {
        position: absolute;
        height: 42px;
        background-color: #858234;
        top: -1px;
        left: -1px;
        color: #fff;
        width: 44px;
        font-size: 28px;
        text-align: center;
        line-height: 42px;
        font-style: normal;
    }

    .shopping-cart-header .total {
        color: #858234;
    }

    .shopping-cart-header .cart-arrow {
        float: right;
        line-height: 44px;
        margin-right: 16px;
        font-style: normal;
        font-size: 20px;
    }


/* SEARCH FUNCTION */
.search {
    float: right;
}

#search-toggle {
    display: block;
    margin: 0 0 0 40px;
    padding: 38px 0 24px;
    height: 18px;
    font-size: 18px;
    color: #484848;
    text-decoration: none;
    transition: color 100ms linear;
}

    #search-toggle:hover, #search-toggle.active {
        color: #e26e33;
    }

.search-bar {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: -2;
    text-align: right;
    background: #484848;
    color: #fff;
    transition: top 300ms ease-in-out;
}

#search-toggle.active + .search-bar {
    top: 100%;
}

.search-input-wrap {
    margin: 10px 0;
}

.search-input {
    width: 150px;
    height: 30px;
    padding: 0 5px;
    border: none;
}

.search-submit {
    height: 30px;
    line-height: 28px;
}



/* MAIN */
.main-content {
    padding: 0 0 40px;
    position: relative;
}

    .main-content:after {
        display: block;
        content: '';
        clear: both;
    }

main section {
    margin-bottom: 3em;
}

/* RESPONSIVE SLIDER */
#top-slider {
    position: relative;
    margin-bottom: 36px;
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .rslides li {
        -webkit-backface-visibility: hidden;
        position: absolute;
        display: none;
        width: 100%;
        left: 0;
        top: 0;
        margin: 0;
    }

        .rslides li:first-child {
            position: relative;
            display: block;
            float: left;
        }

    .rslides img {
        display: block;
        height: auto;
        float: left;
        width: 100%;
        border: 0;
    }

.rslide-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

    .rslide-text .outer {
        display: table;
        width: 100%;
        height: 100%;
    }

        .rslide-text .outer .inner {
            display: table-cell;
            vertical-align: middle;
        }

    .rslide-text .text-wrap {
        display: inline-block;
        max-width: 500px;
        padding: 0 20px;
        background: rgba(0,0,0,0.25);
        text-align: left;
        color: #fff;
    }

    .rslide-text h2 {
        margin: 10px 0;
        font-size: 45px;
        font-weight: 400;
    }

    .rslide-text p {
        margin: 10px 0;
        font-size: 30px;
        font-weight: 400;
    }

.rslides_tabs {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 99;
}

    .rslides_tabs li {
        margin: 0 0 0 10px;
        position: relative;
        float: left;
        width: 14px;
        height: 14px;
        border: 2px solid #fff;
        border-radius: 14px;
    }

        .rslides_tabs li a {
            display: block;
            position: absolute;
            top: 1px;
            left: 1px;
            width: 12px;
            height: 12px;
            background: none;
            border-radius: 14px;
            font-size: 0;
            color: transparent;
            transition: background 100ms linear;
        }

        .rslides_tabs li.rslides_here a {
            background: #fff;
        }

.nav-arrows {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 94px;
    margin-left: -47px;
    height: 47px;
    z-index: 2;
}

@media screen and (max-width: 760px) {
    .nav-arrows {
        display: none;
    }
}

.nav-arrows a {
    float: left;
    display: block;
    height: 47px;
    width: 50%;
    text-align: center;
    line-height: 47px;
    text-decoration: none;
    font-size: 35px;
}

.rslides_nav.next {
    color: #fff;
    background-color: #858234;
}

.rslides_nav.prev {
    color: #b4bdc8;
    background-color: #fff;
}

.slider-item {
    position: relative;
}

.slider-text-overlay {
    position: absolute;
    bottom: 0;
    background-color: rgba(255,255,255,0.5);
    color: #000;
    width: 100%;
    padding: 10px 10px;
    font-size: 12px;
    height: 27px;
}

    .slider-text-overlay strong {
        display: block;
        font-size: 13px;
        margin-bottom: 5px;
    }

/* NEWS */
.news-list {
    margin: -20px;
}

.news-item {
    width: 300px;
    float: left;
    margin: 20px;
}

    .news-item:nth-child(3n+1) {
        clear: left;
    }

.news-item-image {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin: 0 0 10px;
}

.news-item-content h3 {
    margin-bottom: 5px;
}

    .news-item-content h3 a {
        color: #484848;
        text-decoration: none;
    }

        .news-item-content h3 a:hover {
            color: #e26e33;
        }

.news-item-content p {
    margin: 5px 0 0;
}

    .news-item-content p.more {
        margin: 15px 0 0;
    }

.news-article {
}

.news-article-image {
    float: left;
    margin: 0 20px 15px 0;
}

.other-news {
    margin: 40px 0 0;
}


/* CONTACT */
.contact-block {
    display: table;
    width: 100%;
}

    .contact-block .inner {
        display: table-cell;
        vertical-align: top;
    }

        .contact-block .inner.form {
            width: 332px;
            padding-left: 30px;
        }

/* feedback-form */
.feedback-form {
}

    .feedback-form .textbox, .feedback-form .button {
        box-sizing: border-box;
        width: 100%;
    }

.error-message {
    margin: 10px 0 0 0;
    color: #df3600;
    text-align: center;
}

    .error-message:empty {
        display: none;
    }

.feedback-submit {
    margin: 10px 0 0 0;
    text-align: right;
}

/* google-map */
.google-map {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .google-map > img {
        width: 100%;
        height: auto;
    }

    .google-map #map {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.gm-style-iw {
    line-height: 1.2;
}



/* SEARCH */
.search-results {
    margin: 20px 0;
}

.search-result-info {
    font-size: 16px;
    margin: 0 0 20px 0;
}

.search-list {
}

.search-item {
    margin: 0 0 42px;
}

    .search-item h4 {
        margin: 0 0 15px;
    }

.search-hit {
    font-weight: 700;
    font-style: italic;
}



/* FOOTER */
#footer-pusher {
    clear: both;
    height: 45px;
}

#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    color: #6d6e71;
    padding: 34px 0 15px;
    text-align: center;
    font-size: 13px;
}

    #footer a {
        color: #fff;
        text-decoration: none;
    }

        #footer a:hover {
            text-decoration: underline;
        }

/* back-to-top */
#back-to-top {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #686868;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    float: right;
    z-index: 10001;
}

    #back-to-top:hover {
        background: #585858;
    }


.line-on-sides {
    overflow: hidden;
    text-align: center;
    position: relative;
}
    /*.line-on-sides > span { position: relative; display: inline-block; }*/
    .line-on-sides:before, .line-on-sides:after {
        content: '\a0';
        position: absolute;
        top: 51%;
        height: 1px;
        background-color: #e6e8eb;
        width: 50%;
        margin: 0;
    }

    .line-on-sides:before {
        margin-left: calc(-50% - 64px);
    }

    .line-on-sides:after {
        margin-left: 64px;
    }

#articles {
    text-align: center;
}

    #articles article {
        box-sizing: border-box;
        width: 31.6%;
        margin-right: 2.6%;
        margin-bottom: 20px;
        float: left;
        border: 2px solid #e6e8eb;
        padding-bottom: 32px;
        text-align: left;
    }

    #articles > div article:nth-child(3n) {
        margin-right: 0;
    }

    #articles article img {
        width: 100%;
        height: auto;
        margin-bottom: 32px;
    }

    #articles article h1 {
        text-align: center;
        margin-bottom: 19px;
        padding-bottom: 19px !important;
        position: relative;
        font-weight: 500;
        font-size: 16px;
    }

        #articles article h1:after {
            position: absolute;
            display: block;
            content: '\a0';
            width: 63px;
            height: 1px;
            background-color: #dccc99;
            margin-top: 18px;
            left: 50%;
            margin-left: -32px;
        }

    #articles article h1, #articles article p {
        padding: 0 28px;
    }

    #articles a {
        text-decoration: none;
        color: #6d6e71;
    }

    #articles p {
        line-height: 1.4;
    }

    #articles.full-width article {
        float: none;
        width: 100%;
        margin-right: 0;
        border: none;
        margin-bottom: 48px;
    }

        #articles.full-width article img {
            margin-bottom: 10px;
        }

        #articles.full-width article h1 {
            font-size: 22px;
            text-align: left;
            color: #000;
            font-weight: 500;
            padding: 0;
            margin-bottom: 22px;
        }

            #articles.full-width article h1::after {
                display: none;
                position: static;
                content: '';
                width: 0;
                height: 0;
                background-color: transparent;
                margin: 0;
                left: 0;
            }

        #articles.full-width article > div.content {
            padding: 0;
        }

        #articles.full-width article p {
            padding: 0;
        }

        #articles.full-width article .read-more {
            padding: 14px 30px;
            text-transform: uppercase;
            color: #dccc99;
            background-color: #000;
            text-decoration: none;
            transition: all 100ms linear;
            display: inline-block;
        }

.article-miscellaneous {
    padding-bottom: 9px;
    padding-left: 0;
    border-bottom: 1px solid #e1e3e6;
    margin-bottom: 20px;
}

    .article-miscellaneous:after {
        display: block;
        content: '';
        clear: both;
    }

.article-categories li {
    display: inline-block;
}

    .article-categories li a {
        text-decoration: none;
        color: #7a7a7a;
        font-size: 11px;
        text-transform: uppercase;
    }

.main-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.section-side-images {
    width: 286px;
    list-style: none !important;
}

.section-image {
    margin-bottom: 20px;
}

    .section-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .section-image p span {
        text-transform: uppercase;
    }

    .section-image p {
        font-style: italic;
        font-size: 11px;
        background-color: #f2f4f7;
        padding: 13px 7px;
        line-height: 1.4;
    }

.section-table {
    display: table;
}

    .section-table > div {
        display: table-cell;
        vertical-align: top;
    }

.section-left-column {
    max-width: 100%;
    width: 100%;
}

.section-right-column {
    padding-left: 20px;
    width: 305px;
    max-width: 305px;
    box-sizing: border-box;
}

main h1 {
    margin-bottom: 22px;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.department-info {
    margin-bottom: 32px;
    color: #000;
    min-width: 300px;
}

    .department-info h2 {
        font-size: 22px;
        color: #000;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .department-info li {
        color: #000;
        margin-bottom: 11px;
        line-height: 20px;
    }

    .department-info .label {
        font-weight: 500;
    }

    .department-info li a {
        color: #000;
        text-decoration: none;
    }

    .department-info li strong {
        font-weight: 500;
    }

    .department-info table {
        border-spacing: 0;
        border-collapse: collapse;
        width: 100%;
    }

    .department-info tr:nth-child(odd) {
        background-color: #f8f8f8;
    }

    .department-info tr:nth-child(even) {
        background-color: #efefef;
    }

    .department-info td {
        border-top: 1px solid #a7a7a7;
        border-bottom: 1px solid #a7a7a7;
        padding: 16px 8px;
        vertical-align: middle;
        font-size: 13px;
    }

    .department-info .nowrap {
        white-space: nowrap;
    }

    .department-info p {
        margin-bottom: 14px;
    }

#footer {
    text-align: left;
}

    #footer:after {
        display: block;
        content: '';
        clear: both;
    }

    #footer section {
        box-sizing: border-box;
        width: 31.6%;
        margin-right: 2.6%;
        float: left;
        line-height: 1.7;
        margin-bottom: 100px;
    }

        #footer section:nth-child(3n) {
            margin-right: 0;
        }

        #footer section h1 {
            font-size: 16px;
            color: #212224;
            padding-bottom: 20px;
            border-bottom: 1px solid #d9dbde;
            margin-bottom: 41px;
        }

        #footer section .content {
            line-height: 1.7;
        }

    #footer address {
        font-style: normal;
    }

        #footer address ul li {
            position: relative;
            padding-left: 38px;
            margin-bottom: 25px;
        }

            #footer address ul li span {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
            }

        #footer address a {
            text-decoration: none;
            color: #6d6e71;
        }

    #footer section .textbox {
        height: 36px;
        margin-bottom: 12px;
        border: 1px solid #84868a;
        background-color: transparent;
        width: 100%;
        box-sizing: border-box;
    }

        #footer section .textbox::-webkit-input-placeholder {
            font-size: 13px;
        }

        #footer section .textbox::-moz-placeholder {
            font-size: 13px;
        }

        #footer section .textbox:-ms-input-placeholder {
            font-size: 13px;
        }

        #footer section .textbox::input-placeholder {
            font-size: 13px;
        }

    #footer section textarea.textbox {
        height: 82px;
    }

    #footer section .send {
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: none;
        color: #000;
    }

        #footer section .send span {
            vertical-align: middle;
        }

.footer-icons:after {
    display: block;
    content: '';
    clear: both;
}

.social-networks {
    padding-top: 17px;
}

#breadcrumbs {
    background-color: #f2f4f7;
    padding: 26px 0;
    border-bottom: 1px solid #e1e3e6;
    margin-bottom: 70px;
}

    #breadcrumbs:after {
        display: block;
        content: '';
        clear: both;
    }

    #breadcrumbs h1 {
        text-transform: none;
        margin-bottom: 0;
    }

.breadcrumbs li {
    display: inline-block;
    font-size: 13px;
}

.breadcrumbs a {
    color: #6d6e71;
    text-decoration: none;
    line-height: 1.4;
}

.breadcrumbs li.active {
    color: #858234;
    font-weight: 500;
}

#sidebar {
    float: left;
    width: 25.29%;
    box-sizing: border-box;
    padding-right: 25px;
}

    #sidebar + main {
        float: left;
        width: 74.71%;
        box-sizing: border-box;
    }

    #sidebar .sidenav:last-child {
        border-bottom: none;
    }

.sidenav {
    position: relative;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e3e6;
    margin-bottom: 39px;
}

    .sidenav .expand {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 21px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        background-color: #858234;
        text-decoration: none;
        color: #fff;
    }

        .sidenav .expand span {
            margin-left: -1px;
            line-height: 18px;
        }

    .sidenav h2 {
        font-size: 16px;
        font-weight: 500;
        color: #000;
        margin-bottom: 20px;
    }

        .sidenav h2.openinghours {
            margin-bottom: 9px;
            text-transform: none;
        }

    .sidenav p {
        line-height: 1.6;
    }

.sidelinks li {
    margin-bottom: 18px;
}

.sidelinks > li:before {
    content: "\2022";
    color: #6d6e71;
    margin-right: 4px;
}

.sidelinks a {
    color: #6d6e71;
    text-decoration: none;
}

.sidelinks .sub {
    margin: 18px 0 0 22px;
}

.sidelinks li.active > a {
    font-weight: 700;
}

.section-side-links {
    padding: 33px 38px;
    border: 1px solid #e1e3e6;
    background-color: #f2f4f7;
    margin-bottom: 34px;
}

    .section-side-links h2 {
        font-size: 16px;
        color: #808184;
        text-transform: none;
        margin-bottom: 20px;
    }

    .section-side-links li {
        margin-bottom: 17px;
    }

        .section-side-links li a {
            text-decoration: none;
            color: #000;
        }

.products {
    overflow: hidden;
    margin-bottom: 0 !important;
}

    .products:after {
        display: block;
        content: '';
        clear: both;
    }

    .products article {
        width: 31%;
        float: left;
        margin-right: 3.5%;
        box-sizing: border-box;
        text-align: center;
        margin-bottom: 38px;
    }

        .products article:nth-child(3n) {
            margin-right: 0;
        }

    .products .product-image {
        display: block;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: 1px solid #ebebeb;
        position: relative;
        overflow: hidden;
    }

        .products .product-image .pi {
            height: 339px;
            padding: 0;
            margin: 0;
            line-height: 339px;
            text-align: center;
            box-sizing: border-box;
            border: 1px solid #ebebeb;
        }

        .products .product-image > a {
            display: block;
        }

        .products .product-image img {
            display: inline-block;
            max-height: 100%;
            max-width: 100%;
            vertical-align: middle;
        }

        .products .product-image .buy-button {
            position: absolute;
            display: block;
            width: 100%;
            bottom: 0;
            left: 0;
            margin-bottom: -47px;
            transition: all 0.5s ease;
            padding: 0;
            height: 47px;
            line-height: 47px;
            text-transform: uppercase;
            color: #fff;
            background-color: #858234;
        }

            .products .product-image .buy-button:hover {
                background-color: #6a6829;
            }

    .products > article:hover > .product-image > .buy-button {
        margin-bottom: 0;
    }

    .products .product-price:before {
        margin-bottom: 16px;
    }

    .products .product-price:after {
        margin-top: 16px;
    }

    .products .product-price {
        margin-bottom: 14px;
        font-weight: 500;
        font-size: 20px;
    }

        .products .product-price .old-price {
            font-size: 0.7em;
            margin-top: 0.5em;
        }

    .products .product-info {
        display: block;
        padding-top: 16px;
    }

    .products p, .products a {
        line-height: 1.1;
        color: #000;
        text-decoration: none;
    }

    .products .product-name {
        font-size: 14px;
        margin-bottom: 0;
        text-transform: none;
    }

#popular-products {
}

    #popular-products h1 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 26px;
        text-transform: none;
    }

.display-options {
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e3e6;
}

    .display-options label {
        text-transform: uppercase;
        color: #212224;
        font-weight: 500;
    }

    .display-options select {
        display: inline-block;
        margin-left: 17px;
        margin-right: 61px;
        height: 31px; /*border: 1px solid #e1e3e6;*/
        padding: 0 11px;
    }

.pagination {
    line-height: 28px;
    margin: 19px 0;
}

    .pagination:after {
        display: block;
        content: '';
        clear: both;
    }

.pagenums {
    float: right;
}

    .pagenums li {
        float: left;
        margin-left: 8px;
    }

        .pagenums li a {
            display: block;
            width: 27px;
            height: 26px;
            text-align: center;
            line-height: 25px;
            border: 1px solid #e1e3e6;
            font-size: 15px;
            padding: 0;
        }

            .pagenums li a span {
                padding: 0;
            }

            .pagenums li.active a, .pagenums li a:hover, .pagenums li a:hover span {
                background-color: #858234;
                color: #fff;
                border-color: #858234;
            }

.product {
    display: table;
    width: 100%;
    margin-bottom: 66px;
}

.product-pictures {
    display: table-cell;
    width: 51.29%;
    max-width: 51.29%;
    vertical-align: top;
}

.product-information {
    display: table-cell;
    width: 48.71%;
    max-width: 48.71%;
    vertical-align: top;
    padding-left: 70px;
}

.product-pictures figure {
    margin: 0;
    padding: 0;
}

.main-pictures {
    border: 1px solid #e1e3e6;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 14px;
}

    .main-pictures figure {
        margin: 54px 9%;
        width: 82%;
        height: 569px !important;
        text-align: center !important;
        line-height: 569px !important;
        max-width: 100%;
    }

    .main-pictures.rslides figure img {
        left: 0;
        float: none !important;
        width: auto !important;
        height: auto !important;
        display: inline-block !important;
        max-height: 100% !important;
        max-width: 100% !important;
        vertical-align: middle !important;
    }

.product-information h1 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 40px;
}

.product-information .price {
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
    padding: 26px 0;
    color: #000;
    font-size: 30px;
    font-weight: 500;
}

    .product-information .price .old-price {
        font-size: 0.7em;
        margin-top: 0.5em;
    }

.product-information .product-facts {
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
    padding: 26px 0 12px;
    overflow: hidden;
    font-size: 13px;
}

    .product-information .product-facts dt {
        min-width: 90px;
        float: left;
        clear: left;
        margin-bottom: 14px;
        color: #212224;
    }

    .product-information .product-facts dd {
        float: left;
        margin-bottom: 14px;
    }

.product-information .price + .product-facts {
    border-top: none;
}

.product-information .excerpt {
    margin-top: 26px;
    font-size: 13px;
    font-weight: normal;
}

.product-information .buy-now {
    margin-top: 71px;
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
    padding: 40px 0;
    vertical-align: top;
}

.product-information .quantity {
    height: 46px !important;
    width: 46px !important;
    box-sizing: border-box;
    vertical-align: bottom;
    margin: 0 5px;
    padding: 0;
    text-align: center;
    border: 1px solid #e1e3e6;
}

.product-information .button {
    width: 46px;
    height: 46px;
    line-height: 46px;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e1e3e6;
    color: #8a9099;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease;
    -webkit-transition-delay: 0s;
    transition: all 0.2s ease 0s;
}

    .product-information .button:hover {
        background-color: #858234;
        color: #fff;
    }

.product-information .add-to-cart {
    margin-left: 38px;
    padding: 0 51px;
    width: auto;
    background-color: #858234;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

    .product-information .add-to-cart:hover {
        background-color: #6a6829;
    }

.product-information .sharing {
    margin: 15px 0;
}

.product-information .product-tabs .button {
    width: auto;
    padding: 0 12px;
    font-weight: 500;
}

.product-information .nav-tabs {
    margin-bottom: 15px;
}

    .product-information .nav-tabs:after {
        display: block;
        content: '';
        clear: both;
    }

    .product-information .nav-tabs li {
        float: left;
        margin-right: 8px;
    }

        .product-information .nav-tabs li.active .button {
            background-color: #858234;
            color: #fff;
            position: relative;
        }

            .product-information .nav-tabs li.active .button:hover {
                background-color: #6a6829;
                color: #fff;
            }

            .product-information .nav-tabs li.active .button:after {
                content: '';
                display: block;
                height: 0;
                width: 0;
                border: 5px solid transparent;
                border-top-color: #858234;
                position: absolute;
                bottom: -10px;
                left: 50%;
                -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
            }

            .product-information .nav-tabs li.active .button:hover:after {
                border-top-color: #6a6829;
            }

.product-information .tab-pane {
    display: none;
}

    .product-information .tab-pane.active {
        display: block;
    }

    .product-information .tab-pane .product-facts {
        border-top: none;
        border-bottom: none;
        padding: 0;
    }

.thumbnail-pictures.rslides_tabs {
    position: relative;
    bottom: 0;
    right: 0;
}

.thumbnail-pictures {
    overflow: hidden;
}

    .thumbnail-pictures:after {
        display: block;
        content: '';
        clear: both;
    }

    .thumbnail-pictures figure {
        float: left;
        width: 22.9%;
        margin-right: 2.8%;
        margin-bottom: 14px;
    }

        .thumbnail-pictures figure img {
            width: 100%;
        }

        .thumbnail-pictures figure:nth-child(4n) {
            margin-right: 0;
        }

#breadcrumbs.product {
    margin-bottom: 18px;
}

.products-nav {
    border-top: 1px solid #e1e3e6;
    border-bottom: 1px solid #e1e3e6;
    padding: 23px 0;
    overflow: hidden;
    margin-bottom: 43px;
}

    .products-nav a {
        display: block;
        color: #212224;
        text-decoration: none;
        box-sizing: border-box;
        border: 1px solid #d7d9db;
        height: 46px;
        line-height: 46px;
        vertical-align: middle;
        text-align: center;
        -moz-transition: all 0.2s ease 0s;
        -o-transition: all 0.2s ease 0s;
        -webkit-transition: all 0.2s ease;
        -webkit-transition-delay: 0s;
        transition: all 0.2s ease 0s;
        width: 46px;
        margin-left: 10px;
    }

        .products-nav a:hover {
            color: #fff;
            background-color: #858234;
        }

.back-to-catalog {
    position: relative;
    border-left: none;
    padding: 0;
    text-transform: uppercase;
    max-width: 155px;
    min-width: 130px;
    font-weight: 500;
}

    .back-to-catalog:after, .back-to-catalog:before {
        box-sizing: border-box;
        color: #d7d9db;
        content: "";
        display: block;
        position: absolute;
        height: 0;
        width: 0;
        left: -15px;
        top: -1px;
        border-top: 23px solid transparent;
        border-bottom: 23px solid transparent;
        border-right: none;
        border-right-width: 10px;
        border-right-style: solid;
        -moz-transition: all 0.2s ease 0s;
        -o-transition: all 0.2s ease 0s;
        -webkit-transition: all 0.2s ease;
        -webkit-transition-delay: 0s;
        transition: all 0.2s ease 0s;
    }

    .back-to-catalog:after {
        border-right-color: white;
        border-right-width: 10px;
        left: -9px;
    }

    .back-to-catalog:before {
        border-right-color: #d7d9db;
        left: -10px;
    }

    .back-to-catalog:hover:before, .back-to-catalog:hover:after {
        border-right-color: #858234;
    }

.uppercase {
    text-transform: uppercase !important;
}

.shopping-cart {
    display: table;
    width: 100%;
    margin-bottom: 66px;
}

.shopping-cart-content {
    display: table-cell;
    width: 71.79%;
    max-width: 71.79%;
    vertical-align: top;
}

.shopping-cart-detail {
    display: table-cell;
    width: 28.21%;
    max-width: 28.21%;
    vertical-align: top;
    padding-left: 60px;
}

#shopping-cart-table {
    border-collapse: collapse;
    width: 100%;
}

    #shopping-cart-table th {
        padding: 20px 20px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        color: #000;
        background-color: #ebebeb;
        height: auto;
        vertical-align: middle;
    }

    #shopping-cart-table td {
        border: 1px solid #e6e8eb;
        vertical-align: top;
        text-align: center;
        padding: 20px;
        color: #212224;
    }

        #shopping-cart-table td:first-child {
            text-align: left;
        }

    #shopping-cart-table .product-name {
        font-size: 14px;
        font-weight: 500;
        color: #212224;
        text-decoration: none;
        display: block;
        text-align: left;
    }

    #shopping-cart-table .price {
        font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
    }

.buy-now {
    margin: 0;
    border: none;
    padding: 0;
    white-space: nowrap;
}

    .buy-now .quantity {
        height: 32px;
        width: 32px;
        box-sizing: border-box;
        vertical-align: bottom;
        margin: 0;
        padding: 0;
        text-align: center;
        border: 1px solid #dee0e3;
    }

#shopping-cart-table .button {
    width: 32px;
    height: 32px;
    line-height: 32px;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    border: 1px solid #dee0e3;
    padding: 0;
    color: #8a9099;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease;
    -webkit-transition-delay: 0s;
    transition: all 0.2s ease 0s;
}

    #shopping-cart-table .button:hover {
        background-color: #858234;
        color: #fff;
    }

    #shopping-cart-table .button.remove {
        width: 23px;
        height: 23px;
        line-height: 23px;
    }

#shopping-cart-table .total-cell {
    border-right: none;
}

#shopping-cart-table .remove-cell {
    padding-top: 20px;
    border-left: none;
    text-align: right;
}

#shopping-cart-table tfoot td {
    text-align: right;
    padding-right: 0;
    border: none;
    padding: 15px 10px 0 0;
}

.shopping-cart-detail > div {
    margin-bottom: 10px;
}

    .shopping-cart-detail > div h3 {
        background-color: #ebebeb;
        color: #000;
        font-size: 15px;
        padding: 18px 16px;
        margin-bottom: 0;
    }

.shopping-cart-detail .shopping-cart-value {
    border-left: 1px solid #e6e8eb;
    border-right: 1px solid #e6e8eb;
    font-size: 13px;
}

    .shopping-cart-detail .shopping-cart-value:after {
        display: block;
        content: '';
        clear: both;
    }

.shopping-cart-detail .shopping-cart-value {
    border: 1px solid #e6e8eb;
}

    .shopping-cart-detail .shopping-cart-value dt {
        width: 50%;
        float: left;
        clear: left;
        padding: 18px 16px;
        margin: 0;
        color: #212224;
        box-sizing: border-box;
        border-top: 1px solid #e6e8eb;
    }

    .shopping-cart-detail .shopping-cart-value dd {
        float: left;
        width: 50%;
        padding: 18px 16px;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #e6e8eb;
        text-align: right;
    }

.shopping-cart-detail > div > div {
    padding: 18px 16px 3px;
    border: 1px solid #e6e8eb;
    border-top: none;
}

.shopping-cart-detail input, .shopping-cart-detail select {
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: 1px solid #d7d9db;
    margin-bottom: 15px;
    padding-left: 15px;
}

.shopping-cart-checkout label {
    width: 150px;
    display: inline-block;
    line-height: 1.5;
}

    .shopping-cart-checkout label.top {
        vertical-align: top;
    }

    .shopping-cart-checkout label.terms {
        width: auto;
    }

.checkout-fields {
    overflow: hidden;
}

    .checkout-fields .col {
        float: left;
        box-sizing: border-box;
        width: 48%;
        margin-right: 2%;
    }

    .checkout-fields p input, .checkout-fields p select, .checkout-fields p textarea {
        box-sizing: border-box;
        width: 100%;
        max-width: 300px;
    }



.contacts {
    margin: 51px 0;
}

    .contacts:after, .employees:after {
        display: block;
        content: '';
        clear: both;
    }

    .contacts > li, .employees > li {
        float: left;
        width: 44.24%;
        margin-right: 11.52%;
        text-align: center;
        padding: 30px 10px 19px;
        background-color: #f2f4f7;
        box-sizing: border-box;
        border: 1px solid #e1e3e6;
    }

        .contacts > li:nth-child(2n), .employees > li:nth-child(2n) {
            margin-right: 0;
        }

    .contacts li > div {
        display: inline-block;
    }

        .contacts li > div li {
            text-align: left;
            float: none;
            padding-left: 27px;
            position: relative;
            margin-bottom: 11px;
            color: #000;
        }

    .contacts li span[data-icon] {
        position: absolute;
        top: 0;
        left: 0;
        color: #858b94;
    }

    .contacts h3 {
        font-size: 22px;
        font-weight: 500;
        color: #808184;
        line-height: 1;
    }

    .contacts a, .employees a {
        color: #000;
        text-decoration: none;
    }

.employees {
    margin-bottom: 0;
    color: #000;
}

    .employees > li {
        margin-bottom: 48px;
        position: relative;
        text-align: left;
        padding: 24px 10px 13px 102px;
    }

    .employees img {
        display: block;
        position: absolute;
        top: -1px;
        left: -1px;
        width: 83px;
        height: 83px;
    }

    .employees > li li {
        margin-bottom: 11px;
    }

    .employees .name {
        margin-bottom: 29px;
    }

    .employees span[data-icon] {
        color: #858b94;
        margin-right: 16px;
    }

.search-form {
    display: table;
    margin: 0 auto;
    padding: 0 20px;
}

    .search-form h4 {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
    }

.search-wrapper span {
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: block;
    position: absolute;
    top: -1px;
    right: -1px;
    color: #fff;
    background-color: #858234;
    text-align: center;
    font-size: 16px;
}

.search-title {
    text-transform: none;
    font-size: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9dcdf;
    margin-bottom: 34px;
}

.normalcase {
    text-transform: none;
}

.theme-heading {
    margin-top: 0;
}

.theme-content .excerpt {
    font-size: 14px;
    font-weight: 400;
}

.theme-content .section-image {
    margin-bottom: 30px;
}

.theme-content section h2 {
    margin-bottom: 24px;
    text-transform: none;
}

.theme-content .section-table {
    margin-bottom: 40px;
}

.theme-content section {
    margin-bottom: 30px;
}

.backlink {
    text-decoration: none;
    color: #6d6e71;
    font-weight: 500;
    margin-top: 30px;
    display: block;
}

    .backlink span {
        vertical-align: middle;
    }

.search-topics h2 {
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: none;
}

.search-topics .search-wrapper {
    margin-top: 0;
}

    .search-topics .search-wrapper span {
        right: 0;
    }

.section-image a {
    text-decoration: none;
    color: #6d6e71;
}

.excerpt:empty {
    display: none;
}

main > * + h1 {
    margin-top: 41px;
}

.fixed-sections {
    position: fixed;
    top: 0;
    z-index: 3;
    background-color: #fff;
}

/************
	MOBILE
*************/
@media screen and (max-width:1193px) {
    /*h1 { font-size: 32px; margin-bottom: 20px; }
    h2 { font-size: 26px; margin-bottom: 20px; }
    h3 { font-size: 20px; margin-bottom: 15px; }
    h4 { font-size: 20px; }
    h5 { font-size: 17px; }
    h6 { font-size: 17px; }*/

    .excerpt {
        margin: 0 0 20px 0;
    }

    .layout {
        width: auto;
        margin: 0 15px;
        padding: 0;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .desktop-table-only {
        display: none !important;
    }

    /* HEADER */
    #header {
    }

        #header nav {
            padding: 13px 0 12px;
        }

    #site-logo {
        margin: 15px 0;
    }

        #site-logo img {
            width: auto;
            height: 60px;
        }



    /* NAV */
    #mobile-menu-icon {
        display: block;
        margin-top: 0;
        font-size: 30px;
        color: #fff !important;
        text-decoration: none;
    }

    #mobile-menu-close-icon {
        display: block;
        text-align: right;
        margin: 19px 15px 15px 0;
        font-size: 22px;
        color: #1d1d1b;
    }

    /* main-nav-mobile */
    #main-nav-mobile {
        display: inline-block;
        margin-left: 15px;
    }

    .main-nav-mobile-wrap {
        position: fixed;
        top: 0;
        right: -255px;
        width: 250px;
        height: 100%;
        z-index: 999;
        background: #fff;
        border-left: 2px solid #1d1d1b;
        overflow: auto;
        transition: right 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
    }

    .main-nav-mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 998;
        background: rgba(255,255,255,0.5);
    }

    .open .main-nav-mobile-wrap {
        right: 0;
    }

    .open .main-nav-mobile-overlay {
        display: block;
    }

    .main-nav-mobile > li {
        margin: 0 15px;
        text-align: right;
        border-top: 1px solid #ccc;
    }

        .main-nav-mobile > li:first-child {
            border-top: none;
        }

    .main-nav-mobile li > div > a {
        display: block;
        padding: 13px 0;
        color: #1d1d1b;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
    }

    .main-nav-mobile li > div > .sub {
        margin: -5px 0 10px 0;
    }

        .main-nav-mobile li > div > .sub li > div > a {
            padding: 5px 0;
            font-size: 14px;
            text-transform: none;
        }

    .main-nav-mobile li a:hover, .main-nav-mobile li.active > a {
        color: #e26e33;
    }

    .main-nav-mobile li.site-nav img {
        height: 22px;
        width: auto;
    }



    /* SEARCH FUNCTION */
    .search {
        float: right;
        display: block;
    }

    #search-toggle {
        float: right;
        margin: 19px 0 0 15px;
        padding: 0;
        color: #1d1d1b;
        font-size: 19px;
        height: 19px;
    }

    .search-bar {
        background: #1d1d1b;
    }



    /* MAIN */
    .main-content {
        padding: 0 0 22px;
    }



    /* RESPONSIVE SLIDER */
    .rslides img {
        position: relative;
        height: auto;
        left: 50%;
        margin: 0 -512px;
        width: 1024px;
    }

    .rslide-text .text-wrap {
        max-width: none;
        padding: 0 10px;
    }

    .rslide-text h2 {
        margin: 10px 0;
        font-size: 30px;
        font-weight: 400;
    }

    .rslide-text p {
        margin: 10px 0;
        font-size: 20px;
        font-weight: 400;
    }

    .rslides_tabs {
        display: none;
    }



    /* NEWS */
    .news-list {
        margin: 0;
    }

    .news-item {
        width: auto;
        float: none;
        margin: 20px 0 40px;
    }

    .news-item-image {
        width: auto;
        height: auto;
    }

        .news-item-image img {
            width: 100%;
            height: auto;
            max-width: 300px;
        }

    .news-article-image {
        float: none;
        margin: 0 0 15px 0;
    }

        .news-article-image img {
            width: 100%;
            height: auto;
            max-width: 400px;
        }

    .other-news {
        margin: 40px 0 0;
    }



    /* CONTACT */
    .contact-block {
        display: block;
        width: auto;
    }

        .contact-block .inner {
            display: block;
            margin: 40px 0 20px;
        }

            .contact-block .inner:first-child {
                margin-top: 0;
            }

            .contact-block .inner.form {
                width: auto;
                padding-left: 0;
            }

    /* google-map */
    .google-map > img {
        width: 1024px;
        height: auto;
    }



    /* FOOTER */
    #footer-pusher {
        display: none;
    }

    #footer {
        position: static;
        padding: 24px 0 15px;
    }

    /* back-to-top */
    #back-to-top {
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .search-parent {
        position: relative;
        width: 32px;
        height: 32px;
    }

    .search-wrap {
        z-index: 2;
        position: relative;
        position: absolute;
        top: 0;
        left: 0;
        width: 32px;
        -webkit-transition: width 0.3s ease-in-out;
        -moz-transition: width 0.3s ease-in-out;
        -o-transition: width 0.3s ease-in-out;
        transition: width 0.3s ease-in-out;
    }

        .search-wrap.active {
            width: 251px;
        }

            .search-wrap.active .search-box {
                width: 100%;
            }

    .search-parent .search-box {
        height: 32px;
        border: none !important;
    }

    .search-wrap span {
        width: 32px;
        height: 32px;
        line-height: 32px;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        color: #fff;
        background-color: #858234;
        text-align: center;
        font-size: 16px;
    }

    /*.shopping-cart-header { width: 180px; margin-top: 0; height: 32px; margin-right: 0; line-height: 32px; color: #9aa2ab; font-size: 14px; background-color: #fff; border: none; }
    .shopping-cart-header a { padding-left: 43px; }
    .shopping-cart-header .cart-icon { top: 0; left: 0; height: 32px; width: 32px; font-size: 20px; line-height: 32px; }
    .shopping-cart-header .cart-arrow { line-height: 36px; margin-right: 10px;  font-size: 20px; }*/

    .shopping-cart-mobile {
    }

        .shopping-cart-mobile a {
            display: block;
            position: relative;
            margin: 0;
            height: 32px;
            width: 32px;
            font-size: 20px;
            line-height: 32px;
        }

        .shopping-cart-mobile .cart-icon {
            top: 0;
            left: 0;
            height: 32px;
            width: 32px;
            font-size: 20px;
            line-height: 32px;
            color: #fff;
        }

        .shopping-cart-mobile .total {
            display: block;
            width: 18px;
            border-radius: 100%;
            height: 18px;
            font-size: 12px;
            color: #fff;
            background-color: #858234;
            text-align: center;
            line-height: 18px;
            position: absolute;
            top: -4px;
            left: -4px;
        }
}


@media screen and (max-width:1023px) {
    #footer section {
        width: 48.7%;
        margin-right: 2.6%;
        margin-bottom: 40px;
    }

        #footer section:nth-child(2n) {
            margin-right: 0;
        }

        #footer section:nth-child(3n) {
            margin: 0 auto 20px;
            float: none;
        }

    .contacts > li, .employees > li {
        width: 49%;
        margin-right: 2%;
    }

    .shopping-cart {
        display: block;
    }

    .shopping-cart-content {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .shopping-cart-detail {
        display: block;
        float: right;
        width: 280px;
        max-width: 280px;
        padding-left: 0;
    }

        .shopping-cart-detail:after {
            display: block;
            content: '';
            clear: both;
        }

        .shopping-cart-detail > div h3 {
            display: none;
        }

    .shopping-cart-detail {
        max-width: none;
        width: auto;
        float: none;
        margin-top: 20px;
    }
}

/************
	768
*************/
@media screen and (max-width:767px) {
    #articles article {
        /*width: 48.7%;*/
        width: 46.7%;
        margin-right: 2.6%;
    }

    #articles > div article:nth-child(2n) {
        margin-right: 0;
    }

    #articles > div article:nth-child(3n) {
        /*display: none;*/
        margin-right: 2.6%;
    }

    #departments > div article:nth-child(3n) {
        display: block !important;
    }

    #footer section {
        width: 100%;
        margin-right: 0;
        float: none;
    }

    .main-content > .layout {
        display: flex;
        flex-direction: column;
    }

    #sidebar + main {
        order: 1;
        float: none;
        width: 100%;
        max-width: 100%;
        display: block;
    }

    #sidebar {
        order: 2;
        float: none !important;
        width: 100% !important;
        max-width: 100%;
        display: block;
        padding-right: 0;
    }

    #top-slider {
        min-width: 100%;
        max-width: 100%;
    }

    aside section:first-child {
        margin-top: 20px;
    }

    .section-table {
        display: flex;
        flex-direction: column;
    }

        .section-table .section-left-column {
            order: 2;
            width: 100%;
            max-width: 100%;
            display: block;
        }

        .section-table .section-right-column {
            order: 1;
            width: 100%;
            max-width: 100%;
            display: block;
            padding-left: 0;
        }

    .section-side-images {
        width: 100%;
        margin-bottom: 20px;
    }

    .content li {
        margin-left: 0;
    }

    .product {
        display: table;
        width: 100%;
        margin-bottom: 66px;
    }

    .product-pictures {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .product-information {
        display: block;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }

        .product-information .add-to-cart {
            margin-left: 15px;
        }

    .google-map > img {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .contacts > li, .employees > li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        text-align: left;
    }

    .employees li > ul {
        display: inline-block;
    }

    /*.contacts { margin: 51px 0; }
    .contacts:after, .employees:after { display: block; content: ''; clear: both; }
    .contacts > li, .employees > li { float: left; width: 44.24%; margin-right: 11.52%; text-align: center; padding: 30px 10px 19px; background-color: #f2f4f7; box-sizing: border-box; border: 1px solid #e1e3e6; }
    .contacts > li:nth-child(2n), .employees > li:nth-child(2n) { margin-right: 0; }
    .contacts li > div { display: inline-block; }
    .contacts li > div li { text-align: left; float: none; padding-left: 27px; position: relative; margin-bottom: 11px; color: #000; }
    .contacts li span[data-icon] { position: absolute; top: 0; left: 0; color: #858b94; }
    .contacts h3 { font-size: 22px; font-weight: 500; color: #808184; line-height: 1; }
    .contacts a, .employees a { color: #000; text-decoration: none; }

    .employees { margin-bottom: 134px; color: #000; }
    .employees > li { margin-bottom: 48px; position: relative; text-align: left; padding: 24px 10px 13px 102px; } 
    .employees img { display: block; position: absolute; top: -1px; left: -1px; }
    .employees > li li { margin-bottom: 11px; }
    .employees .name { margin-bottom: 29px; }
    .employees span[data-icon] { color: #858b94; margin-right: 16px; }*/

    .desktop-only-sections {
        display: none;
    }

    .mobile-only-inline-block {
        display: inline-block;
    }

    .expand-section {
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        background-color: #858234;
        text-decoration: none;
        color: #fff;
        border-radius: 100%;
        margin-right: 15px;
    }

    .desktop-medium-only {
        display: none;
    }

    .medium-down-only {
        display: table;
    }

    .checkout-fields .col {
        float: none;
        width: auto;
        margin: 0;
    }

    .checkout-fields p input, .checkout-fields p select, .checkout-fields p textarea {
        max-width: none;
    }

    .top-bar {
        padding: 8px 0;
    }

    main section {
        margin-bottom: 1em;
    }

    #breadcrumbs {
        margin-bottom: 2em;
        padding: 1em;
    }

        #breadcrumbs h1, #breadcrumbs .breadcrumbs {
            margin: 0.4em 0;
            display: block;
            float: none;
        }

    .pagination {
        margin-top: 0;
    }

    .pagenums li {
        margin-bottom: 8px;
    }

    .shopping-cart #shopping-cart-table {
        margin-bottom: 1em;
    }

        .shopping-cart #shopping-cart-table tbody tr:nth-child(2n+1) {
            border-top: 1px solid #e6e8eb;
        }

    .shopping-cart-checkout #shopping-cart-table tbody td, .shopping-cart-checkout #shopping-cart-table tbody th {
        padding: 10px 4px;
        font-size: 13px;
        text-transform: none;
    }

    .shopping-cart-checkout #shopping-cart-table tfoot td {
        white-space: nowrap;
        padding: 10px 10px 0 0;
    }

    .employees {
        margin-bottom: 1em;
    }

    .department-info {
        width: auto;
        min-width: 0;
    }

    #footer section {
        margin-bottom: 1em;
    }

        #footer section h1 {
            margin-bottom: 1em;
            padding: 10px 0;
        }

    #footer address ul li {
        margin-bottom: 5px;
    }

    .footer-icons > div {
        display: block;
        float: none;
        text-align: center;
        margin: 1em 0;
    }

        .footer-icons > div img {
            max-width: 100%;
        }

        .footer-icons > div table {
            width: 100%;
        }
}


/************
	640
*************/
@media screen and (max-width:639px) {
    .products article {
        width: 49%;
        float: left;
        margin-right: 2%;
        box-sizing: border-box;
        text-align: center;
        margin-bottom: 38px;
    }

        .products article:nth-child(3n) {
            margin-right: 2%;
        }

        .products article:nth-child(2n) {
            margin-right: 0;
        }

    .display-options label {
        display: none;
    }

    .display-options select {
        margin-left: 0;
        margin-right: 15px;
    }
}

/************
	480
*************/
@media screen and (max-width:479px) {
    #articles article {
        width: 100%;
        margin-right: 0;
        float: none;
        margin-bottom: 20px;
    }

    #articles > div article:nth-child(3n) {
        display: block;
        margin-bottom: 65px;
    }
}

@media screen and (max-width: 360px) {
    .products article {
        width: 100%;
        float: none;
        margin-right: 0;
    }

        .products article:nth-child(3n) {
            margin-right: 0;
        }

        .products article:nth-child(2n) {
            margin-right: 0;
        }

    .search-form .search-wrapper {
        width: 100%;
    }
}



.umb-block-grid__layout-container .umb-block-grid__layout-item:last-child {
    margin-bottom: 0;
}

.caption {
    font-style: italic;
    font-size: 11px;
    background-color: #f2f4f7;
    padding: 13px 7px;
    line-height: 1.4;
    margin-top: -4px !important;
}

.ecwid-cart-header {
    width: auto !important;
    border: none !important;
}

#site-logo img {
    max-height: 75px;
}

.search-wrapper {
    margin: 25px auto 0 !important;
}

.shopping-cart-header {
    margin-top: 25px !important;
}

.departments text-align: left; {
    margin-bottom: 20px !important;
}

#departments > div article:nth-child(3n) {
    margin-right: auto !important;
}

/*html#ecwid_html body#ecwid_body .ec-minicart__icon .icon-default path[stroke] {
    stroke: #fff;
}*/



html#ecwid_html body#ecwid_body .ec-minicart--m .ec-minicart__counter::after {
    background-color: #858234 !important;
}

.ec-minicart__counter {
    color: white !important;
}
