/* --- FORCE THE NATIVE MONTH <select> TO SHOW -------------------------------- */
.flatpickr-current-month .flatpickr-monthDropdown-months {
    position: static !important;      /* remove absolute positioning */
    display : inline-block !important;
    opacity : 1 !important;           /* was 0 in Flatpickr core */
    width   : auto !important;
    height  : auto !important;
    pointer-events: auto !important;  /* theme sometimes disables clicks */
}

/* make each <option> take its own line inside the dropdown list */
.flatpickr-monthDropdown-month {
    display: block !important;
}
