#taxiLicenseForm {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}
#taxiLicenseForm #fields {
  flex: 0 1 460px;
}
#taxiLicenseForm #taxiStationsList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 70vh;
  overflow: auto;
  padding-right: 8px;
}
#taxiLicenseForm .js-taxi-station-item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
#taxiLicenseForm .js-taxi-station-item.is-active {
  border-color: #0d77b5;
  box-shadow: 0 0 0 1px #0d77b5;
}
#taxiLicenseForm .taxi-station-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
#taxiLicenseForm .taxi-station-card__title {
  margin: 0;
}
#taxiLicenseForm .taxi-station-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#taxiLicenseForm .taxi-station-card__actions {
  margin: 0;
  align-self: center;
  white-space: nowrap;
}
#taxiLicenseForm .taxi-stations-map-panel {
  flex: 1 1 auto;
}
#taxiLicenseForm #map {
  height: 80vh;
  width: 100%;
  background: gainsboro;
  border-radius: 6px;
}

@media (max-width: 960px) {
  #taxiLicenseForm {
    flex-direction: column;
  }
  #taxiLicenseForm #fields {
    flex-basis: auto;
  }
  #taxiLicenseForm #taxiStationsList {
    max-height: none;
  }
  #taxiLicenseForm .js-taxi-station-item {
    flex-direction: column;
  }
  #taxiLicenseForm .taxi-station-card__actions {
    width: 100%;
  }
}

/*# sourceMappingURL=map.css.map */
