* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #333333;
}
#map { position: absolute; top: 0; bottom: 0; width: 100%; }

#locator,
#mobi-locator {
    display: flex;
    flex-flow: column;
    height: 80vh;
    width: 250px;
    overflow: hidden;
    background: white;
    border-radius: 11px;
    border: 4px solid #627b36;
}
@media only screen and (max-width: 600px) {
    #locator {
        display: none;
    } 
}
#locator {
    position: absolute;
    top: 10vh;
    bottom: 10vh;
    left: 2vw;
}
#mobi-locator {
    position: relative;
}
#locator h2,
#mobi-locator h2 {
    background-color: #627b36;
    color: #fff;
    padding: 10px 13px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1em;
}
#locator #locator-list,
#mobi-locator #mobi-locator-list {
    overflow: hidden;
    overflow-y: scroll;
    height: 100%;
    display: flex;
    flex-flow: column;padding-bottom: 35px;
}
#locator #locator-list li,
#mobi-locator #mobi-locator-list li {
    padding: 10px 13px;
    border-bottom:1px solid #848484;
    cursor: pointer;
    transition: background-color 250ms ease-in-out;
}
#locator #locator-list li:hover,
#mobi-locator #mobi-locator-list li:hover {
    background-color: #e6e6e6;
}
#locator #locator-list li:last-child,
#mobi-locator #mobi-locator-list li:last-child {
    border-bottom: none; 
}

#mobi-loc-open {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    padding: 7px 20px;
    border: 2px solid #627b36;
    border-radius: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #627b36;
    cursor: pointer;
    transition: all 250ms ease-in-out;
}

#mobi-loc-open:hover {
    color: #fff;
    background-color: #627b36;
}
@media only screen and (min-width: 600px) {
    #mobi-loc-open {
        display: none;
    } 
}
#mobi-loc-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 9;
    width: 25px;
    height: 25px;
}

.options {
    display: flex;
    flex-flow: column;
    background-color: #627b36;
    color: #fff;
    padding: 10px 13px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1em;
}