@charset "utf-8";

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}

.fw-bold {
  font-weight: bold;
}

.txt-blue {
  color: var(--clr-tertiary);
}

.txt-black {
  color: var(--clr-neutral-900);
}

table {
  width: 100%;
  border-collapse: collapse;
}

.time-table {
  table-layout: fixed;
}

table tr th,
table tr td {
  padding: 16px 20px;
  border: 1px solid var(--clr-border);
  vertical-align: top;
  text-align: left;
}

table tr th {
  background-color: var(--clr-bg);
}

.time-table tr th {
  text-align: center;
  vertical-align: middle;
  padding: 8px 10px;
}

.time-table tr td {
  text-align: center;
  padding: 16px 10px;
}

.study-table tr th {
  min-width: 230px;
  max-width: 230px;
}

.study-table tr td {
  width: 100%;
}

.address {
  background-color: var(--clr-bg);
  padding: 20px;
}

.address h5 {
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 768.9px) {
  .main-content {
    padding-bottom: 40px;
  }

  table tr th,
  table tr td {
    display: block;
  }

  table tr th {
    padding-block: 5px;
    border-width: 0 1px 0;
  }

  table tr:first-child th {
    border-top: 1px solid var(--clr-border);
  }

  .time-table tr th,
  .time-table tr td {
    text-align: left;
  }

  .time-table tr th {
    padding: 5px 20px;;
  }
  
  .time-table tr td {
    padding: 16px 20px;
    border-width: 1px 1px 0;
  }

  .time-table tr td:last-child {
    border-bottom: 1px solid var(--clr-border);
  }

  .study-table tr th {
    max-width: unset;
  }
}