.schedule-selector {
    margin: 10px 0px;
    width: 100%;
}

.schedule-day {
    display: inline-block;
    width: 40px;
    text-align: center;
    line-height: 22px;

    border: #838a9d 1px solid;

    margin: 4px 3px 4px 0px;

    border-radius: 4px;

    font-weight: bold;
    font-size: 14px;

    color: #453f4d;

    cursor: pointer;
}

.schedule-day:last-child {
    margin-right: 0px;
}

.schedule-day:hover {
    color: #453f4d;
}

.schedule-day.selected {
    background-color: #d14c47;
    border: none;
    color: #FFF;
}

.schedule-table {
    font-size: 16px;
}

.schedule-table td {
    padding-bottom: 5px;
    vertical-align: top;
}

.schedule-table td:first-child {
    padding-left: 18px;
    width: 76px;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 720px) {
    .schedule-day {
        width: 66px;
        line-height: 32px;

        margin: 10px 14px 10px 0px;

        border-radius: 6px;
    }

    .schedule-table {
        font-size: 18px;
        line-height: 2.2;
    }

    .schedule-table td {
        padding-bottom: 5px;
    }

    .schedule-table td:first-child {
        padding-left: 32px;
        width: 140px;
    }
}
