*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

.container {
    min-height: 100%;
    margin-top: 5rem;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.topnav {
    overflow: hidden;
    background-color: #007bff;
    padding: .5rem 1rem;
    line-height: 1.5;
    position: fixed;
    z-index: 1030;
    width: 100vw;
    top: 0;
}

.topnav .credentials {
    height: 40px;
    display: flex;
    float: right;
    text-align: center;
    margin-right: 1rem;
    color: rgba(255, 255, 255, .8);
}

.bottomnav {
    overflow: hidden;
    background-color: #afadac;
    padding: .25rem 1rem;
    line-height: 1.5;
    clear: both;
    position: relative;
    bottom: 0;
}

.navigationbar a,
.navdropdown span {
    float: left;
    text-align: center;
    padding: 0.5rem 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
}

.navigationbar .nav-content {
    border-right: 1px solid silver;
}

.navigationbar .nav-content:nth-last-child(2) {
    border-right: 0px;
}

.navigationbar a:hover,
.navdropdown span:hover {
    color: white;
}

.navigationbar a.active,
.navdropdown span.active {
    color: white;
    font-size: 1.25rem;
    padding: 0.3125rem 1rem;
}

/* The dropdown container */
.navdropdown {
    float: left;
    /*overflow: hidden;*/
}

/* Dropdown content (hidden by default) */
.navdropdown-content {
    display: none;
    position: fixed;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 3rem;
}

/* Links inside the dropdown */
.navdropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.navdropdown-content a:hover {
    background-color: #ccc;
}

/* Show the dropdown menu on hover */
.navdropdown:hover .navdropdown-content {
    display: block;
}

.navdropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

