/*-----------------------------------------------------------------------*/
/*Général*/
/*-----------------------------------------------------------------------*/
.rating li.off svg path{
    fill: #CBCBCB;
}

.meals-number{
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border: solid 1px #F6F6F6;
    background-color: #F6F6F6;
    border-radius: 15px;
}
.meals-number > span{
    color: #939393;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin-left: 5px;
}
.meals-number.activ{
    border: solid 1px #E56A54;
    background-color: #ffffff;
}
.meals-number.activ > span{
    color: #000000;
}

/*---------------------------------------------------------------------*/
/*Plus*/
/*---------------------------------------------------------------------*/
.pluscss .bar1,
.pluscss .bar2{
    width: 12px;
    height: 3px;
    display: block;
    -webkit-transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #000;
    border-radius: 5px;
}
.pluscss.green .bar1,
.pluscss.green .bar2{
    background-color: #317E6F;
}
.pluscss .bar1{
    transform: rotate(90deg);
    position: relative;
    top: 3px;
}
.pluscss.moins .bar1{
    transform: rotate(180deg);
}
.pluscss .bar2{
    transform: rotate(0deg);
}
.pluscss.moins .bar2{
    transform: rotate(-180deg);
}
.plusborder {
    width: 20px;
    height: 20px;
    border: 2px solid #317E6F;
}
.plusborder .pluscss {
    top: -1px;
}


/*-----------------------------------------------------------------------*/
/*Arrows*/
/*-----------------------------------------------------------------------*/
.arrow{border:solid #000;border-width:0 2px 2px 0;display:inline-block;padding:3px; -webkit-transition: 300ms ease all;-moz-transition: 300ms ease all;-o-transition: 300ms ease all;transition: 300ms ease all;}.arrow.right{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.arrow.left{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.arrow.up{transform:rotate(-135deg);-webkit-transform:rotate(-135deg)}.arrow.down{transform:rotate(45deg);-webkit-transform:rotate(45deg)}
.arrow.pad2{padding:2px;}
.arrow.green{border-color: #317E6F;}


/*-----------------------------------------------------------------------*/
/*Titles*/
/*-----------------------------------------------------------------------*/
.title-trait-bicolor{
    font-size: 22px;
    letter-spacing: 0.6px;
    line-height: 30px;
    font-weight: 700;
}
.title-trait-bicolor > span{
    color: #317E6F;
}
.title-trait-bicolor::before{
    content: '';
    width: 40px;
    height: 4px;
    background-color: #C6DFDB;
    border-radius: 3px;
    display: block;
    margin-bottom: 6px;
}

@media screen and (max-width: 575.98px){
    .title-trait-bicolor{
        font-size: 18px;
    }
}


/*-----------------------------------------------------------------------*/
/*Quantity selector*/
/*-----------------------------------------------------------------------*/
.quantity-selector{
    display: flex;
    transition: .3s;
}
.quantity-selector.add{
    background-color: transparent;
}
.quantity-selector.step0,
.quantity-selector.step1{
    background-color: #fff;
    padding-left: 12px;
}
.quantity-selector input{
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #D1D1D1;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    margin: 0 8px;
    box-sizing: border-box;
}
.quantity-selector .less,
.quantity-selector .more{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.quantity-selector .less svg path,
.quantity-selector .more svg path{
    fill: #fff;
}
.quantity-selector .less{
    background-color: #000;
    left: 102px;
    opacity: 0;
    transition: .3s;
    transition-delay: .15s;
}
.quantity-selector .more{
    background-color: #317E6F;
    z-index: 1;
}
.quantity-selector .input-qty{
    position: relative;
    left: 50px;
    opacity: 0;
    transition: .3s;
    transition-delay: .075s;
}
.quantity-selector .moins-svg,
.quantity-selector .plus-svg{
    position: absolute;
    display: flex;
    align-items: center;
}

.quantity-selector:not(.add) .input-qty,
.quantity-selector:not(.add) .less{
    left: 0;
    opacity: 1;
}
.quantity-selector:not(.add) .input-qty{
    transition-delay: .075s;
}
.quantity-selector:not(.add) .less{
    transition-delay: .15s;
}

.quantity-selector.add .panier-svg{
    opacity: 1;
    transform: rotate(0);
    transition: .3s;
}
.quantity-selector.step0 .panier-svg,
.quantity-selector.step1 .panier-svg{
    opacity: 0;
    transform: rotate(180deg);
    transition: .3s;
}

.quantity-selector.add .plus-svg{
    opacity: 0;
    transform: rotate(-45deg);
    transition: .3s;
}
.quantity-selector.step0 .plus-svg{
    opacity: 1;
    transform: rotate(0deg);
    transition: .3s;
}
.quantity-selector.step0 .trash-svg{
    opacity: 1;
    transform: rotate(0);
    transition: .3s;
}
.quantity-selector.step1 .trash-svg{
    opacity: 0;
    transform: rotate(90deg);
    transition: .3s;
}
.quantity-selector.add .moins-svg,
.quantity-selector.step0 .moins-svg{
    opacity: 0;
    transform: rotate(-45deg);
    transition: .3s;
}
.quantity-selector.step1 .moins-svg{
    opacity: 1;
    transform: rotate(0deg);
    transition: .3s;
}

.addbasketcta{
    position: relative;
    clear: both;
}
.addbasketcta .quantity-selector{
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transition: .3s .3s;
}
.addbasketcta .myctaadd{
    float: right;
    position: relative;
    z-index: 1;
    transition: width .25s, color .025s, opacity .4s, visibility .4s;
}
.addbasketcta.wqty .myctaadd{
    width: 50px;
    opacity: 0;
    visibility: hidden;
    color: rgba(0,0,0,0);
}
.addbasketcta.wqty .quantity-selector{
    opacity: 1;
}

.addbasketcta .quantity-selector .less,
.addbasketcta .quantity-selector .more,
.addbasketcta .quantity-selector input{
    width: 50px;
    height: 50px;
}
.addbasketcta .myctaadd.show-m{
    display: none;
}


@media screen and (min-width: 1024px){
    .quantity-selector.add .more:hover .panier-svg {
        animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        perspective: 1000px;
    }

    @keyframes shake {
        10%, 90% {
            transform: translate3d(-1px, 0, 0);
        }

        20%, 80% {
            transform: translate3d(1px, 0, 0);
        }

        30%, 50%, 70% {
            transform: translate3d(-2px, 0, 0);
        }

        40%, 60% {
            transform: translate3d(2px, 0, 0);
        }
    }
}
@media screen and (max-width: 575.98px){
    .addbasketcta .myctaadd.show-m{
        display: flex;
    }
    .addbasketcta .myctaadd.show-d,
    .addbasketcta .myctaadd.show-t{
        display: none;
    }
    .addbasketcta .myctaadd{
        width: auto;
        min-width: 130px;
    }
}

/*-----------------------------------------------------------------------*/
/*Productblock*/
/*-----------------------------------------------------------------------*/
.productblock {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    display: block;
    background-color: #fff;
}
.productblock .image-container{
    background-color: #FAF8F4;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
}
.productblock .image-container img{
    max-height: 120%;
    object-fit: cover;
}
.pelletblock{
    top: 0;
    left: 0;
    border-radius: 5px;
    text-shadow: 0 0 2px rgba(0,0,0, 0.85);
    height: 40px;
    width: 40px;
}
.pelletblock.mois4, .pelletblock.des-4-mois{background-color: #6AC16D;}
.pelletblock.mois6, .pelletblock.des-6-mois{background-color: #F38575;}
.pelletblock.mois9, .pelletblock.des-9-mois{background-color: #DC81BE;}
.pelletblock.mois12, .pelletblock.des-12-mois{background-color: #DD9F3F;}
.pelletblock.all-age, .pelletblock.all-age{background-color: #327D6E;}
.pelletblock.flagcustom{
    right: 0;
    left: auto;
    height: auto;
    width: auto;
    padding: 7px 6px;
    font-size: 14px;
    background-color: #E7BAE4;
    bottom: 0;
    top: auto;
}

.productblock .top{
    height: 130px;
}
.productblock .bottom{
    height: 45px;
}
.productblock .reduction{
    background-color: #D12100;
    border-radius: 5px;
}
.productblock .f_addbasket{
    right: 0;
    top: 0;
}
.productblock.plv {
    border: 0;
    border-radius: 0;
    position: relative;
}
.productblock.plv img {
    object-position: center;
    -o-object-position: center;
    object-fit: cover;
    -o-object-fit: cover;
}
.productblock.plv .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    letter-spacing: 0.6px;
    line-height: 32px;
    font-family: 'hello-headline';
    text-shadow: 0 0 5px rgba(0,0,0,0.85);
    color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

@media screen and (min-width: 1024px){
    .productblock .image-container img {
        position: relative;
        top: 0;
        transition: .3s;
    }
    .productblock:hover .image-container img {
        top: -4px;
    }
}
@media screen and (max-width: 575.98px){
    /*product bloc horizontal mobile*/
    .productblock.horizontal-m {
        padding: 20px 0;
        border-bottom: 1px solid #DBDBDB;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        border-radius: 0;
        margin: 0!important;
    }
    .productblock.horizontal-m .top-horizontal{
        display: flex;
    }
    .productblock.horizontal-m .top-horizontal .image-container{
        width: 40vw;
        height: 40vw;
    }
    .productblock.horizontal-m .top{
        height: auto;
        flex: 1;
        padding: 0 0 0 10px;
    }
    .productblock.horizontal-m .bot{
        padding: 0;
    }
    .productblock.horizontal-m .pellet{
        width: 30px;
        height: 30px;
        font-size: 8px;
    }
    .productblock.horizontal-m .pellet > span > span{
        font-size: 15px;
    }
    .pelletblock{
        height: 33px;
        width: 33px;
        font-size: 8px;
    }
    .pelletblock span.fs-18{
        font-size: 13px;
    }
}


/*-----------------------------------------------------------------------*/
/*Recipeblock*/
/*-----------------------------------------------------------------------*/
.recipeblock{
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    display: block;
}
.recipeblock .textblock{
    height: 80px;
}
.recipeblock .image-container {
    max-height: 260px;
    overflow: hidden;
}
.recipeblock .image-container img {
    object-fit: cover;
}

@media screen and (min-width: 1024px){
    .recipeblock .image-container {
        border-radius: 5px;
    }
    .recipeblock .image-container img {
        transition: .3s;
    }
    .recipeblock:hover .image-container img {
        transform: scale(1.05);
    }
}



/*-----------------------------------------------------------------------*/
/*Sliders*/
/*-----------------------------------------------------------------------*/
.swiper-arrow,
.arrow-circle{
    border: 1px solid #DBDBDB;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
    background-color: #fff;
}
.swiper-arrow .arrow,
.arrow-circle .arrow{
    position: relative;
}
.swiper-arrow.left .arrow,
.arrow-circle.left .arrow{
    left: 1px;
}
.swiper-arrow.left:hover .arrow,
.arrow-circle.left:hover .arrow{
    left: -2px;
}
.swiper-arrow.right .arrow,
.arrow-circle.right .arrow{
    right: 1px;
}
.swiper-arrow.right:hover .arrow,
.arrow-circle.right:hover .arrow{
    right: -2px;
}
.swiper-arrow.swiper-button-disabled{
    opacity: .4;
}

/*-----------------------------------------------------------------------*/
/*Cross selling*/
/*-----------------------------------------------------------------------*/
.cross-selling{
    overflow: hidden;
}

@media screen and (max-width: 575.98px) {
    .cross-selling .slide{
        width: 75vw;
    }
    .cross-selling .slide:last-child{
        margin-right: 0!important;
    }
}

/*---------------------------------------------------------------------*/
/*Close buttons*/
/*---------------------------------------------------------------------*/
.close-cross{
    position: relative;
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.close-cross:before, .close-cross:after {
    position: absolute;
    left: 6px;
    content: ' ';
    height: 14px;
    width: 2px;
    background-color: #000;
}
.close-cross:before {transform: rotate(45deg);}
.close-cross:after {transform: rotate(-45deg);}


/*---------------------------------------------------------------------*/
/*Composition product*/
/*---------------------------------------------------------------------*/
.composition-product {
    border-top: 1px solid #DBDBDB;
}
.composition-product .emoji {
    width: 65px;
    height: 65px;
    border: 1px solid #DBDBDB;
}
.composition-product .emoji img {
    max-width: 45px;
}
.composition-product .emoji.max25 img {
    max-width: 30px;
}
.composition-product .emoji.max20 img {
    max-width: 20px;
}


/*---------------------------------------------------------------------*/
/*Tabs to toggle*/
/*---------------------------------------------------------------------*/
.tabs-to-toggle .tab {
    border-top: 1px solid #DBDBDB;
}
.tabs-to-toggle .tab:last-child {
    border-bottom: 1px solid #DBDBDB;
}
.tabs-to-toggle .tab .pluscss .bar1,
.tabs-to-toggle .tab .pluscss .bar2{
    background-color: #317E6F;
}
.tabs-to-toggle .tab .hidden:not(.showed){
    display: none;
}

.voirplustexte .hidden{
    display: none;
}


/*---------------------------------------------------------------------*/
/*Product background*/
/*---------------------------------------------------------------------*/
.product-packshot{
    background-color: #FAF8F4;
}


.animated-line {
    background-color: rgba(255,255,255,0.5);
    width: 2px;
    height: 35px;
    position: relative;
    margin: 20px auto 0;
    display: block;
}
.animated-line::after{
    content: '';
    width: 2px;
    background-color: #fff;
    display: block;
    animation: lineAnimate 1.5s infinite;
    position: absolute;
    left: 0;
    bottom: 0;
}

@keyframes lineAnimate{
    from{
        height: 0;
    }
    to{
        height: 35px;
    }
}


/*-----------------------------------------------------------------------*/
/*Social wall*/
/*-----------------------------------------------------------------------*/
.social-wall {
    overflow: hidden;
}
.social-wall .social-slider {
    overflow: visible;
}
.social-wall .social-slider .slide{
    width: 208px;
    height: 243px;
}
.social-wall .social-slider .img-slide svg{
    position: absolute;
    top: 10px;
    right: 10px;
}
.social-wall .social-slider .img-slide svg path{
    fill: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.social-wall .social-slider .text-slide {
    background-color: #FAF8F4;
}
.social-wall .social-slider .text-slide svg {
    position: absolute;
    top: 10px;
    right: 10px;
}


@media screen and (max-width: 575.98px){
    .social-wall .social-slider .slide{
        width: 37vw;
        height: 175px;
    }
    .social-wall .social-slider .img-slide img{
        object-fit: cover;
    }
}

/*-----------------------------------------------------------------------*/
/*Categories slider*/
/*-----------------------------------------------------------------------*/
.categories-slider .slide {
    width: 224px;
}
.categories-slider .slide .text{
    bottom: 25px;
    left: 25px;
    text-shadow: 0 0 5px rgb(0 0 0 / 85%);
}

/*---------------------------------------------------------------------*/
/*FAQ bloc*/
/*---------------------------------------------------------------------*/
.faqbloc {
    width: 300px;
}
.faqbloc p{
    height: 120px;
    box-sizing: border-box;
}

@media screen and (max-width: 575.98px){
    .faqbloc.horizontal-m {
        border: 0;
        padding: 20px 0;
        width: 100%;
    }
    .faqbloc.horizontal-m img {
        width: 160px;
    }
    .faqbloc.horizontal-m p{
        height: auto;
        padding: 0 10px;
    }
    .faqbloc.horizontal-m:not(:first-child){
        border-top: 1px solid #DBDBDB;
    }
}



/*-----------------------------------------------------------------------*/
/*Actualités*/
/*-----------------------------------------------------------------------*/
.cross-selling.actualites .pellet{
    top: 10px;
    left: 0;
}
.cross-selling.actualites .textblock{
    height: 120px;
    box-sizing: border-box;
}
.cross-selling.actualites.no-slider {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.cross-selling.actualites.no-slider .slide {
    width: 300px;
}
.cross-selling.actualites .slide.horizontal-m .visuel {
    aspect-ratio: 1 / 1;
}
.cross-selling.actualites .slide.horizontal-m .visuel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 575.98px){
    .cross-selling.actualites.no-slider{
        display: block;
    }
    .cross-selling.actualites .slide.horizontal-m {
        border: 0;
        padding: 20px 0;
    }
    .cross-selling.actualites .slide.horizontal-m .visuel {
        width: 50%;
    }
    .cross-selling.actualites .slide.horizontal-m .textblock{
        height: auto;
        padding: 0 10px;
    }
    .cross-selling.actualites .slide.horizontal-m:not(:first-child){
        border-top: 1px solid #DBDBDB;
    }
}


.reassurances ul li{
    grid-column: span 4;
}
.reassurances .picto{
    width: 60px;
    height: 60px;
    margin: auto;
}
.reassurances ul:not(.item-4) li{
    grid-column: span 5;
}

@media screen and (max-width: 575.98px){
    .reassurances ul{
        gap: 20px;
    }
    .reassurances ul.item-4 li,
    .reassurances ul:not(.item-4) li{
        grid-column: span 2;
    }
}
.liste_villes{
    padding: 49px 0 15px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-top: -37px;
    border-radius: 20px;
}
.liste_villes li{
    cursor: pointer;
    padding: 9px 20px;
}
.liste_villes li:hover{
    background-color: #ececec;
}
.erreur_avantage{
    background-color: #D35B5B;
}
.color-red-info{
    color: #D35B5B;
}
.erreur_avantage .texterror{
    width: min(90%, 1312px);
    margin-inline: auto;
    padding: 10px 0;
    font-size: 13px;
}
.erreur_avantage .texterror ul{
    margin-top: 10px;
    list-style-type: disclosure-closed;
    list-style-position: inside;
}
.erreur_avantage .texterror ul li{
    margin-top: 5px;
}
.replaceproduct{
    top: 0;
    left: 0;
    background-color: #ffffffc7;
    width: 100%;
    height: 100%;
    color: #317E6F;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.replacedlabel.title{
    font-size: 12px;
}
.replacedlabel{
    position: relative;
    color: #317E6F;
    font-weight: 600;
}
.custom_select{
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 50px;
    padding: 0 21px;
    background-color: #f4f4f4;
    font-weight: 500;
    font-size: 15px;
    /** for the dropdown indicator */
    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: calc(100% - 21px) center;
    background-size: 1em;
}
.icon.icon-close-info {
    height: 2em;
    fill: currentColor;
    cursor: pointer;
    width: 40px;
    margin-right: 50px;
}
.info-livraison {
    display: none;
    background-color: #D35B5B;
    margin: auto;
    padding: 10px 0;
    font-size: 13px;
}
@media screen and (max-width: 768px){
    .info-livraison {
        padding: 15px;
        text-align: center;
    }
}