﻿/* ######################### */
.menubar {
    cursor: default;
    width: 100%;
}
    /* TOP MENU BAR */
    .menubar .topMenu {
        /*position: fixed;*/
        /*min-width: 600px;*/
        top: 0;
        width: 100%;
        /*background: #de1f26;*/
        z-index: 3;
    }

.topMenu > span {
    padding: 6px 20px 6px 10px;
    display: inline-block;
}

.topMenu .fa {
    width: 50px;
}
/* SIDE MENU BAR */
.menubar nav {
    position: fixed;
    top: 47px;
    height: 100%;
    background-color: #ECEFF1;
    z-index: 3;
    min-width: 60px;
    border-right: solid 1px #e1e4e6;
}

    .menubar nav > ul {
        width: 100%;
    }

.menubar ul {
    list-style: none;
    font-weight: 700;
    /*font-size: 12pt;*/
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}

.menubar li {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 60px;
    height: 60px;
    font-size: 12pt;
    border-bottom: solid 1px #e1e4e6;
}

    .menubar li > ul {
        position: absolute;
        background-color: #FFFFFF;
        top: 0px;
        left: 101%;
        opacity: 0;
        visibility: hidden;
        z-index: 2;
        /*transition: visibility 0s linear 0.5s, opacity 0.15s linear;*/
    }

        .menubar li > ul > li {
            white-space: nowrap;
            width: 100%;
        }

.menubar nav a {
    display: inline-block;
    text-decoration: none;
    color: #4f5053;
    width: 100%;
}

.menubar .link-text {
    cursor: inherit;
    display: inline-block;
    padding-left: 15px;
    padding-right: 40px;
}

.menubar .fa {
    cursor: inherit;
    font-weight: normal;
    text-align: center;
    display: inline-block;
    line-height: 35px;
}

nav .fa {
    font-size: 15pt;
    width: 60px;
}

.menubar .parent::after {
    font-family: FontAwesome;
    content: '\f105';
    position: absolute;
    right: 5px;
}

.menubar .collapsed {
    background-color: #eceff1;
    display: none;
}

.menubar .selected {
    background-color: #8AC058;
}

.menubar .toggle {
    padding: 6px 5px 6px 5px;
    font-size: 15pt;
    color: white;
    float: left;
}

.menubar .menu-title {
    color: white;
    /*font-weight: bold;*/
    line-height: 35px;
}

.menubar .notifications {
    color: white;
    float: right;
    position: relative;
}

/*.menubar .notifications::after {
        border: 6px solid transparent;
        border-top-color: #fff;
        content: "";
        height: 0;
        margin-left: -35px;
        margin-top: -2px;
        left: 100%;
        position: absolute;
        text-indent: -99999px;
        top: 50%;
        width: 0;
    }*/

/* USER MENU */
.user-name-drop {
    float: right;
    margin-top: 13px;
    height: 10px;
    width: 18px;
    margin-left: -5px;
}

.menubar .user-name {
    color: white;
    /*font-weight: bold;*/
    line-height: 35px;
    float: right;
    cursor: default;
    position: relative;
}

    .menubar .user-name::after {
        border: 6px solid transparent;
        border-top-color: #fff;
        content: "";
        height: 0;
        margin-left: -15px;
        margin-top: -2px;
        left: 100%;
        position: absolute;
        text-indent: -99999px;
        top: 50%;
        width: 0;
    }

    .menubar .user-name:hover .user-menu {
        display: block;
        /*position: absolute;*/
        top: 100%;
        right: 0;
        z-index: 3;
    }

.menubar .user-menu {
    /*background-color: #de1f26;*/
    display: none;
    color: white;
    font-size: 10pt;
    border-top: 1px solid white;
    position: absolute;
    white-space: nowrap;
    min-width: 290px;
    /*left: -78%;*/
}

    .menubar .user-menu a {
        color: white;
        text-decoration: none;
        font-weight: normal;
        display: block;
        /*padding-left: 20px;*/
    }

.menubar .user-menu-support > a:hover {
    /*background-color: #e27c7f;*/
    background-color: #5777ad;
}

.menubar .user-menu div {
    padding: 10px;
}

.menubar .user-menu span {
    display: block;
    line-height: 18px;
    padding: 2px;
}

.menubar .user-menu .btnX {
    /*background-color: #443027;*/
    color: white;
    padding: 10px 15px;
    font-size: 12pt;
    cursor: pointer;
    border-top: 1px solid white;
    width: auto;
    /*height: 12px;*/
    text-align: center;
    line-height: 12px;
}

    .menubar .user-menu .btnX:hover {
        background-color: #86888f;
    }

.menubar .user-menu hr {
    margin: 0;
    border: none;
    border-top: 1px solid white;
}
/* BORDERS */
.menubar ul, .menubar li {
    /*border: solid 1px #C0C0C0;
    border-collapse: collapse;*/
}

.menubar ul {
    border-bottom: none;
}

.menubar li {
    border-top: none;
    border-left: none;
    border-right: none;
}
    /* HOVER */
    .menubar li:not(.collapsed):hover{
        background-color: #e0e0e0;
    }

        .menubar li:hover > ul {
            display: block;
            opacity: 1;
            visibility: visible;
            /*transition-delay: 0s;
            transition: none;*/
            z-index: 3;
        }

.clickable:hover {
    /*background-color: #e27c7f;*/
    background-color: #5777ad;
}

.menubar .notifications.notifications-unread:after {
    content: "";
    position: absolute;
    top: 10px;
    display: block;
    right: 30px;
    background: rgb(255, 0, 0);
    padding: 1px;
    width: 8px;
    height: 8px;
    text-align: center;
    border-radius: 50%;
}