/***** CALENDAR *****/
.hb-calendar, .hb-calendar *{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;

	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
}

.hb-calendar{
	margin-bottom:5px;
	color: #666;
	font-family: "Trebuchet MS";
}

.hb-calendar a{
	color: inherit;
	text-decoration: none;
	transition: .2s;
}


/***** MONTHS *****/
.hb-months{
	position: relative;;
	height: 40px;
	margin-bottom: 5px;
	text-align: center;
}

.hb-months:after {
	content: "";
	display: table;
	clear: both;
}

.hb-current-month{
	line-height: 36px;
	font-size: 26px;
	font-weight: 200;
}

.hb-current-month span{
	display: block;
	margin-top: 10px;
	line-height: 16px;
	font-size: 18px;
	color: #666 !important;
}

.hb-change-month{
	position: absolute;
	bottom: 20px;
	display: inline-block;
	width: 30px;
	height: 40px;
}

.hb-change-month-col{
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 40px;
}

.hb-prev-month{
	left: 5px;
	background: url("images/iconPrev.png");
}

.hb-next-month{
	right: 0px;
	background: url("images/iconNext.png");
}


/***** DAYS *****/
.hb-days{
	width: 265px;
	height: auto;
	margin: 0 auto;
	padding: 5px;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0px 1px 4px #999;
}

.hb-days:after {
	content: "";
	display: table;
	clear: both;
}

.hb-day{
	float: left;
	display: inline-block;
	width: 34px;
	height: 24px;
	line-height: 24px;
	margin: 1px;
	text-align: center;
	border-radius: 1px;
	font-size: 12px;
	transition: .2s;
}
.hb-prev-day{
	opacity: 0.75;
	border: 1px solid #D5D6D5;
	background-color: #EBECEB;
}

.hb-current-day{
	color: #fff;
	background-color: #777;
	border-color: #777;
	cursor: pointer;
}

.hb-day.hb-day-name{
	margin-bottom: 6px;
	color: #7CC140;
	font-size: 12px;
}

.hb-day.hb-day-active{
	color: #fff;
	background-color: #7CC140;
	border-color: #7CC140;
	cursor: pointer;
}

.hb-day.hb-day-active:hover{
	background-color: #7CC140;
	border-color: #7CC140;
}

.hb-day.hb-day-selected, .hb-day.hb-day-selected:hover{
	background-color: #aaa;
	cursor: default;
}

/* LOADER */
.hb-loading:before{ content: url("images/iconLoading.gif"); display: block; width: 100%; text-align: center; }
.hb-error{ padding: 10px 15px; background-color: #f2dede; border: 1px solid #ebccd1; border-radius: 3px; color: #b84442; }