.air-datepicker {
    --adp-color: #474D66;
    padding: 10px;
}

.air-datepicker-body--day-name {
    --adp-day-name-color: #696F8C;
    font-weight: 600;
}

.air-datepicker-nav--title,
.air-datepicker-nav--title i {
    font-size: 14px;
    font-weight: 600;
    color: var(--adp-color);
}

.air-datepicker-nav--action path {
    --adp-nav-arrow-color: #474D66;
}

.air-datepicker-cell.-current- {
    --adp-color-current-date: #3366FF;
    font-weight: 700;
}

.air-datepicker-cell.-selected-.-current-,
.air-datepicker-cell.-selected- {
    --adp-cell-background-color-selected: transparent;
    color: #3366FF;
    font-weight: 700;
}

.air-datepicker-cell.-selected-.-focus- {
    --adp-cell-background-color-selected-hover: transparent;
}

.air-datepicker-cell.-selected-::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3366FF;
}

input[type="text"].air-datepicker-input {
    padding: 0 24px 0 36px;
    background-image: url(/bukeala-static/images/icons/panelita/date_range.svg);
    background-size: 16px;
    background-position: center left 12px;
    cursor: pointer;

    height: 32px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #D8DAE5;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    font-size: 12px;
    color: #474D66;

}

input[type="text"].air-datepicker-input {
    background-image: url(/bukeala-static/images/icons/panelita/date_range.svg),
        url(/bukeala-static/images/icons/panelita/chevron-down.svg);
    background-position: center left 12px, center right 12px;
}

input[type="text"].air-datepicker-input:active,
input[type="text"].air-datepicker-input:focus,
input[type="text"].air-datepicker-input:focus-within {
    background-image: url(/bukeala-static/images/icons/panelita/date_range.svg),
        url(/bukeala-static/images/icons/panelita/chevron-up.svg);
}

input[type="text"][disabled].air-datepicker-input {
    background-color: #F4F6FA;
    border-color: #D8DAE5;
    color: #8F95B2;
	cursor: default;
	pointer-events: none;
}

input[type="text"].air-datepicker-input.field-input-error {
    --input-border-color: #BF2600;
    border-color: #bf2600;
}