/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
    /**
     * Always set the map height explicitly to define the size of the div element
     * that contains the map.
     */
#map {
    height: 70vh;
    position: unset;
}

#response-container {
    display: none;
}

body{
    overflow-x: hidden;
}

#map input[type="text"] {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    line-height: 40px;
    margin: 10px 0 10px 10px;
    min-width: 25%;
}

#map input[type="button"] {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    height: 40px;
    cursor: pointer;
    margin: 10px 10px 10px 5px;
}
#map input[type="button"]:hover {
    background: rgb(235, 235, 235);
}
#map input[type="button"].button-primary {
    background-color: #1a73e8;
    color: white;
}
#map input[type="button"].button-primary:hover {
    background-color: #1765cc;
}
#map input[type="button"].button-secondary {
    background-color: white;
    color: #1a73e8;
}
#map input[type="button"].button-secondary:hover {
    background-color: #d2e3fc;
}

#response-container {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    overflow: auto;
    max-height: 50%;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: small;
}

#instructions {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    padding: 1rem;
    font-size: medium;
}