/*
 * Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
 * Extend */
.thim-timetable .timetable-filter {
  margin: 0;
  list-style: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 56px; }
  .thim-timetable .timetable-filter li {
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.7px;
    color: #646464;
    display: inline-block;
    margin: 0 30px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -khtml-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer; }
    .thim-timetable .timetable-filter li:after {
      content: '';
      height: 6px;
      position: absolute;
      -webkit-transform: skew(-45deg, 0);
      -moz-transform: skew(-45deg, 0);
      -ms-transform: skew(-45deg, 0);
      -o-transform: skew(-45deg, 0);
      display: block;
      left: -8px;
      right: -8px;
      bottom: 0;
      z-index: -1;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      -khtml-opacity: 0;
      -moz-opacity: 0;
      -ms-opacity: 0;
      -o-opacity: 0;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.5s;
      -khtml-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
    .thim-timetable .timetable-filter li.is-checked, .thim-timetable .timetable-filter li:hover {
      color: #1c1c1c; }
      .thim-timetable .timetable-filter li.is-checked:after, .thim-timetable .timetable-filter li:hover:after {
        visibility: visible;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-opacity: 1;
        -khtml-opacity: 1;
        -moz-opacity: 1;
        -ms-opacity: 1;
        -o-opacity: 1;
        opacity: 1; }

.thim-timetable .col-title {
  height: 80px;
  border-right: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center; }
  .thim-timetable .col-title h1, .thim-timetable .col-title h2, .thim-timetable .col-title h3, .thim-timetable .col-title h4, .thim-timetable .col-title h5, .thim-timetable .col-title h6 {
    text-transform: uppercase;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px; }

.thim-timetable .timetable-cols {
  display: flex; }
  .thim-timetable .timetable-cols .col-time {
    display: flex;
    flex-direction: column;
    width: 14.29%; }
    .thim-timetable .timetable-cols .col-time:first-child .timetable-box {
      border-left: 1px solid #eee; }

.thim-timetable .timetable-box {
  min-height: 194px;
  border: solid 1px #eee;
  border-top: none;
  border-left: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
  padding: 15px 5px; }
  .thim-timetable .timetable-box:first-child {
    border-left: 1px solid #eee; }
  .thim-timetable .timetable-box .name {
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.5px;
    margin: 0;
    color: #1c1c1c; }
    .thim-timetable .timetable-box .name a {
      color: inherit;
      -webkit-transition: all 0.5s;
      -khtml-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
  .thim-timetable .timetable-box .teacher {
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #999; }
  .thim-timetable .timetable-box .time {
    font-size: 32px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 1px;
    color: #646464;
    display: block;
    margin-top: 23px;
    -webkit-transition: all 0.5s;
    -khtml-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }
  .thim-timetable .timetable-box:hover {
    -webkit-box-shadow: 4px 6.9px 22px 0 rgba(0, 0, 0, 0.08);
    -khtml-box-shadow: 4px 6.9px 22px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 4px 6.9px 22px 0 rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 4px 6.9px 22px 0 rgba(0, 0, 0, 0.08);
    -o-box-shadow: 4px 6.9px 22px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 4px 6.9px 22px 0 rgba(0, 0, 0, 0.08);
    z-index: 1; }

.thim-timetable .cat-box {
  -webkit-transition: all 0.5s;
  -khtml-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  .thim-timetable .cat-box.is-hidden {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    visibility: hidden; }
  .thim-timetable .cat-box.is-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    visibility: visible; }

@media (max-width: 1280px) {
  .responsive .timetable-filter li {
    margin: 0px 15px;
    font-size: 18px; }
  .responsive .thim-timetable .col-title {
    height: 60px; }
    .responsive .thim-timetable .col-title h1, .responsive .thim-timetable .col-title h2, .responsive .thim-timetable .col-title h3, .responsive .thim-timetable .col-title h4, .responsive .thim-timetable .col-title h5, .responsive .thim-timetable .col-title h6 {
      font-size: 14px; } }

@media (max-width: 1200px) {
  .responsive .thim-timetable .timetable-filter {
    margin-bottom: 30px; }
  .responsive .thim-timetable .timetable-box {
    min-height: 150px; }
    .responsive .thim-timetable .timetable-box .name {
      font-size: 15px; }
    .responsive .thim-timetable .timetable-box .time {
      font-size: 18px; } }

@media (max-width: 768px) {
  .responsive .thim-timetable .timetable-filter {
    columns: 2;
    text-align: unset; }
    .responsive .thim-timetable .timetable-filter li {
      margin: 5px;
      display: block; }
  .responsive .thim-timetable .timetable-cols {
    flex-direction: column; }
    .responsive .thim-timetable .timetable-cols .col-time {
      width: 100%; }
  .responsive .thim-timetable .col-title {
    height: 50px; }
  .responsive .thim-timetable .timetable-box {
    min-height: unset;
    padding: 15px;
    border-left: 1px solid #eee; }
    .responsive .thim-timetable .timetable-box.is-empty {
      display: none; } }
