/* Set the size of the div element that contains the map */


/*
#map {
    height: 400px;
    width: 100%;
}
*/


/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */


/* Optional: Makes the sample page fill the window. */


/*
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}



body {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: #686868;
}
*/


/*
form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 400px;
    padding: 20px;
}
*/

table {
    border-spacing: 10px;
    border-collapse: separate;
}

td {
    padding: 10px;
}

.address-field {
    width: 400px;
}

.my-location-button {
    width: 250px;
    height: 50px;
    font-size: 24px;
}

.search-button {
    width: 150px;
    font-size: 24px;
}


/*
input {
  width: 90%;
    
    height: 1.2rem;
    margin-top: 0;
    padding: 0.5em;
    border: 0;
    border-bottom: 2px solid gray;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}


input:focus {
    border-bottom: 4px solid black;
}

input[type="reset"] {
    width: auto;
    height: auto;
    border-bottom: 0;
    background-color: transparent;
    color: #686868;
    font-size: 14px;
}

.title {
    width: 100%;
    margin-block-end: 0;
    font-weight: 500;
}

.note {
    width: 100%;
    margin-block-start: 0;
    font-size: 12px;
}

.form-label {
    width: 100%;
    padding: 0.5em;
}
*/


/*
.full-field {
    flex: 400px;
    margin: 15px 0;
}

.slim-field-left {
    flex: 1 150px;
    margin: 15px 15px 15px 0px;
}

.slim-field-right {
    flex: 1 150px;
    margin: 15px 0px 15px 15px;
}

*/


/*
.my-button {
    background-color: rgb(202, 115, 0);
    border-radius: 1px;
    color: #fff;
    margin: 10px;
    padding: 6px 24px;
    text-decoration: none;
}
*/


/*
.my-button:hover {
    background-color: #666;
}

.my-button:active {
    position: relative;
    top: 1px;
}
*/

.iframe-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 ( 100%/16*9 = 56.25% ) */
}
.iframe-container > *{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/*
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
*/