.navbar {
    background-color: transparent;
    border-radius: 0px;
    border: none;
    display: flex;
    margin-bottom: 0px;
    white-space: nowrap;
    min-height: 32px;
    width: 100%;
}

.navbar-nav {
    display: flex;
    float: none;
    margin: 0px;
}

.navbar-nav>li {
    height: 32px;
}

.navbar-nav>li>a,
.navbar-default .navbar-nav>li>a,
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    background-color: #ebe5f5;
    color: #1d112e;
    height: 100%;
    max-height: 100%;
    line-height: 12px;
    padding: 10px;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    background-color: transparent;
    border-radius: 5px 5px 0px 0px;
    color: #1d112e;
    font-size: 1.1em;
}

.navbar-fill {
    background-color: #ebe5f5;
    width: 100%;
}

#nav-dropdown {
    background-color: #ebe5f5;
    padding-top: 8px;
}

#nav-dropdown .fa {
    font-size: 18px;
}

.navbar-dropdown-menu {
    background-color: #ebe5f5;
    border-color: #ebe5f5;
    border-radius: none;
    box-shadow: none;
}

.navbar-dropdown-item {
    padding: 8px 12px;
}

.navbar-dropdown-item label {
    font-size: inherit;
}


/*** Styles for mobile navbar ***/
.navbar.mobile {
    display: none;
}

.navbar-mobile {
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
}

.navbar-mobile.mobile {
    display: block;
}

.mobile-nav-button {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 5;
    cursor: pointer;
    font-size: 2.5em;
}

.mobile-nav-button .fa-circle {
    color: #1d112e;
}

.mavbar-mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 7;
}

.navbar-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: #ebe5f5;
    height: 100%;
    width: 550px;
}

.navbar-mobile-menu .nav-pills>li>a {
    border-radius: 0;
    padding: 16px;
    font-size: 48px;
    color: #1d112e;
}

.navbar-mobile-menu .nav-pills>li.active>a {
    color: #ebe5f5;
    background-color: #1d112e;
}


/*** Dynamic navbar settings ***/
@media (max-width: 800px) {
    .navbar.desktop {
        display: none;
    }

    .navbar-mobile.desktop {
        display: block;
    }
}
