/***** 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{
	height: 315px;
	/* margin-bottom: 20px; */
	color: #666;
	font-family: "Trebuchet MS";
}

.hb-calendar a{
	color: inherit;
	text-decoration: none;
	transition: .2s;
}


/***** MONTHS *****/
.hb-months{
	padding-top: 5px;
	position: relative;;
	height: 90px;
	margin-bottom: 15px;
	text-align: center;
	border-bottom: 1px solid #ccc;
}

.hb-months:after {
	content: "";
	display: table;
	clear: both;
}

.hb-current-month{
	line-height: 40px;
	font-size: 30px;
	font-weight: 200;
}

.hb-current-month span{
	display: block;
	margin-top: 10px;
	line-height: 5px;
	font-size: 24px;
	color: #666 !important;
}

.hb-change-month{
	position: absolute;
	bottom: 25px;
	display: inline-block;
	width: 30px;
	/* height: 40px; */
}


.hb-change-month .fa {
    font-size: 35px;
}

.hb-prev-month{
	left: 0px;
	/* background-image: url("images/iconPrev.png"); */
}

.hb-next-month{
	right: 0px;
	/* background-image: url("images/iconNext.png"); */
}


/***** DAYS *****/
.hb-days{
	/* width: 300px; */
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10px;
	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: 38px; */
	/* height: 26px; */
	/* line-height: 26px; */
	width: 13%;
	height: 26px;
	line-height: 30px;
	margin: 1px;
	text-align: center;
	border-radius: 1px;
	font-size: 12px;
	/* font-size: 20px; */
	transition: .2s;
}

.hb-day.hb-day-name{
	margin-bottom: 6px;
	color: #333;
	/* font-size: 14px; */
	font-size: 12px;
	font-weight: bold;
}

.hb-day.hb-day-active{
	color: #fff;
	background-color: #777;
	cursor: pointer;
}

.hb-day.hb-day-active:hover{
	background-color: #8a8a8a;
}

.hb-day.hb-day-selected, .hb-day.hb-day-selected:hover{
	/* background-color: #aaa; */
	background-color: #F2560E;
	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; }