.calendar  * {
    box-sizing: border-box;
    font-family: Tahoma;
    font-size: 14px;
}
.calendar-sm {
    cursor: default;
    width: 800px;
    height: 370px;
}
.calendar {
    cursor: default;
    width: 100%;
    height: auto;
}

.calendar-sm .c-pad-top {
    padding-top: 2%;
    padding-bottom: 2%;
}

.calendar .c-pad-top {
    padding-top: 3%;
    padding-bottom: 3%;
}

.c-grid {
    box-shadow: 2px 2px 5px #888888;
    height: inherit;
}
.c-day {
    width: 14.28%;
    height: 13%;
    background-color: #f1f1f1;
    float: left;
    text-align: center;
}

.c-day-previous-month {
    width: 14.28%;
    height: 13%;
    background-color: #F9FBFD;
    float: left;
    text-align: center;
    color: gray;
}

.c-day-next-month {
    width: 14.28%;
    height: 13%;
    background-color: #F9FBFD;
    float: left;
    text-align: center;
    color: gray;
}

.c-week-day {
    width: 14.28%;
    height: 10.38%;
    background-color: #dd0074;
    color: white;
    float: left;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    padding-top: 1%;
    border-right: 1px solid #fd66b5;
}

.c-next {
    width: 12.5%;
    height: 12%;
    padding: 2% 2% 0 2%;
    text-align: right;
    cursor: pointer;
}

.c-previous {
    width: 12.5%;
    height: 12%;
    padding: 2% 2% 0 2%;
    text-align: left;
    cursor: pointer;
}

.c-month {
    width: 75%;
    height: 12%;
    text-align: center;
}

.c-nav-btn-over {
    background-color: #fd66b5 !important;
    font-weight: bold;
}

.c-today {
    background-color: #D8EAF1;
}

.c-event {
    background-color: #dd0074;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.c-grid {
    float: left;
    width: 50%;
}

.c-event-grid {
    height: inherit;
    width: 49%;
    float: left;
}

.c-grid-title {
    font-weight: bold;
    float: left;
    background-color: #b1005d;
    color: white;
}

.c-event-title {
    width: 100%;
    height: 12%;
    text-align: center;
    font-weight: bold;
    background-color: #b1005d;
    color: white;
}

.c-event-body {
    background-color: #f1f1f1;
    height: 416px;
}

.c-event-list {
    padding: 7 0 0 0;
    overflow: auto;
    height: 95%;
}

.c-event-item > .title {
    color: #949494;
    font-size:14px;

}
.c-event-item > .title a.link  {
    color: #b1005d;

}
.c-event-item > .description {
    font-size:12px;

}

.c-event-item > .event-image {
    float: left;
    margin-right: 20px;
}
.c-event-item > .title h6 {
    font-weight: bold;
    color: #383838;
    margin-bottom: 10px;

}

.c-event-item > div {
    text-overflow: ellipsis;
    width: auto;
    overflow: hidden;
}

.c-event-item {
    padding: 10px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-top: 1px dotted #e5e5e5;
    height: 135px;
}

.c-event-over {
    background-color: #b1005d;
    font-weight: bold;
}

.c-event-list > .c-event-over  {
    font-weight: normal;
    background-color: #dbdbdb;

}

@media (min-width: 300px) and (max-width: 768px) {
    .c-grid {
        float: left;
        width: 100%;
    }
    .c-event-grid {
        width: 100%;
        float: left;
    }
    .c-event-item > .event-image {
        float: left;
        margin-right: 20px;
        width: 90px;
    }
    .c-event-item > .title h6 {
        font-weight: bold;
        color: #383838;
        margin-bottom: 0px;
        font-size: 10px;
    }
    .c-event-item > .title a.link {
        color: #b1005d;
        font-size: 10px;
    }
    .calendar * {
        box-sizing: border-box;
        font-family: Tahoma;
        font-size: 12px;
    }
    .c-week-day {
        font-size: 7px;
    }
}