.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: 270px;
}

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

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

.c-grid {
    height: inherit;
}
.c-day {
    width: 14.28%;
    height: 13%;
    background-color: #eeeeee;
    float: left;
    text-align: center;
}

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

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

.c-week-day {
    width: 14.28%;
    height: 10.38%;
    /* background-color: rgb(145, 172, 203); */
    color: #303131;
    float: left;
    text-align: center;
    font-weight: bold;
    padding-top: 1%;
}

.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: rgb(137, 163, 192) !important;
    font-weight: bold;
}


.c-event {
    /*background-color: rgb(166, 166, 166);*/
    color: white;
    cursor: pointer;
    position: relative;
}
.c-event div{
    width: 30px;
    height: 30px;
    border: 2px solid #16b319;
    background: #16b319;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    left: 7px;
    line-height: 27px;
}
.c-event-before-week div{
    width: 30px;
    height: 30px;
    border: 2px solid #b31616;
    background: #b31616;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    left: 7px;
    line-height: 27px;
}
.c-event-after-week div{
    width: 30px;
    height: 30px;
    border: 2px solid #aeb33a;
    background: #aeb33a;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    left: 7px;
    line-height: 27px;
}
.c-today {
    color: #b31616;
    font-weight: bold;
}

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

.c-event-grid {
    margin-left: 1px;
    height: inherit;
    width: 300px;
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 5px #888888;
    z-index: 1000;
}
.c-event-grid:hover{
    display: block;
}
.c-grid-title {
    font-weight: bold;
    float: left;
    /* background-color: rgb(112, 145, 183); */
    color: #2c3131;
}

.c-event-title {
    width: 100%;
    height: 12%;
    text-align: center;
    font-weight: bold;
    background-color: rgb(135, 155, 188);
    color: white;
}

.c-event-body {
    background-color: #ffffff;
    height: 88.1%;
}

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

.c-event-item > .title {
    font-weight: bold;
}
.c-event-item a> .title {
    font-weight: bold;
}

.c-event-item > div {
    text-overflow: ellipsis;
    width: inherit;
    overflow: hidden;
    white-space: nowrap;
}

.c-event-item {
    padding-left: 10px;
    margin-bottom: 10px;
    display: none;
}

.c-event-over {
    background-color: lightgray;
    font-weight: bold;
    color: black;
}

.c-event-over > .description {
    font-weight: normal;
}