header.page_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 60px;
    background-color: var(--headerColor);
    -webkit-box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 16px;
    padding: 0 23px;
    box-sizing: border-box;
    z-index: 9999;

    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

header.page_header .header_left,
header.page_header .header_logo,
header.page_header .header_right {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

header.page_header .header_logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

header.page_header .header_logo img {
    display: block;
    height: 60px;
    width: auto;
}

header.page_header .header_left a {
    color: var(--orange);
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

header.page_header .header_left a::before {
    content: "";
    background-image: url("../img/icon_chevron_left.svg");
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 10px;
    position: absolute;
    height: 16px;
    width: 12px;
    top: 50%;
    transform: translateY(-50%);
    left: -1px;
}

header.page_header .header_right {
    min-width: 50px;
}
