#barre_recherche {
    background: var(--lightgrey);
    padding: 0.5rem 0.5rem;
    display: flex;
    gap: 10px;
    border-radius: 0.5rem;
}

.bar-child {
    flex-grow: 3;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 250ms ease;
    background-color: white;
}

.bar-child.bar-date .date, .bar-child .bar-padding {
    padding: 0.5rem 1.5rem;
}

.bar-child.bar-submit {
    flex-grow: 1;
    background-color: var(--mainColor)!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-child:hover {
    box-shadow: 0 0 2px var(--mainColor);
}
/* large tablet / small pc */
@media (max-width: 991px) {
    #barre_recherche {
        flex-wrap: wrap;
    }

    .bar-child {
        max-width: none!important;
        flex-basis: 49%;
    }
}
/* mobile */
@media (max-width: 547px) {
    .bar-child {
        flex-basis: 100%;
    }

    #submit-search img {
        margin-top: 13px;
        margin-bottom: 13px;
    }
}

.am_checkboxes input[type=checkbox] {
    background-color: var(--bs-white);
    width: 1em;
    height: 1em;
    border-radius: 0.25em;
    transform: translateY(-0.07em);
    display: grid;
    place-content: center;
}
.am_checkboxes input[type=checkbox]::before {
    content: "";
    width: 0.6em;
    height: 0.6em;
    -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    box-shadow: inset 1em 1em var(--mainColor);
}
.am_checkboxes input[type=checkbox]:checked {
    border: 0.15em solid var(--mainColor);
}
.am_checkboxes input[type=checkbox]:checked::before {
    transform: scale(1);
}
