/* ---------------------icons--------------------- */
.back_arr_btn {
    background: url(../img/icons/green_right_arr_ico.svg) no-repeat;
    background-position: center;
    display: inline-block;
    min-width: 16px;
    height: 16px;
    transform: rotate(180deg);
}
.double_back_arr {
    background: url(../img/icons/double_yellow_arr.svg) no-repeat;
    background-position: center;
    display: inline-block;
    min-width: 19px;
    height: 16px;
    transform: rotate(180deg);
    margin-right: 25px;
}
.grey_right_arr_ico {
    background: url(../img/icons/grey_arr_right_ico.svg) no-repeat;
    background-position: center;
    display: inline-block;
    min-width: 16px;
    height: 16px;
}
.burger_menu_ico {
    right: 0px;    
    background: url('../img/icons/burger_menu_ico.svg');
    background-size: cover;
    display: inline-block;
    width: 18px;
    height: 15px;
    background-repeat: no-repeat;
    cursor: pointer;
  }
.double_green_arr_ico {
    background: url(../img/icons/double_green_arr_ico.svg) no-repeat;
    background-position: center;
    display: inline-block;
    width: 20px;
    height: 16px;
}
.white_dot {
    background: #fff;
    width: 2px;
    height: 2px;
    border-radius: 50px;
}
/* ---------------------icons--------------------- */


.header_wrapper {
    width: 100%;
    position: sticky;
    top: 0;
    box-shadow:  0px 1px 2px rgba(0, 0, 0, 0.15);
    z-index: 1;
    background-color: #53565B;
}
header {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}
.header_wrapper .main_row .main_header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
header.default_header .main_row .main_header {    
    justify-content: unset;
}
header .main_header, 
header .page_header {
    padding-top: 16px;
    padding-bottom: 16px;
}
.header_wrapper .main_header.pass_page {
    justify-content: unset;
}
header .main_header h1 {    
    font-weight: bold;
}
header .main_header .car_header_brand {
    font-weight: 400;
}
header .back_arr_btn {
    margin-left: 0;
    margin-right: 50px;
    cursor: pointer;
}
header .page_header {
    font-weight: bold;
}
header .page_header .car_type {
    font-size: 14px;
}
header .cancel_settings_btn {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    position: absolute;
    right: 0;
}

header .forward_btn_ico {
    transform: rotate(180deg);
}
.header_wrapper .main_row {
    position: relative;
    width: 80%;
    max-width: 1100px;
    min-width: 800px;
    margin: 0 auto;  
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}
header .main_row .dots_menu_wrapper {    
    right: 0;
    margin-left: auto;
}
.hclass {
    flex-basis: 100% !important;
}
.hclass .direction_wrapper {
    margin-left: 10px !important;
}
.main_row .dir_header_row {
    padding-top: 8px;
    padding-bottom: 8px;
    width: 85%;
    display: flex;
    align-items: center;
}
.dir_header_row .direction_wrapper > div {
    text-align: center;
    cursor: pointer;
}
.dir_header_row .direction_wrapper .grey_right_arr_ico,
.dir_header_row .direction_wrapper .double_green_arr_ico {
    margin-left: 8px;
    margin-right: 8px;
}
.dir_header_row .direction_wrapper .white_dot, .dir_header_row .direction_wrapper .chosen_date {
    margin-left: 8px;
    text-align: center;
}
.header_wrapper .main_row .dir_header_row .direction_wrapper {
    display: flex;
    align-items: center;
    border-radius: 4px;
    flex-basis: 100%;
    padding: 8px;
    padding-left: 0;
    width: 100%;
}


.header_wrapper .main_row.calendar_page {
    display: flex;
    flex-wrap: wrap;
}
header .header_h {
    margin-top: 5px;
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.16);
}

header .day_h {
    padding-bottom: 5px;
}

header .step_row {
    padding-top: 16px;
    padding-bottom: 16px;
}
header .step_row p {
    margin-left: 32px;
}


.header_wrapper .main_row .simple_header {
    padding-bottom: 16px;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    font-weight: bold;
}


header.car_header {
    padding-bottom: 8px;
}
header.car_header .car_header_date {
    margin-right: 8px;
}
header.car_header .back_arr_btn {
    margin-right: 50px;
}
header.car_header .main_row .main_header {
    justify-content: unset;
    padding-bottom: 8px;
}
header.car_header .car_type_row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    grid-gap: 16px;
}
header.car_header .car_type_row .car_type_btn {
    background: #53565B;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 4px 8px;
    text-align: center;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

header.car_header .car_type_row .car_type_btn:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border: 1px solid #fff;
    border-radius: 4px;
}
header.car_header .car_type_row .car_type_btn.active:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}
header.car_header h1 {
    margin-left: 14px;
}