#lightpick-container {
    position: absolute;
    left: -50px;
    top: 735px;
    width: 230px;
    height: 550px;
    z-index: 47;
}

#objA01_Date_jour {
    display: none;
}

.lightpick {
    position: absolute;

    border-radius: 4px;

    color: #000;
    font-family: system-ui, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.125em;
}

.lightpick__month {
    padding: 4px;
    width: 230px;
    height: 0px;
    background-color: transparent;
}

.lightpick__month-title-bar {
    display: flex;
    margin-bottom: 4px;
    justify-content: space-between;
    align-items: center;
}

.lightpick__month-title {
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 4px;
    font-size: 24px;
    font-weight: normal;
    line-height: 24px;
    cursor: default;
    padding: 0 4px;
    border-radius: 4px;
}

    .lightpick__month-title > .lightpick__select {
        border: none;
        background-color: transparent;
        outline: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
    }

        .lightpick__month-title > .lightpick__select:disabled {
            color: #333;
        }

    .lightpick__month-title > .lightpick__select-months {
        font-weight: bold;
        font-size: 1em;
        margin-right: .5em;
    }

    .lightpick__month-title > .lightpick__select-years {
        font-size: 0.5em;
    }

.lightpick__toolbar {
    display: flex;
    text-align: right;
    justify-content: flex-end;
}

.lightpick__previous-action,
.lightpick__next-action,
.lightpick__close-action {
    display: flex;
    margin-left: 4px;
    width: 24px;
    height: 24px;
    outline: none;
    border: none;
    border-radius: 50%;
    background-color: #DDD;
    justify-content: center;
    align-items: center;
}

.lightpick__previous-action,
.lightpick__next-action {
    font-size: 12px;
}

.lightpick__days-of-the-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 50px;
}

.lightpick__day-of-the-week {
    display: flex;
    font-size: 12px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.lightpick__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.lightpick__day {
    display: flex;
    height: 50px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 12px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    border-radius: 15%;
    color: white;
    margin: 1px;
}

    .lightpick__day.is-disabled {
        background-image: url("./calendar_non.svg");
        pointer-events: none;
    }

    .lightpick__day.is-previous-month,
    .lightpick__day.is-next-month {
        opacity: 0;
    }

.is-summer {
    background-image: url("./calendar_sun.svg");
}

.is-winter {
    background-image: url("./calendar_snow.svg");
}

.lightpick__day.is-winter.is-blocked {
    background-image: url("./calendar_disposnow.svg");
}

.lightpick__day.is-summer.is-blocked {
    background-image: url("./calendar_disposun.svg");
}

