/***** 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: 20px;
	color: #666;
	
	
}

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


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

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

.hb-current-month{
	
	line-height: 50px;
	font-size: 22px;

}

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

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

.hb-prev-month{
	border: 1px solid #cbd1d2;
	border-radius: 50%;
	color: #cbd1d2;
	height: 56px;
	font-size: 36px;
	line-height: 50px;
	
	position: absolute;
	left: 15px;
	width: 56px;
}
.hb-prev-month:hover,.hb-next-month:hover {
	border: 1px solid  #8F8F8F;
	
	}

.hb-next-month{
border: 1px solid #cbd1d2;
	border-radius: 50%;
	color: #cbd1d2;
	height: 56px;
	font-size: 36px;
	line-height: 50px;
	
	position: absolute;
	right: 15px;
	width: 56px;
}


/***** DAYS *****/
.hb-days{
	width: 700px;
	height: auto;
	margin: 0 auto;
	padding: 15px;
	




background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 0%, rgba(240,240,240,0) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(0%, rgba(246,246,246,1)), color-stop(100%, rgba(240,240,240,0)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 0%, rgba(240,240,240,0) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 0%, rgba(240,240,240,0) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 0%, rgba(240,240,240,0) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 0%, rgba(240,240,240,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0', GradientType=0 );






	
	
}

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

.hb-day{
	float: left;
	display: inline-block;
	width: 93px;
	height: 55px;
	line-height: 55px;
	
	text-align: center;
	
	font-size: 13px;
	transition: .2s;
	border-bottom:1px solid  #EDEDED;
}

.hb-day.hb-day-name{
	
	color: #333;
	font-size: 14px;
	font-weight:bold;
}

.hb-day.hb-day-active{
	color:#fff;
	background:url(../images/big_dot_01.png) center center no-repeat;
	
	cursor: pointer;
	font-weight:bold;
	

	
	
}

.hb-day.hb-day-active:hover{
	background:url(../images/big_dot_03.png) center center no-repeat;
	color:#fff;
	

}

.hb-day.hb-day-selected, .hb-day.hb-day-selected:hover{
	background:url(../images/big_dot_03.png) center center no-repeat;
	color:#fff;
	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; }