/* Main Content */
body {
    background-color: whitesmoke;
    margin: 0 0;
    font-family: 'Roboto', sans-serif;
    color: #56585b;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

h1 {
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    letter-spacing: .1em;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    letter-spacing: .1em;
    margin-bottom: 20px;
}

div {
    display: block;
}

.content {
    display: block;
    background: whitesmoke;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    justify-content: center;
    box-sizing: border-box;
}

.section {
    margin-top: 32px;
    margin-bottom: 48px;
}

/* Webmap */
.map-embed {
    height: 560px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Navbar */
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #cf2e2e;
    padding-right: 60px;
    padding-left: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
    box-sizing: border-box;
    justify-content: space-between!important;
}

.navbar h1 {
    font-size: 28px;
    font-weight: 500;
    color: whitesmoke;
    margin-top: 8px;
    margin-bottom: 8px;
    user-select: none;
}

.navbar-brand img {
    width: 86px;
    height: 30px;
    display: inline-block;
    user-select: none;
}

a.navbar-brand {
    font-size: 0px;
}

/* Page Banner */
.banner-image {
    height: 300px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Modal Access Blocker */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    backdrop-filter: blur(20px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: whitesmoke;
    padding: 36px;
    max-width: 600px;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.close {
    color: #56585b;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#auth-response {
    color: #cf2e2e;
}