body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    max-width: 800px;
    margin: 0px auto;
    display: block;
}

#header {
    height: 70px;
    width: 100%
}

/* Button styles */
button {
    cursor: pointer;
}

.btn {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    width: auto;
    cursor: pointer;
    padding: 6px 16px 10px 16px;
    border: 0 none;
    text-align: center;
    -webkit-appearance: none;
    transition: background-color 0.25s ease-out;
    text-decoration: none;
    line-height: 24px;
    margin-right: .5rem;
}

.btn--bold {
    font-weight: 700;
}

.btn--large {
    font-size: 16px;
}

/* Primary */
.btn--primary {
    background-color: #0F8243;
    color: #fff;
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: #0b5d30;
}


/* Alternative */
.btn--primary-alternative {
    background-color: #206095;
    color: #fff;
    padding: 15px 19px 11px 19px;
}

.btn--primary-alternative:hover,
.btn--primary-alternative:focus {
    background-color: #003C57;
}

/* Neutral */
.btn--neutral {
    background-color: #F9F9F9;
    border: 1px solid #A6A8AB;
    padding: 14px 16px 10px 16px;
}

.btn--neutral:hover,
.btn--neutral:focus {
    background-color: #E5E6E7;
}

.btn--neutral-disabled {
    background-color: #eee;
    opacity: 0.2;
}

.btn--neutral-disabled:hover,
.btn--primary-disabled:focus {
    cursor: not-allowed;
}

.mapboxgl-ctrl-group .mapboxgl-ctrl-compass {
    display: none;
}

.btn:focus
{
    box-shadow: 0 0 0px 3pt orange;
    outline: none;
}

.mapboxgl-ctrl-group > button:focus {
    border: solid 3pt orange;
}

@media (min-width: 599px) {
    #map {
        height: 500px;
        width: 100%;
        position: relative;
        display: block;
    }

    #selectNav {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 30%;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.8);
        z-index: 1;
    }

    #keydiv {
        font-weight: 700;
        position: absolute;
        top: 0px;
        left: 0px;

        /* width: 30%; */
        /*height: 21px;*/
        background-color: rgba(255, 255, 255, 0.8);
        z-index: 1;
    }

    #currVal {
        font-size: 14px;

    }
}

@media (max-width: 600px) {


    #map {
        position: relative;
        height: 500px;
        width: 100%;
        /* overflow:visible; */
        display: block;
    }

    #selectNav {
        position: absolute;
        top: -120px;
        left: 0px;
        width: 100%;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.8);
        z-index: 3;
    }

    #keydiv {
        font-weight: 700;
        height: 21px;
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: rgba(255, 255, 255, 0.8);
        z-index: 1;
    }

    #currVal {
        font-size: 14px;

    }

    .mapboxgl-ctrl-fullscreen {
        display: none !important;
    }

}

.keyb b {
    margin-top: 0px !important;
    width: 15px !important;
}

.key label {
    white-space: nowrap;
    font-size: 12px;
    color: #333;
    font-weight: normal;
}


.key li {
    display: inline-block;
    margin: 0 18px 0 0;
    padding: 0;
    line-height: 15px;
}

.key b {
    display: inline-block;
    width: 35px;
    height: 15px;
    margin-right: 6px;
    float: left;
    background-color: none;
    margin-top: 8px;

}

ul {
    padding-left: 0px !important;
}

#source {
    font-size: 14px;
    font-weight: 700;
    display: block;
    position: relative;
}