<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -------------
    SOMMAIRE
------------- */

/*
    @AUTHOR : Nicolas BOUDOT

    FORM
    Stylisation des formulaires
*/

/*
  00 - GÃ‰NÃ‰RAL
        Gravity Form
        Gravity Form - Erreurs
        Search &amp; Filter
  01 - RECHERCHE (Widget - Header)
*/



/* -----------------
  00 - GÃ‰NÃ‰RAL
----------------- */

label,
select,
textarea,
input {
    font-family: var(--font-primary);
}

label {
    display: block;
    margin-bottom: 5px;
}

select,
textarea,
input {
    background-color: var(--gray-100);
    border: none;
    border-bottom: 1px solid var(--gray-100);
    outline: none;
    padding: 8px;
    width: 100%;
}

    /* Focus */
    select:focus,
    textarea:focus,
    input:focus {
        border-bottom: 1px solid #707070;
    }

    /* Disabled */
    select:disabled,
    textarea:disabled,
    input:disabled {
        border: 1px solid var(--color-primary);
    }

/* EnlÃ¨ve l'icÃ´ne flÃ¨che par dÃ©faut d'un select */
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('/wp-content/themes/frennly/img/charte/arrow.svg');
    background-position: center right 13px;
    background-size: auto 5px;
    background-repeat: no-repeat;
    font-size: 1.6rem;
}

    /* Bouton dropdown du select */
    select::-ms-expand {
        display: none;
    }

select option {
    padding: 10px;
}

/* Checkbox et Radios */
input[type="radio"],
input[type="checkbox"] {
    margin: 2px 6px 0 0;
    width: auto;
}
input[type="checkbox"],
.gform_wrapper.gravity-theme .gfield-choice-input[type="checkbox"] {
    display: none !important;
}
input[type="checkbox"] +label {
    cursor: pointer;
    display: flex !important;
    align-items: flex-start;
    text-align: left;
}
input[type="checkbox"] + label::before{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid var(--color-secondary);
    margin-right: 8px;
    margin-top: 3px;
    flex: 0 0 15px;
    background-color: var(--gray-100);
}
input[type="checkbox"]:checked + label::before{
    border-color: var(--color-primary);
}
input[type="checkbox"]+label::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 9px;
    border: 2px solid var(--color-primary);
    border-left: none;
    border-top: none;
    position: absolute;
    top: 5px;
    left: 5px;
    transform: rotate(45deg);
    opacity: 0;
}
input[type="checkbox"]:checked+label::after {
    opacity: 1;
}

/* -----------------
  00 - GÃ‰NÃ‰RAL
        Gravity Form
----------------- */

.gform_title {
    text-align: center;
}

/* Label masquÃ© depuis le BO */
.hidden_label .gfield_label {
    display: none;
}

/* "*" indique les champs nÃ©cessaires */
.gform_required_legend {
    display: none;
}

.gfield_required {
    margin-left: 5px;
}

/* @changelog 2024-01-29 [EVOL] (Nicolas) Marge entre les lignes du formulaire */
.gform_fields &gt; * {
    margin-bottom: 26px;
    padding: 0 8px;
    position: relative;
}
.gform_fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

/* Input */
div.gfmc-field div:not(.gchoice) {
    padding-bottom: 0;
}

/* Select */
.gchoice {
    display: flex;
    align-items: flex-start;
}
.gfield_radio .gchoice {
    align-items: center;
}

/* DÃ©pot de fichier */
input[type="file"] {
    border: none;
    padding: 0;
}

/* DÃ©pot de fichiers */
.gform_drop_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px dashed var(--green-gray);
    margin-bottom: 6px;
    padding: 26px 0;
}

.gform_drop_instructions {
    margin-bottom: 10px;
}

.gfield_description,
.gform_fileupload_rules {
    display: block;
    color: var(--color-secondary);
    font-size: 1.2rem;
    width: 100%;
}

    .gform_fileupload_multifile + .gform_fileupload_rules {
        text-align: center;
    }

/* Nom du fichier joint */
.ginput_preview_list {
    order: 3;
}

.ginput_preview_list .ginput_preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.ginput_preview_list .ginput_preview &gt; span:not(:first-child) {
    margin-left: 5px;
}

/* Poids */
.gfield_fileupload_filesize {
    margin-right: 5px;
}

    .gfield_fileupload_filesize::before {
        content: "- ";
    }

/* Pourcentage */
.gfield_fileupload_progress {
    display: none;
}

/* HTML */
.gfield--type-html {
    color: var(--gray-700);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* RGPD */
.gfield--type-consent {
    margin-bottom: 8px;
    flex: 0 0 100%;
}
.gfield--type-consent.gfield_error {
    margin-bottom: 25px;
}

.gfield--type-consent .ginput_container_consent {
    display: flex;
    align-items: flex-start;
}

.gfield--type-consent .ginput_container_consent label {
    color: var(--gray-700);
    font-size: 1.4rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

/* Bouton d'envoi */
.gform_footer {
    text-align: right;
}
.gform_button,
.gform-button {
    background-color: var(--color-primary);
    color: var(--white);
    width: auto;
}

    .gform_button:hover,
    .gform-button:hover {
        background-color: var(--color-quaternary);
        color: var(--white);
        border-color: transparent;
    }
.gfield::before{
    display: none;
}

.gfield--width-half {
    flex: 0 0 100%;
}
@media (min-width: 768px) {
    .gfield--width-half {
        flex: 0 0 50%;
    }
    .gfield--width-half.gfield--width-small {
        flex: 0 0 30%;
    }
    .gfield--width-half.gfield--width-large {
        flex: 0 0 70%;
    }
    .gfield--width-large:not(.gfield--width-half) {
        flex: 0 0 100%;
    }
}

.gfield--type-text label,
.gfield--input-type-phone label,
.gfield--type-email label {
    position: absolute;
    top: 8px;
    left: 16px;
    color: var(--black);
    transition: transform .2s;
}
.gfield--type-text input:focus+label,
.gfield--type-text input:not(:placeholder-shown)+label,
.gfield--type-email input:focus+label,
.gfield--type-email input:not(:placeholder-shown)+label,
.gfield--input-type-phone input:focus+label,
.gfield--input-type-phone input:not(:placeholder-shown)+label {
    transform: translate(0, -21px);
    font-weight: bold;
}

::placeholder {
    color: transparent;
}
textarea::placeholder {
    color: var(--black);
    opacity: 1;
}

.gfield--type-textarea {
    width: 100%;
    margin-bottom: 16px;
}
    .gfield--type-textarea label{
        font-weight: bold;
        margin-bottom: -13px;
        z-index: 1;
        position: relative;
        padding: 0 8px;
    }


/* -----------------------------
  00 - GÃ‰NÃ‰RAL
        Gravity Form - Erreurs
----------------------------- */

.gform_submission_error {
    color: var(--red);
    text-align: center;
    margin-bottom: 15px;
}

.gfield_error {
    display: flex;
    flex-wrap: wrap;
}

.gfield_error &gt; label {
    order: 1;
}

.gfield_error input {
    border-bottom: 1px solid var(--color-primary);
}

.gfield_validation_message:not(:empty) {
    display: inline-block;
    order: 2;
    color: var(--color-primary);
    margin-left: auto;
    position: absolute;
    top: 100%;
}

.gfield_error &gt; .ginput_container {
    order: 3;
    width: 100%;
}



/* -------------------------
  00 - GÃ‰NÃ‰RAL
        Search &amp; Filter
------------------------- */

.searchandfilter ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

    @media (min-width: 992px) {
        .searchandfilter ul {
            flex-direction: row;
            align-items: center;
        }
    }

.searchandfilter ul li {
    padding: 0;
    width: 216px;
}

    /* Before */
    .searchandfilter ul li::before {
        content: none;
    }

    /* Surcharge des frÃ¨res de li */
    .searchandfilter ul li + li {
        margin-top: 0;
    }

.searchandfilter ul li label {
    width: 100%;
}

/* Select */
.sf-input-select {
    color: var(--gray-700);
    font-weight: 300;
    border-radius: 32px;
    outline: none;
    padding: 10px 24px 10px 16px;
    width: 100%;
    background-color: var(--gray-100);
    font-size: 1.4rem;
    text-overflow: ellipsis;
}
.sf-input-select:focus {
    border: none;
}
.searchandfilter select.sf-input-select {
    min-width: initial;
}


/* ---------------------------------
  01 - RECHERCHE (Widget - Header)
--------------------------------- */

.search-form {
    position: relative;
}

.search-field {
    border: none;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 10px 14px;
    width: 420px;
    max-height: 40px;
}

.search-submit {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 4px;
    background-color: var(--color-quaternary);
    color: var(--white);
    border: none;
    font-size: 1.7rem;
    line-height: 1;
    padding: 8px;
    transform: translateY(-50%);
}

.gform_confirmation_wrapper {
    margin-top: 28px;
    background-color: var(--gray-100);
    padding: 15px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.embed-responsive .axeptio-consent-spe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    text-align: center;
    padding: 12px 0;
    z-index: 1;
}
</pre></body></html>