/* rescalendar */
.rescalendar{
	width: 100%;
	/*overflow: auto;*/
	margin: 0 auto;
}

.rescalendar_controls{
	margin-left: 65px;
	padding: 0;
}

.rescalendar_controls input{
	text-align: center;
}

.rescalendar_table{
	width:100%;
	padding-top: 10px;
	margin: 0 auto;
}

.rescalendar_table tbody td{
	border-bottom: 1px #888 dashed;
	padding:3px 0;
}

.rescalendar_day_cells td {
	top: 0;
	position: sticky;
	position: -webkit-sticky;
	z-index: 11;
}

.highlight {
	background:#fff !important;
	box-shadow: inset 0 0 1px #000;
	transition: all 0.3s ease;
}


.rescalendar_table .firstColumn{
	width: 240px;
	text-align: left;
	font-size:16px;
}

.rescalendar_day_cells td{
	width: 22px;
	border-radius: 5px;
	border:1px #dac solid;
	text-align:center;
}

.rescalendar_day_cells td.disabledDay{
	color: #aaa;
	background: #666;
}

.rescalendar_day_cells span{
	display: block;
	padding: 0 2px 0px;
	font-size: 14px;
	width: 22px;
}

.rescalendar_day_cells span.day{
	display: block;
	width: 30px;
}

.rescalendar_day_cells td.today{
	background: rgb(211, 0, 181);
	color: #fff;
}

.rescalendar_day_cells td.middleDay{
	border: 1px solid blue;
}

.rescalendar_day_cells td:hover{
	background: #eee;
	cursor: pointer;
	color: #000;
}


.rescalendar td a{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.rescalendar td .hasEvent{
	background: yellow;
}

.error_wrapper{
	width: 100;
	text-align: center;
	background: red;
	color: #fff;
	padding: 15px;
}

