#navbar-menu, #navbar-breadcrumb
{
    /* z-index: 2000; */
}

.navbar-brand > img
{
    height: 40px;
}
.navbar-brand:hover > img
{
    -webkit-animation: rotateAxisY 1s ease-in-out;
    -o-animation: rotateAxisY 1s ease-in-out;
    animation: rotateAxisY 1s ease-in-out;
}
@keyframes rotateAxisY {
    0%
    {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    100%
    {
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
.navbar-brand span
{
    display: inline-block;
    margin-left: 10px;
    margin-top: 5px;
}


.navbar-user-icon
{
    border-radius: 50%;
    color: #FFFFFF;
    display: inline-block;
    height: 25px;
    margin-right: 5px;
    width: 25px;
}
.navbar-user-icon > span
{
    display: inline-block;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.notification-badge
{
    border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
    font-size: 50%;
    font-weight: normal;
    height: 16px;
    padding: 4px 0;
    position: absolute;
    right: -5px;
    top: 5px;
    width: 16px;
}

#navbar-data-loader
{
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    left: 50%;
    padding: 20px 100px;
    position: absolute;
    top: 100px;
    transform: translateX(-50%);
    z-index: 2001;
}
#navbar-data-loader span
{
    display: block;
    float: left;
}
#navbar-data-loader span:nth-child(2)
{
    color: #FFFFFF;
    position: relative;
    top: 3px;
}

/* Elements de menu */
.dropdown-menu
{
    margin-top: 0;
    padding: 0;
}
.dropdown-menu > li > a
{
    cursor: pointer;
}
.dropdown:hover > .dropdown-menu
{
    display: block;
}
ul.dropdown-menu > li
{
    border-left: 5px solid transparent;
}
ul > li.active
{
    background-color: #D1ECF1;
    border-left: 5px solid #117A8B;
}
ul > li.active > a:hover
{
    background-color: #CCE5FF;
}
.mnu-item-icon
{
    display: inline-block;
    left: -10px;
    position: relative;
    text-align: center;
    width: 30px;
}
.dropdown-divider
{
    margin: 0;
}

/* Breadcrumb */
.navbar-breadcrumb
{
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
    left: 0;
    position: fixed;
    right: 0;
    top: 50px;
}
.breadcrumb
{
    background-color: transparent;
    font-size: 0.75em;
    margin-bottom: 2px;
    padding: 0;
}
.breadcrumb-item a
{
    color: #FFFFFF;
    text-decoration: none;
}
.breadcrumb-item a:hover
{
    color: #6C757D;
}
.breadcrumb-item + .breadcrumb-item::before
{
    content: '\25BA';
}

/* Toolbar */
.toolbar-tasks-list-container
{
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto;
}
.toolbar-item-row
{
    display: block;
}
.toolbar-item-row-label
{
    display: inline-block;
    font-style: italic;
    width: 80px;
}
.no-active:active
{
    background-color: transparent !important;
}