﻿h1 {
    font-weight: normal;
    font-size: 2.2em;

    transition: font-size .3s;
    -moz-transition: font-size .3s;
    -webkit-transition: font-size .3s;
}
#portal-header {
    position: fixed;
    background: white;
    height: 100px;
    border-bottom: 1px solid #DDDDDD;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 30px;

    transition: height .3s, margin-bottom .3s;
    -moz-transition: height .3s, margin-bottom .3s;
    -webkit-transition: height .3s, margin-bottom .3s;
}
.company-logo {
    width: 70px;
    position: absolute;
    left: 0px;
    bottom: 15px;

    transition: bottom .3s;
    -moz-transition: bottom .3s;
    -webkit-transition: bottom .3s;
}
.company-logo img {
    max-width: 50px;
    border-right: 1px solid #f8f8f8;
    padding-right: 10px;
}


.header-menu {
    padding-top: 15px;
    box-sizing: border-box;
    height: 32px;
    opacity: 1;

    transition: opacity .3s, height .3s, padding .3s;
    -moz-transition: opacity .3s, height .3s, padding .3s;
    -webkit-transition: opacity .3s, height .3s, padding .3s;
}
.header-menu a {
    text-transform: uppercase;
    font-size: 0.9em;
    margin-right: 25px;
}

#userinfo {
    float: right;    
    font-size: 1.1em;
}
.user-management {
    cursor: pointer;
    padding: 0px 5px;
}
.user-management .icon {
    background: url(../Images/Portal/Arrow.svg) no-repeat right center;
    width: 9px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    transition: transform .3s;
    -moz-transition: transform .3s;
    -webkit-transition: transform .3s;
}
.user-management.menu-visible .icon {
    transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
}
.user-management-menu {
    display: none;
    background: white;
    padding: 2px 0px 5px 0px;
}
#userinfo a {
    text-transform: none;
    display: block;
    padding: 1px 5px;
}


.new-button {
    position: absolute;
    right: 0px;
    right: 70px;
    bottom: -25px;

    padding: 1px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 100%;
    text-align: center;
    font-size: 35px;
    color: white;
    background-color: #f18b03;
    box-shadow: 0 3px 10px 0 rgba(0,0,0,.2);
    transition: box-shadow 150ms cubic-bezier(.4,0,1,1), top .3s, right .3s, width .3s, height .3s, font-size .3s;
    -moz-transition: box-shadow 150ms cubic-bezier(.4,0,1,1), top .3s, right .3s, width .3s, height .3s, font-size .3s;
    -webkit-transition: box-shadow 150ms cubic-bezier(.4,0,1,1), top .3s, right .3s, width .3s, height .3s, font-size .3s;
}
.new-button:hover {
    color: white;
    box-shadow: 0 6px 12px rgba(0,0,0,.3);
}
.new-button:focus {
    color: white;
}


