/* rescalendar */
.rescalendar{
	/* max-width: 1000px; */
	overflow: hidden;
	margin: 0 auto;
	position: relative;
}

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

.rescalendar_controls input{
	text-align: center;
	border: none !important;
}

.rescalendar_table{
	padding-top: 10px;
	/* margin: 0 auto; */
}

.rescalendar_table .firstColumn{
	/* width: 100px; */
	text-align: left;
	display: none;
	visibility: hidden;

}


.rescalendar_day_cells td{
	width: 22px;
	/* border-radius: 5px; */
}

.rescalendar_day_cells td.disabledDay{
	color: #aaa;
	background: #eee;
	cursor: not-allowed;
}

.rescalendar_day_cells span{
	display: block;
	padding: 0 2px 0px;
	font-size: 14px;
	width: 100%;
	/* min-width: 74px; */
	min-width: 72px;
}

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

.rescalendar_day_cells td.today{
	/* border: none !important; */
	color:#000 !important;
	/* background: none !important; */
	font-family: Psemibold;
}

.rescalendar_day_cells td.middleDay{
	/* background: #00366E;
	color: #fff; */
	border-bottom: 2px solid #00366E;
}

.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: #00366E;
	color: #fff;
	padding: 15px;
}



.move_to_yesterday {
    position: absolute;
    bottom: 15px;
	left: 0;
	background-image: url(../../imag_src/move-to-next2.png);
	background-size: 15px;
	background-position: left bottom;
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	border: none;
	cursor: pointer;
}


.move_to_tomorrow {
    position: absolute;
    bottom: 15px;
	right: 0;
	background-image: url(../../imag_src/move-to-next1.png);
	background-size: 15px;
	background-position: right bottom;
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	border: none;
	cursor: pointer;
}

.move_to_last_month{
	

	background-image: url(../../imag_src/move-to-next2.png);
	background-size: 15px;
	background-position: right;
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	border: none;
	cursor: pointer;
}


.move_to_next_month{


	background-image: url(../../imag_src/move-to-next1.png);
	background-size: 15px;
	background-position: left;
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	border: none;
	cursor: pointer;
}


.rescalendar_day_cells {
    width: 100%;
    display: block;
    /* max-width: 250px; */
}

.rescalendar_controls{
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-evenly;
	padding: 10px;
}