<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/**
 * Cette feuille de styles gère XXXXX
 */

/*
==================================================
    BREAKPOINT BOOTSRAP 5.2
==================================================
    #X-Small devices (portrait phones, less than 576px)         // 320px
    #Small devices (landscape phones, 576px and up)             // 576px
    #Medium devices (tablets, 768px and up)                     // 768px
    #Large devices (desktops, 992px and up)                     // 992px
    #X-Large devices (large desktops, 1200px and up)            // 1200px+ &gt; 1250 avec scrollbar
    #XX-Large devices (larger desktops, 1400px and up)          // 1400px+
*/

/*
===================================================================
===================================================================
===================================================================
    X-Small devices (portrait phones, less than 576px)   // 320px
===================================================================
===================================================================
===================================================================
    Pas besoin de déclarer de média queries
*/
/* ===============================
 *  PAGE AGENCE
=============================== */
.carteAgence iframe {
    width: 100%;
    height: 28vmax;
    display: block;
    border-radius: var(--radius-sm);
}

/* ===============================
 *  IFRAME AVIS
=============================== */
iframe.avis {
    display: flex;
    margin: 0 auto;
    height: 22px;
    width: 185px;
    transform: scale(1.2);
}
/* ===============================
 *  RGPD BANNIÈRE
=============================== */
@keyframes appear {
    from {opacity: 0;}
    85% {opacity: 0;}
    to {opacity: 1;}
}

.popUpRGPD {
    position: fixed;
    left:0;
    right:0;
    bottom:0;
    background: rgba(255,255,255,.95);
    box-shadow:0 -2px 5px rgba(0,0,0,.3);
    z-index: 10000000;
    padding: 10vmax 5vmax 5vmax 5vmax;
    overflow: hidden;
    animation: appear 0s;
    animation-iteration-count: 1;
}

.popUpRGPD.ON {
    display:block;
}

.popUpRGPD.OFF {
    display:none;
}

/* ===============================
 *  ENCART PR AVIS GOOGLE STATIQUE
=============================== */
.encart-avis-google {
    display: flex;
    flex-direction: row;
    line-height: 1;
    text-decoration: none;
    color:#000;
}

.encart-avis-google * {
    text-decoration: none;
    color:#000;
    text-align: left;
}

.encart-avis-google .logo {
    border-right: 1px solid var(--neutral-light);
    padding-right: 15px;
    margin-right:15px;
    display: flex;
}


.encart-avis-google .avisEtoiles {
    margin-bottom: 3px;
}

.encart-avis-google .avisEtoiles strong {
    margin-right: 5px;
}

.encart-avis-google .avisNb {
    font-size: .813rem;
}

.encart-avis-google .avisDate {
    font-size: .688rem;
    color:var(--neutral-main);
}

/* ===============================
 *  RETOUCHE SELECT2
 *  https://select2.org/getting-started/installation
=============================== */
.select2-container--default .select2-results__option--selected {
    display:none;
}

.select2-results__option {
    padding-top:3px !important;
    padding-bottom: 3px !important;
}

/*
===================================================================
===================================================================
===================================================================
    #Small devices (landscape phones, 576px and up)     // 576px
===================================================================
===================================================================
===================================================================
*/
@media screen and (min-width: 576px) {


}/*/mediaquery*/


/*
===================================================================
===================================================================
===================================================================
    Medium devices (tablets, 768px and up)             // 768px
===================================================================
===================================================================
===================================================================
*/
@media screen and (min-width: 768px) {
/* ===============================
 *  PAGE AGENCE
=============================== */
.carteAgence iframe {
    height: 100%;
}

/* ===============================
 *  RGPD BANNIÈRE
=============================== */
.popUpRGPD {
    padding: 12vmin 8vmin;
}

}/*/mediaquery*/


/*
===================================================================
===================================================================
===================================================================
    Large devices (desktops, 992px and up)             // 992px
===================================================================
===================================================================
===================================================================
*/
@media screen and (min-width: 992px) {


}/*/mediaquery*/


/*
===================================================================
===================================================================
===================================================================
    X-Large devices (large desktops, 1200px and up)    // 1200px+
===================================================================
===================================================================
===================================================================
*/
@media screen and (min-width: 1200px) {


}/*/mediaquery*/

/*
===================================================================
===================================================================
===================================================================
    XX-Large devices (larger desktops, 1400px and up)  // 1400px+
===================================================================
===================================================================
===================================================================
*/
@media screen and (min-width: 1400px) {


}/*/mediaquery*/
</pre></body></html>