.calendar  * {
    box-sizing: border-box;
    font-family: Montserrat, "Times New Roman", Times, serif;
}
.calendar {
    cursor: default;
    width: 100%;
    /* width: 1400px; */
    height: 350px; 
}

.calendar .c-pad-top {
    /* padding: 10px; */

    
}

.c-grid {
    height: inherit;
/*    border: 2px solid #0275bc;*/
}
.c-day {
    width: 14.28%;
    height: 13%;
    /* background-color: #EFF4F9; */
    float: left;
    text-align: center;
/*    border-radius: 7px;*/
    padding-top: 2%;
}

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

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

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

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

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

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

.c-nav-btn-over {
    background-color: rgb(137, 163, 192) !important;
    font-weight: bold;
}

.c-today {
    background-color: rgb(137, 163, 192);
    color: #EFF4F9;
}

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

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

.c-event-grid {
    height: inherit;
    width: 66%;
    float: left;
/*    border-top: 2px solid #0275bc;
    border-right: 2px solid #0275bc;
    border-bottom: 1px solid #0275bc;*/
}

.c-grid-title {
    font-weight: bold;
    float: left;
    background-color: #0275bc;
    color: white;
    padding-top: 3% !important;
    letter-spacing: 0.1em;
}

.c-event-title {
    width: 100%;
    height: 15%;
    padding-top: 2%;
    text-align: center;
    font-weight:600;
    background-color: #0275bc;
    color: white;
    letter-spacing: 0.1em;
}

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

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

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

.c-event-item > div {
    width: inherit;
}

.c-event-item {
    padding-left: 20px;
    margin-bottom: 0px;
	font-size:12px;
	letter-spacing:0,1em;
	text-transform:uppercase;
	color:#000000;
	
}

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

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

@media (max-width: 1200px) {
    .calendar {
        cursor: default;
        /* width: 940px; */
        height: 270px;
    }
}

@media (max-width: 991px) {
    .calendar {
        cursor: default;
        /* width: 720px; */
        height: 270px;
    }
}

@media (max-width: 767px) {
    .calendar {
        cursor: default;
        width: 100%;
        height: 540;
    }

    .c-grid {
        clear: both;
        width: inherit;
        height: 270px;
    }

    .c-event-grid {
        width: inherit;
        float: left;
        height: 270px;
        padding-top: 20px;
        /* border-left: 2px solid #0275bc; */
    }
}