﻿/* HEADER */

svg #logo {
    fill: var(--logo-color);
}

header {
    font-family: 'helvetica_neue77BdCn' !important;
}

header #header-top {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    border-bottom: solid 1px var(--border-color);
    background-color: #fff;
    margin: 0;
    position: fixed;
    z-index: 501;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
}
header #header-top #logo a {
    display: inline-block;
    padding: 16px 24px;
}
header #header-top #logo a svg {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    width: auto;
    height: 32px;
}

header #header-top #buttons {
    position: relative;
    text-align: right;
}
header #header-top #buttons ul {
    position: relative;
    display: block;
    list-style: none;
    padding: 16px 24px;
    margin: 0;
    vertical-align: top;
}
header #header-top #buttons ul li {
    position: relative;
    display: inline-block;
    margin: 0;
}
header #header-top #buttons ul li a {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    display: inline-block;
    padding: 4px 6px 3px;
    font-size: 18px;
    color: var(--main-color);
    background-color: #fff;
    text-decoration:none;
}
header #header-top #buttons ul li a:hover,
header #header-top #buttons ul li a.active {
    color: #fff;
    background-color: var(--main-color);
}

header #header-top #buttons ul #menu-languages #menu-languages-button {
    position: relative;
    z-index: 10;
    min-width:34px;
    text-align:center;
}
header #header-top #buttons ul #menu-languages #menu-languages-list {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    z-index: 11;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    display: none;
}
header #header-top #buttons ul #menu-languages #menu-languages-list li {
    display: block;
    width: 100%;
    text-align: center;
}
header #header-top #buttons ul #menu-languages #menu-languages-list li a {
    display: block;
    width: 100%;
    min-width: 34px;
    text-decoration: none;
}
header #header-top #buttons ul #menu-languages #menu-languages-list li a.active {
    display: none;
}
header #header-top #buttons ul #menu-languages.opened #menu-languages-list {
    display: block;
    bottom: unset;
    top: 100%;
}

header #header-top #search-form {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    position: absolute;
    left: 100%;
    width: 0%;
    z-index: 5;
    text-align: center;
    background-color: #fff;
    bottom: -60px;
    height: 58px;
}
header #header-top #search-form.opened {
    left: 80%;
    width:20%;
}
header #header-top #search-form #search-text {
    font-family: 'futuralight' !important;
    font-size: 20px;
    display: inline-block;
    width: 90%;
    padding: 2px;
    margin-top: 5px;
    border: none;
    color: #888;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.only-576 {
    display: none !important;
}

header #header-main {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    /*border-bottom: solid 1px var(--border-color);*/
    background-color: var(--menu-bg-color);
    position: fixed;
    z-index: 500;
    width: 100%;
    left: 0;
    top: 64px;
    height: 61px;
    display:block;
}
header #header-main nav {
    display:block;
    width:100%;
    text-align:center;
}
header #header-main nav .nav-item {
    position:relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}
header #header-main nav .nav-item a {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    background-color: var(--menu-bg-color);
    color: var(--menu-color);
    font-size: 20px;
    padding: 15px 50px;
    text-transform: uppercase;
}
header #header-main nav .nav-item a:hover,
header #header-main nav .nav-item a.active {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}
header #header-main nav .nav-item .nav-sub {
   display:none;
   position:absolute;
   top:100%;
   left:0;
   width:100%;
   margin:0;
   padding:0;
}
header #header-main nav .nav-item .nav-sub.opened {
    display: block;
}
header #header-main nav .nav-item .nav-sub a {
    float:left;
    margin: 0;
    width:100%;
    font-size: 14px;
    padding: 15px 50px;
}

header #header-mobile {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    background-color: var(--menu-bg-color);
    position: fixed;
    z-index: 500;
    width: 100%;
    right: 100%;
    top: 40px;
    height: 100%;
    overflow-y: scroll;
    display: none;
}
header #header-mobile #header-mobile-inner {
    height: auto;
}
header #header-mobile .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
header #header-mobile .accordion-item {
    border: none;
}
header #header-mobile .accordion-item .collapse {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}
header #header-mobile .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
header #header-mobile .accordion-button,
header #header-mobile .accordion-button:focus {
    font-family: 'helvetica_neue77BdCn' !important;
    color: var(--menu-color);
    background-color: var(--menu-bg-color);
    box-shadow: none;
    font-size: 20px;
    text-transform: uppercase;
}
header #header-mobile .accordion-button:not(.collapsed) {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}
header #header-mobile .accordion-button::after {
    background-image: none;
}
header #header-mobile .accordion-header a {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    font-family: 'helvetica_neue77BdCn' !important;
    display: block;
    margin: 0;
    text-decoration: none;
    background-color: var(--menu-bg-color);
    color: var(--menu-color);
    font-size: 20px;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
}
header #header-mobile .accordion-header a.active {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}
header #header-mobile .accordion-body {
    font-family: 'helvetica_neue77BdCn' !important;
    color: var(--menu-color);
    background-color: var(--menu-bg-color);
    padding: 0;
}
header #header-mobile .accordion-body .accordion-button {
    padding: 0.7rem 1.8rem;
    font-size: 18px;
}
header #header-mobile .accordion-body p {
    display: block;
    padding: 10px 0 10px 1.8rem;
    margin: 0;
    color: var(--menu-active-bg-color);
}
header #header-mobile .accordion-body p a {
    color: var(--menu-color);
    display: block;
    text-decoration: none;
}
header #header-mobile .accordion-body ul {
    display: block;
    margin: 0;
    list-style:none;
}
header #header-mobile .accordion-body ul li a {
    color: var(--menu-color);
    display: block;
    padding: 5px 5px 5px 1.8rem;
    text-decoration: none;
}
header #header-mobile .accordion-body ul li.active a {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}

@media (max-width:991.98px) {
    header #header-main {
        height: 48px;
    }
    header #header-main nav .nav-item a {
        font-size: 16px;
        padding: 12px 30px;
    }
    header #header-main nav .nav-item .nav-sub a {
        font-size: 12px;
        padding: 12px 30px;
    }
    header #header-top #buttons ul li a small {
        display:none;
    }
    header #header-top #search-form.opened {
        left: 70%;
        width: 30%;
    }
}
@media (max-width:767.98px) {
    .only-576 {
        display: inline-block !important;
    }

    header #header-top {
        height: 40px;
    }
    header #header-top #logo a {
        padding: 3px 8px;
    }
    header #header-top #logo a svg {
        height: 18px;
        margin-top: 8px;
    }
    header #header-top #logo a img {
        height: 26px;
    }
    header #header-top #buttons ul {
        padding: 2px 0;
    }
    header #header-top #buttons ul li a {
        padding: 4px 6px;
    }

    header #header-top #search-form.opened {
        left: 0;
        width: 100%;
    }
       
    header #header-main {
        display:none;
    }
    header #header-mobile {
        display: block;

    }
    header #header-mobile.opened {
        right: 0;
    }
}
@media (max-width:575.98px) {

    header #header-top #logo a svg {
        height: 16px;
        margin-top: 8px;
    }
}

/**/

header.sticky #header-top {
    height: 40px;
}
header.sticky #header-top #logo a {
    padding: 6px 16px;
}
header.sticky #header-top #logo a svg {
    height: 22px;
}

header.sticky #header-top #buttons ul {
    padding: 6px 16px;
}
header.sticky #header-top #buttons ul li a {
    padding: 4px 6px;
    font-size:13px;
}

header.sticky #header-main {
    top:-100px;
}
header.sticky #header-main.active {
    top:40px;
}

/**/
header #header-main #menu-products {
    -webkit-transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    z-index:1;
    opacity: 0;
    display: none;
    margin-top:1px;
    border-bottom:solid 1px var(--border-color);
}
header #header-main #menu-products.opened {
    opacity: 1;
    display: block;
}

header #header-main #menu-products #mp-categories {
    position: relative;
    display: block;
    min-height: 300px;
    background-color: var(--menu-products-l-bg-color);
}
header #header-main #menu-products #mp-categories ul {
    margin:15px 0;
    padding:0;
    list-style:none;
}
header #header-main #menu-products #mp-categories ul li {
    border-top: solid 1px var(--menu-color);
}
header #header-main #menu-products #mp-categories ul li:first-of-type {
    border-top: none;
}
header #header-main #menu-products #mp-categories ul li a {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    display: block;
    padding: 10px;
    color: var(--menu-bg-color);
    text-decoration: none;
}
header #header-main #menu-products #mp-categories ul li.active a,
header #header-main #menu-products #mp-categories ul li:hover a {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}

header #header-main #menu-products #mp-products {
    position: relative;
    display: block;
    color: #fff;
    font-size: 15px;
    padding-top: 14px;
    background-color: var(--menu-products-c-bg-color);
}
header #header-main #menu-products #mp-products .row {
    display: none;
    opacity:0;
}
header #header-main #menu-products #mp-products .row.active {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    display: flex;
    opacity: 1;
}
header #header-main #menu-products #mp-products .row p {
    margin: 15px 0 0 0;
    padding: 0;
}
header #header-main #menu-products #mp-products .row p a {
    display:block;
    padding:5px;
    color:#fff;
    text-decoration:none;
}
header #header-main #menu-products #mp-products .row p.active a {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}

header #header-main #menu-products #mp-products .row p.hover a,
header #header-main #menu-products #mp-products .row p:hover a {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}
header #header-main #menu-products #mp-products .row ul {
    margin:0 0 15px 0;
    padding: 0;
    list-style: none;
    border-top: solid 1px #fff;
}
header #header-main #menu-products #mp-products .row ul li a {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5px 5px 5px 10px;
}
header #header-main #menu-products #mp-products .row ul li.active a {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}
header #header-main #menu-products #mp-products .row ul li.hover a,
header #header-main #menu-products #mp-products .row ul li:hover a {
    background-color: var(--menu-active-bg-color);
    color: var(--menu-active-color);
}

header #header-main #menu-products #mp-product {
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 650px;
    text-align: center;
    background-color: var(--menu-products-r-bg-color);
}
header #header-main #menu-products #mp-product .mp-product-preview {
    display:none;
}
header #header-main #menu-products #mp-product .mp-product-preview .image {
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
header #header-main #menu-products #mp-product .mp-product-preview .image img {
    max-width: auto;
    height: 100%;
}
header #header-main #menu-products #mp-product .mp-product-preview h2 {
    font-family: 'helvetica_neue75_bold' !important;
    font-size: 28px;
    text-align: left;
}
header #header-main #menu-products #mp-product .mp-product-preview h5 {
    font-family: 'helvetica_neue75_bold' !important;
    font-size: 22px;
    text-align: left;
}
header #header-main #menu-products #mp-product .mp-product-preview p {
    font-family: 'futuralight' !important;
    text-align: left;
}