/* REACT DATE PICKER */

.react-datepicker__input-container {
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    height: 100% !important;
    width: 100% !important;
}

.react-datepicker__input-container input {
    background: transparent !important;
    outline: none !important;
    height: 100% !important;
    text-align: center !important;
}

.react-datepicker__day--in-range {
    background-color: var(--blue-sky) !important;
    color: white !important;
}

.react-datepicker__day--keyboard-selected {
    color: white !important;
}

.react-datepicker {
    font-family: "Lato", sans-serif;
    border-radius: 5px !important;
    box-shadow: 0px 0px 4px #00000014 !important;
    border: 1px solid var(--neutral) !important;
}

.react-datepicker__header {
    background-color: var(--neutral-light) !important;
    border-bottom: 1px solid var(--neutral) !important;
    margin: 0 !important;
    padding: 8px 0 !important;
}

.react-datepicker__navigation-icon {
    font-size: inherit !important;
}

.react-datepicker__today-button {
    background: white !important;
    border: 1px solid var(--neutral) !important;
    border-radius: 5px !important;
    box-shadow: 0px 0px 4px #00000014 !important;
    margin: 8px !important;
    padding: 4px !important;
    transition: 0.2s !important;
}

.react-datepicker__today-button:hover {
    border: 1px solid var(--blue-sky) !important;
    color: var(--blue-sky) !important;
    transition: 0.2s !important;
}

.react-datepicker__triangle,
.react-datepicker__triangle::before,
.react-datepicker__triangle::after {
    display: none;
}


input {

    background-image: none;

    background-color: transparent;

    -webkit-box-shadow: none;

    -moz-box-shadow: none;

    box-shadow: none;

}

/* INPUT DATE REMOVE CALENDAR ICON */

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}



/* INPUT REMOVE AUTOCOMPLETE */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    transition-delay: 3600s;
}





/* SELECT REMOVE ARROW DOWN */

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}





/* INPUT NUMBER REMOVE ARROW TO UP AND DOWN */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}





/* INPUT TIME REMOVE CALENDAR AND ARROW */

input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="time"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

}

.filter-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 6px;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 28px;
    width: 28px;
    background-color: white;
    border-radius: 50%;
    border: none;
    -webkit-box-shadow: 0px 3px 8px #0000001A;
    -moz-box-shadow: 0px 3px 8px #0000001A;
    box-shadow: 0px 3px 8px #0000001A;
}

.filter-slider::-moz-range-thumb {
    height: 28px;
    width: 28px;
    background-color: white;
    border-radius: 50%;
    border: none;
    -webkit-box-shadow: 0px 3px 8px 0px #0000001A;
    -moz-box-shadow: 0px 3px 8px 0px #0000001A;
    box-shadow: 0px 3px 8px 0px #0000001A;
}