.header {
    position: fixed;
    top: 0.75em;
    width: 100%;
    z-index: 10;
}
.admin-bar .header {
    top: calc(46px + 0.75em);
}
.header .row1 {
    display: none;
}
.header .row2 {
    border-radius: 0.625em;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0.875em);
    padding: 1em;
    box-sizing: border-box;
    height: 4.375em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header.dark-bg-header .row2 .logo {
    content: url('../../img/logo-fff.svg');
}
.header .menu_open_butt,
.header .menu_close_butt {
    width: 1.75em;
    height: 1.75em;
    box-sizing: border-box;
    font-size: inherit;
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../img/icons/menu-open-ff5f25.svg);
}
.header.dark-bg-header .menu_open_butt {
    background-image: url(../../img/icons/menu-open-fff.svg);
}
.header .mob_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    visibility: hidden;
    transition-property: visibility;
    transition-duration: 0.3s;
}
.header.opened .mob_menu {
    visibility: visible;
}
.header .mob_menu_background {
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    z-index: -1;
    background: rgba(0, 0, 0, 0.39);
    backdrop-filter: blur(0.25em);
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
}
.header.opened .mob_menu_background {
    opacity: 1;
}
.header .mob_menu_container {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    box-sizing: border-box;
    background-color: #F3F3F3;
    padding: 1.75em 1em 1em;
    bottom: 0;
    width: 17.5em;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transform: translateX(100%);
    transition-property: transform;
    transition-duration: 0.3s;
}
.header.opened .mob_menu_container {
    transform: translateX(0);
}
.admin-bar .header .mob_menu_container {
    top: 46px;
}
.header .mob_menu_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.375em;
    box-sizing: border-box;
    height: 4.75em;
    position: relative;
}
.header .mob_menu_head:after {
    content: '';
    display: block;
    top: 100%;
    left: 0;
    opacity: 0.2;
    background: #000000;
    backdrop-filter: blur(0.625em);
    border-radius: 0.125em;
    height: 0.125em;
    width: 100%;
    position: absolute;
}
.header .menu_close_butt {
    background-image: url(../../img/icons/menu-close-000.svg);
}
.header .logo {
    max-height: 2.375em;
    display: block;
    max-width: 7.5em;
}
.header .menu_wrap {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2.375em 0 0;
}
.header .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.header .menu-item {
    position: relative;
}
.header .menu-item:not(:last-child) {
    margin-bottom: 1.5em;
}
.header .menu-item a {
    font-weight: 600;
    text-decoration: none;
    transition-property: color;
    transition-duration: 0.3s;
}
.header .menu-item a:hover {
    color: #FF5F25;
}
.header .menu-item-has-children > a {
    display: block;
    padding-right: 1.5em;
    position: relative;
}
.header .menu-item-has-children > a:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../img/icons/chevron-bottom-000.svg);
    transform: translateY(-50%);
}
.header .menu-item-has-children.opened > a:before {
    background-image: url(../../img/icons/chevron-top-ff6b00.svg);
}
.header .sub-menu {
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 1.125em;
    padding: 0.25em 1.25em;
    box-sizing: border-box;
    margin-top: 0.5em;
    list-style-type: none;
    display: none;
}
.header .menu-item-has-children.opened > .sub-menu {
    display: block;
}
.header .sub-menu .menu-item {
    margin: 0;
}
.header .sub-menu .menu-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.header .sub-menu .menu-item a {
    display: inline-flex;
    padding: 0.25em 0;
    box-sizing: border-box;
    align-items: center;
    font-size: 0.875em;
    font-weight: 500;
    min-height: 3em;
}
.header .mob_menu_foot {
    padding: 2.375em 0 0;
    box-sizing: border-box;
}
.header .phone {
    font-size: 1.5em;
    font-weight: 600;
}
.header .phone:not(:last-child) {
    margin-bottom: 0.75em;
}
.header .phone a {
    text-decoration: none;
}
.header .phone a:hover {
    text-decoration: underline;
}
.header .actions_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .actions:not(.order_form .actions) {
    margin: -0.375em;
    display: flex;
    flex-wrap: wrap;
}
.header .action:not(.order_form .action) {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 0;
    margin: 0.375em;
    border: none;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
.header .action_icon {
    max-width: 1.5em;
    max-height: 1.5em;
}
.header .action_icon:not(:last-child) {
    margin-right: 0.625em;
}
.header .row3 {
    display: none;
}