/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */
#map {
    display: block;
    position: absolute;
    height: auto;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: 10px;
}
/* Optional: Makes the sample page fill the window. */
html, body {
    height: 90vh;
    width: 95vw;
    margin: 0;
    padding: 0;

    font-family: 'Roboto', Arial, sans-serif;
}

.info-header {
    font-size: 16px;

}
.info-header a {
    text-transform: capitalize;
}

.info-region {
    font-size: 14px;
    font-weight: 700;
}

.info-location {
    font-size: 14px;
}

.image-placeholder {
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    padding: 20px;
    background-color: #e9e9e9;
    width: 100%;
    box-sizing: border-box;
}

#floating-panel {
    position: absolute;
    z-index: 5;
    background-color: #fff;
    text-align: center;
    line-height: 30px;
    padding-left: 10px;

    display: block;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    margin: 10px;
}

@media only screen and (max-width: 479px) {
    .gm-style-iw {
        width: 75vw !important;
    }
    h1 {
        font-size: 18px !important;
        color: red !important;
    }
    .info-location {
        font-size: 16px; !important;
    }
    .info-region {
        font-size: 16px; !important;
    }
    .gm-style .gm-style-iw {
        font-size: 14px !important;
    }
}