﻿#Aatrix-Header {
    display: flex;
    background: #4F4F4F;
    height: 45px;
    position: fixed;
    width: 100%;
    box-shadow: 5px 13px 30px #999999;
    z-index: 3;
}

.Header-Container {
    display: flex;
    width: 100%;
}

#Header-AatrixLogo {
    padding-left: 25px;
    padding-right: 10px;
}

.HeaderLink {
    display: flex;
    align-items: center;
    padding: 0px 20px;
    font-size: 17px;
    min-width: 190px;
    height: 45px;
    font-weight: bold;
    color: #DDDDDD;
}

    .HeaderLink:hover {
        opacity: .80;
        cursor: pointer;
    }

    .HeaderLink.Active,
    .HeaderLink.Active:hover {
        color: #F57920;
        cursor: pointer;
        opacity: 1.0;
    }

.HeaderAccountInfo-Container {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding-right: 25px;
}

#HeaderAccountInfo-Text {
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 30px;
    width: 400px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: Calibri, Tahoma, Arial;
    font-size: 22px;
    font-weight: bold;
    color: #EEEEEE;
}

.Header-Button {
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    color: #F57920;
    cursor: pointer;
}

.Header-Button-White {
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    padding-right: 30px;
}

/*@media screen and (max-width: 900px) {
    #Header-WebFormsDemo {
        display: none;
    }
}*/