        /* Desktop  */
        .pf_panelDesktop .productFinder{
                    left: 50%;
                    width: 60vw;
                    transform: translateX(-50%);
                    border : 1px solid rgba(0,0,0,.05);
                    box-shadow: 0 19px 38px rgba(0,0,0,.05), 0 15px 12px rgba(0,0,0,.05);
                    border-radius: 8px;
        }

        .pf_panelDesktop #pf_mobileInputSearch{
            display: none;
        }

        /* highlight Form input */
        .pf_panelDesktop.pf_panelPreOpen #header .header-block .col-sm-6{
            z-index: 5000000;
        }
        .pf_panelDesktop.pf_panelPreOpen #search_block_top #search_query_top {
            background: #fff;
        }
        #productFinder-bg{
            background: rgba(0, 0, 0, 0.65);
            /* display: none; */
            visibility: hidden;
            opacity: 0;
            height: 100%;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 2000;
            left: 0;
            -ms-transform: all 0.15s linear 0s;
            -webkit-transition: all 0.15s linear 0s;
            -moz-transition: all 0.15s linear 0s;
            transition: all 0.15s linear 0s;
        }
        .pf_panelDesktop.pf_panelPreOpen #productFinder-bg{
            display: block; 
            visibility: visible;
            opacity: 1;
        }

        .productFinder {
           height: 0%;
           height: calc(100vh - 20vh);
            position: absolute;
            z-index: 99999;
            top: 0px;
            visibility: hidden;
            right: 0px;
            bottom: 0px;
            opacity: 0;
            background: #fff;
            overflow-y: hidden;
            -ms-transform: 0.25s;
            -webkit-transition: 0.25s;
            -moz-transition: 0.25s;
            transition: 0.25s;
        }
        .pf_panelOpen .productFinder{
            height: calc(100vh - 20vh);  visibility: visible;
            overflow: hidden;
            opacity: 1;
        }


 
       .productFinder input{
            width: 60%;
            margin: 0 auto;
            display: block;
            padding: 1rem 5rem;
        }


        #pf_ctnProd{
            position: relative;
            z-index: 1;    height: calc(100vh - 20vh - 100px);
            display: grid;
            padding: 0.25rem 1rem;
            margin: 0 0.75rem 0 0;
            grid-gap: 16px;
            gap: 16px;
            grid-template-columns: repeat(auto-fill, 186px); /*repeat(auto-fit, minmax(180px, 1fr));*/
            overflow-y: auto;
        }

        #pf_ctnFacets{
            height: calc(100vh - 20vh - 80px);
            overflow-y: auto;
        }

        #pf_ctnProd::-webkit-scrollbar, #pf_ctnFacets::-webkit-scrollbar {
          width: 10px;
        }
        #pf_ctnProd::-webkit-scrollbar-thumb, #pf_ctnFacets::-webkit-scrollbar-thumb {
          background: #ededed;
          border-radius: 10px;
        }
        #pf_ctnProd::-webkit-scrollbar-thumb:hover, #pf_ctnFacets::-webkit-scrollbar-thumb:hover {                     
            background: #dddddd;
        }

        #pf_ctnProd .pf_prodCard {
            border: 1px solid rgb(203 204 205 / 40%);
            border-radius: 4px;
            background: #fff;
            text-align: center;
            vertical-align: top;
            height: max-content;
            -ms-transform: 0.2s;
            -webkit-transition: 0.2s;
            -moz-transition: 0.2s;
            transition: 0.2s;
        }
        #pf_ctnProd .pf_prodCard a{
            display: block;
            padding: 1rem;
        }
        #pf_ctnProd .pf_prodCard a:hover, #pf_ctnProd .pf_prodCard a:active, #pf_ctnProd .pf_prodCard a:focus{
            text-decoration: none;
        }
        #pf_ctnProd .pf_prodCard:hover {
            border: 1px solid #75de9c;
            box-shadow: 0 0 0 1px #75de9c;
            cursor: pointer;
        }

        .ac_results{
            display: none!important;
        }

        #pf_ctnHome {
            font-size: 30px;
            text-align: center;
            margin-top: 10rem;
        }

        #pf_ctnFacets, #pf_ctnHeader, #pf_ctnProdGlobal{
            display: none;
        }

        #pf_ctnFacets{
            grid-area: pf_ctnFacets-1/pf_ctnFacets-1/pf_ctnFacets-2/pf_ctnFacets-2;  
        }
        #pf_ctnHeader{
          grid-area: pf_ctnHeader;  
        }
        #pf_ctnProdGlobal{
            grid-area: pf_ctnProdGlobal;
        }
        #pf_ctnResSearch{
            display: grid;
            grid-template-areas : 
            "pf_ctnFacets pf_ctnFacets" 
            "pf_ctnFacets-1 pf_ctnHeader" 
            "pf_ctnFacets-2 pf_ctnProdGlobal";
            grid-template-columns: 320px 1fr;
            grid-template-rows: min-content max-content 1fr;
            height : 100%;
            line-height : 24px;
            max-height : 100%;
            overflow-x : hidden;
            overflow-y : auto;
            overscroll-behavior-x : contain;
            overscroll-behavior-y : contain;
            pointer-events : all;
            position : relative;
            padding-bottom : 12px;
            row-gap : 12px;
            margin-top: 3rem;
        }

        #pf_ctnHeader > div{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0 2rem;
        }

        /* BTN close  */
        .pf_closeSearch {
            display: flex;
            z-index: 5;
            width: 24px;
            height: 24px;
            border: 1px solid #cbcccd;
            line-height: 29px;
            text-align: center;
            right: 10px;
            vertical-align: bottom;
            position: absolute;
            top: 10px;
            border-radius: 50px;
            justify-content: center;
            align-items: center;
        }
        .pf_closeSearch svg {
            width: 16px;
            height: 16px;
            fill:#cbcccd;
        }
        .pf_closeSearch:hover {
            cursor: pointer;
        }

        /* Tri */
        #pf_ctnTriProdSel select{

            padding: 2px;
            font-size: 14px;
            background: #ffffff;
            padding: 8px 17px;
            border: 1px solid rgb(203 204 205 / 40%);
            border-radius: 35px;
            font-weight: 500;
            line-height: 15px;
            cursor: pointer;
            overflow: hidden;
            appearance: none;
                background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
        }
        #pf_ctnTriProdSel select:focus, #pf_ctnTriProdSel select:focus-visible{
            outline: 0;
        }

        /* Product */
        .pf_prodTitle {
            font-size: 14px;
            /* font-weight: 600; */
            line-height: 20px;
            min-height: 60px;
            margin-top: 1rem;
            letter-spacing: 0.02rem;
            /* opacity: .9; */
        }
        .pf_prodPrice{
                font-size: 16px;
            font-weight: 600;
                margin: 0.25rem 0;
        }
        .pf_prodPrice > div{
            display: inline-block;
        }
        .pf_prodPriceOld{
            margin-left: 1rem;
            text-decoration: line-through;
            color: #fbbc04;
        }

        .pf_prodReview {
            position: relative;
            display: inline-flex;
            font-size: 18px;
            margin: 0 auto;    min-height: 35px;
            letter-spacing: 0.05rem;
            flex-direction: column;
        }
        .pf_prodRating {
            position: relative;
            display: inline-flex;
        }
        .pf_prodRatingVal {
            position: absolute;
            overflow: hidden;
            display: inline-flex;
            z-index: 9;
        }
        .pf_prodRatingVal span{
            margin: 0 1px;
        }
        .pf_prodRatingVal svg{
            fill: #fbbc04;
                width: 14px;
                    height: 14px;
        }
        .pf_prodRatingIni {
            position: relative;
        }
        .pf_prodRatingIni span{
            margin: 0 1px;
        }
        .pf_prodRatingIni svg{
            fill: #d2d6da;
            width: 14px;
            height: 14px;
        }
        .pf_prodNbReviews {
            font-size: 12px;
            font-style: italic;
            margin-top: -6px;
            opacity: .5;
        }


 .pf_loaderBar {
    display: none;
 }
.pf_moreProduct {
    display: block;
    border: 1px solid rgb(203 204 205 / 40%);
    padding: 1rem;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
 }
 .pf_moreProduct:hover {
    cursor: pointer;
 }

.pf_supportIO .pf_moreProduct{
    display: none;
}
.pf_supportIO .pf_loaderBar{
    display: block;
}

 /* Loading */
 .pf_loaderPagi{text-align: center;}
 .pf_loaderBar {
    position: relative;
    width: 100%;
    height: 9px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 2px;
    background: #e1e1e1;
    box-shadow: inset 0 1px 1px rgba(212,212,212,.5);
    float: left;
    overflow: hidden;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -o-border-radius: 40px;
}

.pf_loaderBar-inner {
    background-color: #c1c1c1;
    width: 1%;
    height: 100%;
    background-size: 18px 18px;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -o-border-radius: 40px;
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -ms-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    /* box-shadow: inset 0 2px 8px rgba(255,255,255,.35); */
    box-sizing: border-box;
    -webkit-animation: slide 20s linear infinite;
    -ms-transform: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
    @-webkit-keyframes slide {
        from { background-position: 0 0; }
        to { background-position: 400px 0; }
    }
    

/* suggest */
#pf_suggest {
position: absolute;
    top: 7px;
    left: 20rem;
    z-index: 10000;
}
#pf_suggest a, #pf_bestSearch > div > span {
    display: inline-block;
    border: 1px solid rgb(203 204 205 / 40%);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
    margin: 0 0.75rem;
    -ms-transform: 0.15s;
    -webkit-transition: 0.15s;
    -moz-transition: 0.15s;
    transition: 0.15s;
}
#pf_suggest a:hover, #pf_bestSearch > div > span:hover {
   border: 1px solid #75de9c;
   cursor: pointer;
}
/*
#pf_suggest a strong{
    color : #75de9c;
}
*/


/* Facets */
#pf_ctnFacets > div > div > div {
    display: block;
    /* background: #ededed; */
    padding: 1rem 2rem 0.75rem;
    font-weight: 600;
    font-size: 17px;
}

#pf_ctnFacets > div > div > div:hover {
    cursor: pointer;
}
#pf_ctnFacets > div > div svg {
    position: absolute;
    width: 18px;
    right: 14px;
    height: 18px;
    top:13px;
    transition: all .2s ease;
}
.pf_facet.pf_active > div svg {
    transform: rotate(90deg);
}
#pf_ctnFacets .pf_facet > span, #pf_ctnFacets .pf_facet > label {
    margin: 0;
    padding: 0;
    height: 0px;
    display: block;
        padding: 0rem 2.5rem;
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease;
}
#pf_ctnFacets .pf_facet.pf_active > span, #pf_ctnFacets .pf_facet.pf_active > label {
    display: block;
    padding: 0.25rem 2.5rem;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    line-height: 24px;
    height: 24px;
}

#pf_ctnFacets .pf_facet em{
    display: inline-block;
    font-size: 14px;
    margin-left: 0.25rem;
    font-style: normal;
}
#pf_ctnFacets .pf_facet.pf_active em{
display: none;
}

#pf_ctnFacets .pf_facet.pf_active > span:last-child, #pf_ctnFacets .pf_facet.pf_active > label:last-child {
    margin-bottom: 2rem;
}
.pf_facet {
    position: relative;
    border-bottom: 1px solid #ededed;
}
#pf_ctnFacets > div > div > label {
    display: block;
    padding: 0 0 0 1.5rem;
    margin: 0;
} 
#pf_ctnFacets > div > div > label:hover{
    cursor: pointer;
}
#pf_ctnFacets > div > div > label span{
    margin-left: 0.75rem;
    font-weight: normal;
    font-size: 14px;
}
#pf_ctnFacets input {
     width: auto; 
     margin: 0 ; 
     display: inline-block; 
     padding: 1rem ; 
}

#pf_ctnFacets input.pf_searchSubfacet{
    border: 1px solid rgb(203 204 205 / 40%);
    font-size: 13px;
    font-weight: 100;
    border-radius: 4px;
    outline: none;
    width: 100%;
}
.pf_facet.pf_active .pf_searchBrands{
    
    overflow: visible!important;
    margin-bottom: 10px!important;
}
#pf_ctnFacets input.pf_searchSubfacet:focus, #pf_ctnFacets input.pf_searchSubfacet:focus-visible{
    border: 1px solid #75de9c;
}


#pf_ctnFacets .filter_use > div{
    background: rgb(239 83 80 / 20%);
}

/* Voir - / voir - */
.pf_facet [data-extra-content]:not([data-selected]) {
    display: none!important;
}
.pf_facet.pf_moreFacetsSubShow [data-extra-content] {
    display: block!important;
}

.pf_facet .pf_moreFacetsSub span:nth-of-type(2){
    display: none;
}
.pf_facet.pf_moreFacetsSubShow .pf_moreFacetsSub span:nth-of-type(2){
    display: block;
}

.pf_facet.pf_moreFacetsSubShow .pf_moreFacetsSub span:nth-of-type(1){
    display: none;
}
.pf_facet .pf_moreFacetsSub{
    text-align: center;
    color:#dddddd;
}
.pf_facet .pf_moreFacetsSub:hover{
    color:initial;
    cursor: pointer;
}

.pf_facetHidden{
    display: none!important;
}

.pf_facet .pf_searchSubfacet {
    padding-top: 0.2rem!important;
    padding-bottom: 0.2rem!important;
    height: auto;
}



/* Price Range Slider */
.range-slider.grad {
  --progress-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) inset;
  --progress-flll-shadow: var(--progress-shadow);
  --fill-color: linear-gradient(to right, LightCyan, var(--primary-color));
  --thumb-shadow: 0 0 4px rgba(0, 0, 0, 0.3),
    -3px 9px 9px rgba(255, 255, 255, 0.33) inset,
    -1px 3px 2px rgba(255, 255, 255, 0.33) inset,
    0 0 0 99px var(--primary-color) inset;
}
.range-slider.grad input:hover {
  --thumb-transform: scale(1.2);
}
.range-slider.grad input:active {
  --thumb-shadow: inherit;
  --thumb-transform: scale(1);
}

.range-slider.flat {
  --thumb-size: 18px;
  --track-height: calc(var(--thumb-size) / 7);
  --progress-shadow: none;
  --progress-flll-shadow: none;
  --thumb-shadow: 0 0 0 4px white inset, 0 0 0 99px var(--primary-color) inset;
  --thumb-shadow-hover: 0 0 0 2px white inset, 0 0 0 99px var(--primary-color) inset;
  --thumb-shadow-active: 0 0 0 4px white inset, 0 0 0 99px var(--primary-color) inset;
}

.range-slider.overlay {
  --primary-color: #d6e9ff;
  --track-height: 50px;
  --thumb-size: var(--track-height);
  --thumb-color: var(--primary-color);
  --thumb-shadow: none;
  --progress-flll-shadow: none;
  --progress-shadow: none;
  --progress-background: none;
  --progress-radius: 0px;
  --ticks-color: var(--primary-color);
  --ticks-height: 0;
  --ticks-thickness: 0;
  --ticks-gap: 0px;
  --min-max-font: 700 18px Arial;
  --min-max-opacity: 1;
  --show-min-max: none;
  color: #75de9c;
}
.range-slider.overlay input:hover {
  --thumb-shadow: calc(25px - (50px * var(--is-left-most))) 0 0 -15px #75de9c
    inset;
}
.range-slider.overlay input:active {
  --thumb-color: inherit;
}
.range-slider.overlay .range-slider__values {
  width: calc(100% - 50% / (var(--max) - var(--min)));
}

.range-slider {
  --primary-color: #75de9c;
  --value-offset-y: var(--ticks-gap);
  --value-active-color: white;
  --value-background: transparent;
  --value-background-hover: var(--primary-color);
  --value-font: 700 12px/1 Arial;
  --fill-color: var(--primary-color);
  --progress-background: #eee;
  --progress-radius: 20px;
  --track-height: calc(var(--thumb-size) / 2);
  --min-max-font: 12px Arial;
  --min-max-opacity: 0.5;
  --min-max-x-offset: 10%;
  --thumb-size: 18px;
  --thumb-color: white;
  --thumb-shadow: 0 0 3px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 0 0 99px var(--thumb-color) inset;
  --thumb-shadow-active: 0 0 0 calc(var(--thumb-size) / 4) inset
      var(--thumb-color),
    0 0 0 99px var(--primary-color) inset, 0 0 3px rgba(0, 0, 0, 0.4);
  --thumb-shadow-hover: var(--thumb-shadow);
  --ticks-thickness: 1px;
  --ticks-height: 5px;
  --ticks-gap: var(
    --ticks-height,
    0
  );
  --ticks-color: silver;
  --step: 1;
  --ticks-count: Calc(var(--max) - var(--min)) / var(--step);
  --maxTicksAllowed: 30;
  --too-many-ticks: Min(1, Max(var(--ticks-count) - var(--maxTicksAllowed), 0));
  --x-step: Max(
    var(--step),
    var(--too-many-ticks) * (var(--max) - var(--min))
  );
  --tickInterval: 100/ ((var(--max) - var(--min)) / var(--step)) * var(--tickEvery, 1);
  --tickIntervalPerc: calc(
    (100% - var(--thumb-size)) / ((var(--max) - var(--min)) / var(--x-step)) *
      var(--tickEvery, 1)
  );
  --value-a: Clamp(
    var(--min),
    var(--value, 0),
    var(--max)
  );
  --value-b: var(--value, 0);
  --text-value-a: var(--text-value, "");
  --completed-a: calc(
    (var(--value-a) - var(--min)) / (var(--max) - var(--min)) * 100
  );
  --completed-b: calc(
    (var(--value-b) - var(--min)) / (var(--max) - var(--min)) * 100
  );
  --ca: Min(var(--completed-a), var(--completed-b));
  --cb: Max(var(--completed-a), var(--completed-b));
  --thumbs-too-close: Clamp(
    -1,
    1000 * (Min(1, Max(var(--cb) - var(--ca) - 5, -1)) + 0.001),
    1
  );
  --thumb-close-to-min: Min(1, Max(var(--ca) - 2, 0));
  --thumb-close-to-max: Min(1, Max(98 - var(--cb), 0));
  display: inline-block;
  height: max(var(--track-height), var(--thumb-size));
 /* background: linear-gradient(to right, var(--ticks-color) var(--ticks-thickness), transparent 1px) repeat-x;*/
  background-size: var(--tickIntervalPerc) var(--ticks-height);
  background-position-x: calc( var(--thumb-size) / 2 - var(--ticks-thickness) / 2 );
  background-position-y: var(--flip-y, bottom);
  padding-bottom: var(--flip-y, var(--ticks-gap));
  padding-top: calc(var(--flip-y) * var(--ticks-gap));
  position: relative;
  z-index: 1;
}
.range-slider[data-ticks-position=top] {
  --flip-y: 1;
}
.range-slider::before, .range-slider::after {
  --offset: calc(var(--thumb-size) / 2);
  content: counter(x) var(--suffix, "");
  display: var(--show-min-max, block);
  font: var(--min-max-font);
  position: absolute;
  bottom: var(--flip-y, -2.5ch);
  top: calc(2.5ch * var(--flip-y));
  opacity: clamp(0, var(--at-edge), var(--min-max-opacity));
  transform: translateX(calc(var(--min-max-x-offset) * var(--before, -1) * -1)) scale(var(--at-edge));
  pointer-events: none;
}
.range-slider::before {
  --before: 1;
  --at-edge: var(--thumb-close-to-min);
  counter-reset: x var(--min);
  left: var(--offset);
}
.range-slider::after {
  --at-edge: var(--thumb-close-to-max);
  counter-reset: x var(--max);
  right: var(--offset);
}
.range-slider__values {
  position: relative;
  top: 50%;
  line-height: 0;
  text-align: justify;
  width: 100%;
  pointer-events: none;
  margin: 0 auto;
  z-index: 5;
}
.range-slider__values::after {
  content: "";
  width: 100%;
  display: inline-block;
  height: 0;
  background: red;
}
.range-slider__progress {
  --start-end: calc(var(--thumb-size) / 2);
  --clip-end: calc(100% - (var(--cb)) * 1%);
  --clip-start: calc(var(--ca) * 1%);
  --clip: inset(-20px var(--clip-end) -20px var(--clip-start));
  position: absolute;
  left: var(--start-end);
  right: var(--start-end);
  top: calc( var(--ticks-gap) * var(--flip-y, 0) + var(--thumb-size) / 2 - var(--track-height) / 2 );
  height: calc(var(--track-height));
  background: var(--progress-background, #eee);
  pointer-events: none;
  z-index: -1;
  border-radius: var(--progress-radius);
}
.range-slider__progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  -webkit-clip-path: var(--clip);
          clip-path: var(--clip);
  top: 0;
  bottom: 0;
  background: var(--fill-color, black);
  box-shadow: var(--progress-flll-shadow);
  z-index: 1;
  border-radius: inherit;
}
.range-slider__progress::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: var(--progress-shadow);
  pointer-events: none;
  border-radius: inherit;
}
.range-slider > input {
  -webkit-appearance: none;
  width: 100%;
  height: var(--thumb-size);
  margin: 0;
  position: absolute;
  left: 0;
  top: calc( 50% - Max(var(--track-height), var(--thumb-size)) / 2 + calc(var(--ticks-gap) / 2 * var(--flip-y, -1)) );
  /*cursor: -webkit-grab;
  cursor: grab;
cursor: -webkit-w-resize;
  cursor: w-resize;*/
  outline: none;
  background: none;z-index: 2;
}
.range-slider > input:not(:only-of-type) {
  pointer-events: none;
}
.range-slider > input::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  height: var(--thumb-size);
  width: var(--thumb-size);
  transform: var(--thumb-transform);
  border-radius: var(--thumb-radius, 50%);
  background: var(--thumb-color);
  box-shadow: var(--thumb-shadow);
  border: none;
  pointer-events: auto;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.range-slider > input::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  height: var(--thumb-size);
  width: var(--thumb-size);
  transform: var(--thumb-transform);
  border-radius: var(--thumb-radius, 50%);
  background: var(--thumb-color);
  box-shadow: var(--thumb-shadow);
  border: none;
  pointer-events: auto;
  -moz-transition: 0.1s;
  transition: 0.1s;
}
.range-slider > input::-ms-thumb {
  appearance: none;
  height: var(--thumb-size);
  width: var(--thumb-size);
  transform: var(--thumb-transform);
  border-radius: var(--thumb-radius, 50%);
  background: var(--thumb-color);
  box-shadow: var(--thumb-shadow);
  border: none;
  pointer-events: auto;
  -ms-transition: 0.1s;
  transition: 0.1s;
}
.range-slider > input:hover {
  --thumb-shadow: var(--thumb-shadow-hover);
}
.range-slider > input:hover + output {
  --value-background: var(--value-background-hover);
 /* --y-offset: 0px;*/
  color: var(--value-active-color);
  /*
  box-shadow: 0 0 0 3px var(--value-background);*/
}
.range-slider > input:active {
  --thumb-shadow: var(--thumb-shadow-active);
  cursor: -webkit-grabbing;
  cursor: grabbing;
  z-index: 2;
}
.range-slider > input:active + output {
  transition: 0s;
}
.range-slider > input:nth-of-type(1) {
  --is-left-most: Clamp(0, (var(--value-a) - var(--value-b)) * 99999, 1);
}
.range-slider > input:nth-of-type(1) + output {
  --value: var(--value-a);
  --x-offset: calc(var(--completed-a) * -1%);
}
.range-slider > input:nth-of-type(1) + output:not(:only-of-type) {
  --flip: calc(var(--thumbs-too-close) * -1);
}
.range-slider > input:nth-of-type(1) + output::after {
  content: var(--prefix, "") var(--text-value-a) var(--suffix, "");
}
.range-slider > input:nth-of-type(2) {
  --is-left-most: Clamp(0, (var(--value-b) - var(--value-a)) * 99999, 1);
}
.range-slider > input:nth-of-type(2) + output {
  --value: var(--value-b);
}
.range-slider > input:only-of-type ~ .range-slider__progress {
  --clip-start: 0;
}
.range-slider > input + output {
  --flip: -1;
  --x-offset: calc(var(--completed-b) * -1%);
  --pos: calc(
    ((var(--value) - var(--min)) / (var(--max) - var(--min))) * 100%
  );
  pointer-events: none;
  position: absolute;
  z-index: 5;
  background: var(--value-background);
  border-radius: 10px;
  padding: 2px 6px;
  left: var(--pos);
  transform: translate(var(--x-offset), calc( 200% * var(--flip) - (var(--y-offset, 0px) + var(--value-offset-y)) * var(--flip) ));
  transition: all 0.12s ease-out, left 0s;
}
.range-slider > input + output::after {
  content: var(--prefix, "") var(--text-value-b) var(--suffix, "");
  font: var(--value-font);
}
/*
body {
  height: 100vh;
  display: grid;
  place-content: space-evenly;
  place-items: center;
  gap: 10%;
  padding: 0;
}

@media screen and (max-width: 500px) {
  body {
    padding-top: 2em;
    gap: 8%;
  }
}
*/

/*
body > .range-slider,
label[dir=rtl] .range-slider {
  width: clamp(300px, 50vw, 800px);
  min-width: 200px;
}*/

.pf_facet.price.pf_active span{
    height: 80px!important;
}
#pf_ctnFacets .pf_facet.pf_active.price > span:last-child{
    margin-bottom: 0;
}
.range-slider{
  width: 100%;margin-top: 4rem;

}

#pf_ctnFacets .range-slider > input{
    padding: inherit!important;
    width: inherit; 

}

#pf_ctnFacets input {
    /* width: auto; */
    /* margin: 0; */
    /* display: inline-block; */
    /* padding: 1rem; */
}

.productFinder .priceStartTo {
    font-weight: 400;
    font-size: 12px;
    margin-right: 3px;
}

/* GRAPH  */

.productFinder .graph{
    display: flex;
    width: 100%;
    height: 54px;
    position: absolute;
    flex-basis: auto;
    flex-direction: row;
    align-items: flex-end;
    /* background: #dedede; */
    margin: auto;
    bottom: 5px;
    padding: 0px 10px;
}
.productFinder .item{
    width: 100%;
    background: rgb(117 222 156 / 25%);
    flex-basis: auto;
    margin-left: 1px;
    /* border-radius: 3px; */
   /* z-index: 10;*/
       -ms-transform: 0.15s;
    -webkit-transition: 0.15s;
    -moz-transition: 0.15s;
    transition: 0.15s;
}
.productFinder .item:hover{
    background: rgb(117 222 156 / 50%);
    cursor: pointer;
}
.productFinder .item.disabled{
    background:rgb(158 158 158 / 20%);
    z-index: 0;
}
.productFinder .item.disabled:hover{
    background:rgb(158 158 158 / 50%);
}

/* Hack Slider Min Price */
.productFinder .range-slider.ActiveMin > input:nth-of-type(1) + output::after{
  content:  var(--text-value-testMinAff) var(--suffix, "")
}
.productFinder .range-slider::before {
    content: var(--text-value-testMinAff) var(--suffix, "");
}
 /* Hack Slider Max Price */
.productFinder .range-slider.ActiveMax > input:nth-of-type(2) + output::after{
  content:  var(--text-value-testMaxAff) var(--suffix, "")
}
.productFinder .range-slider::after {
    content: var(--text-value-testMaxAff) var(--suffix, "");
}



    .pf_mobile-only {
        display: none;
    }


#pf_bestSearch{
    padding: 0 2rem;

}
#pf_bestSearch > div{
    font-weight: 600;
    font-size: 18px;
    display: block;
}

#pf_bestSearch > div > span {
    width: max-content;
    margin: 1rem 0.75rem 0rem;
}
#pf_bestSearch > div.pf_noResult {
    margin: 1rem 0;
    font-size: 16px;
    font-weight: 300;
}
#pf_bestSearch img{
    margin-top: 2rem;
}

#pf_bestSearch{ display:none;margin-left:17%;margin-top:6rem }


@media (min-width:590px) and (max-width:1200px) { 
    .pf_panelDesktop .productFinder{
        width:90vw;
    }
    #pf_ctnProd {
        gap: 2%;
        grid-template-columns: repeat(auto-fill, 30%);
        justify-content: center;
    }
}
@media (min-width:1201px) and (max-width:1600px) { 
    .pf_panelDesktop .productFinder{
        width:70vw;
    }
    #pf_ctnProd {
        gap: 2%;
        grid-template-columns: repeat(auto-fill, 30%);
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 590px) { /* CF. Config Module */

    .pf_panelMobile.pf_panelOpen{
        height: 100%;
        overflow: hidden;
        position: static;
    }

    #pf_ctnProd::-webkit-scrollbar, #pf_ctnFacets::-webkit-scrollbar {
        width: 4px;
    }

    #pf_ctnResSearch {
        grid-template-areas:
            " pf_ctnHeader"
            "pf_ctnProdGlobal";
        grid-template-columns: 1fr;
        margin-top: 0rem;
        row-gap: 0;
        z-index: 10000;
    }

    .productFinder{
        height: 100%!important;
        width: 100%;
    }
    .pf_panelOpen .productFinder {
        position: fixed;
        /*height: 100%;*/
    }
    #pf_ctnProd {
        height: calc(100vh - 100px);
        padding: 0;
        margin: 0;
        grid-gap: 0;
        /* gap: 1px; */
        justify-content: center;
        grid-template-columns: repeat(2, 50%);
        /* padding-top: 1.5rem; */
        grid-row-gap: 1px;
        background: rgb(203 204 205 / 40%);
        grid-column-gap: 1px;
        overflow-x: hidden;
        padding-top: 1px;
        padding-bottom: 1px;
    }
    #pf_ctnProd .pf_prodCard {
        border: 0;
        border-radius: 0;
    }
    .productFinder input#pf_mobileInputSearch {
        width: 100%;
        margin: 1rem 3.75rem 1rem;
        display: inline-block;
        padding: 1rem 4.75rem 0.85rem;
        line-height: 14px;
        font-weight: bold;
        font-size: 16px;
        border: 0;
        border-radius: 20px;
        /* border-bottom: 2px solid rgb(203 204 205 / 40%); */
    }
    .pf_closeSearch {
        right: 20px;
        top: 24px;
    }
    .productFinder input#pf_mobileInputSearch:focus,
    .productFinder input#pf_mobileInputSearch:focus-visible {
        outline: 0;
    }
    #pf_suggest {
        position: relative; 
        margin: 0 1rem;
        margin-bottom: 1rem;
        left: 0;
        overflow-x: auto;
       
    }
    #pf_suggest > div{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    #pf_suggest a {
        margin: 0 0.5rem;
        white-space: nowrap;
        margin-bottom: 1rem;
    }

    #pf_ctnHeader{
        /* box-shadow: 0px -1px 10px 0px rgb(44 54 59 / 25%); */
        z-index: 100;
    }
    #pf_ctnHeader > div{
        padding-bottom: 1rem;
    }
/*
    #pf_ctnFacets {
        display: none!important;
    }*/
    #pf_ctnFacets {
        /* display: none !important; */
        display: flex;
        /* box-shadow: var(--shadow1); */
        border-radius: 10px;
        position: fixed;
        background: #fff;
        bottom: -100vh;
        height: 80%;
        width: 80%;
        left: 10%;
        overflow: hidden;
        z-index: 300;
        flex-direction: column;
        -ms-transform: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        transition: all 0.2s linear 0s;
    }
    #pf_ctnFacets > div{
        margin-top: 1rem;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pf_mobile-only {
        display: block;
    }
     .pf_btnFilter {
        position: fixed;
        bottom: 3%;
        color: #fff;
        z-index: 300;
        border: 0px solid rgb(22 27 67);
        background: #75de9c;
        box-shadow: 0px -1px 10px 0px rgb(44 54 59 / 15%);
        padding: 0.75rem 1.75rem 0.75rem 1.95rem;
        border-radius: 50px;
        left: 50%;
        font-size: 15px;
        transform: translate(-50%, 0);
        display: flex;
        opacity: 0;
        height: 36px;
        align-items: center;
        letter-spacing: 0.05rem;
        -ms-transform: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        transition: all 0.2s linear 0s;
    }
     .pf_btnFilter svg {
        width: 22px;
        height: 21px;
        fill: #fff;
        margin-left: .25rem;
    }
    .pf_panelMobile.pf_panelOpen.pf_scroll .pf_btnFilter {
        opacity: 1;
    }
    .pf_FilterMobileIsOpen .pf_btnFilter {
        bottom: 80%;
    }
    .pf_bBGFilter {
        background: rgba(0, 0, 0, 0.65);
        position: fixed;
        width: 100%;
        left: 0;
        height: 100vh;
        top: 0;
        z-index: 9999;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        visibility: hidden;
        z-index: 200;
    }
    .pf_FilterMobileIsOpen .pf_bBGFilter {
        opacity: 1;
        visibility:visible;
    }
    .pf_FilterMobileIsOpen #pf_ctnFacets {
        bottom: -20px;
    }
    .pf_btnFilter .pf_nbUseFacets{
        display: none;
    }
    .pf_btnFilter.fire .pf_nbUseFacets{
        display: flex;
        position: absolute;
        right: 0px;
        background: #EF5350;
        border-radius: 50px;
        font-size: 14px;
        width: 20px;
        top: -10px;
        height: 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .pf_panelMobile.pf_panelOpen .pf_btnFilter.fire  {
        opacity: 1;
    }
    .pf_btnFilter .pf_nbUseFacets div{
        font-family: "arial";
    }
    .pf_btnFilter .pf_nbUseFacets span{
        position: absolute;
        background: #fff;
        border-radius: 60px;
        width: 17px;
        height: 16px;
        right: -1px;
        display: flex;
        top: -4px;
        justify-content: center;
        align-items: center;
    }
    .pf_btnFilter .pf_nbUseFacets span svg{
        fill: #EF5350;
        width: 14px;
        height: 14px;
    }

    .pf_closeSearch.pf_bottomClose, .pf_bottomScrollTop{
        top: inherit; z-index: 100;
        border-radius: 50px;
        border: none;
        position: fixed;
        justify-content: center;
        -ms-transform: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        transition: all 0.2s linear 0s;
    }


    .pf_closeSearch.pf_bottomClose{
        bottom: 3%;
        color: #fff;
        background: #EF5350;
        box-shadow: 0px -1px 10px 0px rgb(44 54 59 / 15%);
        display: flex;
        opacity: 0;
        align-items: center;
        right: inherit;
        width: 36px;
        left: 3%;
        height: 36px;
    }
    .pf_closeSearch.pf_bottomClose svg{
        fill:#fff;
    }
    .pf_panelMobile.pf_panelOpen.pf_scroll .pf_closeSearch.pf_bottomClose,
    .pf_panelMobile.pf_panelOpen.pf_scroll .pf_bottomScrollTop {
            opacity: 1;
    }
    .pf_bottomScrollTop{
        bottom: 3%;
        color: #fff;
        background: #EF5350;
        box-shadow: 0px -1px 10px 0px rgb(44 54 59 / 15%);
        display: flex;
        opacity: 0;
        align-items: center;
        right: inherit;
        width: 36px;
        right: 3%;
        height: 36px;
          background: #75de9c;
    }
    .pf_bottomScrollTop svg{
        fill:#fff;
                width: 14px;
        height: 14px;
    }
    #pf_ctnProd .pf_prodCard:hover {
        border: none;
        box-shadow: none;
    }

 
    .pf_logoMobile{
        width: 230px;
        margin: .5rem auto 1rem;
    }

    .pf_contentForm{
        position: relative;
        display: flex;
        background: rgb(203 204 205 / 40%);
        min-height: 60px; margin-bottom: 1rem;
    }
    .pf_contentForm svg{
        width: 24px;
        position: absolute;
        margin: 1.95rem 0rem 0 5.25rem;
        fill: rgb(55, 55, 55);
    }


    /*--------------*/
    /* Sans le header Fix, à retirer pour le header fix, voir également JS scrollUp... */
    .productFinder{
        height: 100%;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow-x: hidden !important;
        overflow-y: scroll;
        overflow: scroll!important;
        -webkit-overflow-scrolling: touch;
        /* background-color: #eee;*/ 
        font-size: 16px;
    }
    #pf_ctnProd {
        overflow: hidden;
        height: 100%;
    }

    #pf_bestSearch{ display:block; margin: 0; }

    #pf_mEraz{
        right: 0px;
        margin: 2.25rem 5.25rem 0 0;
        display: none;
    }

}



