.hasDatepicker {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(18, 89, 188, 0.16);
}

.calendar {
    position: absolute;
    width: 280px;
    left: 50%;
    top: 50%;
    margin: -145px 0px 0px -140px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.ui-datepicker-header {
    height: 36px;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
    position: relative;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    content: "";
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
    margin: auto;
}

.ui-datepicker-prev {
    left: 0;
    background: url(datepicker-left.png) no-repeat center;
}

.ui-datepicker-next {
    right: 0;
    background: url(datepicker-right.png) no-repeat center;
}

.ui-datepicker-title {
    text-align: center;
}

.ui-datepicker-month {
    margin-left: -7px;
}

.ui-datepicker-calendar {
    width: 100%;
    text-align: center;
    border-spacing: 0;
}

.ui-datepicker-calendar thead tr th span {
    height: 48px;
    line-height: 48px;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    background-color: #1259bc;
    margin-bottom: 14px;
}

.ui-state-default {
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: block;
    text-decoration: none;
    color: #777777;
    font-size: 16px;
    margin: auto;
    border-radius: 50%;
    transition: all 0.2s;
}

.ui-state-default:hover {
    color: #115db2;
}

.ui-state-active {
    color: #115db2;
    font-weight: bold;
}

.ui-state-highlight {
    color: #115db2;
    font-weight: bold;
    background-color:transparent;
}

.ui-datepicker-unselectable .ui-state-default {
    color: #eee;
    border: 2px solid transparent;
}

.has-hy .ui-state-default {
    background-color: #777777;
    color: #fff;
    border-radius: 50%;
}

.has-hy.ui-datepicker-current-day .ui-state-default {
    color: #fff;
    position: relative;
    background-color: #115db2;
}

.has-hy.ui-datepicker-current-day .ui-state-default::after {
    position: absolute;
    content: '*';
    color: red;
    top: 0;
    right: 0;
    width: 4px;
    height: 4px;
    line-height: 4px;
}