@import url(https://cdn6.onboard.org/assets/pletzer-gruppe/fonts/fonts.css);

body {
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #0d0d0d;
}

p {
  margin: 0;
}

.speculative {
  margin-top: 15px;
}

.filters-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
}

.location-filter {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(0, 100, 176, 1);
}
.location-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  transition: all 0.5s linear;
  background-color: rgba(0, 100, 176, 1);
}
.location-text {
  position: relative;
  color: #0d0d0d;
  transition: all 0.5s linear;
  font-size: 16px;
  font-weight: 600;
  padding: 20px;
  margin-top: 2px;
}

.location-filter:hover .location-background {
  width: 100%;
}
.location-filter:hover .location-text {
  color: white;
}

.selected .location-background {
  width: 100%;
}
.selected .location-text {
  color: white;
}


.at-filter {
  margin: 0;
  margin-bottom: 20px;
}

@media(min-width: 510px) {
  .filters-container { flex-direction: row; }
  .at-filter { margin: 0; margin-right: 8px; }
  .de-filter { margin: 0; margin-left: 8px; }
}