/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.app-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    perspective: 1500px;
}

#app-sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #0072bd;
    overflow-x: hidden;
    transition: 0.4s;
}

#app-sidebar .closebtn {
    font-size: 36px;
    text-align: right;
}

#app-sidebar .app-sidebar-header {
    padding: 20px;
    background: #0072bd;
}

#app-sidebar ul p {
    color: #fff;
    padding: 10px;
}

#app-sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    color: #fff;
}

#app-sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.4);
}

#app-sidebar ul li.active>a, a[aria-expanded="true"] {
    color: #fff;
    background: #0072bd;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/*
20230822 MKO deaktiviert: wird noch benoetigt?!
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #0072bd;
}
*/

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#app-content {
    width: 100%;
    transition: margin-left .4s;
}

#app-content nav {
    padding: 10px;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 990px) {
    #app-content {
        padding: 0px;
    }
}