body {
  font-family: 'Nunito Sans', sans-serif;
  color: #222222;
}

.highlighted {
  background: yellow;
}

.autocomplete {
  display: flex;
  justify-content: space-between;
  border: 1px solid red;
}

.block {
  padding: 5px 10px;
}

.title {
  border: 1px solid red;
  display: flex;
  justify-content: space-around;
  padding: 5px 10px;
}

.disabled {
  display: none;
}

.ais-MultiIndex__root {
  width: 100%;
}

.title div {
  width: 100%;
  padding: 5px 10px;
}

/*
Style tables for mobile
*/
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  color: white;
  font-weight: bold;
}
td,
th {
  padding: 6px;
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: middle !important;
  word-wrap: break-word;
}

@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  tr {
    border: 1px solid #ccc;
  }

  td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: 'center';
  }

  td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
}

.content h3,
.content h4 {
  margin: 20px 0 5px;
}
