top-btm:not(:defined) {
    display: none;
}
map-window:not(:defined) {
    display: none;
}
:root {
    --popup-bg: rgba(192, 201, 209, 0.85);
    --popup-bdr: 2px solid black;
    --popup-bdrrad: .5rem;
    --map-margin: 1rem;
}
html, body {
    background-color: rgba(17, 68, 115, 0.3);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
  height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  /* grid-template-rows: auto auto minmax(0, 1fr) auto; */
}

body > * {
    text-align: center;
    min-width: 0;
    max-width: 98%;
    min-height: 0;
}

map-window {
    margin: 0 auto;
    min-height: 0;
    height: 100%;
    border: 8px solid black;
    border-radius:1rem;
}

.ttl {
    display: flex;
    flex-direction: column;
    gap: 0px;
    height: fit-content;
}

.subt {
    display: flex;
    flex-direction: row;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    margin: 0 auto;
}
.subt p {
    padding-left: 1rem;
    padding-right: 1rem;
    border-left: 1px solid black;
    border-right: 1px solid black;
}
@media ( max-width: 900px ) {
    .subt {
        flex-direction: column;
    }
}
@media ( max-height: 1400px ) {
    .subt {
        display: none;
    }
}
.ttl h1 {
    font-size: 1.8rem;
    margin-top: 0.2rem;
    margin-bottom: 0rem;
}

/* STYLING FOR FOOTER (top-btm component) */
.short { display: none; }
@media ( max-width: 900px ) {
    .long { display: none; }
    .short { display: inline; }
    .ttl h1 { font-size: 1.2rem; }
}

calcite-tooltip {
    z-index: 99 !important;
}