.chw-datepicker__calendar {
    position: absolute;
    z-index: 20;
    background: #fff;
    width: 300px;
    border: 1px solid #ccc;
}

.chw-datepicker__calendar .cell {
    display: inline-block;
    padding: 0 5px;
    width: 14.285714285714286%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
}

.chw-datepicker__calendar .month{
    width: 31%;
}

.chw-datepicker__calendar header span {
    display: inline-block;
    text-align: center;
    width: 71.42857142857143%;
    float: left;
}

.chw-datepicker__calendar header {
    display: block;
    line-height: 40px;
}

.chw-datepicker * {
box-sizing: border-box;
}

.chw-datepicker__calendar header .prev, .chw-datepicker__calendar header .next {
    width: 14.285714285714286%;
    float: left;
    position: relative;
}

.day-picker {
    width: 330px;
    overflow-y: auto;
    margin: 0px;
}

.day-picker-button, .day-picker-blank {
    width: 14.28%;
    height: 46px;
    float: left;
    margin: 0px;
    border: 1px solid #ccc;
    border-radius: 0;
}

.day-picker-button {
    background: white;
}

.day-picker-blank {
    background: #f5f5f5;
    cursor: default;
}

.chw-calendar-month-year {
    padding: 5px 25px;
    width: 100%;
    background: rgb(0, 34, 53);
    text-align: center;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
}

/* Weekdays (Mon-Sun) */
.chw-calendar-weekdays-container {
    margin: 0;
    padding: 4px 0;
    font-weight: 600;
    display: flex;
    justify-content: space-around;
    /*background-color: #ddd;*/
}

.chw-calendar-weekday {
    /*display: inline-block;
        width: 13%;*/
    color: rgb(0, 34, 53);
    text-align: center;
}

.chw-calendar-day {
    width: 14.28%;
    height: 46px;
    float: left;
    margin: 0px;
    border: 1px solid #ccc;
    border-radius: 0;
    cursor: default;
}

.chw-calendar-this-month {
    color: black;
    background: white;
    cursor: pointer;
}

.chw-calendar-other-month {
    color: #999;
    cursor: pointer;
}

.chw-calendar-selected {
    background: rgb(0, 34, 53);
    color: white;
}

.chw-calendar-year-picker h4 {
    margin: auto;
}

.chw-calendar-month-picker h4 {
    margin: auto;
}