/***** CALENDAR *****/
.hb-calendar, .hb-calendar *{ -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: 65px; margin:0 30px; margin-bottom: 15px; text-align: center; border-bottom: 2px solid #eeeeee; }
.hb-months:after { content: ""; display: table; clear: both; }

.hb-current-month{ line-height: 25px; font-size: 25px; font-weight: bold; color:#252525 !important; }
.hb-current-month span{ display: block; margin-top: 10px; line-height: 14px; font-size: 14px; color: #A2A2A2 !important; font-weight:normal; }

.hb-change-month{ position: absolute; top: 16px; display: inline-block; width: 12px; height: 12px; background:center center no-repeat; background-size:contain; }

.hb-prev-month{ left: 0px; background-image: url("iconPrev.png"); }
.hb-next-month{ right: 0px; background-image: url("iconNext.png"); }


/***** DAYS *****/
.hb-days{ height: auto; margin: 30px; box-sizing:border-box; }
.hb-days:after { content: ""; display: table; clear: both; }

.hb-day{ display: inline-block; width: 14%; height: 40px; line-height: 40px; text-align: center; border-radius: 1px; font-size: 17px; transition: .2s; border-radius:100%;  }
.rtl .hb-day { float: right; }
.ltr .hb-day { float: left; }


.hb-day.hb-day-name{ margin-bottom: 6px; color: #333; font-size: 14px; }
.hb-day.hb-day-active{ color: #fff; background-color: #14b6dd; cursor: pointer; }
.hb-day.hb-day-active:hover{ background-color: #2CC6EB; }
.hb-day.hb-day-selected, .hb-day.hb-day-selected:hover{ background-color: #aaa; cursor: default; }

/* LOADER */
.hb-loading:before{ content: url("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; }