/*CALENDAR*/
.fclear:after,
.fclear::after {
	content: '';
	height: 0.01px;
	display: block;
	clear: both;
}

#cal {
	max-width: 388px;
	min-width: 318px;
	width: -webkit-calc(100% - 2px);
	width: calc(100% - 2px);
	border: 1px solid #BBBBBB;
	border-bottom: 3px solid #BBBBBB;
}

#calendarHeader {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	background-color: #429F46;
	border-bottom: 3px solid #126414;
	padding: 6px 0px;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	color: #FFFFFF;
}

#calendarHeader > h3 {
	-webkit-flex-grow: 3;
	flex-grow: 3;
}

#calendarHeader > div {
	-webkit-flex-grow: 0.5;
	flex-grow: 0.5;
}

#prevMonth,
#nextMonth {
	display: block;
	width: 8px;
	height: 18px;
	background-image: url('images/iconArrow.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin: 4.5px auto 0px;
}

#nextMonth {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

#cal > ul,
#cal > ul:nth-of-type(2) > li > ul {
	display: -webkit-flex;
	display: flex;
}

#cal > ul:nth-of-type(1) {
	background-color: #D0D0D0;
	padding: 20px 20px 10px 20px;
}

#cal > ul:nth-of-type(2) {
	background-color: #FFFFFF;
	padding: 10px 20px 20px 20px;
}

#cal > ul:nth-of-type(2) {
	-webkit-flex-direction: column;
	flex-direction: column;
}

#cal > ul:nth-of-type(1) > li,
#cal > ul:nth-of-type(2) > li > ul > li {
	display: -webkit-flex;
	display: flex;
	max-width: 49px;
	min-width: 38px;
	width: 100%;
	height: 30px;
	font-size: 18px;
	text-align: center;
	color: #808080;
	position: relative;
	-webkit-flex: 1;
	flex: 1;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	line-height: 20px;
}

#cal > ul:nth-of-type(1) > li:nth-child(7n+1),
#cal > ul:nth-of-type(2) > li > ul > li:nth-child(7n+1) {
	color: #FF1313;
}

#monthDays > li.today > div:nth-child(1) {
	text-decoration: underline;
}