.wrap {
    width: 100vw;
    max-width: 100%;
    position: relative;
    justify-content: stretch;
    align-items: stretch;
}
.wrap > .main {
    width: 100%;
}
header {
    top: 0 !important;
    --logo-width: 50px;
    position: sticky;
    z-index: 99;
    width: 100%;
}
header.search-show {
	z-index: 101;
}
header .desktop,
header .sep {
	display: none;
}
header .row {
    display: block;
    padding: 10px 15px;
    box-sizing: border-box;
    max-width: 100%;
	width: 100%;
	box-sizing: border-box;
    display: flex;
    flex-flow: nowrap;
    justify-content: stretch;
    align-items: stretch;
}
header .row > div {
	flex: 1 1 calc((50% - var(--logo-width, 50px) / 2) / 3);
	position: relative;
	max-width: 45px;
	max-width: calc((50% - var(--logo-width, 50px) / 2) / 3);
	box-sizing: content-box;
}
header .row > div:not(:last-child):after {
	content: '';
	display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 45px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
header .row > div .link {
    font-size: 12px;
    line-height: 8px;
    display: block;
    text-align: center;
    text-decoration: none;
    letter-spacing: -.36px;
    color: #d9d9d9;
    margin: 0 auto;
    width: max-content;
}
header .row > div .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 30px;
}
header .row > div .icon > svg {
    display: block;
    width: 30px;
    height: 30px;
    -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, .80));
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, .80));
}
header .row > div .icon + div {
    display: none;
}
header .link .count {
    line-height: 20px;
    position: absolute;
    top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    text-align: center;
    color: #5d5d5d;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .30);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .30);
}
header .column__catalog-button button {
    width: 40px;
    height: 40px;
}
header .column__catalog-button button > span {
    display: none;
}
header .row > .column__logo {
	display: block;
	flex: 0 0 var(--logo-width);
}
header .logo > span {
    display: block;
    margin: 0 auto;
    width: max-content;
}
header .logo a {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}
header .logo img {
    display: none;
}
header .logo svg {
    display: block;
}
header .row > .column__viewed {
    display: none;
}
header.search-show .search {
    top: 0% !important;
}
header .search {
    position: fixed;
    top: -100%;
    left: 0px;
    z-index: 101;
    width: 100%;
    margin: 0;
    background-color: #5d5d5d;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
header .search .input {
    height: 64px;
}
header .search .tips {
    margin-top: 0px !important;
    z-index: 1;
}
section.layout,
section.layout.col_left-hide {
	--menu-width: 100%;
}
section.layout > section.col_left {
	width: var(--menu-width);
	transition: width .2s linear;
}
section.layout > section.col_left >.menu.open,
section.layout > section.col_left >.menu:hover {
    --menu-width: 320px;
    overflow: visible;
}
section.layout.col_left-hide > section.col_left > .menu > div > a {
    display: flex;
    flex-wrap: wrap;
}
section.layout.col_left-hide > section.col_left > .menu > div > a span {
    display: block;
    flex: 1 1 100%;
    margin: 0;
}
.mob_menu .links > *.has-border,
.mob_menu > .scroll > .links > * {
    border-bottom: 1px solid rgba(255, 255, 255, .90);
}
@media (min-width: 480px) {
	header {
	    --logo-width: 70px;
    }
}
@media (min-width: 540px) {
	header .row > .column__viewed {
        display: block;
    }
    header .row > div.column__logo ~ div {
        flex-basis: calc((50% - var(--logo-width) / 2) / 4);
    }
}
@media (min-width: 680px) {
    header {
        --logo-width: 100px;
    }
}
@media (min-width: 768px) {
	section.layout,
	section.layout.col_left-hide {
	    --menu-width: 0;
	}
    section.layout > section.col_left > .menu {
	    transform: translateX(-100%);
	    transition: transform .2s linear;
	    width: var(--menu-width);
	    overflow: hidden;
	}
	section.layout > section.col_main {
	    width: calc(100% - var(--menu-width));
	    transition: width .2s linear;
	    max-width: 100%;
	}
}
@media (min-width: 1024px) {
	header > .row {
	    padding: 0;
	    height: 80px;
	}
	header .desktop {
        display: block;
	}
	header .mobile {
        display: none;
    }
    header .row > div {
        flex: 0 0 auto;
    }
    header .row > div.column__logo ~ div {
        flex: 1 0 auto;
        padding: 0 10px 0 9px;
    }
    header .row > div.column__logo ~ div:last-child {
        padding-right: 20px;
    }
    header .row > div div.icon {
        margin-bottom: 5px;
	}
	header .row > div .icon + div {
        display: block;
    }
    header .row > div.link .icon > svg  {
	    -webkit-transition: -webkit-filter .2s linear;
	    transition: -webkit-filter .2s linear;
	    -o-transition: filter .2s linear;
	    transition: filter .2s linear;
	    transition: filter .2s linear, -webkit-filter .2s linear;
	    -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, .80));
	    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, .80));
    }
    header .row .icon.big_w > svg {
        width: 40px;
    }
    header .row > .column__catalog-button {
        order: 1;
        flex: 0 0 93px;
    }
    header .column__catalog-button button {
	    width: 100%;
	    height: auto;
	    margin: 0 auto;
	}
	header .column__catalog-button button > .icon {
		height: 40px;
	    margin-bottom: 0!important;
	}
    header .column__catalog-button button > span {
        display: block;
    }
    header .row > div.column__catalog-button:after,
    header .row > div.column__logo:after,
    header .row > div.column__search:after,
    header .row > div.column__messengers:after {
        display: none !important;
    }
    header .row > .column__logo {
        order: 2;
        flex: 0 0 min-content;
    }
    header .row > div {
        order: 3;
    }
    header .row > .column__search {
        flex: 0 0 auto;
        padding: 0 14px 0 20px;
        width: calc(100% - 792px);
        box-sizing: content-box;
    }
    header .row > .column__search > button {
        display: none;
    }
    header .row > .column__search > .search {
        width: 100%;
        margin: 0;
        min-width: 232px;
        position: static !important;
    }
    header .search .tips {
        margin-top: 15px !important;
    }
    header .row > div .link {
        min-width: 40px;
    }
    header .link .icon.green {
        color: #10e048;
    }
    header .link .count {
        margin-left: 10px;
    }
}
@media (min-width: 1280px) {
    header .row > .column__search {
        width: calc(100% - 886px);
        padding-right: 0px;
    }
    header .row > .column__search > .search {
        min-width: 397px;
    }
    header .row > div.column__logo ~ div {
        padding: 0 16px 0 15px;
    }
    header .row > div.column__logo + div {
        margin-left: auto;
    }
}
@media (min-width: 1440px) {
    header .logo svg {
        display: none;
    }
    header .logo img {
        display: block;
    }
    header .row > .column__catalog-button {
        flex-basis: 135px;
    }
    header .row > .column__logo {
        flex-basis: 209px;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
    }
    header .row > .column__logo > a{
        display: inline-block;
    }
    header .row > .column__search {
        width: calc(100% - 1220px);
        padding-right: 15px;
        flex: 0 1 auto;
    }
    header .row > .column__search > .search {
        min-width: 220px;
    }
    header .row > div.column__logo ~ div:last-child {
        padding-right: 24px;
    }
}
@media (min-width: 1440px) and (min-height: 800px) {
    section.layout {
        --menu-width: 157px;
    }
    header .row > .column__catalog-button {
        flex-basis: 157px;
    }
    section.layout > section.col_left > .menu {
        transform: translateX(0);
    }
	.menu > * a span,
	section.layout.col_left-hide > section.col_left > .menu > div > a span {
	    display: none;
	    width: calc(100% - 104px);
	    margin-left: 20px;
	}
}
@media (min-width: 1900px) {
    header .row > .column__catalog-button {
        flex-basis: 157px;
    }
    header .row > .column__search {
        width: calc(100% - 1555px);
        padding-left: 30px;
        padding-right: 24px;
    }
    header .row > div.column__logo ~ div:last-child {
        padding-right: 36px;
    }
}

#bx-panel {
	display: none !important;
}