/* DCWD Calendar CSS */
main.calendar li {
	list-style-type: none;
}

main.calendar ul {
	margin: 0px;
	padding: 0px;
}

#cal_nav {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cal_nav .prev_btn, #cal_nav .next_btn {
	border: 1px solid #000;
	padding: 8px 15px;
	color: #194483;
	width: 120px;
	text-align: center;
	cursor: pointer;
	font-weight: 600;
}

.prev_btn svg, .next_btn svg {
	padding-top: 3px;
}

#cal_nav .prev_btn:hover, #cal_nav .next_btn:hover {
	background: #f6f6f6;
}

#cal_table {
	table-layout: fixed;
	width: 100%;
	word-break: normal;
}

#cal_table th {
	border: 1px solid #000;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #194483;
	padding: 15px;
	width: 14.28%;
	background: #f6f6f6;
	word-wrap: normal;
}

#cal_table td {
	border: 1px solid #000;
	text-align: left;
	font-size: 14px;
	color: #000;
	padding: 4px;
	background: #f6f6f6;
	line-height: 16px;
	vertical-align: top;
	word-wrap: normal;
}

#cal_table td .day_number {
	text-align: right;
	font-size: 24px;
	font-weight: 600;
	color: #194483;
	margin-bottom: 4px;
	line-height: 28px;
	padding: 4px;
	margin-right: 2px;
}

#cal_table .day_current {
	background: rgb(230, 230, 230);
}

#cal_table .event-list li {
	margin-bottom: 11px;
	cursor: pointer;
	transition: all 0.75s ease;
	padding: 4px;
}

#cal_table .event-list li:hover {
	color: #194483;
	transition: all 0.75s ease;
}

#cal_table .event-list li .time {
	font-weight: bold;
}

#cal_table .event-list li .title {
	
}

#cal_view {
	text-align: right;
	margin-bottom: 40px;
}

#cal_view .btn {
	display: inline-block;
	text-align: center;
	color: #000;
	border: 1px solid #000;
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

#cal_view .btn:last-child {
	border-left: none;
}

#cal_list, #cal_table {
	display: none;
}

#cal_list .event-hidden {
	display: none;
}

#cal_list .event-item {
	background: #f6f6f6;
	margin-bottom: 35px;
	padding: 20px;
	border: 1px solid #000;
}

#cal_loader {
	display: none;
	background: #000;
	color: #fff;
	line-height: 70px;
	border-radius: 5px;
	text-align: center;
	width: 150px;
	height: 70px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -75px;
	z-index: 999;
}

#cal_filters {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 50px;
}

#cal_locations {
	border: 1px solid #000;
	background: #f6f6f6;
	padding: 10px 15px;
	font-size: 13px;
	width: 260px;
	margin-right: 20px;
}

#cal_locations h4, #cal_locations li {
	padding: 0px 5px;
}

#cal_filters li {
	display: block;
}

#cal_filters input, #cal_filters label {
	vertical-align: middle;
}

#cal_cats {
	border: 1px solid #000;
	background: #f6f6f6;
	padding: 10px 20px;
	font-size: 13px;
	width: 100%;
}

#cal_locations h4, #cal_cats h4 {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

.flex-cols-row {
	display: flex;
	justify-content: space-between;

}

#cal-slidebar {
	padding: 15px 15px 30px;
	background: #F6F6F6;
	-webkit-box-shadow: -3px 0px 13px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: -3px 0px 13px 0px rgba(0,0,0,0.2);
	box-shadow: -3px 0px 13px 0px rgba(0,0,0,0.2);
	color: #000;
	height: 100vh;
	width: 300px;
	position: fixed;
	top: 0;
	right: -320px;
	z-index: 99999;
	overflow-y: scroll;
}

#cal-slidebar .close-btn {
	margin-bottom: 20px;
	cursor: pointer;
}

#cal-slidebar .close-btn:hover {
	color: #194483;
}

#cal-slidebar h3 {
	margin-bottom: 25px !important;
	text-decoration: none !important;
}

#cal_cats label {
	margin-bottom: 0px;
}

#cal_locations label {
	margin-bottom: 0px;
}

@media only screen and (max-width: 1200px) {
	#cal_cats .flex-cols-row {
		flex-wrap: wrap;
	}

	#cal_locations {
		width: 260px;
	}
}

@media only screen and (max-width: 800px) {
	#cal_cats .flex-cols-row {
		flex-direction: column;
	}

	#cal_locations {
		width: 400px;
	}

	#cal_table th, #cal_table td {
		font-size: 10px;
	}

	#cal_nav .current_month h1 {
		font-size: 24px;
	}

	#cal_nav .prev_btn, #cal_nav .next_btn {
		font-size: 12px;
		width: 105px;
	}
}

@media only screen and (max-width: 735px) {
	#cal_filters, #cal_view {
		display: none;
	}
	#genesis-content {
		padding: 0;
	}
	#cal_nav .prev_btn, #cal_nav .next_btn {
		font-size: 10px;
		width: 81px;
	}
	#cal_nav .current_month h1 {
		font-size: 14px;
	}
	#cal_list .event-item h3 {
		font-size: 18px;
	}
	#cal_list .event-item {
		font-size: 14px;
	}

}

