body {
  margin: 0;
  color: #0e2233;
  background-color: rgb(248, 249, 250);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2em;
}
@media (max-width: 700px) {
  .container {
    padding: 0 1em;
  }
}

header {
  padding: 5em 0 2em;
  text-align: center;
}
header .icons {
  font-size: 3em;
}
header h1 {
  font-size: 3em;
  color: #be222b;
  margin-bottom: 0.25em;
}
header p {
  font-size: 1.2em;
  font-weight: 200;
}

.form {
  padding-bottom: 4em;
}
.form .inputs {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 700px) {
  .form .inputs {
    grid-template-columns: 100%;
  }
}
.form label {
  margin: 0 2em 1em 0;
}
@media (max-width: 700px) {
  .form label {
    margin: 0 0 1em 0;
  }
}
.form label input {
  width: 100%;
  padding: 0.5em 1em;
  background-color: transparent;
  border-radius: 0.1em;
  border: 1px solid rgb(209, 213, 219);
  transition: 0.15s;
  outline: #be222b solid 0px;
  font-size: 1.1em;
  font-family: inherit;
  font-weight: lighter;
}
.form label input:focus {
  outline: #be222b solid 2px;
}

.connection {
  background-color: white;
  min-height: 3em;
  border: 1px solid rgb(209, 213, 219);
  border-radius: 0.5em;
  padding: 2em 3em;
  margin-bottom: 1em;
}
@media (max-width: 700px) {
  .connection {
    padding: 1em 2em;
  }
}
.connection .timeFrame {
  display: flex;
  align-items: baseline;
}
.connection .timeFrame .time {
  font-weight: 600;
  font-size: 1.2em;
}
.connection .timeFrame .due {
  margin-left: 0.5em;
  font-weight: lighter;
}
.connection .steps {
  margin: 2em 0;
  position: relative;
  padding: 1em 0 0.1em;
}
@media (max-width: 700px) {
  .connection .steps {
    margin: 0.5em 0;
  }
}
.connection .steps .stepsLine {
  position: absolute;
  top: 0;
  left: 0.54em;
  height: 100%;
  width: 0.1em;
  border-left: 0.25em dashed #dfdfdf;
}
.connection .steps .step {
  padding-left: 2em;
  margin-bottom: 1em;
  position: relative;
  display: grid;
  grid-template-columns: 5em 15em 5em 5em;
}
@media (max-width: 700px) {
  .connection .steps .step {
    grid-template-columns: 3em auto 3em 3em;
  }
}
.connection .steps .step::before {
  content: " ";
  display: block;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  border: 0.3em solid #279BD6;
  background-color: rgba(39, 155, 214, 0.3490196078);
  position: absolute;
  left: 0em;
  opacity: 0.75;
}
.connection .steps .step.between::before {
  border: 0.3em solid #919191;
  background-color: rgba(145, 145, 145, 0.3490196078);
}
.connection .steps .step.none::before {
  border: none;
  background-color: transparent;
}
.connection .steps .step.end::before {
  border: 0.3em solid #f49213;
  background-color: rgba(244, 146, 19, 0.3490196078);
}
.connection .steps .step.walk {
  opacity: 0.75;
  font-weight: 100;
}
.connection .steps .step.gap-after {
  margin-bottom: 2em;
}
.connection .steps .step .line {
  text-align: center;
  color: #be222b;
  font-weight: bold;
}
.connection .steps .step .departure, .connection .steps .step .arrival {
  text-align: center;
  font-weight: lighter;
}
.connection .steps .step .departure i, .connection .steps .step .arrival i {
  opacity: 0.3;
}

#lastUpdate {
  text-align: right;
  font-weight: lighter;
  padding-bottom: 0.5em;
}

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