html,
body,
html,
body {
    margin: 0;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 100%;
    color: #1f1412;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    text-align: center;
    margin: 1px;
}

.header h6 {
    width: 100%;
    text-align: center;
    /* display: inline; */
    margin: 2px;
}

img {
    display: inline-block;
    margin: 0 auto;

}

#map {
    width: 100%;
    height: 100vh;
    border: 1px solid #1f1412;
    border-radius: 2px;
    box-shadow: 2px 2px 2px #313131;
    background-color: #aad3df;
}

.sidepanel-content {
    font-size: 1rem;
}

.sidepanel-content h4 {
    margin-top: 0;
    margin-bottom: 0;
}

.sidepanel-content a {
    text-decoration: underline;
    font-size: 1rem;
    color: #199900;
    transition: color 0.3s ease-in;
}

.sidepanel-content a:hover {
    color: black;
    text-decoration: underline;
}

input#locationtype,
#name,
#addy,
#country,
#hours,
#website,
#description[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #188205;
    color: #313131;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: rgb(255, 255, 255);
}

input[type=reset] {
    background-color: #188205;
    color: #313131;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=reset]:hover {
    background-color: rgb(255, 255, 255);
}

.container {
    position: relative;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    padding: 7px;
}

.reviewtitle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.leaflet-control-search .search-input {
    display: block;
    float: left;
    background: #fff;
    border: 1px solid #666;
    border-radius: 2px;
    height: 22px;
    padding: 0 20px 0 2px;
    margin: 4px 0 4px 4px
}

#popuptitle {
    text-align: center;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

/* address and review fonts in sidepanel */
#f1,
#f5 {
    font-style: italic;
    /* color: #666; */
}

.leaflet-control-geocoder-icon:hover {
background-color: rgb(233, 232, 232);
}

iframe {
    display: block;
    width: 100%;
}

@media all and (min-width: 1024px) {
    #map {
        height: 768px;
        width: 1024px;
        background-color: #aad3df;
    }
}

@media screen and (max-width: 700px) {
    /* #map {
        height: 768px;
        width: 1024px;
        background-color: #aad3df;
    } */

    img {
        max-width: 45%;
    }

    .container {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
}