/***** CALENDAR *****/
.hb-calendar, .hb-calendar * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .hb-calendar a {
        color: inherit;
        text-decoration: none;
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
    }


/***** MONTHS *****/
.hb-months {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.hb-current-month {
    line-height: 1em;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

    .hb-current-month span {
        display: inline-block;
        margin-left: 5px;
    }

.hb-change-month {
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    display: block;
    width: 8px;
    height: 12px;
}

.hb-prev-month {
    left: 0;
    background-image: url("../img/prev.png");
}

.hb-next-month {
    right: 0;
    background-image: url("../img/next.png");
}


/***** DAYS *****/
.hb-days {
    max-width: 400px;
    margin:0 -15px;
}

    .hb-days:after {
        content: "";
        display: table;
        clear: both;
    }

.hb-day {
    float: left;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 0 15px 15px;
    text-align: center;
    font-size: 14px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    background-color: #fff;
}

    .hb-day.hb-day-name {
        color: #fff;
        background: #111;
        font-weight: 700;
    }

    .hb-day.hb-day-active {
        color: #fff;
        cursor: pointer;
    }

    .hb-day.hb-day-multiple-events{
        position:relative
    }

        .hb-day.hb-day-multiple-events:before,
        .hb-day.hb-day-multiple-events:after {
            content: '';
            position: absolute;
            left:0;
            right:0;
            margin:auto;
        }

        .hb-day.hb-day-multiple-events:before {
            background: #d7e4e4;
            top: -6px;
            z-index: -2;
            width: 32px;
            height: 32px;
        }

        .hb-day.hb-day-multiple-events:after {
            top: -3px;
            background: #c4d0d0;
            z-index: -1;
            width:36px;
            height:36px;
        }

    .hb-day.hb-hidden {
        opacity: 0;
    }

/* 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-day.hb-day-active {
    background-color: #0099cc;
}

.hb-day.hb-day-selected {
    background-color: #0099cc;
}