.clndr-grid {
    background: #f1f0ee;
    border-radius: 3px 3px 0 0;
}

.calendar-container {
    background: #fff;
}

.calendar-header {
    color: #333;
    padding: 15px 10px 5px;
    text-align: center;
    text-transform: uppercase;
}

.days-of-the-week {
    display: block;
}

.days-of-the-week,
.days {
    padding: 10px;
    overflow: auto;
}

.days {
    background: #fff;
}

.header-day,
.day {
    box-sizing: border-box;
    float: left;
    padding: 12px 0;
    text-align: center;
    width: calc(100% / 7);
}

.day.today {
    background: #fff;
    border: 1px solid #b11a21;
    border-radius: 50%;
    box-sizing: border-box;
    color: #b11a21;
    margin: -1px;
}
.day.adjacent-month {
    color: #aaa;
}
.day.event {
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}
.day.event:after {
    background: #003B7F;
    height: 3px;
    width: 50%;
    left: 25%;
    position: absolute;
    content: '';
    display: block;
    border-radius: 1px;
}
.day.past {
    color: #aaa;
}