body, html {
  display: flex;
  justify-content: center;
  align-items: center;
}

.station-location-header {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 150%;
}

.center-box {
  width: 29rem;
  height: max-content;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-radius: 0.375rem;
  background: #0a145a;
  backdrop-filter: blur(0.625rem);
}

.station-picker-form {
  min-width: 0;
  max-width: 100%;
}

.input-group {
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.4rem;
  padding-top: 0.3rem;
}

.input-error {
  display: flex;
  color: #c0cbda;
  font-size: 0.813rem;
  line-height: 1.5;
  padding-bottom: 0.2rem;
}

.border-error {
  border: 0.125rem solid #d6383a !important;
}

.x-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.5rem;
}

.btn-station-location {
  font-weight: 500;
  font-size: 0.813rem;
  height: 2.375rem;
  width: 8.25rem;
  justify-content: center;
  padding: 0.5rem 1rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1.7875rem;
  border: 0.0625rem solid #fff;
  color: white;
  background-color: #0a145a;
}

.btn-station-location:hover {
  border-color: #94a1b2;
  color: #94a1b2;
  cursor: pointer;
}

.input_zip_code {
  padding: 0.75rem 1.0625rem;
  text-align-last: center;
  gap: 0.625rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  height: 2.375rem;
  width: 16.25rem;
  border: none;
}

.border-selected:focus-visible {
  outline: 0.188rem solid #486cd8;
}

.input_zip_code::placeholder {
  font-size: 0.813rem;
  color: #fff;
}

.state_dropdown {
  appearance: none;
  -webkit-appearance: none;
  font-size: 0.813rem;
  height: 2.375rem;
  width: 16.25rem;
  padding: 0.6rem 1.0625rem 0.75rem 1.0625rem;
  text-align: center;
  gap: 0.625rem;
  border-radius: 0.375rem;
  background: url("/static/icons/dropdown-arrow.svg") no-repeat right 1em center rgba(255, 255, 255, 0.2);
  background-size: 1rem 1rem;
  color: #fff;
  border: none;
  cursor: pointer;
}

.confirm-station-buttons {
  gap: 0.625rem;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
}

.confirm-station-icon-class {
  width: 1rem;
  height: 1rem;
}

.confirm-station-button-class {
  display: inline-flex;
  width: fit-content;
  font-size: 0.813rem;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1.7875rem;
  border: 0.0625rem solid #fff;
  color: #2638c4;
  background-color: white;
  cursor: pointer;
}

.confirm-station-button-class:hover {
  color: #0f1e8c;
  background-color: #94a1b2;
  border-color: #94a1b2;
}

.station-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  max-height: 26.875rem;
  scrollbar-color: #94a1b2 transparent;
  scrollbar-width: thin;
}

.station-widget {
  justify-content: space-between;
  align-items: center;
  width: 25rem;
  height: 4.375rem;
  flex-shrink: 0;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  border: 0.125rem solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}

.station-icon {
  max-height: 80%;
  width: auto;
  margin-left: 0.625rem;
}

.station-details {
  align-items: flex-end;
  margin-right: 0.625rem;
}

.station-name {
  font-size: 0.875rem;
}

.station-address {
  color: #94a1b2;
  font-size: 0.813rem;
}

.no-station-text {
  text-align: center;
}

.station-selected {
  border: 0.1875rem solid #46d4cd !important;
}

@media (max-width: 768px) {
  .center-box {
    width: 100vw;
    height: 100vh;
    margin: auto;
    padding: 2rem 1rem;
    border-radius: 0.3125rem;
    background-color: rgba(10, 20, 90, 0.8);
  }
}
*, :after, :before {
  box-sizing: border-box;
}

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