html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
}

svg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;

  width: 100%;
  height: 100%;
}

#output {
  box-shadow: 2px 0 2px 1px rgba(0, 0, 0, 0.2);

  z-index: 1;
}

#precincts {
  width: 110px;

  border-right: 1px solid #efefef;
}

#addresses {
  width: 250px;
}

#map {
  min-width: 300px;
}

#menu {
  top: 48px;
  left: 20px;
  position: absolute;

  background-color: #fff;
  border-radius: 2px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);

  overflow: hidden;

  z-index: 1;
}

#menu > div {
  padding: 0.75rem 1.25rem;
}

.row {
  font-size: 12px;
  margin: 8px 5px;
}

.parent {
  padding: 3px 5px;
}

.child {
  margin: 1px;
  margin-left: 15px;
  padding: 2px 4px;
}

.clickable {
  cursor: pointer;
}

.clickable:hover {
  background-color: #f3e4cd;
}

.selected {
  font-weight: bold;
  background-color: #efefef;
}

.button {
  color: #fff;
  background-color: #4267b2;
  border: 1px solid #4c69ba;
  border-radius: 2px;

  line-height: 26px;

  padding: 0 10px;

  cursor: pointer;

  z-index: 1;
}

.facebook-button {
  top: 20px;
  right: 20px;
  position: absolute;
}

.toggle-button {
  top: 20px;
  left: 20px;
  position: absolute;
}

.dropdown {
  display: none;
}

.overlay {
  color: #555;
  background-color: rgba(0, 0, 0, 0.2);

  z-index: 10;
}

#app > .overlay {
  position: fixed !important;
}
