* {
    margin: 0;
    padding: 0;
}

body {
    font: 200 95%/1.5 Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#map_container {
    overflow: hidden;
    clear: both;
    width: 100%;
    height: 100%;
    margin-top: 1em;
    position: relative;
    z-index: 2;
    background-color: #ddd;
}

#map_container.expanded {
    position: fixed;
    top: 2%;
    left: 2%;
    width: 90%;
    height: 90%;
}

#map_canvas {
    display: block;
    height: 700px;
    float: right;
    width: 80%;
    z-index: 3;
}

.infowindow {
    overflow: hidden;
    font-size: 10pt;
    width: 100%;
}

.infowindow a {
    display: block;
    padding: 5px;
    margin: 5px 0 0 0;
    text-align: center;
    background: #eee;
    border: 1px solid #ccc;
    text-decoration: none;
    border-radius: 4px;
}

.more-button:hover {
    background: #eee;
    color: #555;
}

.more-button:focus, .more-button:active {
    background: #555;
    color: #eee;
}

.menu h3 {
    text-align: center;
    padding: 0.2em 0 0 0;
    margin: 0;
    font-size: 12pt;
    font-weight: 600;
    text-shadow: 0 1px 0px #fff;
    color: #888;
}

ul.button_list {
    clear: both;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 4;
    width: 100%;
    margin: 0 0 1% 0;
    padding: 0;
    list-style: none !important;
}

ul.button_list li {
    position: relative;
    padding: 0;
    margin-top: 0.2em;
}

ul.button_list li img {
    float: left;
    margin-right: 5px;
}

.toggle {
    display: flex;
    align-items: center;
    min-height: 44px;
    justify-content: flex-start;
    width: auto;
    position: relative;
    margin: 0;
    padding: 0.1em;
    cursor: pointer;
    border-radius: 0.5em;
    font: 600 0.9em/1em Helvetica;
    overflow: hidden;
    vertical-align: middle;
    color: #555;
    text-align: left !important;
    background: none;
    box-shadow: inset 0 -0.2em 1em #ccc;
    border: 1px solid #aaa;
}

.toggle:hover {
    color: #339adc;
    background: #eee;
}

.toggle.selected {
    color: #222;
    background: #fff;
    box-shadow: inset 0 0.5em 1em #eee;
}

.toggle .button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: none;
    cursor: pointer;
    outline: 0;
    border: 0;
}

.toggle .counter {
    position: absolute;
    right: 0;
    top: 5px;
}

.toggle .swatch {
    width: 20px;
    margin: 0 20px 0 20px;
    height: 20px;
    border: 1px solid #aaa;
}

.toggle img {
    margin-left: 10px;
    width: 40px;
    height: auto;
}

span.barriers {
    display: inline-block;
    float: left;
    margin: 10px 5px;
    width: 10px;
    height: 20px;
    background-color: #E60033;
    border: 1px solid #555;
}

#map_sidebar {
    float: left;
    width: 18%;
    padding: 1%;
}

#toggleMapSize {
    position: absolute;
    top: 1em;
    right: 1em;
    width: 100px;
    z-index: 5;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    #map_container {
        width: 96%;
        margin: auto;
    }

    #map_canvas {
        float: none;
        width: 100%;
    }

    #map_sidebar {
        float: none;
        width: 100%;
    }

    ul.button_list li {
        display: inline-block;
        margin: 0 0.5em 0.5em 0;
    }
}