.calendar  * {
    box-sizing: border-box;
    font-family: Tahoma;
    font-size: 12px;
}
.calendar-sm {
    cursor: default;
    width: 800px;
    height: 370px;
}
.calendar {
    cursor: default;
    /*position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 550px; */
    width: 100%;
    height: 250px;
}

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

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

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

.c-day[title]:hover span{
   background-color:#e5e5e5;
   color:rgb(0, 204, 255);
}

.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: #790079;
    color: white;
    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(89, 0, 89) !important;
    font-weight: bold;
}

.c-today {
    background-color: #6F006F;
    color:#FFFFFF;
    border-radius: 5px;
    
}
.c-grid {
    float: left;
    width: 50%;
    
}

.c-event-grid {
    margin-left: 1px;
    height: inherit;
    width: 49%;
    float: left;
    box-shadow: 2px 2px 5px #888888;
}

.c-grid-title 
{
    font-family  :Georgia, Arial Unicode MS, "Times New Roman", Times, serif;
    font-size:14px;
    font-weight: bold;
    float: left;
    background-color: #6F006F;
    color: #FFFFFF;
    
}

.c-event-title {
    width: 100%;
    height: 12%;
    font-family  :Georgia, Arial Unicode MS, "Times New Roman", Times, serif;
    font-size:14px;
    text-align: center;
    font-weight: bold;
    background-color: #6F006F;
    color: #FFFFFF;
}

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

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

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

.c-event-item > div {
    text-overflow: initial;
    width: inherit;
    overflow: auto;
}
    

