body {
  font-family: azo-sans-web, sans-serif;
}
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  font-family: azo-sans-uber;
  text-shadow: 2px 2px 0 salmon;
}

#main-section {
  background-color: rgba(255, 248, 236, 0.53);
}

.selected-circle {
  stroke: black;
  stroke-width: 1;
}

.hoverable-circle {
  cursor: pointer;
  transition: stroke-width 0.4s;
}

.hoverable-circle:hover {
  stroke: black;
  stroke-width: 3;
}

input#autocomplete-entry {
  font-family: azo-sans-web, sans-serif;
  font-weight: 700;
  background-color: #eee;
  padding: 5px 10px;
  border: 0;
}
.autocomplete {
  border: 0;
  background-color: #eee;
}
.autocomplete > div {
  font-family: azo-sans-web, sans-serif;
  padding: 3px 10px;
  border-left: 3px solid #eee;
}
.autocomplete > div:hover:not(.group) {
  background-color: #e5e5e5;
  border-left: 3px solid #f7d381;
  cursor: pointer;
}
.autocomplete > div.selected {
  background-color: #e5e5e5;
}

#svg-holder {
  width: 200px;
  border: 2px solid #888;
  border-radius: 10px;
  background-color: white;
}

.scatterplot-label {
  font-size: 0.8em;
  color: #555;
  font-weight: 200;
  padding: 5px 0;
  text-align: center;
}


#description-holder {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.selected-town-info {
  font-size: 1.6rem;
  display: block;
  background-color: #f0f0f0;
  border-radius: 3px;
  padding: 5px 10px;
  box-shadow: 2px 2px 0px #ccc;
  margin: 0 10px 5px 0;
  border: 4px solid rgb(118, 183, 178);
}

.selected-town-info strong {
  background-image: linear-gradient(0deg, #eccdcd 30%, transparent 0);
}

.neighbor-town-info {
  font-size: 0.9rem;
  display: inline-block;
  background-color: #f0f0f0;
  border-radius: 3px;
  padding: 5px 10px;
  box-shadow: 2px 2px 0px #ccc;
  margin: 0 10px 5px 0;
  cursor: pointer;
}

.neighbor-town-info:hover {
  background-color: #e5e5e5;
}

.neighbor-town-info strong {
  font-size: 1.2rem;
}

.town-info svg {
  margin-bottom: 2px;
}

.underline {
  background-image: linear-gradient(0deg, #eccdcd 30%, transparent 0);
}

.comparison-label {
  color: #aaa;
  font-size: 1rem;
  padding: 10px 0;
}

text {
  font-size: 0.6em;
  pointer-events: none;
}

text.text-selected {
  font-weight: bold;
}

text.text-neighbor {
  color: #333;
  opacity: 0.3;
}

#lmec-logo {
  height: 2.5em;
  margin-right: 5px;
  width: auto;
}

.small-logo {
  height: 80px;
  width: auto;
}

.muni-line {
  stroke: #ddd;
  stroke-width: 0.5;
}

#map-svg-holder {
  background-image: linear-gradient(45deg, #fdfdfd 37.50%, #f5f5f5 37.50%, #f5f5f5 50%, #fdfdfd 50%, #fdfdfd 87.50%, #f5f5f5 87.50%, #f5f5f5 100%);
background-size: 5.66px 5.66px;
  border-radius: 10px;
  border: 1px solid #888;
  
}

#map-svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px dotted #ccc;
  background-color: rgba(255,255,255,0.6);
  border-radius: 8px;
}
