﻿

.header {
    height: 66px;
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background-color: #1a1919;
    background-image: url("../images/logo-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 360%;
}

    .header .container--layout {
        padding-left: 0;
        padding-right: 0;
    }

@media(min-width:992px) {
    .header {
        height: 110px;
        border-top: 0;
        background-size: 80%;
    }

        .header .container--layout {
            padding-left: 15px;
            padding-right: 15px;
        }
}

.header__logo {
    height: 45px;
}

@media(min-width:992px) {
    .header__logo {
        height: 65px;
    }
}

.header__col--button {
    align-self: stretch;
    position: relative;
}

.header-button {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    background-color: transparent;
    height: calc(66px - 1px);
    padding: 10px;
    text-align: center;
    position: relative;
    transition: .3s ease background-color;
}

    .header-button.toggled {
        background-color: #dc0008;
    }

@media(min-width:992px) {
    .header-button.toggled:not(.header-button--hamburger)::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media(min-width:992px) {
    .header-button {
        padding: 25px;
        height: calc(110px - 1px);
    }
}

.header-button:hover .header-button__label {
    text-decoration: underline;
}

.header-button:focus {
    outline: none;
}

@media(min-width:992px) {
    #header-logo-url {
        padding: 25px;
        height: calc(110px - 1px);
    }
}

.header-button--hamburger {
    width: 73px;
}

    .header-button--hamburger .hamburger {
        display: inline;
    }

    .header-button--hamburger .hamburger-close {
        display: none;
    }

    .header-button--hamburger.toggled {
        background: #dc0008;
        background: -moz-linear-gradient(180deg, #b60000 0%, #dc0008 100%);
        background: -webkit-linear-gradient(180deg, #b60000 0%, #dc0008 100%);
        background: linear-gradient(180deg, #b60000 0%, #dc0008 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#B60000", endColorstr="#DC0008", GradientType=1);
    }

        .header-button--hamburger.toggled .hamburger {
            display: none;
        }

        .header-button--hamburger.toggled .hamburger-close {
            display: inline;
        }

.header-button__icon {
    display: block;
}

.header-button__label {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 10px;
    margin-top: 10px;
}

@media(min-width:992px) {
    .header-button__label {
        font-size: 12px;
    }
}

.header__separator {
    width: 28px;
    height: 45px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
}

    .header__separator::before {
        content: "";
        width: 1px;
        height: 53px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform-origin: bottom center;
        transform: rotate(31deg);
        background-color: #dc0008;
    }

.nav__list {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.nav__item {
    list-style-type: none;
    position: relative;
}

.nav__item--current::after {
    content: '';
    position: absolute;
    left: 7.5px;
    right: 7.5px;
    bottom: -2px;
    height: 2px;
    background-color: #dc0008;
}

.nav__link,
.products-sidebar__link {
    padding-left: 14px;
    padding-right: 14px;
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    line-height: 20px;
}

    .nav__link:focus,
    .nav__link:hover,
    .products-sidebar__link:focus,
    .products-sidebar__link:hover {
        color: #fff;
        text-decoration: underline;
    }

.mobile-sidebar #mobile-product-list ul {
    padding-left: 25px;
}

.mobile-sidebar #mobile-product-list .products-sidebar__item {
    position: relative;
}

    .mobile-sidebar #mobile-product-list .products-sidebar__item > .products-sidebar__link--category {
        margin-right: 30px;
    }

.mobile-sidebar .products-sidebar__link {
    white-space: normal;
    text-transform: none;
}

    .mobile-sidebar .products-sidebar__link:hover {
        background-color: unset;
        text-decoration: none;
    }

.language-selector {
    display: flex;
    cursor: pointer;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
}

.language-selector__selected {
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #dc0008;
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}

.language-selector__dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    width: 150px;
    max-width: 100vw;
    border: 1px solid #333;
    border-top: 0;
    background-color: #222;
    margin: 0;
    padding: 0;
    transform: translateY(1px);
    transition: .2s ease opacity;
}

    .language-selector__dropdown.toggled {
        opacity: 1;
        visibility: visible;
    }

.language-selector__item {
    list-style-type: none;
    padding-bottom: 3px;
    padding-top: 3px;
}

.language-selector__link {
    display: block;
    padding: 5px 15px;
    text-align: left;
    font-size: 14px;
    color: #fff;
}

    .language-selector__link:hover {
        color: #fff;
        text-decoration: underline;
    }

.language-selector__icon {
    height: 21px;
    vertical-align: top;
}

.mobile-sidebar {
    position: fixed;
    top: 66px;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(-110%);
    transition: .3s ease transform, .3s ease box-shadow;
    z-index: 3;
    background-color: #1a1919;
    overflow-y: auto;
    width: 75vw;
}

    .mobile-sidebar .container--layout {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-sidebar .nav__item {
        flex-basis: 100%;
        flex-shrink: 0;
        border-bottom: 1px solid #333;
    }

        .mobile-sidebar .nav__item .language-selector {
            padding: 10px 10px 10px 14px;
            text-transform: initial;
        }

    .mobile-sidebar .nav__link {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 29px;
        text-transform: initial;
        font-size: 15px;
    }

    .mobile-sidebar.toggled {
        transform: none;
        -webkit-box-shadow: 0 99999px 0 99999px rgba(0, 0, 0, .6);
        -moz-box-shadow: 0 99999px 0 99999px rgba(0, 0, 0, .6);
        box-shadow: 0 99999px 0 99999px rgba(0, 0, 0, .6);
    }

.nav__list--language-selector {
    display: none;
    border-top: 1px solid #333;
}

    .nav__list--language-selector .nav__link {
        padding-left: 50px;
        font-size: 12px;
        text-transform: uppercase;
    }

    .nav__list--language-selector.toggled {
        display: block;
    }

.mobile-sidebar__input {
    height: 41px;
    background-color: #5c5c5c;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 29px;
    font-size: 17px;
    border: 0;
    color: #fff;
    border-radius: 0;
}

    .mobile-sidebar__input:focus {
        outline: none;
    }

.mobile-sidebar__search-button {
    background: #dc0008;
    background: -moz-linear-gradient(180deg, #b60000 0%, #dc0008 100%);
    background: -webkit-linear-gradient(180deg, #b60000 0%, #dc0008 100%);
    background: linear-gradient(180deg, #b60000 0%, #dc0008 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#B60000", endColorstr="#DC0008", GradientType=1);
    height: 41px;
    width: 73px;
    text-align: center;
    border: 0;
}

.nav__link--products {
    padding-left: 14px;
    padding-right: 14px;
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    line-height: 20px;
    cursor: pointer;
}

    .nav__link--products > span:hover {
        text-decoration: underline;
    }

.nav__link--chevron {
    margin-bottom: 2px;
}

.nav__list--language-selector > .nav__item:last-child {
    border-bottom: none;
}



@media(max-width:992px) {
    .language-selector__selected {
        font-size: 12px;
        text-transform: uppercase;
        border-bottom: 1px solid #dc0008;
        color: #fff;
        margin-left: 115px;
        margin-right: 5px;
    }

    .nav__item {
        margin-left: 95px;
    }

}


