
#map {
height: 500px;
width: 80%;
margin: 0 auto 0 auto;
position: relative;
-moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
-webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, .5);
padding: 0px;
background: white;
}

html, body {
    position: relative;
    min-width: 1000px; 
    min-height: 400px;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #1d1f20;
    font-size: 14px;
    }


#panel1 {
    margin-right: 10%;
    position: relative;
    font-size: 12px;
    float: right;
    padding-bottom: 12px;
} 

#panel2 {
    margin-right: 10%;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    float: right;
    color: #444444;
}

#panel3 {
    margin-left: 10%;
    position: relative;
    font-size: 12px;
    float: left;
    margin-top: 10px
}

svg > g:last-child > g:last-child { pointer-events: none }
div.google-visualization-tooltip { pointer-events: none }

 

.controls {
    display: inline-block;
    background-color: #fff;
    border-radius: 2px 0 0 2px;
    border: 1px solid #CCCCCC;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    height: 39px;
    margin-left: 5px;
    margin-top: 12px;
    outline: none;
    padding: 0 10px 0 10px;
    text-overflow: ellipsis;
    width: 20%;
}

#location-input {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 400;
    margin-left: 0px;
    background-color: white;
    background-image: url('https://www.propertylocation.com.au/images/searchicon.png');
    background-position: 7px 10px; 
    background-repeat: no-repeat; 
    padding: 0 10px 0 32px;
    text-overflow: ellipsis;
}


#location-input:focus {
    border-color: #4d90fe;
}

#title {
    color: #fff;
    background-color: #4d90fe;
    font-size: 25px;
    font-weight: 500;
    padding: 6px 12px;
}


hr.line {
    border: 1px solid rgb(204, 204, 204);
    width: 80%;
    margin-top: 5px;
    margin-bottom: 10px
}


.gap-10 {
    width: 100%;
    height: 10px;
}

.gap-20 {
    width: 100%;
    height: 20px;
}

.gap-50 {
    width: 100%;
    height: 50px;
}

.gap-100 {
    width: 100%;
    height: 100px;
}    

.gap-200 {
    width: 100%;
    height: 200px;
}   



/* The container - highlight colour #AADAFF */
.container2 {
    position: relative;
    padding-left: 27px;
    margin-bottom: 14px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .container2 input {
    /* position: absolute; */
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .container2:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .container2 input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container2 input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .container2 .checkmark:after {
      top: 7px;
      left: 7px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: white;
  }