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

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


/***** MONTHS *****/
.hb-months{
	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: 46px;
	font-size: 36px;
	font-weight: 200;
}

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

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

.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: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10px;
	background-color: #fff;
	/*border-radius: 3px;
	box-shadow: 0px 1px 4px #999;*/
	border:1px solid #DEDEDE;
}

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

.hb-day{
	float: left;
	display: inline-block;
	width: 13.5%;
	height: 70px;
	line-height: 35px;
	margin: 1px;
	text-align: center;
	border-radius: 1px;
	font-size: 12px;
	transition: .2s;
	padding-top:20px;
	font-weight:600;
	font-size:16px;
}

.hb-day.hb-day-name{
	margin-bottom: 6px;
	color: #333;
	font-size: 14px;
}

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

.hb-day.hb-day-active:hover{
	background-color: #05ab2c;
}

.hb-day.hb-day-selected, .hb-day.hb-day-selected:hover{
	background-color: #05ab2c;
	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; }
#hb-event-list{ margin-top:-5px; }
#hb-event-list .event{ padding:10px;  border-top:none;  }
#hb-event-list .event h3{ font-size:18px; width:100%; float:left; }
#hb-event-list .event p{ margin-bottom:5px;  }
.event-list-main{ float:left; margin-top:20px; width:100%; }
.events-div{ padding:10px; border:1px solid #DEDEDE; border-top:none; padding-top:20px; }
.event-list{ width:100%; margin:10px 0px; border-bottom:1px solid #DEDEDE; border-left:4px solid #555; }
.event-list:hover{ border-left:4px solid #F00; }
.event-list-date{ float:left; width:25%;  height:100%; padding:5px 0px; }
.event-list-date .day{ width:100%; text-align:center; color:#00aeef; font-weight:800; font-size:32px; float:left; line-height:33px; }
.event-list-date .month{ width:100%; text-align:center; color:#444; font-weight:800; font-size:13px; float:left; text-transform:uppercase; }
.event-list-details{ float:left; width:75%; line-height:18px; padding-top:5px; }
.event-list-details a{ color:#333; font-weight:600; text-transform:uppercase; font-size:14px; line-height:16px !important; }
.event-list-details span{ font-size:12px; font-weight:400; padding:5px 0px; }