  
#header.vertical {
    border-bottom: 1px solid #555555;
    background-color: #222222;
    display: flex;
    flex-direction: row;
}

#header.vertical #headerWidgets, #header.vertical #sessionPanel {
    padding: 2em 1em;
    z-index: 2;

    flex: 1;

    text-align: right;
}

.auth #header.vertical {
    border-bottom: 1px solid #555555;
    background-color: #222222;
    display: flex;
    flex-direction: column;
    width: 100px;
    position: fixed;
    z-index: 90;
    height: 100%;
}

.auth #header.vertical #headerWidgets, #header.vertical #sessionPanel {
    padding: 2em 1em;
    z-index: 2;

    flex: 1;
    display: flex;
    flex-direction: column;

    text-align: right;
    position: relative;
    left: -310px;

    transition: 1s;
    transition-timing-function: ease-in-out;
}

.auth #header.vertical #headerWidgets:hover, #header.vertical #sessionPanel:hover {
    left: -100px;
}

.auth #header.vertical #logo {
    margin: 1em .5em;
    min-width: 80px;
    min-height: 80px;
    background: #222222 url(/images/OrbitalLogo_White.png) no-repeat 0px 0px/80px;

    transition: 1s;
    transition-timing-function: ease-in-out;
}

.auth #header.vertical #logo:hover {
    background: #222222 url(/images/OrbitalLogo_Black.png) no-repeat 0px 0px/80px;
}

/* #header.vertical #sessionPanel {
    text-align: left;
    display: inline-block;
}

#header.vertical #sessionPanel .menu-trigger i {
    font-size: 1.1em;
}

#header.vertical #sessionPanel a {
    text-decoration: none;
}
*/
#header.vertical #sessionPanel .menu-container {
    flex-direction: column;
    padding: 0px;
    margin: 0px;
    min-width: 150px;
    background-color: #222222;
    border: 1px solid #555555;
    border-radius: 6px;
    padding: .25em .5em;
    position: relative;
    left: -200px;

    transition: 1s;
    transition-timing-function: ease-in-out;
}

#header.vertical #sessionPanel .menu-container > a {
    display: block;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    margin: .25em .25em;

    color: #dedddb;
    transition: 1s;
    transition-timing-function: ease-in-out;
    cursor: pointer;
    padding: .5em;

    border-radius: 0px;
    border: 1px solid #222222;
}

#header.vertical #sessionPanel .menu-container > a:hover {
    background-color: #636363;
    color: #eee;
    border-radius: .25em;
}

#header.vertical #sessionPanel .menu-container > a:not(:first-child) {
    padding-top: .25em;
}

.auth #header.vertical #headerWidgets .menu-item.selected > a, .auth #header.vertical #sessionPanel .menu-item.selected > a {
    background-color: #636363;
    left: 10px;
    border-radius: .25em;
    color: #eee;
}

.auth #header.vertical #headerWidgets .menu-item.selected > a i, .auth #header.vertical #sessionPanel .menu-item.selected > a i {
    margin-left: 2em;
}

.auth #header.vertical #headerWidgets .menu-item > a, .auth #header.vertical #sessionPanel .menu-item > a {
    border-radius: 0px;
    border: 1px solid #222222;
    padding: 1em 65px .5em;

    color: #dedddb;
    background-color: #222222;

    transition: 1s;
    transition-timing-function: ease-in-out;

    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: right;

    position: relative;
    left: 0px;
    width: 260px;
    height: 25px;
    display: inline-block;
}

.auth #header.vertical #headerWidgets:hover .menu-item > a, .auth #header.vertical #sessionPanel:hover .menu-item > a {
    /* left: 40px; */
    padding: 1em 1em .5em;
}

.auth #header.vertical #headerWidgets .menu-item:hover > a, .auth #header.vertical #sessionPanel .menu-item:hover > a {
    left: 20px;
    border-radius: .5em;
    background-color: #636363;
    color: #eee;
}

.auth #header.vertical #headerWidgets .menu-item:hover > .menu-container, .auth #header.vertical #sessionPanel .menu-item:hover > .menu-container {
    left: 150px;
}

.auth #header.vertical #headerWidgets .menu-item > a i {
    margin-left: 1em;
}


/* --------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------- */


#header.horizontal {
    border-bottom: 1px solid #555555;
    background-color: #222222;
    display: flex;
}

#header.horizontal #headerWidgets {
    padding: 0px 20%;
    z-index: 2;
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: row;
}

.auth #header.horizontal #logo {
    margin: 1em .5em;
    min-width: 80px;
    min-height: 50px;
    background: #222222 url(/images/logo.svg) no-repeat 0px 0px/80px;

    transition: 1s;
    transition-timing-function: ease-in-out;
}

.auth #header.horizontal #logo:hover {
    background: #222222 url(/images/logo_alt.svg) no-repeat 0px 0px/80px;
}

.auth #header.horizontal {
    border-bottom: 1px solid #555555;
    background-color: #222222;
    display: flex;
    flex-direction: row;
    width: 100%;
    position: fixed;
    z-index: 90;
    height: 75px;
}

.auth #header.horizontal #logo {
    max-height: 70px;
}

.auth #header.horizontal #headerWidgets {
    transition: 1s;
    transition-timing-function: ease-in-out;

    position: relative;
    top: -190px;
}

.auth #header.horizontal #headerWidgets:hover {
    top: -20px;
}

.auth #header.horizontal #headerWidgets > .menu-item {
    transition: .5s;
    transition-timing-function: ease-in-out;

    margin-top: 0px;
}

.auth #header.horizontal #headerWidgets > .menu-item:hover {
    margin-top: 20px;
}

.auth #header.horizontal #headerWidgets > .menu-item:hover > a {
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em;
    background-color: #636363;
    color: #eee;
}

.auth #header.horizontal #headerWidgets > .menu-item.selected {
    margin-top: 5px;
}

.auth #header.horizontal #headerWidgets > .menu-item.selected > a {
    background-color: #636363;
    border-radius: .25em;
    color: #eee;
}

.auth #header.horizontal #headerWidgets > .menu-item > a {
    transition: .5s;
    transition-timing-function: ease-in-out;
    border-radius: 0px;
    border: 1px solid #222222;
    padding: 1em .5em 15px;

    color: #dedddb;
    background-color: #222222;

    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: right;

    height: 200px;
    width: 25px;
    display: flex;
    flex-direction: column;
}

.auth #header.horizontal #headerWidgets > .menu-item > a > i {
    margin-top: 20px;
}

.auth #header.horizontal #headerWidgets .menu-item > a > span{
    writing-mode: tb-rl;
    flex:1;
    width: 25px;
}

.auth #header.horizontal #sessionPanel {
    position: absolute;
    right: 10px;
    top: 1em;
}

