
/* Include the padding and border in an element's total width and height. */
* {
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  margin: 0px;
  padding: 0px;
}

.header {
    margin: 0px;
    padding: 35px;
    background-color: #075e24;
    box-shadow: 0 2px 5px -1px #333333;
}

.header h1 {
    color: white;
    display: inline;
}

.header .logo {
  width: 75px;
  background: white;
  padding: 5px;
  border-radius: 15px;
}

.main-section {
    padding: 35px;
}

h2 {
    color: #075e24;
    padding: 35px;
}

h3 {
    color: #075e24;
}

h4 {
    color: #075e24;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  list-style: none;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #075e24;
  top: 0;
  bottom: 0;
  margin-left: -5px;
  margin-top: 17px;
  margin-bottom: 50px;
}

.timeline li {
  width: 100%;
}

/* Container around content */
.container {
  padding: 10px 0px 10px 20px;
  position: relative;
  background-color: inherit;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -16px;
  right: -17px;
  background-color: #ffffff;
  border: 4px solid #075e24;
  box-shadow: inset 0 0 0 5px #ffffff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* The actual content */
.content {
  padding: 10px 0px 20px 30px;
  background-color: white;
  position: relative;
  width: 25%;
}

.content-selected {
  border: 2px solid #075e24;
  border-radius: 10px;
}

.direction {
  background-color: #2AAA8A;
  color:white;
  padding:4px;
  border-radius:5px;
}

.entry-exit {
  border-radius:5px;
  padding:4px;
  border: 2px solid #2AAA8A;
  color:#2AAA8A;
}

.entry-exit-additional-text
{
  color:#776d6b;
  line-height: 1.75;
}

.fare-chart {
  width: 100%;
}

h4 {
    margin-top: 0px;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

/* Media queries - Responsive timeline on screens less than 300px wide */
@media screen and (max-width: 375px) {
  .content {
    padding: 10px 0px 20px 10px;
  }
}

/* Media queries - Responsive timeline on screens less than 400px wide */
@media screen and (max-width: 400px) {
}