/*
* SCSS
* Credit : Joffrey Persia
*/
/* Timetable */
.timetable {
  width: 100%;
  background-color: var(--action);
  border-radius: 8px;
  border-collapse: collapse;
}
.timetable tr td {
  width: 25%;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.timetable.sa_textleft tr td {
  text-align: left;
  padding-left: 20px;
}
.timetable tr, .timetable td {
  border: 1px solid white;
}
.col1 {
  width: 15% !important;
  font-weight: 800;
}
/* Animation Grow From Middle */
.grow-from-middle::before {
  content: " ";
  background-color: var(--base-dark);
  position: absolute;
  bottom: 0px;
  transform: translateY(50%);
  left: 50%;
  right: 50%;
  height: 2px;
  transition: left 0.5s, right 0.5s;
}
.grow-from-middle:hover::before, .grow-from-middle.current-menu-item::before {
  left: 0%;
  right: 0%;
}
/* Menu */
.bricks-nav-menu-wrapper li.disabled a {
  cursor: not-allowed;
  opacity: 0.5;
}
/* One Page Menu */
.one-page-link--active {
  font-weight: 700;
}
/* WSForm */
.form--light .text-m {
  line-height: 1.5;
  font-size: var(--text-m);
}
