#siret_field_wrapper,
#pro_code_field_wrapper {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
    transition: max-height .25s ease, opacity .25s ease, visibility .25s ease
}

#siret_field_wrapper.is-visible,
#pro_code_field_wrapper.is-visible {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

input[type=checkbox] {
    margin-right: 5px;
    width: 20px;
    height: 20px;
    accent-color: #dc9eab
}

.flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: background-color .3s ease
}

.flex label {
    margin: 0;
    font-weight: 600
}

.flex:hover {
    background-color: #f9f9f9
}