.dashCardHeader {
	font-size: 1.5em;
	text-align: center;
}
.required:after {
	content:"*";
	color: red;
}
/* Calendar */
.calendar-header {
	margin-bottom: 20px;
}

.calendar-navigation a {
	color: transparent;
	font-size: 0;
	display: inline-block;
	text-align: center;
	width: 60px;
	height: 60px;
	margin-top: -6px;
	background-color: transparent;
	cursor: pointer;
}

.calendar-navigation a:after {
	font-family: 'FontAwesome';
	font-size: 12px;
	line-height: 60px;
	content: "\f054";
	color: #e5e5e5;
	padding: 0 0 0 3px;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.calendar-navigation a.prev:after {
	content: "\f053";
	padding: 0 3px 0 0;
}

.calendar-navigation a:hover:after {
	color: #a0a0a0;
}

.week-days,
.week-row,
.month-box {
	font-size: 0;
}

.week-days {
	position: relative;
	border-radius: 5px 6px 0 0;
	overflow: hidden;
	border-bottom: 5px solid #333;
}

.week-days > div {
	position: relative;
	display: inline-block;
	width: 14.285714%;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	color: #333;;
	text-align: center;
	padding: 8px 0;
}

.day-cell {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 14.285714286%;
	min-height: 150px;
	cursor: pointer;
	font-size: 20px;
}
.day-cell:hover {
	background-color: #F1F1F1;
}
.link-block {
	display: block;
	vertical-align: top;
	min-height: 150px;
	width: 100%;
	font-size: 20px;
	text-decoration: none;
}
.link-block-empty {
	display: block;
	vertical-align: top;
	min-height: 130px;
	width: 100%;
	font-size: 20px;
	text-decoration: none;
}
.work-time {
	display: block;
	font-size: .65em;
	background-color: #333;
	color: #F1F1F1;
	padding: 5px;
	width: 100%;
}
.work-time2 {
	display: block;
	font-size: .65em;
	background-color: #2b3f7c;
	color: #F1F1F1;
	padding: 5px;
	width: 100%;
}

.day-cell + .day-cell {
	border-left: 1px solid #e5e5e5;
}

.day-cell.not-cur-month {
	cursor: default;
}

.appointment-calendar .day-cell.selected-day,
.day-cell.today {
	background-color: #F1F1F1;
}

.day-cell.selected-day > *,
.day-cell.today > * {
	color: #3c3c3c;
}

.week-row {
	border: 1px solid #e5e5e5;
}

.week-row + .week-row {
	border-top: none;
}

.week-row:last-child {
	border-radius: 0 0 5px 5px;
}

.day-date {
	color: #3c3c3c;
}

.not-cur-month .day-date {
	color: #b2b2b2;
}