.wrapper {
    display: grid;
    grid-template-columns: 18rem 3px 1fr;
    grid-template-rows: 3em auto 3em;
}

.header {
    grid-column: 1 / 4;
    grid-row: 1;
    max-height: 3em;
    padding: 0px;
    flex-wrap: unset; /* nowrap? */
    justify-content: flex-start;
}

.sidebar {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    background-color: #f2f2f2;
    min-width: 18rem;
    grid-row-gap: 12px;
    grid-template-rows: auto 1fr;
}

.divider {
    grid-column: 2;
    grid-row: 2;
    cursor: ew-resize;
    z-index: 999;
}

.content {
    grid-column: 3;
    grid-row: 2;
    min-height: 20px;
    background-color: white;
}

.footer {
    grid-column: 1 / 4;
    grid-row: 3;
}

.divider:hover {
	background-color: #1CABE3;
}

.divider .vline {
    border-right: 1px solid #1CABE3;
    margin-left: 1px;
    width: 2px;
    height: 100%;
}

[class$="sidebar"] .ico {
    height: 24px;
}

[class$="sidebar"] .item {
    justify-self: left;
    text-decoration: none;    
}

.header {
    border-bottom: 1px solid #1CABE3;
}

.footer {
    border-top: 1px solid #1CABE3;
}

.header img {
    margin: 1rem;
    height: 2rem;
}

.footer .logo {
  height: 40px;
  padding: 0.5rem 1rem 0 1rem
}

nav .logo {
    display: inline;
}

nav a, nav a:hover, .nav-link, .nav-link:visited, .breadcrumb a {
    color: #25437e;
    text-decoration: none;
}

.unibar {
    border-color: black;
    color: #25437e;
}

/* banner image below header */
img.banner {
  width: 100vw;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #25437e;
}

#settings {
    position: absolute;
    top: 3rem;
    z-index: 10000; /* hides leaflet's layer icon */
}

.header-caption {
    position: absolute;
    left: 50%;
    font-variant: small-caps;
    font-size: 1.8rem;
    font-weight: 600;
}

.loading {
    margin-top: 2rem;
    text-align: center;
    display: block;
}
