#header_links {
    /*border: solid 2px red;*/
}
#header_links_container {
    background-color: #f8f8f8;
    /*border: solid 1px green;*/
}
#header_links_content {
    line-height: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /*border: solid 1px black;*/

}
#header_links_left_list {
    margin-right: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    order: 2;
    /*border: solid 1px blue;*/
}
#header_links_right_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    order: 1;
    /*border: solid 1px red;*/
}
#header_links_right_list a {
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
    /*border: solid 1px green;*/
}
#press_zone {
    /*display: block;*/
}
.header_links_link {
    margin-right: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-decoration: none;
    text-align: right;
    color: #000;
}
@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 900px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1100px) {

    #header_links_container {
    }
    #header_links_content {
        flex-direction: row;
        justify-content: space-between;
    }
    #header_links_left_list {
        margin-right: 0;
        margin-left: 1.5rem;
        order: 1;
    }
    #press_zone {
    }
    #header_links_right_list {
        flex-direction: row;
        justify-content: flex-end;
        order: 2;
    }
}