#myc-container {
    width: inherit;
    overflow-y: scroll;
    max-height: 490px;
}
#myc-nav-container {
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    clear: both;
}
.today {
    position: relative;
}
.today span {
    position: absolute;
    top: 6px;
    display: block;
    width: 50px;
    height: 1.2rem;
    background: #c3002f;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 1.2rem;
    border-radius: 2px;
    font-weight: bold;
    color: #fff;
    left: 6px;
}
#myc-current-month-year-container {
    display: inline-block;
    font-size: 1.25em;
    font-weight: lighter;
    text-align: left;
    text-transform: capitalize;
    vertical-align: top;
    width: 68%;
    order: -1;
    flex: 1 0 70%;
}
#myc-prev-week-container {
    display: inline-block;
    width: 40px;
}
#myc-next-week-container {
    display: inline-block;
    width: 40px;
}
#myc-prev-week {
    border: 1px solid #d9d9d9;
    border-radius: 4px 0 0 4px;
    color: #e0e0e0;
    cursor: pointer;
    float: left;
    font-size: 1.6em;
    font-weight: lighter;
    height: 40px;
    text-align: center;
    width: 40px;
    border-right-width: 0;
}
#myc-next-week {
    border: 1px solid #d9d9d9;
    border-radius: 0 4px 4px 0;
    color: #e0e0e0;
    cursor: pointer;
    float: right;
    font-size: 1.6em;
    font-weight: lighter;
    height: 40px;
    text-align: center;
    width: 40px;
}

#myc-prev-week:hover, #myc-next-week:hover {
    border: 1px solid #bdbdbd;
    color: #bdbdbd;
}

#myc-prev-week:hover {
    border-right-width: 0;
}

#myc-week-container {
    border: 1px solid #d9d9d9;
}

#myc-dates-container {
    background-color: #fafafa;
}
.myc-date-header {
    display: inline-block;
    min-height: 50px;
    padding: 24px 0px 15px 15px;
    vertical-align: top;
    width: 13.77%;
    background: #fafbfc;
    border: none;
}
.myc-date-header:first-of-type {
    padding-left: 15px;
}
.myc-date-header:last-of-type {
    border-right: none;
    width: 13%;
}
#myc-available-time-container {
    border-top: 1px solid #e0e0e0;
    min-height: 150px;
    background: #fafbfc;
}
.myc-day-time-container {
    display: inline-block;
    height: 100%;
    padding: 15px 15px 0 15px;
    vertical-align: top;
    width: 13.77%;
}
.myc-day-time-container:first-of-type {
    padding-left: 15px;
}
.myc-day-time-container:last-of-type {
    border-right: none;
    width: 13%;
}
.myc-date-number {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 0.8;
    color: #333;
}
.myc-available-time {
    background-color: #fff;
    border-radius: 4px;
    color: #333;
    display: block;
    margin-bottom: 15px;
    padding: 10px 0px 10px 0px;
    text-align: center;
    border: 1px solid #d0d0d0;
    transition: ease all 0.2s;
}
.myc-available-time.selected, .myc-available-time:hover {
    background-color: #c3002f;
    color: #fff;
    text-decoration: none;
}
.myc-date-display {
    font-weight: lighter;
    line-height: 1;
    color: #939393;
}
@media only screen and (max-width: 768px) {
    .myc-date-header, .myc-day-time-container {
        width: 13.5%;
    }
    /*.myc-date-header:last-of-type, .myc-day-time-container:last-of-type {
        width: 12%;
    }*/
}

.myc-not-available-time {
    background-color: #fff;
    border-radius: 4px;
    color: #333;
    display: block;
    margin-bottom: 15px;
    padding: 10px 0px 10px 0px;
    text-align: center;
    border: 1px solid #a0a0a0;
    cursor: default;
}
.myc-not-available-time.day-busy:hover {
    background: #fff;
}

.day-busy {
    opacity: 0.2;
}
.day-busy:hover {
    background: #29b6f6;
}
.clearboth {
    clear:both;
}