/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


/* Month Header */

.acf-calendar-header {
	text-align: center;
}


/* Month Navigation */

.acf-calendar-nav {
	list-style: none;
	width: 100%;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 20px;
	margin-bottom: 50px;
}

.acf-calendar-nav:after {
  content: "";
  display: table;
  clear: both;
}

.acf-calendar-nav .acf-calendar-previous, 
.acf-calendar-nav .acf-calendar-next {
	width: 25%;
}

.acf-calendar-nav .acf-calendar-previous {
	float: left;
	text-align: left;
}

.acf-calendar-nav .acf-calendar-filter {
	float: left;
	text-align: center;
	width: 50%;
}

.acf-calendar-nav .acf-calendar-filter select {
	padding: 0 15px;
	margin: 0 auto;
}

.acf-calendar-nav .acf-calendar-next {
	float: left;
	text-align: right;
}


/* Calendar Month view */

.acf-calendar-month-wrap {
	overflow: auto;
}

.acf-calendar-month-view {
	width: 100%;
	border-collapse: collapse;
}

.acf-calendar-month-view th {
	border: 1px solid #dddddd;
	padding: 10px 5px;
	text-align: center;
}

.acf-calendar-month-view td {
	width: 14%;
	height: 125px;
	padding: 5px !important;
	vertical-align: top;
	border: 1px solid #dddddd;
}

.acf-calendar-month-view .acf-calendar-day-number {
	text-align: right;
	padding: 2px 5px;
}

.acf-calendar-month-view .acf-calendar-today {
	background: #eee;
}

.acf-calendar-month-view .acf-calendar-event-day {
	color: red;
}

.acf-calendar-month-view ul.acf-calendar-day-events-list {
	list-style: none;
	margin: 0;
	padding: 5px;
}

.acf-calendar-month-view .acf-calendar-day-events-list li {
	margin-bottom: 10px;
	font-size: 12px;
}

.acf-calendar-month-view .acf-calendar-event-link {
	display: block;
	font-size: 12px;	
}

.acf-calendar-other-month {
	background-color: #f7f7f7;
}


.acf-calendar-switch-view {
	text-align: center;
}