.calendar-section {
	margin-bottom: 20px;
}

.calendar {
	margin: auto;
	min-width: 320px;
	font-weight: 400;
	padding: 10px;
	background: #fff;
	border: 1px solid #DDD;
	-webkit-box-shadow: 0px 4px 26px -22px rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 0px 4px 26px -22px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 4px 26px -22px rgba(0, 0, 0, 0.14);
}

.calendar_weekdays {
	color: #aaa;
	font-weight: 300;
}
.calendar_weekdays div {
	display: inline-block;
	vertical-align: top;
	color: #222;
}

.calendar_content, .calendar_weekdays, .calendar_header {
	position: relative;
}
.calendar_content:after, .calendar_weekdays:after, .calendar_header:after {
	content: ' ';
	display: table;
	clear: both;
}

.calendar_weekdays div, .calendar_content div {
	width: 14.28571%;
	font-weight: normal;
	line-height: 55px;
	overflow: hidden;
	text-align: center;
	background-color: transparent;
}

.calendar_content div {
	float: left;
	border: 1px solid transparent;
	border-radius: 5px;
	font-weight: 500;
}
.calendar_content div:hover {
	border: 1px solid #ededed;
	cursor: pointer;
}
.calendar_content div.blank:hover {
	cursor: default;
	border: none;
}
.calendar_content div.past-date {
	cursor: initial;
	color: #d5d5d5;
}
.calendar_content div.today {
	color: #fff;
	background-color: #E5B419;
}
.calendar_content div.selected {
	/*background-color: rgba(153, 153, 161, 0.2);*/
	background-color: #E5B419;
	color: #FFF;
	border: 1px solid white;
}

.calendar_header {
	width: 100%;
	text-align: center;
	position: relative;
	height: 55px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #DDD;
	padding: 10px;
}
.calendar_header h2 {
	font-weight: 500;
	font-size: 18px;
	color: #222 !important;
}

a.switch-month {
	background-color: transparent;
	padding: 0;
	outline: none;
	border: none;
	height: auto;
	width: 40px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #cccccc;
	-webkit-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s;
}
a.switch-month.switch-left {
    left: 0;
}
a.switch-month.switch-right {
    right: 0;
}

a.switch-month:hover {
	color: #222;
}

a.switch-month:active {
	background-color: transparent;
}
