.header {
    position: fixed;
    width: 100%;
    top: 1.5em;
    z-index: 10;
}
.header.dark-bg-header {
    color: #FFF;
}
.admin-bar .header {
    top: calc(32px + 1.5em);
}
.header .row1 {
    border-radius: 1.625em;
    display: flex;
    background-color: rgba(82, 82, 82, 0.24);
    align-items: center;
    padding: 1em 1.5em;
    height: 4.375em;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.header .row1:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    backdrop-filter: blur(0.625em);
}
.header .row1 .logo_link {
    margin-right: 2.25em;
}
.header .logo {
    display: block;
    max-width: 7.5em;
    max-height: 2.375em;
}
.header.dark-bg-header .logo {
    content: url('../../img/logo-fff.svg');
}
.header .row1 .menu_wrap {
    margin-right: auto;
}
.header .row1 .menu {
    list-style-type: none;
    padding: 0;
    margin: 0 -0.625em;
    display: flex;
}
.header .row1 .menu-item {
    margin: 0 0.625em;
    position: relative;
}
.header .row1 .menu-item a {
    text-decoration: none;
    font-weight: 600;
    transition-property: color;
    transition-duration: 0.3s;
}
.header .row1 .menu-item a:hover {
    color: #FF5F25;
}
.header .row1 .menu-item-has-children:before {
    content: '';
    display: block;
    top: calc(100% + 0.5em);
    left: 50%;
    background-color: #FF6B00;
    height: 0.125em;
    width: 0;
    max-width: 100%;
    position: absolute;
    transform: translateX(-50%);
    transition-property: width;
    transition-duration: 0.3s;
}
.header .row1 .menu-item-has-children.opened:before {
    width: 2.5em;
}
.header .row1 .sub-menu {
    border-radius: 0.25em 1.125em 1.125em 1.125em;
    border: 1px rgba(255, 255, 255, 0.27);
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(0.625em);

    padding: 0.25em 1.25em;
    box-sizing: border-box;
    width: max-content;
    position: absolute;
    top: calc(50% + 2.5em);
    list-style-type: none;
    transform: translateY(1em);
    opacity: 0;
    color: #ffffff;
    visibility: hidden;
    transition-property: transform, opacity, visibility;
    transition-duration: 0.3s;
}
.header .row1 .menu-item-has-children.opened > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header .row1 .sub-menu li:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.header .row1 .sub-menu li a {
    font-size: 0.875em;
    font-weight: 500;
    display: inline-flex;
    padding: 0.5em 0;
    align-items: center;
    box-sizing: border-box;
    min-height: 3.3em;
}
.header .actions:not(.order_form .actions) {
    margin: -0.25em;
    display: flex;
}
.header .actions:not(:first-child):not(.order_form .actions) {
    margin-left: 2.25em;
}
.header .action:not(.order_form .action) {
    margin: 0.25em;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: inherit;
    background-color: transparent;
    color: inherit;
    padding: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.header a.action:hover {
    text-decoration: underline;
}
.header .action_icon {
    max-width: 1.5em;
    max-height: 1.5em;
}
.header.dark-bg-header .action_icon {
    filter: invert(100%);
}
.header .action_icon:not(:last-child) {
    margin-right: 0.5em;
}
.header .row2 {
    display: none;
}
.header .mob_menu {
    display: none;
}
/**/

body.post-type-archive-car .header,
body.page-template-insurance_select_page .header,
body.page-template-additional_services_select_page .header,
body.page-template-order_complete_page .header,
body.tax-car_class .header {
    position: absolute;
}
body:not(.post-type-archive-car, .tax-car_class) .header .row3 {
    display: none;
}
body.post-type-archive-car .header .row1,
body.tax-car_class .header .row1 {
    display: none;
}
body.post-type-archive-car .header .mob_menu,
body.tax-car_class .header .mob_menu {
    display: block;
}
.header .row3 {
    display: flex;
    margin: 0 -0.375em;
}
.header .row3_group {
    display: flex;
    margin: 0 0.37em;
    box-sizing: border-box;
    border-radius: 1.625em;
    background: rgba(82, 82, 82, 0.24);
    backdrop-filter: blur(0.625em);
    align-items: center;
    padding: 1em 1.5em;
    height: 4.375em;
}
.header .row3_group:nth-child(2) {
    flex-grow: 1;
}


.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 0 0 2em;
    cursor: pointer;
    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: 32px;
}
.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 .mob_menu .logo {
    max-height: 2.375em;
    display: block;
    max-width: 7.5em;
}
.header .mob_menu .menu_wrap {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2.375em 0 0;
    margin: 0;
}
.header .mob_menu .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: block;
}
.header .mob_menu .menu-item {
    position: relative;
}
.header .mob_menu .menu-item:not(:last-child) {
    margin-bottom: 1.5em;
}
.header .mob_menu .menu-item-has-children:before {
    content: none;
}
.header .mob_menu .menu-item a {
    font-weight: 600;
    text-decoration: none;
}
.header .mob_menu .menu-item a:hover {
    color: #FF5F25;
}
.header .mob_menu .menu-item-has-children > a {
    display: block;
    padding-right: 1.5em;
    position: relative;
}
.header .mob_menu .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 .mob_menu .menu-item-has-children.opened > a:before {
    background-image: url(../../img/icons/chevron-top-ff6b00.svg);
}
.header .mob_menu .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 .mob_menu .menu-item-has-children.opened > .sub-menu {
    display: block;
}
.header .mob_menu .sub-menu .menu-item {
    margin: 0;
}
.header .mob_menu .sub-menu .menu-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.header .mob_menu .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 .mob_menu_foot {
    padding: 2.375em 0 0;
    box-sizing: border-box;
}
.header .mob_menu .phone {
    font-size: 1.5em;
    font-weight: 600;
}
.header .mob_menu .phone:not(:last-child) {
    margin-bottom: 0.75em;
}
.header .mob_menu .phone a {
    text-decoration: none;
}
.header .mob_menu .phone a:hover {
    text-decoration: underline;
}
.header .mob_menu .actions_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .mob_menu .actions {
    margin: -0.375em;
    display: flex;
    flex-wrap: wrap;
}
.header .mob_menu .action {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 0;
    margin: 0.375em;
    border: none;
    font-size: inherit;
}
.header .mob_menu .action_icon {
    max-width: 1.5em;
    max-height: 1.5em;
}
.header .mob_menu .action_icon:not(:last-child) {
    margin-right: 0.625em;
}
.header .order_form_call {
    display: flex;
    cursor: pointer;
    position: relative;
    z-index: 1;
    padding-left: 4.5em;
    max-width: calc(100% - 40em);
    box-sizing: border-box;
}
.header .order_form_call:not(.required):before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: 0.125em solid #FF5F25;
    border-radius: inherit;
    box-sizing: border-box;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
}
.header .order_form_call:hover:before,
.header .order_form_call.opened:before {
    opacity: 1;
}
.header .order_form_call_icon {
    position: absolute;
    top: 50%;
    left: 1.5em;
    transform: translateY(-50%);
    max-width: 2em;
    max-height: 2em;
}
.header .order_form_call_delivery {
    font-size: 1.125em;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header .order_form_call_date {
    opacity: 0.4;
    font-size: 0.875em;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header .order_form_call .order_form {
    position: absolute;
    left: 0;
    top: calc(100% + 0.5em);
    width: 47em;
    opacity: 0;
    transform: translateY(1em);
    visibility: hidden;
    transition-property: opacity, transform, visibility;
    transition-duration: 0.3s;
}
.header .order_form_call.opened .order_form {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/*
.header .order_form_call.required {
    background-color: #F00;
    color: #ffffff;
}
 */
.header .order_form_call_info {
    max-width: 100%;
}