header.app-header.bg-white a.navbar-brand {
    width: 300px;
    justify-content: left;
    padding: 0 2.75rem 0 1.5rem;
    color: #73818f;
    font-size: 1.4rem;
    opacity: 0.75;
}

header.app-header {
    height: 65px;
    flex: 0 0 65px;
}
/* ONLY SMALL DEVICES */
@media (max-width: 991px) {
    .app-header .navbar-brand {
        padding: 0 !important;
    }
}
.btn-lg {
    text-transform: uppercase;
}
/* ONLY ABOVE SMALL DEVICES */
html:not([dir="rtl"]) .sidebar {
    margin-left: -300px;
}
.app-body .sidebar.sidebar-pills {
    flex: 0 0 300px !important;
}
.sidebar .nav,
.sidebar .sidebar-nav {
    width: 100%;
}
.app-body .sidebar {
    padding: 1rem 0 0 0;
}
.sidebar.sidebar-pills .nav-link {
    padding: 1rem 1.25rem 1rem 1.5rem !important;
}
.sidebar.sidebar-pills .nav-dropdown-items .nav-link {
    padding: 0.5rem 0.5rem 0.5rem 2rem !important;
}
.nav-content {
    padding: 1rem 1.25rem 1rem 1.5rem !important;
    border-bottom: 1px solid rgba(22,28,45,.1);
}
.wave-container {
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 9999;
}
.wave-area {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999;
    height: 50px;
    background-color: #ffffff;
}
.wave {
    background-image: url("../images/wave.svg");
    background-repeat: repeat-x;
    position: absolute;
    top: -100px;
    width: 6400px;
    height: 100px;
    animation: wave 35s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
    z-index: 10000;
}
.wave:nth-of-type(2) {
    top: -56px;
    animation: wave 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}
@keyframes wave {
    0% { margin-left: 0; }
    100% { margin-left: -1600px; }
}
@keyframes swell {
    0%, 100% { transform: translate3d(0, -45px, 0); }
    50% { transform: translate3d(0, 5px, 0); }
}
/* DETECT IE */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active),
    @supports (-ms-accelerator:true) or (-ms-ime-align:auto) {
    .wave-area {
        display: none!important;
    }
}