/***** 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;
}

#eventsCalendarWrapper {
	position:relative;
}
#eventsCalendarWrapper .eventCalendarDate {
	padding: 0 10px;
}
#eventsCalendarWrapper .closewrapper {
	padding: 0 10px;
}
.hb-calendar{
/*	height: 335px; */
/*	margin-bottom: 20px; */
	color: #666;
	font-family: "Trebuchet MS";
}

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


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

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

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

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

.hb-change-month{
	position: absolute;
	top: 9px;
	display: inline-block;
	width: 16px;
	height: 12px;
}

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

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


/***** DAYS *****/
.hb-days{
	width: auto;
	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: calc(100%/7.6);
	height: 21px;
	line-height: 20px;
	margin: 1px;
	text-align: center;
	border-radius: 4px;
	font-size: 12px;
	transition: .2s;
}

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

.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;
	cursor: default;
}

#hb-event-list {
	position: absolute;
	top: 0;
/*	height: 100%;
	width: 100%; */
	overflow-y: auto;
	background-color: #fff;
	padding: 0;
}

#hb-event-list .event {
	padding: 0 10px;
}

#hb-event-list p {
	padding: 0 5px;
	font-size: 13px;
}

#hb-event-list .close {
	float: right;
}


/* 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; }
