
.header-new {
    position: relative;
    z-index: 100;

    width: 100%;

    background: #fff;
    color: #212121;

    font-family: 'Gilroy', sans-serif;
}

.header-new *,
.header-new *::before,
.header-new *::after {
    box-sizing: border-box;
}


.header-new a {
    text-decoration: none;
}

.header-new button,
.header-new input {
    font-family: inherit;
}

.header-new button {
    cursor: pointer;
}

.header-new__top-inner,
.header-new__bottom-inner {
    width: calc(100% - 48px);
    max-width: 1310px;

    margin: 0 auto;
}


.header-new__top {
    width: 100%;

    background: #fff;

    border-bottom: 1px solid #ededed;
}

.header-new__top-inner {
    min-height: 75px;

    display: grid;

    grid-template-columns:
        196px
        minmax(280px, 1fr)
        194px
        158px
        185px;

    column-gap: 24px;

    align-items: center;
}


.header-new__logo {
    width: 196px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;
}

.header-new__logo img {
    display: block;

    width: 196px;
    max-width: 100%;

    height: auto;
    max-height: 50px;

    object-fit: contain;
    object-position: left center;
}

.header-new__search {
    position: relative;

    width: 100%;
    height: 42px;

    margin: 0;
}

.header-new__search input {
    display: block;

    width: 100%;
    height: 42px;

    margin: 0;

    padding:
        0
        16px
        0
        43px;

    border: 1px solid #ececec;
    border-radius: 8px;

    outline: none;

    background: #fff;

    color: #212121;

    font-size: 15px;
    font-weight: 400;

    line-height: 42px;

    box-shadow:
        0 1px 5px rgba(0, 0, 0, .04),
        inset 0 0 0 1px rgba(0, 0, 0, .01);

    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.header-new__search input::placeholder {
    color: #aaa;
    opacity: 1;
}

.header-new__search input:focus {
    border-color: #d9d9d9;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .07);
}

.header-new__search-btn {
    position: absolute;

    top: 0;
    left: 0;

    z-index: 2;

    width: 43px;
    height: 42px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: #202020;

    font-size: 20px;

    line-height: 1;
}


.header-new__contacts {
    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;
}

.header-new__contacts-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    margin-right: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f6f6f8;

    color: #202020;

    font-size: 20px;
}

.header-new__contacts-info {
    min-width: 0;

    display: flex;

    flex-direction: column;
    justify-content: center;
}

.header-new__phone {
    display: block;

    color: #202020;

    font-size: 15px;
    font-weight: 500;

    line-height: 18px;

    white-space: nowrap;

    transition: color .15s ease;
}

.header-new__phone:hover {
    color: #f37134;
}

.header-new__contacts-toggle {
    width: max-content;

    margin: 3px 0 0;
    padding: 0;

    display: flex;

    align-items: center;

    border: 0;

    background: transparent;

    color: #777;

    font-size: 13px;
    font-weight: 400;

    line-height: 16px;
}

.header-new__contacts-toggle i {
    margin-left: 3px;

    font-size: 16px;

    transition: transform .15s ease;
}

.header-new__contacts:hover
.header-new__contacts-toggle i {
    transform: rotate(180deg);
}



.header-new__contacts-dropdown {
    position: absolute;

    top: calc(100% + 14px);
    right: 0;

    z-index: 1000;

    display: none;

    min-width: 350px;

    padding: 18px;

    border: 1px solid #ebebeb;
    border-radius: 6px;

    background: #fff;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .13);
}

.header-new__contacts:hover
.header-new__contacts-dropdown,
.header-new__contacts:focus-within
.header-new__contacts-dropdown {
    display: block;
}


.header-new
.main-tel-tabs {
    width: 100%;
}

.header-new
.main-tel-tabs-nav {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 10px;
}

.header-new
.main-tel-tabs-nav a {
    font-size: 13px;
}

.header-new
.main-tel-tabs-content {
    font-size: 14px;
}

.header-new
.main-tel-tabs-content strong,
.header-new
.main-tel-tabs-content a {
    font-size: 13px;
}


.header-new__online {
    height: 44px;

    padding: 0 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 4px;

    background: #f37134;

    color: #fff;

    font-size: 15px;
    font-weight: 500;

    line-height: 1;

    white-space: nowrap;

    transition:
        background-color .15s ease,
        box-shadow .15s ease;
}

.header-new__online:hover {
    background: #df6229;

    color: #fff;

    box-shadow:
        0 2px 7px rgba(243, 113, 52, .25);
}

.header-new__online i {
    font-size: 20px;
}


.header-new__partner {
    height: 44px;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #202020;

    font-size: 15px;
    font-weight: 500;

    line-height: 1;

    white-space: nowrap;

    transition: color .15s ease;
}

.header-new__partner:hover {
    color: #f37134;
}

.header-new__partner i {
    font-size: 20px;
}


.header-new__mobile-menu {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: #222;

    font-size: 28px;
}


.header-new__bottom {
    width: 100%;
    height: 55px;

    background: #fff;

    border-bottom: 1px solid #e9e9e9;
}

.header-new__bottom-inner {
    height: 55px;

    display: flex;

    align-items: stretch;
}

.header-new__nav {
    flex: 1 1 auto;

    min-width: 0;

    height: 55px;
}

.header-new__nav-list {
    width: 100%;
    height: 55px;

    margin: 0;
    padding: 0;

    display: flex;

    align-items: stretch;

    gap: 29px;

    list-style: none;
}


.header-new
.header__nav-list-item,
.header-new
.level1 {
    position: relative;

    width: auto !important;

    margin: 0 !important;
    padding: 0;

    flex: 0 0 auto;
}

.header-new
.header__nav-list-item > a,
.header-new
.level1 > a {
    height: 55px;

    padding: 0;

    display: flex;

    align-items: center;

    color: #202020;

    font-size: 15px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;

    border: 0;

    transition: color .15s ease;
}

.header-new
.header__nav-list-item > a:hover,
.header-new
.level1 > a:hover {
    color: #f37134;
}

.header-new
.header__nav-list-item_active > a {
    color: #f37134;
}


.header-new
.level1 > a .zmdi,
.header-new
.header__nav-list-item > a .zmdi {
    margin-left: 6px;

    font-size: 17px;

    transition: transform .15s ease;
}

.header-new
.level1:hover > a .zmdi {
    transform: rotate(180deg);
}

.header-new
.header__nav-list-inner {
    position: absolute;

    top: 100%;
    left: 0;

    z-index: 1000;

    display: none;

    min-width: 260px;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    border: 1px solid #ececec;

    background: #fff;

    box-shadow:
        0 14px 24px rgba(0, 0, 0, .15);
}

.header-new
.level1:hover > .header__nav-list-inner,
.header-new
.header__nav-list-item:hover > .header__nav-list-inner {
    display: block;
}

.header-new
.header__nav-list-inner li {
    position: relative;

    width: 100% !important;

    margin: 0 !important;
    padding: 0;
}

.header-new
.header__nav-list-inner li > a {
    min-height: 40px;

    padding: 8px 16px;

    display: flex;

    align-items: center;

    color: #212121;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.25;

    white-space: normal;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.header-new
.header__nav-list-inner li > a:hover {
    color: #f37134;

    background: #fafafa;
}

.header-new
.header__nav-list-inner img {
    width: 30px;
    height: 30px;

    margin-right: 10px;

    object-fit: contain;
}

.header-new
.header__nav-list-inner
.header__nav-list-inner {
    top: 0;
    left: 100%;
}

.header-new
.header__nav-list-inner.new_menu {
    min-width: 320px;

    padding: 0;

    background: #fff;

    box-shadow:
        0 14px 24px rgba(0, 0, 0, .15);
}

.header-new
.header__nav-list-inner.new_menu
.level2 > a {
    padding: 10px 18px;

    display: flex;

    align-items: center;
}

.header-new
.header__nav-list-inner.new_menu
.level2 > a img {
    width: 30px;
    height: 30px;

    margin-right: 10px;
}

.header-new
.header__nav-list-inner.new_menu
.header__nav-list-inner {
    position: static;

    min-width: 100%;

    border-left: 0;
    border-right: 0;

    box-shadow: none;
}

.header-new__pickup {
    position: relative;

    flex: 0 0 auto;

    height: 55px;

    margin-left: 28px;
}

.header-new__pickup-control {
    height: 55px;

    display: flex;

    align-items: center;
}

.header-new__pickup-link {
    height: 55px;

    display: flex;

    align-items: center;

    color: #202020;

    font-size: 15px;
    font-weight: 400;

    white-space: nowrap;

    transition: color .15s ease;
}

.header-new__pickup-link:hover {
    color: #f37134;
}

.header-new__pickup-toggle {
    width: 25px;
    height: 55px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    border: 0;

    background: transparent;

    color: #202020;

    font-size: 17px;
}

.header-new__pickup-toggle i {
    transition: transform .15s ease;
}

.header-new__pickup:hover
.header-new__pickup-toggle i {
    transform: rotate(180deg);
}


.header-new__pickup-dropdown {
    position: absolute;

    top: 100%;
    left: 0;

    z-index: 1000;

    display: none;

    min-width: 315px;

    padding: 8px 0;

    border: 1px solid #ececec;

    background: #fff;

    box-shadow:
        0 14px 24px rgba(0, 0, 0, .15);
}

.header-new__pickup:hover
.header-new__pickup-dropdown,
.header-new__pickup:focus-within
.header-new__pickup-dropdown {
    display: block;
}

.header-new__pickup-dropdown a {
    display: block;

    padding: 10px 18px;

    color: #212121;

    font-size: 14px;

    line-height: 1.25;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.header-new__pickup-dropdown a:hover {
    color: #f37134;

    background: #fafafa;
}


.header-new__countries {
    position: relative;

    flex: 0 0 auto;

    height: 55px;

    margin-left: auto;
    padding-left: 38px;
}

.header-new__countries-btn {
    height: 55px;

    margin: 0;
    padding: 0;

    display: flex;

    align-items: center;

    border: 0;

    background: transparent;

    color: #f37134;

    font-size: 15px;
    font-weight: 400;

    white-space: nowrap;
}

.header-new__country-flag {
    position: relative;

    display: block;

    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    margin-right: 7px;

    overflow: hidden;

    border-radius: 50%;

    background:
        linear-gradient(
            to bottom,
            #d1222b 0%,
            #d1222b 50%,
            #168345 50%,
            #168345 100%
        );
}

.header-new__country-name {
    display: block;
}

.header-new__countries-btn i {
    margin-left: 5px;

    font-size: 17px;

    transition: transform .15s ease;
}

.header-new__countries:hover
.header-new__countries-btn i {
    transform: rotate(180deg);
}

.header-new__countries-dropdown {
    position: absolute;

    top: 100%;
    right: 0;

    z-index: 1000;

    display: none;

    min-width: 180px;

    padding: 8px 0;

    border: 1px solid #ececec;

    background: #fff;

    box-shadow:
        0 14px 24px rgba(0, 0, 0, .15);
}

.header-new__countries:hover
.header-new__countries-dropdown,
.header-new__countries:focus-within
.header-new__countries-dropdown {
    display: block;
}

.header-new__countries-dropdown a {
    display: block;

    padding: 10px 17px;

    color: #212121;

    font-size: 14px;

    white-space: nowrap;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.header-new__countries-dropdown a:hover {
    color: #f37134;

    background: #fafafa;
}


@media (min-width: 1600px) {

    .header-new__top-inner,
    .header-new__bottom-inner {
        max-width: 1310px;
    }

}


@media (min-width: 1201px) and (max-width: 1450px) {

    .header-new__top-inner,
    .header-new__bottom-inner {
        width: calc(100% - 32px);
    }


    .header-new__top-inner {
        grid-template-columns:
            175px
            minmax(240px, 1fr)
            180px
            145px
            165px;

        column-gap: 14px;
    }


    .header-new__logo {
        width: 175px;
    }

    .header-new__logo img {
        width: 175px;
    }


    .header-new__online,
    .header-new__partner {
        font-size: 14px;
    }


    .header-new__nav-list {
        gap: 18px;
    }


    .header-new
    .level1 > a,
    .header-new
    .header__nav-list-item > a,
    .header-new__pickup-link,
    .header-new__countries-btn {
        font-size: 14px;
    }


    .header-new__pickup {
        margin-left: 18px;
    }


    .header-new__countries {
        padding-left: 22px;
    }

}


@media (max-width: 1200px) {

    .header-new__top-inner,
    .header-new__bottom-inner {
        width: calc(100% - 30px);
    }


    .header-new__top-inner {
        grid-template-columns:
            180px
            minmax(220px, 1fr)
            190px
            44px;

        column-gap: 16px;
    }


    .header-new__logo,
    .header-new__logo img {
        width: 180px;
    }


    .header-new__online {
        display: none;
    }


    .header-new__partner {
        display: none;
    }


    .header-new__mobile-menu {
        display: flex;
    }


    .header-new__bottom {
        display: none;
    }

}


@media (max-width: 900px) {

    .header-new__top-inner {
        min-height: 70px;

        grid-template-columns:
            170px
            minmax(180px, 1fr)
            44px;
    }


    .header-new__logo,
    .header-new__logo img {
        width: 170px;
    }


    .header-new__contacts {
        display: none;
    }

}


@media (max-width: 650px) {

    .header-new__top-inner {
        width: calc(100% - 24px);

        min-height: 64px;

        grid-template-columns:
            minmax(130px, 1fr)
            44px;

        column-gap: 10px;
    }


    .header-new__logo {
        width: 155px;
        height: 48px;
    }

    .header-new__logo img {
        width: 155px;
        max-height: 43px;
    }


    .header-new__search {
        display: none;
    }


    .header-new__mobile-menu {
        width: 44px;
        height: 44px;
    }

}

@media (max-width: 380px) {

    .header-new__logo,
    .header-new__logo img {
        width: 140px;
    }

}