/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .opening_hours_all a {
   display: block;
   width: 55%;
   flex-shrink: 0;
   padding-right: 4px;
 }

 .opening_hours_all span {
  display: block;
  min-width: max-content;
  width: 22.5%;
  text-align: left;
  flex-shrink: 2;
  padding-right: 4px;
}

.opening_hours_all span.table-heading {
  font-weight: 700;
}

.opening_hours_all div span.table-heading:first-of-type {
  width: 55%;
}

@media screen and (max-width: 1024px) {
  .opening_hours_all span {
    width: 25%;
  }
  .opening_hours_all div span.table-heading:first-of-type,
  .opening_hours_all a {
    width: 40%;
  }

  .opening_hours_all .open {
    font-size: 13px;
  }
}

@media screen and (max-width: 450px) {
  .opening_hours_all span,
  .opening_hours_all a {
    margin-bottom: 1em;
  }

  .opening_hours_all span.table-heading {
    margin-bottom: 0.25em;
  }
  .opening_hours_all .open  {
    line-height: 1.5em !important;
  }
}


.opening_hours_all .button {
  display: inline-block;
  border: none;
  text-transform: none;
  background-color: #ededed;
  color: black;
  padding: 0.9375rem 1.875rem;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1em;
  transition: background-color 0.2s ease-in-out;
}
.opening_hours_all .button:hover,
.opening_hours_all .button:focus {
  background-color: #007878;
  color: white;
}
.opening_hours_all .active {
  background-color: #007878;
  color: white;
}

.opening_hours_all .content {
  padding: 1rem 0;
  display: none;
  line-height: 2;
}

.opening_hours_all .open {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.station_open span {
  display: inline-block;
  width: 100px;
  font-weight: bold;
}
.station_open span.title {
  display: block;
  width: auto;
}
