* {
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #e6f3e6;
    color: #1a3a1a;
    margin: 0;
    padding: 20px;
}
textarea {
    font-family: Arial, sans-serif;
}
svg {
    height: 1em;
    vertical-align: text-top;
    fill: currentColor;
}
a.link {
    color: #2d8659;
    text-decoration: none;
    font-weight: bold;
}
a.link:hover {
    text-decoration: underline;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.subtitle,
.slide-menu-header {
    letter-spacing: -0.5px;
}
.header-title {
    color: #2d8659;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
}
.header-title > span,
.header-title > h1 {
    display: inline-block;
    font-size: 28px;
    margin: 0 0.2em;
}
.header-title > span > a {
    text-decoration: none;
}
.title {
    margin-top: 0px;
    text-align: center;
}
.subtitle {
    color: #2d8659;
    border-bottom: 2px solid #2d8659;
    padding-bottom: 10px;
    margin-top: 30px;
    font-size: 1.5em;
    font-weight: bold;
}
.sub-subtitle {
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    font-weight: bold;
}
.search-box {
    width: 100%;
    padding: 10px;
    border: 2px solid #2d8659;
    border-radius: 5px;
    font-size: 16px;
    color: #1a3a1a;
    margin-bottom: 14px;
}
.search-box::placeholder {
    color: #aaa;
}
.search-box:focus {
    outline-color: #3bc37e;
}
.nonearby {
    background: #f0f8f0;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 1em;
}
.nonearby .nonearby-message {
    display: flex;
    align-items: center;
}
.nonearby .nonearby-text {
    line-height: 1.7em;
    float: left;
    padding-right: 0.5em;
    flex: 1;
}
.nonearby .search-box {
    width: auto;
    min-width: 300px;
    margin-top: 8px;
    margin-bottom: 0;
    margin-right: 5px;
}
.nonearby .filter-button {
    margin-top: 8px;
    display: inline-block;
    padding: 10px 20px;
    margin-left: 0;
}
.nonearby .nonearby-form {
    display: none;
    padding-top: 0.7em;
    padding-bottom: 0.4em;
}
.nonearby .nonearby-form > p {
    color: #777;
    margin-top: 0;
    margin-bottom: 8px;
}
.nonearby .nonearby-success {
    color: #2d8659;
    font-size: 1.2em;
    display: none;
    text-align: center;
    padding-top: 0.7em;
    padding-bottom: 5px;
}
.nonearby .nonearby-error {
    color: red;
    font-size: 1.2em;
    display: none;
    text-align: center;
    padding-top: 0.7em;
    padding-bottom: 5px;
}
.nonearby.nonearby-opened .nonearby-text {
    padding-right: 0;
}
.nonearby.nonearby-opened .nonearby-button {
    display: none;
}
.nonearby.nonearby-opened .nonearby-form {
    display: block;
}
.search-location {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #777;
    text-align: left;
}
.search-location a {
    color: #2d8659;
    text-decoration: none;
    font-weight: bold;
    margin-left: 0.5em;
}
.search-location a span {
    margin-left: 8px;
}
.search-location > span {
    margin-right: 0.5em;
    float: right;
}
.search-location a:hover {
    text-decoration: underline;
}
.find-near-you {
    text-align: center;
    padding-bottom: 1.2em;
}
.find-near-you span {
    margin-right: 0.75em;
    color: #777;
}
.listing-list {
    list-style-type: none;
    padding: 0;
}
.listing-item {
    background-color: #f0f8f0;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.listing-item > div {
    padding-right: 0.5em;
}
.listing-name {
    font-weight: bold;
    color: #2d8659;
    display: inline-block;
    margin-bottom: 8px;
}
.listing-info {
    color: #4d4d4d;
}
.listing-extra {
    margin-top: 8px;
    display: inline-block;
    font-weight: 100;
    font-size: 0.95em;
    color: #777;
    text-transform: lowercase;
}
.maps-link {
    background-color: #2d8659;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
    text-decoration: none;
    transition: background-color 0.3s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-weight: normal;
}
.maps-link:hover {
    background-color: #1f5f3f;
}
.more-link {
    display: block;
    text-align: right;
    color: #2d8659;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}
.more-link:hover {
    text-decoration: underline;
}
.burger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background-color: #2d8659;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}
.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}
.burger-menu.open {
    background-color: white;
}
.burger-menu.open div {
    background-color: #2d8659;
}
.burger-menu.open div:nth-child(1) {
    transform: rotate(-45deg) translate(-6.5px, 6px);
}
.burger-menu.open div:nth-child(2) {
    opacity: 0;
}
.burger-menu.open div:nth-child(3) {
    transform: rotate(45deg) translate(-6.5px, -6px);
}
.slide-menu-underlay {
    width: 100%;
    height: 100%;
    background: black;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.slide-menu-underlay.open {
    opacity: 0.2;
    visibility: visible;
}
.slide-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    overflow-y: auto;
    z-index: 999;
}
.slide-menu.open {
    left: 0;
}
.slide-menu .slide-menu-header {
    padding: 25px 20px;
    margin: 0;
    background-color: #2d8659;
    color: white;
    font-size: 1.2em;
    text-align: center;
    text-transform: lowercase;
}
.slide-menu .slide-menu-header a {
    color: white;
}
.slide-menu .slide-menu-header a:hover {
    text-decoration: none;
}
.slide-menu .slide-menu-subheader {
    padding: 10px 20px;
    margin: 0;
    background-color: #f0f8f0;
    font-weight: bold;
    font-size: 1.1em;
}
.slide-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.slide-menu li {
    padding: 10px 20px;
}
.slide-menu a {
    color: #2d8659;
    text-decoration: none;
}
.slide-menu a:hover {
    text-decoration: underline;
}
.button-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 30px;
}
.filter-button {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    border: 2px solid #2d8659;
    border-radius: 100px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
.filter-button.selected {
    background-color: #2d8659;
    color: white;
}
.filter-button:not(.selected) {
    background-color: white;
    color: #2d8659;
}
.filter-button:hover {
    background-color: #1f5f3f;
    color: white;
}
.filter-button:first-child {
    margin-left: 0;
}
.filter-button:last-child {
    margin-right: 0;
}
.filter-button .icon {
    margin-right: 8px;
    font-size: 20px;
}
.filter-button-cafes .icon {
    margin-top: -3px;
}
.filter-button-shops .icon {
    margin-top: -2px;
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.large-form button {
    padding: 10px 20px;
}
.large-form .g-recaptcha {
    margin-bottom: 0.8em;
}
.success-text {
    color: #2d8659;
    font-size: 1.2em;
}
.error-text {
    color: red;
    font-size: 1.2em;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
@media (max-width: 640px) {
    body {
        padding: 0;
    }
    .container {
        border-radius: 0;
        box-shadow: none;
        padding-left: 10px;
        padding-right: 10px;
    }
    .search-location span {
        float: initial;
        display: block;
        padding-left: 8px;
        margin-top: 11px;
    }
    .nonearby .nonearby-text {
        font-size: 15px;
    }
    .listing-info > span {
        display: block;
    }
    .listing-info > .listing-place-spacer {
        display: none;
    }
}
