.kc-datepicker-holder {
    display: flex;
}
.kc-calendar-container {
    width: 270px;
}
.kc-calendar-container .kc-datepicker-holder {
    display: block;
}
.kc-datepicker-block {
    margin: 0px 5px;
}
.kc-datepicker-container {
    position: absolute;
    z-index: 99;
    background-color: #fff;
    padding: 10px 5px;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 40%);
}
.kc-datepicker-title {
    background-color: #02add2;
    color: #fff;
    padding: 5px;
    line-height: 25px;
    text-align: center;
    font-size: 16px;
}
.kc-datepicker-select {
    width: calc(100% - 4px);
    padding: 5px;
    margin: 2px;
    font-size: 14px;
}
.kc-datepicker-body {
    margin-top: 5px;
    border-radius: 12px;
    background-color: #ECEFF3;
    border: none;
    color: #2e2e2e;
}
.kc-dp-column, .kc-cal-column{
    display: flex;
    flex-wrap: nowrap;
}
.kc-dp-column-head {
    color: #02add2;
    margin-top: 5px;
    margin-bottom: 5px;
}
.kc-dp-column-head div {
    width: 100%;
    text-align: center;
    line-height: 35px;
    font-size: 14px;
}
.kc-dp-date {
    width: 100%;
    min-width: 35px;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    height: 35px;
    margin: 1px;
    border-radius: 7px;
    font-size: 14px;
}
.kc-cal-date {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 7px;
    font-size: 14px;
    margin: 5px;
    padding: 5px;
    border: 2px solid #cfc8c8ba;
}
.kc-dp-bs-se-date, .kc-dp-gr-se-date {
    cursor: pointer;
}
.kc-dp-active-date, .kc-cal-active-date {
    background-color: #FFA000;
    color: #FFFFFF;
}
.kc-dp-non-se-date, .kc-cal-non-se-date {
    color: #bbc2cb;
    background-color: #f1f1f1;
}