/* 
 * jQuery yacal's Demo CSS
 * 
 * Author: Eduardo Ludi (@eduludi)
 * More info: http://eduludi.github.io/jquery-yacal/
*/
.wrap {
	position: relative;
	display: inline-block;
}

/* Same as Bootstrap's .clearfix */
.clearfix {
	display: table;
	content: " ";
	clear: both;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.yclNav {
}
.prev,
.next {
	z-index: 100;
	position: absolute;
	display: block;
	margin-top: -0px;
	border-radius: 15px;
	border: 1px solid transparent;
	width: 30px;
	height: 30px;
}
.prev:hover,
.next:hover {
	border-color: gray;
}
.prev::before,
.next::after {
	position: absolute;
	/*top: 3px;*/
	color: gray;
	font-weight: bold;
}
.prev span,
.next span {
	display: none;
}
.prev {
	left: 10px;
}
.prev::before {
	content: '←';
	font-size: 30px;
	left: 0px;
}
.next {
	right: 10px;
}
.next:after {
	content: '→';
	font-size: 30px;
	right: 0px;
}

.month {
	z-index: 5;
	position: relative;
	float: left;
	margin: 10px 5px;
	border-radius: 2%;
	min-height: 266px; /*this avoids jumping*/
}
.month p {
	text-align: center;
	margin-bottom: 10px;
	padding: 0px;
	border-bottom: 0px solid lightgray;
	overflow: hidden;
	font-size: 20px;
}

.week {
	position: relative;
	height: 32px;
	width: 270px;
	margin: 0 4px;
	border: 0 solid transparent;
	border-width: 1px 0;
}
.week:not(.week0):hover {
	/*border-color: lightgray;*/
}

.day,
.wday {
	/*display: block;*/
	width: 30px;
	height: 30px;
	line-height: 28px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 38px;
	font-size: 18px;

	
}
.day.weekend {

	/*color: #9c9 !important;*/
}
.day.today {
	background-color: #e82e6e;
	color: white !important;
}
.day.selected {
	background-color: #2ee8da;
	color: white !important;
}
.day.active {
	/*color: #333;*/
	cursor: pointer;
}
.day.active:hover {
	background-color: #ffb367;
	color: white !important;
}
.wday {

	font-size: 18px;
}
.day.d0,
.wday.wd0 {
	left: 0;
}
.day.d1,
.wday.wd1 {
	left: 40px;
}
.day.d2,
.wday.wd2 {
	left: 80px;
}
.day.d3,
.wday.wd3 {
	left: 120px;
}
.day.d4,
.wday.wd4 {
	left: 160px;
}
.day.d5,
.wday.wd5 {
	left: 200px;
}
.day.d6,
.wday.wd6 {
	left: 240px;
}