#calendar {
	width: 100%;
	
}

#calendar-wrap {	}
	
#calendar a {
	/*color: #666;*/
	text-decoration: none;
	font-weight:bold;
}

#current-month {font-size:larger}
#calendar ul, .calendar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

	

.calendar ul.month-browser li{
	width:33%;
	padding:0;border:0;
	text-align:center;
	text-transform:uppercase;
	height:auto;
	margin:20px 0;
	display: inline-block;
	}

#calendar li {
	display: block;
	float: left;
	width:14.33%;
	padding: 5px;
	box-sizing:border-box;
	border: 1px solid #ccc;
	margin-right: -1px;
	margin-bottom: -1px;
}



#calendar ul.weekdays {
	height: 40px;
	background: #1a80b6;
}

#calendar ul.weekdays li {
	text-align: center;
	text-transform: uppercase;
	line-height: 20px;
	border: none !important;
	padding: 10px 6px;
	color: #fff;
	font-size: 13px;
	
}



#calendar .days li {
	/*min-height: 180px;*/
}

#calendar .days li:hover {
/*	background: #d3d3d3;
*/}

#calendar .date {
	text-align: center;
	margin-bottom: 5px;
	padding: 4px;
	background: #77bc1f;
	color: #fff;
	width: 30px;
	border-radius: 50%;
	float: right;
	

}

#calendar .event, #calendar .event-f {
	clear: both;
	display: block;
	font-size: 13px;
	border-radius: 4px;
	padding: 5px;
/*	margin-top: 40px;
*/	margin-bottom: 5px;
	line-height: 14px;
	background-color: rgba(0,119,182,0.1);
	border: 1px solid rgba(0,119,182,0.3);
	color: #1a80b6;
	text-decoration: none;
}
/*featured*/
#calendar .event-f {
background-color: rgba(136,176,128,0.1);
	border: 1px solid rgba(136,176,128,0.3);
	color: #4db039;
	}
#calendar .event-f a {color:#77bc1f}
	
#calendar .event-desc {
/*	color: #666;
	margin: 3px 0 7px 0;*/
	text-decoration: none;	
}

#calendar .event-desc a.btn {color:#fff;  white-space: normal;}
#calendar .event-desc a.btn {margin-top:2px}

#calendar .other-month {
	background: #f5f5f5;
	color: #666;
}

/* ============================
				Mobile Responsiveness
   ============================*/


@media(max-width: 768px) {

.calendar ul.month-browser li{
	width:30%;
}
	#calendar .weekdays, #calendar .other-month {
		display: none;
	}

	#calendar li {
		height: auto !important;
		border: 1px solid #ededed;
		width: 100%;
		padding: 10px;
		margin-bottom: -1px;
	}

	#calendar .date {
		float: none;
	}
	







}




















































