table.internal-table tbody tr:nth-child(even) {
    border-top: 1px solid !important;
}
.internal-table td, .internal-table tr {
    border: 0 !important;
    background: transparent !important;
}
.weekly-schedule {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    table-layout: fixed;
    margin-bottom: 50px;
    border: 1px solid #000;
}
.weekly-schedule thead tr th {
    background: #626e7e;
    color: #fff;
    padding: 0.5em;
    text-align: center;
    overflow: hidden;
}
.weekly-schedule thead tr th:first-child {
    border-radius: 3px 0 0 0;
}
.weekly-schedule thead tr th:last-child {
    border-radius: 0 3px 0 0;
}
.weekly-schedule thead tr th .day {
    display: block;
    font-size: 1.2em;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 auto 5px;
    padding: 5px;
    line-height: 1.8;
}
.weekly-schedule thead tr th .day.active {
    background: #fff;
    color: #626e7e;
}
.weekly-schedule thead tr th .short {
    display: none;
}
.weekly-schedule thead tr th i {
    vertical-align: middle;
    font-size: 2em;
}
.weekly-schedule tbody tr {
    background: #fff;
}
.weekly-schedule tbody tr:nth-child(odd) {
    background: #eee;
}
.weekly-schedule tbody tr td {
    border: 1px solid #000;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #626e7e;
    position: relative;
    cursor: pointer;
    word-wrap: break-word;
    padding: 0.5em 0;
}
.weekly-schedule tbody tr td:last-child {
    border-right: 1px solid #626e7e;
}
.weekly-schedule tbody tr td.hour {
    font-size: 1.1em;
    padding: 0;
    color: #626e7e;
    background: #fff;
    border-bottom: 1px solid #626e7e;
    border-collapse: separate;
    min-width: 100px;
    cursor: default;
}
.weekly-schedule tbody tr td.hour span {
    display: block;
}
@media (max-width: 60em) {
    .weekly-schedule thead tr th .long {
        display: none;
    }
    .weekly-schedule thead tr th .short {
        display: block;
    }
    .weekly-schedule tbody tr td.hour span {
        padding: 1em;
        transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
    }
}
@media (max-width: 27em) {
    .weekly-schedule thead tr th {
        font-size: 65%;
    }
    .weekly-schedule thead tr th .day {
        display: block;
        font-size: 1.2em;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        margin: 0 auto 5px;
        padding: 5px;
    }
    .weekly-schedule thead tr th .day.active {
        background: #fff;
        color: #626e7e;
    }
    .weekly-schedule tbody tr td.hour {
        font-size: 1.1em;
        word-wrap: inherit;
        padding: 25px 0;
    }
    .weekly-schedule tbody tr td.hour span {
        transform: translateY(16px) rotate(270deg);
        -webkit-transform: translateY(16px) rotate(270deg);
        -moz-transform: translateY(16px) rotate(270deg);
    }
}