/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
 #map {
    height: 100%;
}

/* 
 * 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: rgb(104, 104, 104);
}

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

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

input[type=reset] {
    width: auto;
    height: auto;
    border-bottom: 0;
    background-color: transparent;
    color: rgb(104, 104, 104);
    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;
    margin-inline-start: 0;
}

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

.my-button {
    background-color: #000;
    border-radius: 6px;
    color: #fff;
    margin: 10px;
    cursor: pointer;
    padding: 6px 24px;
    text-decoration: none;
}

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

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


 img[src^='http://www.google.com/mapfiles/marker.png?i='] {
    opacity: 0.5
}

#map:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 100;
    border-radius: 0;
    border: dashed #ffffff80 2px;
}

#map:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 0;
    top: 0;
    left: 50%;
    z-index: 100;
    border-radius: 0;
    border: dashed #ffffff80 2px;
}

.dot-point:before {
    content: '';
    background: #0dbc59;
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: 101;
    left: 49.26%;
    top: 49.4%;
    border-radius: 50%;
}

#map.hide-after-element:after {
  content: none;
}

#map.hide-before-element:before {
  content: none;
}

div#map-wrapper:after {
    position: absolute;
    content: '';
    background: #00ff6f;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    top: 49.4%;
    left: 49.3%;
    z-index: 1111;
}