/*
    Document   : rcmaq_header
    Created on : 30-Jan-2018, 22:38:07 PM
    Author     : martelp
    Description:
        Purpose of the stylesheet follows.
*/

header {
    position: absolute;
    width: 100%;
    height: 65px;
    background-color: rgb(0, 79, 124);
    z-index: 2;
}

.HeaderContent {
    display: flex;
    height: calc(100% - 20px);
    padding: 10px 25px;
    justify-content: space-between;
    font-size: 18px;
    color: rgb(255, 255, 255);
    vertical-align: center;
    font-family: Arial, sans-serif, helvetica;
    font-weight: bold;
    box-shadow: 0 5px 5px rgba(0, 79, 124, 0.4);
}

.HeaderTitle {
    align-self: center;
}

.HeaderVersion {
    display: inline-block;
    min-width: 10px;
    margin-left: 10px;
    height: 16px;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: bold;
    color: rgb(0, 79, 124);
    text-align: center;
    background-color: rgb(237, 242, 246);
    border-radius: 10px;
}

.HeaderMenu {
    position: relative;
    display: inline-block;
    align-self: center;
    font-size: 16px;
    font-weight: normal;
}

.HeaderMenuContent {
    display: none;
    position: absolute;
    background-color: #eef3f5;
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    font-size: 14px;
    right: 0;
    z-index: 1;
}

.HeaderMenu:hover .HeaderMenuContent {
    display: block;
}

.AccountLink {
    display: block;
    font-family: Arial, helvetica, sans-serif;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    color: rgb(77, 102, 238);
}

.AccountLink:hover {
    color: rgb(15, 36, 83);
}
