@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");

html {
	font-family: 'Open Sans';
	width: 100%;
	margin: 0 auto;
}
body {
	font-family: 'Open Sans';
  font-size: 12px;
  color: #000;
  margin: 0;
}
#map-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
}
#map {
  width: 100%;
  height: 100%;
}
.map-sidebar-content {
  cursor: pointer;
  padding: 5px 10px 5px 10px;
}
.map-sidebar-content:hover {
  background-color: #000;
  color: #fff;
}
.map-sidebar-content img {
  vertical-align: middle;
  margin-right: 10px;
}
.city-list {
  display: none;
  margin-bottom: 10px;
}
#map-sidebar {
  position: fixed;
  z-index: 10;
  width: 350px;
  height: 100%;
  left: 0;
  top: 0;
}
#sidebarTopMenu {
  background-color: #fff;
  padding: 20px;
}
#sidebarTopMenu h3 {
  color: #000;
  font-size: 30px;
  margin: 0 10px 20px 0;
}
.locate-title {
  color: #fff;
}
#sidebarBottomMenu {
  background-color: #fff;
  margin-top: 10px;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
}
#sidebarBottomMenu  h3 {
  padding: 0 0 0 20px;
}
.options-area label {
  width: 150px;
  display: inline-block;
  padding: 0 0 10px 0;
}
.options-area label span {
  font-size: 13px;
}
.state-part {
  margin-bottom: 10px;
}
.state-part select,
.city-list select {
  padding: 5px; 
  font-size: 14px;
  width: 100%;
}
.map-sidebar-info {
  padding: 20px;
}
.gm-style .gm-style-iw {
  max-width: 200px;
}
.marker-icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
label.checkbox input[type="checkbox"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
label.checkbox input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff;
  border: 3px solid #dbdad4;
}
label.checkbox input[type="checkbox"] + span > span.tick {
  display: block;
  position: absolute;
  z-index: 100;
  top: -3px;
  left: -3px;
  width: 20px;
  height: 20px;
  opacity: 0;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url('../img/tick-green_03.png');
  background-size: 17px;
  background-position: 2px 4px;
}
label.checkbox input[type="checkbox"]:checked + span > span.tick {
  opacity: 1;
  transition: all 700ms ease 0s;
}
#sidebarBottomMenu .load-img {
  display: none;
  width: 200px;
  height: 200px;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  #map-sidebar {
    left: 10px;
  }
}

@media only screen and (max-width: 800px) {
  #map-sidebar {
    width: 250px;
    position: absolute;
  }
  #sidebarBottomMenu {
    max-height: 250px;
  }
}

@media only screen and (max-width: 640px) {
  #map-sidebar {
    position: static;
    width: 100%;
    height: auto;
  }
  #sidebarBottomMenu {
    max-height: 200px;
  }
  .options-area label {
    width: 145px;
  }
}

@media only screen and (max-width: 600px) {
  .options-area label {
    width: 135px;
  }
}

@media only screen and (max-width: 384px) {
  #sidebarBottomMenu {
    max-height: 240px;
  }
}