/*-- -------------------------- -->
<---         Timetable          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #timetable-1731 {
    padding: var(--sectionPadding);
    position: relative;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
  }
  #timetable-1731 #tiny.cs-text {
    font-size: 1rem;
    padding-top: 1rem;
    font-style: italic;
  }
  #timetable-1731 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #timetable-1731 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #timetable-1731 .cs-button-solid {
    margin-top: 1rem;
  }
  #timetable-1731 .cs-button-solid img {
    filter: brightness(0) invert(1);
    position: relative;
    left: 10;
  }
  #timetable-1731 .cs-table-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 3vw, 1.25rem);
  }
  #timetable-1731 .cs-table {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #timetable-1731 .cs-table thead {
    padding: 1.25rem;
    background-color: #e8e8e8;
    transition: background-color 0.3s;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
  }
  #timetable-1731 .cs-table thead th {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 4vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #timetable-1731 .cs-table tbody {
    padding: 1.25rem;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #timetable-1731 .cs-table tbody tr {
    display: flex;
    justify-content: space-between;
  }
  #timetable-1731 .cs-table tbody th,
  #timetable-1731 .cs-table tbody td {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  #timetable-1731 .cs-table tbody th {
    max-width: 1.5em;
  }
  #timetable-1731 .cs-table tbody td:first-of-type {
    position: relative;
    left: 1em;
    right: 0em;
  }
  #timetable-1731 .cs-table:hover thead {
    background-color: var(--primary);
  }
  #timetable-1731 .cs-table:hover thead th {
    color: #fff;
  }
  #timetable-1731 .cs-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #timetable-1731 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #timetable-1731 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: left;
    text-align: left;
  }
  #timetable-1731 .cs-text {
    max-width: 43.75rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #timetable-1731 .cs-table-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
