.hb-datepick-wrapper {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0,0,0,0.33), 0 0 3px rgba(0,0,0,0.2);
    margin: 10px 0;
    padding-top: 0;
    position: relative;
}

.datepick-popup {
    z-index: 99999;
}

.hb-dp-month {
    float: left;
    padding: 0 5px 10px;
    width: 300px;
}

.hb-dp-month-header {
    font-size: 21px;
    line-height: 60px;
    text-align: center;
}

.hb-dp-week-header div,
.hb-dp-day {
    float: left;
    height: 35px;
    line-height: 28px;
    text-align: center;
    width: 14.2%;
}

.hb-dp-day a:active,
.hb-dp-selected {
    font-weight: bold;
}

.hb-dp-day > span {
    color: #aaa;
    display: inline-block;
    height: 30px;
    width: 100%;
}

.hb-dp-week-header {
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
}

.hb-dp-cmd-wrapper a {
    background: #333;
    border-bottom: 0;
    color: #fff;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    height: 30px;
    line-height: 27px;
    outline: none;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 15px;
    width: 30px;
}

.hb-dp-cmd-wrapper a:hover {
    background: #6f6f6f;
}

.hb-dp-cmd-wrapper a.hb-dp-disabled {
    background: #aaa;
    color: #fff;
    cursor: default;
}

.hb-dp-cmd-prev {
    left: 12px;
    text-indent: -1px;
}

.hb-dp-cmd-next {
    right: 12px;
    text-indent: 2px;
}

.hb-dp-rtl .hb-dp-cmd-prev {
    left: auto;
    right: 12px;
}

.hb-dp-rtl .hb-dp-cmd-next {
    left: 12px;
    right: auto;
}

.hb-dp-multi .hb-dp-month:not(.first) {
    border-left: 1px solid #ccc;
    padding-left: 10px;
}

.hb-dp-multi .hb-dp-month:not(.last) {
    padding-right: 10px;
}

.hb-dp-month-row + .hb-dp-month-row {
    border-top: 1px solid #ccc;
}

.hb-dp-rtl {
	direction: rtl;
}

.hb-dp-rtl .hb-dp-week-header div,
.hb-dp-rtl .hb-dp-day {
    float: right;
}

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