﻿/* ---------------------------------------------------------
   CHAMP DATE
--------------------------------------------------------- */

.date-field {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 35px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #d5d8dc;
    border-radius: 4px;
    background-color: #fff;
    color: #292d32;
    font-family: inherit;
    font-size: 14px;
    line-height: 22px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}


    /* ---------------------------------------------------------
   FOCUS
--------------------------------------------------------- */

    .date-field:focus {
        border-color: #8a9bab;
        box-shadow: 0 0 0 2px rgba(138, 155, 171, 0.12);
    }


    /* ---------------------------------------------------------
   ICÔNE CALENDRIER
--------------------------------------------------------- */

    .date-field::-webkit-calendar-picker-indicator {
        margin: 0;
        padding: 3px;
        cursor: pointer;
    }


/* ---------------------------------------------------------
   DARK MODE
--------------------------------------------------------- */

body.dark-mode .date-field {
    border-color: #464b52;
    background-color: #303136;
    color: #eee;
}

    body.dark-mode .date-field:focus {
        border-color: #71869a;
        box-shadow: 0 0 0 2px rgba(113, 134, 154, 0.15);
    }

    body.dark-mode .date-field::-webkit-calendar-picker-indicator {
        filter: invert(0.85);
    }


/* ---------------------------------------------------------
   MOBILE / IPAD
--------------------------------------------------------- */

@media (max-width: 700px) {

    .date-field {
        width: 100%;
        min-width: 0;
        height: 35px;
    }
}
