.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month-
{
    color: var(--adp-color-other-month);
}.air-datepicker-cell.-year-.-other-decade-:hover,
.air-datepicker-cell.-day-.-other-month-:hover
{
    color: var(--adp-color-other-month-hover);
}.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-
{
    color: var(--adp-color-other-month);
}.-selected-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.air-datepicker-cell.-day-.-other-month-
{
    color: #FFF;

    background: var(--adp-background-color-selected-other-month);
}.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-
{
    background: var(--adp-background-color-selected-other-month-focused);
}.-in-range-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.air-datepicker-cell.-day-.-other-month-
{
    color: var(--adp-color);

    background-color: var(--adp-background-color-in-range);;
}.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-
{
    background-color: var(--adp-background-color-in-range-focused);
}.air-datepicker-cell.-year-.-other-decade-:empty,
.air-datepicker-cell.-day-.-other-month-:empty
{
    border: none;
    background: none;;
}.air-datepicker-cell
{
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;

    cursor: pointer;

    border-radius: var(--adp-cell-border-radius);;
}.air-datepicker-cell.-focus-
{
    background: var(--adp-cell-background-color-hover);
}.air-datepicker-cell.-current-
{
    color: var(--adp-color-current-date);
}.air-datepicker-cell.-current-.-focus-
{
    color: var(--adp-color);
}.air-datepicker-cell.-current-.-in-range-
{
    color: var(--adp-color-current-date);
}.air-datepicker-cell.-disabled-
{
    color: var(--adp-color-disabled);

    cursor: default;;
}.air-datepicker-cell.-disabled-.-focus-
{
    color: var(--adp-color-disabled);
}.air-datepicker-cell.-disabled-.-in-range-
{
    color: var(--adp-color-disabled-in-range);
}.air-datepicker-cell.-disabled-.-current-.-focus-
{
    color: var(--adp-color-disabled);
}.air-datepicker-cell.-in-range-
{
    border-radius: 0;
    background: var(--adp-cell-background-color-in-range);;
}.air-datepicker-cell.-in-range-:hover
{
    background: var(--adp-cell-background-color-in-range-hover);
}.air-datepicker-cell.-range-from-
{
    border: 1px solid var(--adp-cell-border-color-in-range);
    border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
    background-color: var(--adp-cell-background-color-in-range);;
}.air-datepicker-cell.-range-to-
{
    border: 1px solid var(--adp-cell-border-color-in-range);
    border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
    background-color: var(--adp-cell-background-color-in-range);;
}.air-datepicker-cell.-range-to-.-range-from-
{
    border-radius: var(--adp-cell-border-radius);
}.air-datepicker-cell.-selected-
{
    color: #FFF;

    border: none;
    background: var(--adp-cell-background-color-selected);
}.air-datepicker-cell.-selected-.-current-
{
    color: #FFF;

    background: var(--adp-cell-background-color-selected);
}.air-datepicker-cell.-selected-.-focus-
{
    background: var(--adp-cell-background-color-selected-hover);
}
.air-datepicker-body
{
    transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}.air-datepicker-body.-hidden-
{
    display: none;
}.air-datepicker-body--day-names
{
    display: grid;

    margin: 8px 0 3px;

    grid-template-columns: repeat(7, var(--adp-day-cell-width));;
}.air-datepicker-body--day-name
{
    color: var(--adp-day-name-color);
    font-size: .8em;

    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;

    text-align: center;
    text-transform: uppercase;;
}.air-datepicker-body--day-name.-clickable-
{
    cursor: pointer;
}.air-datepicker-body--day-name.-clickable-:hover
{
    color: var(--adp-day-name-color-hover);
}.air-datepicker-body--cells
{
    display: grid;
}.air-datepicker-body--cells.-days-
{
    grid-auto-rows: var(--adp-day-cell-height);
    grid-template-columns: repeat(7, var(--adp-day-cell-width));;
}.air-datepicker-body--cells.-months-
{
    grid-auto-rows: var(--adp-month-cell-height);
    grid-template-columns: repeat(3, 1fr);;
}.air-datepicker-body--cells.-years-
{
    grid-auto-rows: var(--adp-year-cell-height);
    grid-template-columns: repeat(4, 1fr);;
}
.air-datepicker-nav
{
    display: flex;
    justify-content: space-between;

    box-sizing: content-box;
    min-height: var(--adp-nav-height);
    padding: var(--adp-padding);

    border-bottom: 1px solid var(--adp-border-color-inner);;
}.-only-timepicker- .air-datepicker-nav
{
    display: none;
}.air-datepicker-nav--title,
.air-datepicker-nav--action
{
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;;
}.air-datepicker-nav--action
{
    width: var(--adp-nav-action-size);

    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;

    border-radius: var(--adp-border-radius);;
}.air-datepicker-nav--action:hover
{
    background: var(--adp-background-color-hover);
}.air-datepicker-nav--action:active
{
    background: var(--adp-background-color-active);
}.air-datepicker-nav--action.-disabled-
{
    visibility: hidden;
}.air-datepicker-nav--action svg
{
    width: 32px;
    height: 32px;
}.air-datepicker-nav--action path
{
    fill: none;
    stroke: var(--adp-nav-arrow-color);
    stroke-width: 2px;
}.air-datepicker-nav--title
{
    position: relative;

    padding: 0 8px;

    border-radius: var(--adp-border-radius);
}
.air-datepicker-nav--title::before
{
    content: "";

    position: absolute;
    bottom: 6px;
    left: 8px;

    width: calc(100% - 16px);

    border-bottom: 1px dashed;
}
.air-datepicker-nav--title i
{
    color: var(--adp-nav-color-secondary);
    font-style: normal;

    margin-left: .3em;
}.air-datepicker-nav--title:hover
{
    background: var(--adp-background-color-hover);
}.air-datepicker-nav--title:active
{
    background: var(--adp-background-color-active);
}.air-datepicker-nav--title.-disabled-
{
    cursor: default;

    background: none;
}
.air-datepicker-nav--title:hover::before
{
    opacity: 0;
}.air-datepicker-nav--title:active::before
{
    opacity: 0;
}.air-datepicker-nav--title.-disabled-::before
{
    opacity: 0;
}
.air-datepicker-buttons
{
    display: grid;

    grid-auto-columns: 1fr;
    grid-auto-flow: column;
}.air-datepicker-button
{
    color: var(--adp-btn-color);

    display: inline-flex;

    height: var(--adp-btn-height);

    cursor: pointer;

    border: none;
    border-radius: var(--adp-btn-border-radius);
    background: rgba(255,255,255,0);
}.air-datepicker-button:hover
{
    color: var(--adp-btn-color-hover);

    background: var(--adp-btn-background-color-hover);
}.air-datepicker-button:focus
{
    color: var(--adp-btn-color-hover);

    outline: none;
    background: var(--adp-btn-background-color-hover);;
}.air-datepicker-button:active
{
    background: var(--adp-btn-background-color-active);
}.air-datepicker-button span
{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    outline: none;;
}
.air-datepicker-time
{
    position: relative;

    display: grid;
    align-items: center;

    padding: 0 var(--adp-time-padding-inner);

    grid-column-gap: 12px;
    grid-template-columns: max-content 1fr;;
}.-only-timepicker- .air-datepicker-time
{
    border-top: none;
}.air-datepicker-time--current
{
    font-size: 14px;

    display: flex;
    align-items: center;
    flex: 1;

    text-align: center;
}.air-datepicker-time--current-colon
{
    line-height: 1;

    margin: 0 2px 3px;;
}.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes
{
    position: relative;
    z-index: 1;

    font-family: "Century Gothic",CenturyGothic,AppleGothic,sans-serif;
    font-size: 19px;
    line-height: 1;;
}.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after
{
    content: "";

    position: absolute;
    z-index: -1;
    top: -3px;
    right: -2px;
    bottom: -2px;
    left: -2px;

    opacity: 0;
    border-radius: var(--adp-border-radius);
    background: var(--adp-background-color-hover);;
}.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after
{
    opacity: 1;
}.air-datepicker-time--current-ampm
{
    color: var(--adp-time-day-period-color);
    font-size: 11px;

    align-self: flex-end;

    margin-bottom: 1px;
    margin-left: 6px;

    text-transform: uppercase;;
}.air-datepicker-time--row
{
    font-size: 11px;

    display: flex;
    align-items: center;

    height: 17px;

    background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}.air-datepicker-time--row:first-child
{
    margin-bottom: 4px;
}.air-datepicker-time--row input[type=range]
{
    flex: 1;

    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    cursor: pointer;

    background: none;

    -webkit-appearance: none;
}.air-datepicker-time--row input[type=range]::-webkit-slider-thumb
{
    -webkit-appearance: none;
}.air-datepicker-time--row input[type=range]::-ms-tooltip
{
    display: none;
}.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb
{
    border-color: var(--adp-time-track-color-hover);
}.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb
{
    border-color: var(--adp-time-track-color-hover);
}.air-datepicker-time--row input[type=range]:hover::-ms-thumb
{
    border-color: var(--adp-time-track-color-hover);
}.air-datepicker-time--row input[type=range]:focus
{
    outline: none;
}.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb
{
    border-color: var(--adp-cell-background-color-selected);
    background: var(--adp-cell-background-color-selected);;
}.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb
{
    border-color: var(--adp-cell-background-color-selected);
    background: var(--adp-cell-background-color-selected);;
}.air-datepicker-time--row input[type=range]:focus::-ms-thumb
{
    border-color: var(--adp-cell-background-color-selected);
    background: var(--adp-cell-background-color-selected);;
}.air-datepicker-time--row input[type=range]::-webkit-slider-thumb
{
    box-sizing: border-box;
    width: 12px;
    height: 12px;

    cursor: pointer;

    border: 1px solid var(--adp-time-track-color);
    border-radius: 3px;
    background: #FFF;

    -webkit-transition: background var(--adp-transition-duration);
            transition: background var(--adp-transition-duration);
}.air-datepicker-time--row input[type=range]::-moz-range-thumb
{
    box-sizing: border-box;
    width: 12px;
    height: 12px;

    cursor: pointer;

    border: 1px solid var(--adp-time-track-color);
    border-radius: 3px;
    background: #FFF;

    -moz-transition: background var(--adp-transition-duration);
         transition: background var(--adp-transition-duration);
}.air-datepicker-time--row input[type=range]::-ms-thumb
{
    box-sizing: border-box;
    width: 12px;
    height: 12px;

    cursor: pointer;

    border: 1px solid var(--adp-time-track-color);
    border-radius: 3px;
    background: #FFF;

    -ms-transition: background var(--adp-transition-duration);
        transition: background var(--adp-transition-duration);
}.air-datepicker-time--row input[type=range]::-webkit-slider-thumb
{
    margin-top: calc(var(--adp-time-thumb-size)/2*-1);
}.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track
{
    color: rgba(0,0,0,0);

    height: var(--adp-time-track-height);

    cursor: pointer;

    border: none;
    background: rgba(0,0,0,0);
}.air-datepicker-time--row input[type=range]::-moz-range-track
{
    color: rgba(0,0,0,0);

    height: var(--adp-time-track-height);

    cursor: pointer;

    border: none;
    background: rgba(0,0,0,0);
}.air-datepicker-time--row input[type=range]::-ms-track
{
    color: rgba(0,0,0,0);

    height: var(--adp-time-track-height);

    cursor: pointer;

    border: none;
    background: rgba(0,0,0,0);
}.air-datepicker-time--row input[type=range]::-ms-fill-lower
{
    background: rgba(0,0,0,0);
}.air-datepicker-time--row input[type=range]::-ms-fill-upper
{
    background: rgba(0,0,0,0);
}
.air-datepicker
{
    --adp-accent-color: #4EB5E6;
    --adp-background-color: #FFF;
    --adp-background-color-active: #EAEAEA;
    --adp-background-color-hover: #F0F0F0;
    --adp-background-color-in-range: rgba(92, 196, 239, .1);
    --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
    --adp-background-color-selected-other-month: #A2DDF6;
    --adp-background-color-selected-other-month-focused: #8AD5F4;
    --adp-border-color: #DBDBDB;
    --adp-border-color-inline: #D7D7D7;
    --adp-border-color-inner: #EFEFEF;
    --adp-border-radius: 4px;
    --adp-btn-background-color-active: var(--adp-background-color-active);
    --adp-btn-background-color-hover: var(--adp-background-color-hover);
    --adp-btn-border-radius: var(--adp-border-radius);
    --adp-btn-color: var(--adp-accent-color);
    --adp-btn-color-hover: var(--adp-color);
    --adp-btn-height: 32px;
    --adp-cell-background-color-hover: var(--adp-background-color-hover);
    --adp-cell-background-color-in-range: rgba(92, 196, 239, .1);
    --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, .2);
    --adp-cell-background-color-selected: #5CC4EF;
    --adp-cell-background-color-selected-hover: #45BCED;
    --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
    --adp-cell-border-radius: 4px;
    --adp-color: #4A4A4A;
    --adp-color-current-date: var(--adp-accent-color);
    --adp-color-disabled: #AEAEAE;
    --adp-color-disabled-in-range: #939393;
    --adp-color-other-month: #DEDEDE;
    --adp-color-other-month-hover: #C5C5C5;
    --adp-color-secondary: #9C9C9C;
    --adp-day-cell-height: 32px;
    --adp-day-cell-width: 1fr;
    --adp-day-name-color: #FF9A19;
    --adp-day-name-color-hover: #8AD5F4;
    --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --adp-font-size: 14px;
    --adp-grid-areas: "nav" "body" "timepicker" "buttons";
    --adp-mobile-day-cell-height: 38px;
    --adp-mobile-font-size: 16px;
    --adp-mobile-month-cell-height: 48px;
    --adp-mobile-nav-height: 40px;
    --adp-mobile-width: 320px;
    --adp-mobile-year-cell-height: 64px;
    --adp-month-cell-height: 42px;
    --adp-nav-action-size: 32px;
    --adp-nav-arrow-color: var(--adp-color-secondary);
    --adp-nav-color-secondary: var(--adp-color-secondary);
    --adp-nav-height: 32px;
    --adp-padding: 4px;
    --adp-poiner-border-radius: 2px;
    --adp-pointer-offset: 14px;
    --adp-pointer-size: 10px;
    --adp-time-day-period-color: var(--adp-color-secondary);
    --adp-time-padding-inner: 10px;
    --adp-time-thumb-size: 12px;
    --adp-time-track-color: #DEDEDE;
    --adp-time-track-color-hover: #B1B1B1;
    --adp-time-track-height: 1px;
    --adp-transition-duration: .3s;
    --adp-transition-ease: ease-out;
    --adp-transition-offset: 8px;
    --adp-width: 246px;
    --adp-year-cell-height: 56px;
    --adp-z-index: 100;;
}.air-datepicker-overlay
{
    --adp-overlay-background-color: rgba(0, 0, 0, .3);
    --adp-overlay-transition-duration: .3s;
    --adp-overlay-transition-ease: ease-out;
    --adp-overlay-z-index: 99;
}
.air-datepicker
{
    position: absolute;
    z-index: var(--adp-z-index);

    color: var(--adp-color);
    font-family: var(--adp-font-family),sans-serif;
    font-size: var(--adp-font-size);

    display: grid;

    box-sizing: content-box;
    width: var(--adp-width);

    border: 1px solid var(--adp-border-color);
    border-radius: var(--adp-border-radius);
    background: var(--adp-background-color);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);

    transition: opacity var(--adp-transition-duration) var(--adp-transition-ease),transform var(--adp-transition-duration) var(--adp-transition-ease);

    grid-template-areas: var(--adp-grid-areas);
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, max-content);;
}.air-datepicker:not(.-custom-position-)
{
    opacity: 0;
}.air-datepicker.-from-top-
{
    transform: translateY(calc(var(--adp-transition-offset) * -1));
}.air-datepicker.-from-right-
{
    transform: translateX(var(--adp-transition-offset));
}.air-datepicker.-from-bottom-
{
    transform: translateY(var(--adp-transition-offset));
}.air-datepicker.-from-left-
{
    transform: translateX(calc(var(--adp-transition-offset) * -1));
}.air-datepicker.-active-:not(.-custom-position-)
{
    opacity: 1;

    transform: translate(0, 0);;
}.air-datepicker.-active-.-custom-position-
{
    transition: none;
}.air-datepicker.-inline-
{
    position: static;
    right: auto;
    left: auto;

    opacity: 1;
    border-color: var(--adp-border-color-inline);
    box-shadow: none;

    transform: none;
}.air-datepicker.-inline- .air-datepicker--pointer
{
    display: none;
}.air-datepicker.-is-mobile-
{
    position: fixed;

    width: var(--adp-mobile-width);

    border: none;

    --adp-day-cell-height: var(--adp-mobile-day-cell-height);
    --adp-font-size: var(--adp-mobile-font-size);
    --adp-month-cell-height: var(--adp-mobile-month-cell-height);
    --adp-nav-action-size: var(--adp-mobile-nav-height);
    --adp-nav-height: var(--adp-mobile-nav-height);
    --adp-year-cell-height: var(--adp-mobile-year-cell-height);;
}.air-datepicker.-is-mobile- *
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}.air-datepicker.-is-mobile- .air-datepicker--pointer
{
    display: none;
}.air-datepicker.-is-mobile-:not(.-custom-position-)
{
    transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}.air-datepicker.-is-mobile-.-active-:not(.-custom-position-)
{
    transform: translate(-50%, -50%);
}.air-datepicker.-custom-position-
{
    transition: none;
}.air-datepicker-global-container
{
    position: absolute;
    top: 0;
    left: 0;;
}.air-datepicker--pointer
{
    position: absolute;
    z-index: -1;

    width: var(--adp-pointer-size);
    height: var(--adp-pointer-size);

    --pointer-half-size: calc(var(--adp-pointer-size) / 2);;
}.air-datepicker--pointer:after
{
    content: "";

    position: absolute;

    box-sizing: border-box;
    width: var(--adp-pointer-size);
    height: var(--adp-pointer-size);

    border-top: 1px solid var(--adp-border-color-inline);
    border-right: 1px solid var(--adp-border-color-inline);
    border-top-right-radius: var(--adp-poiner-border-radius);
    background: #FFF;;
}.-top-left- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^=top] .air-datepicker--pointer
{
    top: calc(100% - var(--pointer-half-size) + 1px);
}.-top-left- .air-datepicker--pointer:after,
.-top-center- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^=top] .air-datepicker--pointer:after
{
    transform: rotate(135deg);
}.-right-top- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer,
[data-popper-placement^=right] .air-datepicker--pointer
{
    right: calc(100% - var(--pointer-half-size) + 1px);
}.-right-top- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=right] .air-datepicker--pointer:after
{
    transform: rotate(225deg);
}.-bottom-left- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^=bottom] .air-datepicker--pointer
{
    bottom: calc(100% - var(--pointer-half-size) + 1px);
}.-bottom-left- .air-datepicker--pointer:after,
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^=bottom] .air-datepicker--pointer:after
{
    transform: rotate(315deg);
}.-left-top- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-bottom- .air-datepicker--pointer,
[data-popper-placement^=left] .air-datepicker--pointer
{
    left: calc(100% - var(--pointer-half-size) + 1px);
}.-left-top- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=left] .air-datepicker--pointer:after
{
    transform: rotate(45deg);
}.-top-left- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer
{
    left: var(--adp-pointer-offset);
}.-top-right- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer
{
    right: var(--adp-pointer-offset);
}.-top-center- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer
{
    left: calc(50% - var(--adp-pointer-size)/2);
}.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer
{
    top: var(--adp-pointer-offset);
}.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer
{
    bottom: var(--adp-pointer-offset);
}.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer
{
    top: calc(50% - var(--adp-pointer-size)/2);
}.air-datepicker--navigation
{
    grid-area: nav;
}.air-datepicker--content
{
    box-sizing: content-box;
    padding: var(--adp-padding);

    grid-area: body;
}.-only-timepicker- .air-datepicker--content
{
    display: none;
}.air-datepicker--time
{
    grid-area: timepicker;
}.air-datepicker--buttons
{
    grid-area: buttons;
}.air-datepicker--buttons,
.air-datepicker--time
{
    padding: var(--adp-padding);

    border-top: 1px solid var(--adp-border-color-inner);
}.air-datepicker-overlay
{
    position: fixed;
    z-index: var(--adp-overlay-z-index);
    top: 0;
    left: 0;

    width: 0;
    height: 0;

    opacity: 0;
    background: var(--adp-overlay-background-color);

    transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),left 0s,height 0s,width 0s;
    transition-delay: 0s,var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration);;
}.air-datepicker-overlay.-active-
{
    width: 100%;
    height: 100%;

    opacity: 1;

    transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),height 0s,width 0s;
}