/*
Theme Name:     Hestia Child
Theme URI:      https://themeisle.com/themes/orfeo/
Author:         BSI IT
Version:        1
Text Domain:    fiddiam
Template:       hestia-pro
Tags: blog, custom-logo, portfolio, e-commerce, rtl-language-support, post-formats, grid-layout, one-column, two-columns, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/


/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
    --primary-color: #009a9d;
    --secondary-color: #3c3c3b;
    --tertiary-color: #666;
    --primary-color-light: #009a9d1a;
    --light-color: #fbfbfb;
}

/*--------------------------------------------------------------
# Titles
--------------------------------------------------------------*/

.hestia-shop-title-area {
    width: 100%;
    margin: 0;
}
h2.hestia-title,
#about h3.widget-title,
#biform-body.single-product h2,
#biform-body.woocommerce-cart .blog-post h1.hestia-title,
#biform-body.woocommerce-checkout .wrapper.no-content article .hestia-title,
#biform-body :is(.upsells,.cross-sells) h2,
.woocommerce-account .page-content-wrap h2:not(.woocommerce-order-details__title, .woocommerce-column__title),
#post-1507 .page-content-wrap h2 {
    position: relative;
    margin-bottom: 16px;
    padding: 0;
    color: var(--primary-color) !important;
    font-size: 30px;
    font-weight: bold;
    text-align: left;
}
h2.hestia-title::before,
#about h3.widget-title::before,
#biform-body.single-product h2::before,
#biform-body.woocommerce-cart .blog-post h1.hestia-title::before,
#biform-body.woocommerce-checkout .wrapper.no-content article .hestia-title::before,
#biform-body :is(.upsells,.cross-sells) h2::before,
.woocommerce-account .page-content-wrap h2:not(.woocommerce-order-details__title, .woocommerce-column__title)::before {
    position: absolute;
    top: -8px;
    left: -20px;
    content: url('assets/image/titre.svg');
}


/*--------------------------------------------------------------
# Général
--------------------------------------------------------------*/

/* Sélection */
::selection {
    background-color: var(--primary-color);
    color: white;
}
/* Scollbar */
/* Pour Chrome, Edge, Opera, Safari */
html::-webkit-scrollbar {
    width: .75rem;
    background-color: var(--primary-color-light);
}
html::-webkit-scrollbar-track {
    background-color: var(--primary-color-light);
}
html::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}
/* Pour Firefox */
html {
    scrollbar-color: var(--primary-color) var(--primary-color-light);
    scrollbar-width: thin;
}
/* Couleur du texte par défaut */
body {
    color: var(--secondary-color);
}
/* Surlignage */
mark,
.mark {
    background-color: var(--primary-color-light);
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Liens et Boutons
--------------------------------------------------------------*/

a,
.btn,
button,
.button,
input {
    box-shadow: none !important;
}

a:hover,
.btn:hover,
button:hover,
.button:hover,
input:hover {
    box-shadow: none !important;
    opacity: 0.75;
}

/* Style général des liens boutons Woocommerce - Alice - 06/03/2023 */
#biform-body .btn,
#biform-body .button,
#biform-body .wpcf7-form input[type="submit"],
#newsletter .mailpoet_form input[type="submit"] {
    padding: 12px 30px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 100px;
    box-shadow: none;
    color: white;
    font-family: DM Sans, Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    opacity: unset;
    text-decoration: unset;
    text-transform: unset;
    transition-duration: .3s;
}
#biform-body .btn:disabled,
#biform-body .button:disabled,
#biform-body .wpcf7-form input[type="submit"]:disabled {
    opacity: .5;
}
#biform-body .btn:not(:disabled):hover,
#biform-body .button:not(:disabled):hover,
#biform-body .wpcf7-form input[type="submit"]:not(:disabled):hover {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
}

/* Bouton ajout au panier - Alice - 07/03/2023 */
#biform-body i {
    background-color: unset;
    color: white;
}
#biform-body .button:not(:disabled):hover i {
    color: var(--primary-color);
}


/* BEGIN - Modification des boutons radio - Patrick - 07/12/2022 */

/* DETAIL IMPORTANT : les input doivent etre lies aux label */

/* Generalement il y a un for="IdDuBoutonRadio" dans label pour qu'un lien soit fait entre le label et l'input */

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--tertiary-color);
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 6px solid var(--primary-color);
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* END - Modification des boutons radio - Patrick */

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: left;
    margin: 0 0 2.992em 0 !important;
    padding: 0;
    position: relative;
    width: 22.05%;
    margin-left: 0;
}

/* Logo loader - Alice - 03/05/2023 */
#biform-body .products.columns-3 .wpfPreview {
    grid-column: 2;
    margin-top: 60px;
}
#biform-body ul.products .spinner, 
#biform-body .la-spinner, 
#biform-body .wpfIconPreview .spinner, 
#biform-body .wpfLoaderIconTemplate .spinner, 
#biform-body .woobewoo-filter-loader.spinner,
#biform-body .woocommerce .blockUI.blockOverlay::before {
    width: 100px;
    height: 100px;
    background: url('assets/image/logo-biform-mini.png');
    background-size: 100%;
    animation: sk-rotatehorizontal 2s infinite ease-in-out;
}
@keyframes sk-rotatehorizontal {
	0% {
		transform: perspective(120px) rotateY(0deg);
	}
	50% {
		transform: perspective(120px) rotateY(-180deg);
	}
	100% {
		transform: perspective(120px) rotateY(-360deg);
	}
}


/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/

/* Popup - Alice- 22/05/2023 */
#biform-body .mailpoet_form_close_icon {
    width: 30px;
    height: 30px;
}


/*--------------------------------------------------------------
## Navigation Navbar
--------------------------------------------------------------*/

/* Couleur du lien "Mon compte" - Alice - 20/02/2023 */
#menu-menu-principal-1 a {
    color: var(--primary-color);
}

.title-logo-wrapper {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.navbar .navbar-collapse>.navbar-nav>li.menu-item {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 19px;
}

.navbar .navbar-collapse>.navbar-nav>li.menu-item>a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

#main-navigation ul.nav>li.btn.btn-primary a {
    padding-top: 11px;
    padding-bottom: 11px;
}

#main-navigation ul.nav>li.btn.btn-primary:hover {
    opacity: 0.75;
}

.navbar {
    -webkit-box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
}

/* Menu déployé - Alice - 23/02/2023 */
.navbar .navbar-nav > li > a:hover::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 3px;
    display: block;
    background-color: var(--primary-color);
    content: "";
}
@media (max-width: 500px) {
    .navbar .navbar-nav > li > a:hover::after {
        display: none;
    }
}
.navbar.navbar-default:not(.navbar-transparent) .navbar-nav > li > .dropdown-menu {
    top: calc(100% + 15px);
    padding: 20px 15px;
    border-radius: 0;
}
.navbar.navbar-default:not(.navbar-transparent) .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    left: calc(100% + 16px);
    border-radius: 0;
}
.navbar .navbar-nav > li.double-colonne > .dropdown-menu {
    column-gap: 140px;
}
.navbar .navbar-nav > li .dropdown-menu li.menu-titre > a {
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
}
.navbar .navbar-nav > li .dropdown-menu li.menu-titre:not(:first-child) > a {
    visibility: hidden;
}
@media (max-width: 500px) {
    .navbar .navbar-nav > li .dropdown-menu li.menu-titre:not(:first-child) > a {
        display: none;
    }
    .navbar .navbar-nav .dropdown .dropdown-menu li a {
        padding: 10px;
        white-space: initial;
    }
}
.navbar.navbar-default:not(.navbar-transparent) .navbar-nav .dropdown-menu li a[href="#"] {
    color: var(--secondary-color);
    pointer-events: none;
}
.navbar.navbar-default:not(.navbar-transparent) .navbar-nav .dropdown-menu li a {
    font-size: 15px;
    opacity: 1;
}
.navbar.navbar-default:not(.navbar-transparent) .navbar-nav .dropdown-menu li a:hover {
    color: var(--secondary-color);
    font-weight: bold;
}
.navbar .navbar-nav > li > .dropdown-menu > li:not(.menu-titre) > a::before {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 11px;
    border-radius: 50% 0 50% 0;
    background-color: var(--primary-color);
    content: "";
}
/* Travail effectué par Alice precedemment - Patrick - 09/10/2023 */
/* .navbar .navbar-nav > li > .dropdown-menu > li:nth-child(6n + 2) > a::before {
    background-color: #a76393;
}
.navbar .navbar-nav > li > .dropdown-menu > li:nth-child(6n + 3) > a::before {
    background-color: #10a2dc;
}
.navbar .navbar-nav > li > .dropdown-menu > li:nth-child(6n + 4) > a::before {
    background-color: #ff7d26;
}
.navbar .navbar-nav > li > .dropdown-menu > li:nth-child(6n + 5) > a::before {
    background-color: #53d1ee;
}
.navbar .navbar-nav > li > .dropdown-menu > li:nth-child(6n + 6) > a::before {
    background-color: #ffa22b;
}
.navbar .navbar-nav > li > .dropdown-menu > li.menu-titre + li > a::before {
    background-color: #a76393 !important;
}
.navbar .navbar-nav > li > .dropdown-menu > li.menu-titre + li + li > a::before {
    background-color: #10a2dc !important;
}
.navbar .navbar-nav > li > .dropdown-menu > li.menu-titre + li + li + li > a::before {
    background-color: #ff7d26 !important;
}
.navbar .navbar-nav > li > .dropdown-menu > li.menu-titre + li + li + li + li > a::before {
    background-color: #53d1ee;
}
.navbar .navbar-nav > li > .dropdown-menu > li.menu-titre + li + li + li + li + li > a::before {
    background-color: #ffa22b;
}
.navbar .navbar-nav > li > .dropdown-menu > li.menu-titre + li + li + li + li + li +li > a::before {
    background-color: var(--primary-color);
} */

.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Bien-être de la femme"]::before {
    background-color: #ab6b91;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Les Omégas"]::before {
    background-color: #0074b9;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Antioxydants & Super-nutriments"]::before {
    background-color: #007f90;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Minéraux & Oligo-Eléments"]::before {
    background-color: #58b7d9;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Défenses naturelles & Vitamines"]::before {
    background-color: #f7a600;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Immunité"]::before {
    background-color: #f7a600;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Produits spécifiques"]::before {
    background-color: #382a72;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Digestion & Détox"]::before {
    background-color: #967058;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Sommeil, Stress et Dépression"]::before {
    background-color: #555aa4;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Prostate et sexualité"]::before {
    background-color: #dc0814;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Contrôle du poids, cholestérol & glycémie"]::before {
    background-color: #ec607e;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Audition"]::before {
    background-color: #f2aa75;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Anti-âge"]::before {
    background-color: #741e7a;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Anti-rides"]::before {
    background-color: #881581;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Nutrition cérébrale & Acides aminés"]::before {
    background-color: #85a9b8;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Vitalité, Energie et Tonus"]::before {
    background-color: #009984;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Cardiovasculaire et Circulation"]::before {
    background-color: #c10a27;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Confort articulaire"]::before {
    background-color: #56af31;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Santé Hormonale"]::before {
    background-color: #afa9cb;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Cosmétiques"]::before {
    background-color: #afa9cb;
}
.navbar .navbar-nav > li > .dropdown-menu > li > a[title="Cosmétique Pure&Lab"]::before {
    background-color: #afa9cb;
}

/* Responsive - Alice */
@media (min-width: 990px) {
    .navbar {
        padding-bottom: 4px;
    }
    .navbar .navbar-nav > li.double-colonne > .dropdown-menu {
        column-count: 2;
    }
}

/* Patrick - 14/11/2022 */
/* Very top bar */
.hestia-top-bar .quantity,
.hestia-top-bar .woocommerce-mini-cart__total,
.hestia-top-bar .woocommerce-Price-amount {
    color: #ffffff;
}
#biform-body .hestia-top-bar .pull-left.col-md-6 {
	display:block;
	width:100%;
	text-align:center;
}
/* @media (max-width: 500px) {
    .hestia-top-bar {
        display: none;
    }
} */
/* Button in main menu with accent_color */
.btn.btn-primary {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.btn.btn-primary:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
/* Ce code est identique a celui present dans le theme hestia*/
.navbar.hestia_right .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* Cette ligne a ete ajoute pour permettre l'alignement justifie du contenu du menu categorie */
    justify-content: space-between;
}
/* Pour grossir la taille des caractere du menu principal categorie */
.navbar #main-navigation.navbar-collapse>#menu-categorie.navbar-nav>li.menu-item>a {
    font-size: 15px !important;
}
/* Offre Black Friday - Retirer la feuille de fond car ne s'adapte pas au texte (c'est une image) - Patrick - 19/11/2025 */
@media (max-width: 990px) {
    .navbar:not(.navbar-transparent) li:not(.btn).container_special_offer>a {
        background-image: none !important;
    }
}
/* Feuille derriere offres speciales */
@media (min-width: 990px) {
    .navbar:not(.navbar-transparent) li:not(.btn).container_special_offer>a {
        color: var(--primary-color);
        background-image: url(/wp-content/uploads/2022/11/special_offer.webp);
        background-repeat: no-repeat;
        background-position: left;
        width: 190px;
    }
}
/* Ajout des media pour que la feuille d'offre speciale soit affichee correctement sur tablette et telephone - Patrick - 18/01/2023 */
@media (max-width: 990px) {
    .navbar:not(.navbar-transparent) li:not(.btn).container_special_offer>a {
        padding-left: 25px !important;
        color: var(--primary-color) !important;
        background-image: url(/wp-content/uploads/2022/11/special_offer.webp);
        background-repeat: no-repeat;
        background-position: left;
    }
}

/* Ajustement du panier et formulaire de recherche - Patrick - 18/01/2023 */
@media (max-width: 768px) {
    .hestia_right .header-sidebar-wrapper {
        display: flex;
        /* width: 300px; */
        float: right;
        padding-top: 60px;
        margin-bottom: -20px;
    }
    .navbar.hestia_right .navbar-header {
        padding-left: 10px;
    }
    #biform-body .aws-container .aws-search-form {
        padding-top: 0;
    }
    #biform-body .aws-container .aws-show-clear .aws-search-field {
        height: auto;
        padding: 0 5px 5px;
    }
    #biform-body #woocommerce_widget_cart-3 {
        margin: 0;
        float:right;
        display: flex;
        flex-direction: column;
        margin-left: auto;
    }
}


/* Bouton supprimer du panier dans le header - Alice - 03/05/2023 */
#biform-body .woocommerce.widget_shopping_cart .cart_list li a.remove {
    background-image: unset;
    font-size: 0;
}
#biform-body .woocommerce.widget_shopping_cart .cart_list li a.remove::before {
    color: var(--tertiary-color) !important;
    content: "\f2ed";
    font-family: "Font Awesome 5 Free";
}
#biform-body .woocommerce.widget_shopping_cart .cart_list li a.remove:hover::before {
    color: var(--primary-color) !important;
}

/* Bouton Commander dans le header - Alice - 07/03/2023 */
.widget_shopping_cart .cart_list a.order:hover {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    text-decoration: unset;
}

/* Fil d'ariane - Alice - 28/02/2023 */
#biform-body .woocommerce-breadcrumb a {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/

/* Alice 15/02/2023 */
#reassurance {
    padding: 30px 0 40px;
    background-color: var(--primary-color-light);
}
/* Zone de réassurance */
#reassurance .custom-bloc-6 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    padding: 0 30px;
}
@media (max-width: 992px) {
    #reassurance .custom-bloc-6 {
        grid-template-columns: repeat(2,1fr);
        padding: 0;
    }
}
@media (max-width: 500px) {
    #reassurance .custom-bloc-6 {
        grid-template-columns: 1fr;
    }
}
#reassurance .custom-bloc-6 .item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
#reassurance .custom-bloc-6 h3 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
}
#reassurance .custom-bloc-6 p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.2;
}
#reassurance .custom-bloc-6 img {
    margin-top: 10px;
}
@media (max-width: 992px) {
    #reassurance .custom-bloc-6 .item > img {
        width: 47px;
        height: 37px;
        object-fit: contain;
    }
}
/* Footer - Alice - 15/02/2023 */
#biform-body footer h5 {
    position: relative;
    margin-bottom: 32px;
    font-size: 18px;
    text-align: left;
}
#biform-body footer h5::before {
    position: absolute;
    top: -2px;
    left: -12px;
    content: url('assets/image/titre-footer.svg');
}
#biform-body footer .content {
    margin: 0;
}
#biform-body footer .content ul {
    padding-left: 0;
}
#biform-body footer .content ul li a {
    padding: 0 0 20px;
    font-size: 15px;
}
#biform-body footer a {
    opacity: unset;
    text-transform: unset;
}
#biform-body footer a:hover {
    text-decoration: underline;
}
#biform-body footer hr {
    border-color: white;
}
#biform-body footer p {
    margin-bottom: 0;
    padding-bottom: 20px;
}
#biform-body footer .btn {
    max-width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 15px 26px;
    background-color: white;
    border-radius: 6px;
    color: var(--primary-color);
    white-space: normal;
}
#biform-body footer .btn::before {
    width: 24px;
    height: 30px;
    content: url('assets/image/contact.svg');
}
#biform-body footer .btn:not(:disabled):hover {
    background-color: #ffffff33;
    color: white;
    text-decoration: none;
}
#biform-body footer .btn:not(:disabled):hover::before {
    content: url('assets/image/contact-white.svg');
}
#biform-body footer .custom-bloc-contact-1 strong {
    white-space: nowrap;
}
#biform-body .hestia-bottom-footer-content ul li a {
    padding: 0;
    font-size: 14px;
}
#biform-body .hestia-bottom-footer-content ul li:not(:last-child)::after {
    padding: 0 10px;
    color: white;
    content: "-";
}
#biform-body .hestia-bottom-footer-content .copyright {
    display: block;
    padding: 0;
}

/*--------------------------------------------------------------
## Tags
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Page Header Height
--------------------------------------------------------------*/

/* Pour que tous les titres possedent une feuille derriere le titre, et que les titres soient bleus */
.hestia-title.title-in-content {
    background-image: url(https://biform-sante.com/wp-content/uploads/2022/11/Union-12.png);
    background-repeat: no-repeat;
    color: var(--primary-color) !important;
    font-weight: bold !important;
    height: 60px;
    padding-top: 10px;
    padding-left: 17px;
    text-align: left;
}
h4.card-title a {
    color: var(--primary-color) !important;
    font-weight: bold !important;
}
/* Ajustement du prix dans le Header (des fois il bugueait et affichait le prix sur 2 lignes - Patrick - 06/12/2022 */
.header-widgets-wrapper .widget.widget_shopping_cart .total .amount {
    font-size: 16px !important;
    padding-left: 3px;
}
.header-widgets-wrapper .widget.widget_shopping_cart:before {
    mask-image: url('-') !important;
    -webkit-mask-image: url('-') !important;
    display: none !important;
}


/*--------------------------------------------------------------
# Front Page Sections
--------------------------------------------------------------*/

/* Main - Alice 13/02/2023 */
body.home .main {
    margin-top: 0 !important; /* Override d'une valeure inline qui vient je ne sais pas d'où */
}

/* Hero - Alice 27/02/2023 */
div#n2-ss-3 .n-uc-1a6e02682c1e7-inner * {
    font-family: DM Sans, Arial, sans-serif !important;
}
div#n2-ss-3 .n2-font-b9d2f13aa77da5d8d1d43b737ab4c2b7-link a.n2-ow {
    font-size: 15px;
    font-weight: bold;
    transition: .3s;
}
div#n2-ss-3 .n2-font-b9d2f13aa77da5d8d1d43b737ab4c2b7-link a.n2-ow:hover {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
}

/* Zone de réassurance - Alice 13/02/2023 */
#features {
    padding: 30px 0 26px;
    background-color: var(--primary-color-light);
}
#features .hestia-features-content > .row {
    display: flex;
    justify-content: center;
    row-gap: 16px;
    column-gap: 34px;
    flex-wrap: wrap;
}
#features .hestia-features-content > .row::before,
#features .hestia-features-content > .row::after {
    display: none;
}
#features .hestia-features-content > .row .feature-box {
    width: auto;
    margin: 0 -2px;
    padding: 0;
}
#features .hestia-features-content > .row .hestia-info {
    display: grid;
    grid-template-columns: 42px 1fr;
    justify-items: start;
    align-items: center;
    column-gap: 14px;
    padding: 0;
}
#features .hestia-features-content > .row .hestia-info .card-plain {
    grid-row: 1/3;
    justify-self: end;
}
#features .hestia-features-content > .row .hestia-info .info-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.25;
    text-align: left;
}
#features .hestia-features-content > .row .hestia-info p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 15px;
    text-align: left;
}
/* Modales de la zone de réassurance - Alice - 04/05/2023 */
.modale-rea {
    display: none;
    position: absolute;
    inset: 0 auto auto;
    z-index: 9999;
    width: 400px;
    padding: 16px;
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    transition-duration: .5s;
} 
.modale-rea.active {
    display: block;
}
.modale-rea::after {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: var(--primary-color);
    content: "";
}
.modale-rea img {
    float: left;
    max-width: 40px;
    max-height: 36px;
    margin: 12px 20px 12px 0;
}
.modale-rea .modale-rea-title {
    color: var(--primary-color);
    font-weight: bold;
}
.modale-rea .modale-rea-content {
    margin-bottom: 0;
}

/* Nouveautés - Alice 13/02/2023 */
#biform-body #products {
    padding-top: 60px;
    padding-bottom: 30px;
}
#biform-body .shop-item {
    margin-top: 0;
}
#biform-body .shop-item .card-title {
    margin: 0 0 8px;
}
#biform-body .shop-item .avis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#biform-body .shop-item .avis .star-rating {
    float: unset;
}
#biform-body .shop-item .avis .count {
    color: var(--tertiary-color);
    font-size: 15px;
    font-weight: normal;
}
@media (max-width: 768px) {
    #biform-body .shop-item .card-title {
        min-height: unset;
    }
}

/* Section "About" - Alice 13/02/2023 */
.hestia-about {
    padding-top: 0;
}
#about > .container > .row {
    margin: 0;
}
/* Prenez vos gélules en toute simplicité */
#about .custom-bloc-1 {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
@media (max-width: 768px) {
    #about .custom-bloc-1 {
        flex-wrap: wrap;
    }
}
#about .custom-bloc-1 .content {
    align-self: center;
}
#about .custom-bloc-1 h2,
#about .custom-bloc-2 h2 {
    color: var(--primary-color);
    font-size: 30px;
}
#about .custom-bloc-1 h3 {
    color: var(--primary-color);
    font-size: 18px;
}
@media (max-width: 768px) {
    #about .custom-bloc-1 h3 {
        margin-top: 0;
    }
}
#about .custom-bloc-1 p {
    color: var(--secondary-color);
    font-size: 15px;
}
#about .custom-bloc-1 a {
    color: var(--primary-color);
    font-size: 16px;
    text-decoration: underline;
}
#about .custom-bloc-1 a:hover {
    text-decoration: none;
}
#about .custom-bloc-1 a::before {
    position: relative;
    top: -2px;
    margin-right: 10px;
    content: url('assets/image/arrow.svg');
}
/* Nos solutions */
#about .product-categories {
    display: flex;
    gap: 30px;
    padding: 35px 0 0;
}
@media (max-width: 768px) {
    #about .product-categories {
        flex-wrap: wrap;
    }
}
#about .cat-item:not(.cat-parent) {
    display: none;
}
#about .cat-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 312px;
    height: 312px;
    padding: 20px;
    background-color: var(--secondary-color);
    background-position: center;
    background-size: cover;
}
@media (max-width: 768px) {
    #about .cat-item {
        height: unset;
        aspect-ratio: 1;
    }
}
#about .cat-item.cat-item-61 {
    background-image: url('assets/image/solutions-bien-etre.jpg');
}
#about .cat-item.cat-item-62 {
    background-image: url('assets/image/solutions-sante.jpg');
}
#about .cat-item.cat-item-63 {
    background-image: url('assets/image/solutions-beaute.jpg');
}
#about .cat-item.cat-item-64 {
    background-image: url('assets/image/solutions-corps.jpg');
}
#about .cat-item::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(199, 199, 199, 0) var(--d, 70%), var(--primary-color));
    content: "";
    transition-duration: .3s;
}
#about .cat-item:hover::before {
    --d: 10%;
}
#about .cat-item a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    isolation: isolate;
}
#about .cat-item a::before {
    position: absolute;
    inset: 0;
    content: "";
}
#about .cat-item a:hover {
    opacity: 1;
}
/* Des formules uniques et brevetées */
@media (max-width: 992px) {
    #biform-body #panel-3608-0-0-2 > .panel-widget-style {
        background-position: left;
    }
}
#about .custom-bloc-2 p {
    max-width: 380px;
    color: var(--secondary-color);
    font-size: 18px;
}
#about .custom-bloc-2 span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background-color: var(--primary-color-light);
    border-radius: 32px 0 32px 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.1;
}
#about .custom-bloc-2 span::before {
    content: url('assets/image/molecule.svg');
}
/* Des produits purs */
#about .custom-bloc-3 p {
    color: var(--secondary-color);
}
#about .custom-bloc-3 .content,
#post-1507 .page-content-wrap .content {
    display: grid;
    grid-template-columns: repeat(4,auto);
    column-gap: 60px;
    row-gap: 16px;
    margin: 40px 60px;
}
@media (max-width: 1024px) {
    #about .custom-bloc-3 .content,
    #post-1507 .page-content-wrap .content {
        grid-template-columns: repeat(3,auto);
    }
}
@media (max-width: 992px) {
    #about .custom-bloc-3 .content,
    #post-1507 .page-content-wrap .content {
        grid-template-columns: repeat(2,auto);
        margin: 40px 0;
    }
}
@media (max-width: 500px) {
    #about .custom-bloc-3 .content,
    #post-1507 .page-content-wrap .content {
        grid-template-columns: auto;
    }
}
#about .custom-bloc-3 .content .item,
#post-1507 .page-content-wrap .content .item {
    display: flex;
    align-items: center;
    gap: 18px;
}
#about .custom-bloc-3 .content .item span,
#post-1507 .page-content-wrap .content .item span {
    color: var(--tertiary-color);
    font-weight: bold;
}
#about .custom-bloc-3 .btn {
    display: block;
    max-width: max-content;
    margin: 0 auto;
}
/* Nos meilleures ventes */
#about .product_list_widget {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 60px;
    margin-top: 40px;
}
@media (max-width: 992px) {
    #about .product_list_widget {
        grid-template-columns: 1fr;
    }
}
#about .product_list_widget li {
    position: relative;
    flex-grow: 1;
    padding-top: 0;
}
#about .product_list_widget li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: unset;
    text-decoration: unset;
}
#about .product_list_widget li a::after {
    position: absolute;
    inset: 0;
    content: "";
}
#about .product_list_widget img {
    height: 200px;
    width: auto;
    max-width: 100%;
    margin: 0 0 20px;
    object-fit: contain;
    transform: scale(.9);
    transition-duration: .3s;
}
#about .product_list_widget li a:hover img {
    transform: scale(1);
}
#about .product_list_widget .product-title {
    font-size: 18px;
    font-weight: bold;
}
#about .product_list_widget li .short-description {
    min-height: 80px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
}
#about .product_list_widget li .short-description * {
    font-weight: normal;
}
#about .product_list_widget li .short-description ul {
    display: none;
}
#about .product_list_widget li .star-rating {
    margin: -14px auto 0;
}
#about .product_list_widget li > .amount,
#about .product_list_widget li > :not(del) .amount {
    /* :not(del) permet de ne pas cibler le prix barré */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-top: 16px;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    word-break: initial;
}
#about .product_list_widget li > ins .amount {
    width: calc(100% - 70px);
    display: inline-flex;
}
#about .product_list_widget li > del .amount {
    margin-right: 8px;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: normal;
    text-decoration: line-through;
}
#about .product_list_widget li > .amount::after,
#about .product_list_widget li > :not(del) .amount::after {
    padding: 12px 30px;
    background-color: var(--primary-color);
    border-radius: 100px;
    color: white;
    content: "\f217";
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: bold;
    transition-duration: .3s;
}
#about .product_list_widget li > a:hover + div + .amount::after,
#about .product_list_widget li > a:hover + div + del + ins .amount::after,
#about .product_list_widget li > a:hover + div + div + del + ins .amount::after {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
}
/* Boostez votre système de défense avec le pamplemousse */
#about .custom-bloc-4 {
    width: 50%;
    margin-left: 50%;
}
@media (max-width: 992px) {
    #about .custom-bloc-4 {
        width: 100%;
        margin-left: 0;
    }
}
#about .custom-bloc-4 * {
    color: white;
}
#about .custom-bloc-4 .btn {
    margin-top: 30px;
    background-color: transparent;
    border: 2px solid white;
    font-size: 15px;
    font-weight: bold;
    opacity: 1;
    text-transform: unset;
}
#about .custom-bloc-4 .btn:hover {
    background-color: #ffffff33;
    border-color: transparent;
    color: white;
}
/* Nos livres santé */
#about .custom-bloc-5 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 100px;
    row-gap: 20px;
}
@media (max-width: 500px) {
    #about .custom-bloc-5 {
        grid-template-columns: auto;
    }
}
#about .custom-bloc-5 h2 {
    margin-bottom: 30px;
}
#about .custom-bloc-5 .subtitle {
    color: var(--primary-color);
    font-weight: bold;
}
#about .custom-bloc-5 p {
    color: var(--secondary-color);
    font-size: 15px;
}
#about .custom-bloc-5 .btn {
    margin-right: 16px;
    border: 2px solid var(--primary-color);
}
#about .custom-bloc-5 .btn:hover {
    border-color: transparent;
}
#about .custom-bloc-5 .btn:last-child {
    background-color: transparent;
    color: var(--primary-color);
}
#about .custom-bloc-5 .btn:last-child:hover {
    background-color: var(--primary-color-light);
    color: var(--primary-color)
}

/*--------------------------------------------------------------
## Big Title Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Features Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Products Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Portfolio Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Team Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Pricing Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Ribbon Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Testimonials Section
--------------------------------------------------------------*/

/* Alice - 14/02/2023  */
#testimonials {
    padding-bottom: 80px;
}
#testimonials .hestia-testimonials-title-area {
    margin: 0;
}
#testimonials .card-testimonial {
    margin-bottom: 0;
}
#testimonials .content {
    display: flex;
    flex-direction: column-reverse;
    padding: 24px;
    background-color: var(--light-color);
    text-align: left;
}
#testimonials .card-description {
    max-height: unset;
    color: var(--secondary-color);
    font-size: 15px;
}
#testimonials .card-title {
    min-height: unset;
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 18px;
}
/* Afficher la date et le nombre d'étoiles - Alice - 27/03/2023 */
.hestia-testimonials-content > .row > div .content::after {
    margin-bottom: 16px;
    padding-left: 110px;
    background-image: url('assets/image/stars-5.svg');
    background-position: top left;
    background-repeat: no-repeat;
    color: var(--tertiary-color);
    content: attr(data-date);
    font-size: 15px;
    font-weight: normal;
    line-height: 1.3;
}

/* Afficher la date et le nombre d'étoiles - Alice - 27/03/2023 */
.hestia-testimonials-content > .row > div .content::after {
    margin-bottom: 16px;
    padding-left: 110px;
    background-image: url('assets/image/stars-5.svg');
    background-position: top left;
    background-repeat: no-repeat;
    color: var(--tertiary-color);
    content: attr(data-date);
    font-size: 15px;
    font-weight: normal;
    line-height: 1.3;
}
.hestia-testimonials-content > .row > div:nth-child(2) .content::after {
    background-image: url('assets/image/stars-4.svg');
}
.hestia-testimonials-content > .row > div:last-child .content::after {
    background-image: url('assets/image/stars-4.svg');
}

/* Desactivation de l'affichage de la date en dessous de l'avis (la date affiches a cote des etoiles sont dans le fichier my-great-script.js) - Patrick - 16/06/2024 */
.hestia-testimonials-content .category.text-muted {
    display: none;
}

/*
.hestia-testimonials-content > .row > div:first-child .content::after {
    content: "22/06/2022";
}
*/
/*--------------------------------------------------------------
## Subscribe Section
--------------------------------------------------------------*/

/* Newsletter */
#subscribe > .container {
    display: flex;
    align-items: center;
    column-gap: 60px;
    row-gap: 20px;
}
@media (max-width: 992px) {
    #subscribe > .container {
        flex-wrap: wrap;
    }
}
#subscribe > .container::before,
#subscribe > .container::after {
    display: none;
}
#subscribe {
    padding: 30px 0;
    background-color: var(--primary-color-light);
}
#subscribe .hestia-subscribe-title-area {
    display: flex;
    align-items: center;
    column-gap: 90px;
    row-gap: 20px;
    width: 100%;
    margin: 0;
}
@media (max-width: 992px) {
    #subscribe .hestia-subscribe-title-area {
        justify-content: center;
        flex-wrap: wrap;
    }
}
#subscribe h2.title,
#subscribe h5.subscribe-description {
    margin: 0;
    color: var(--primary-color);
}
@media (max-width: 992px) {
    #subscribe h2.title,
    #subscribe h5.subscribe-description {
        text-align: center;
    }
}
/* Formulaire - Alice - 27/03/2023 */
#subscribe > .container > .row:last-child {
    flex-grow: 1;
}
#subscribe > .container > .row:last-child > div {
    width: 100%;
    margin: 0;
}
#subscribe .card {
    margin: 0;
    background: unset;
    box-shadow: none;
}
#subscribe .card .content {
    padding: 0;
}
#subscribe .card .content .form-group {
    display: flex;
    margin: 0;
}
#subscribe .card .content .sib_signup_box_inside_2 {
    flex-grow: 1;
}
#subscribe .card .content input {
    height: unset;
    margin: 0;
    background-image: none;
    box-shadow: none;
    font-size: 15px;
    text-transform: unset;
}
#subscribe .card .content input[type="email"] {
    padding: 12px 20px;
    background-color: white;
    border-radius: 20px 0 0 20px;
    color: var(--secondary-color);
}
#subscribe .card .content input[type="email"]::placeholder {
    color: #b4b4b4;
}
#subscribe .card .content input[type="submit"] {
    border-radius: 0 20px 20px 0;
}
/* Nouvelle section newsletter - Alice - 15/05/2023 */
#newsletter {
    padding-bottom: 40px;
    background-color: var(--primary-color-light);
}
#newsletter .container {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 30px;
}
@media (max-width: 767px) {
    #newsletter .container {
        grid-template-columns: 100%;
    }
    #newsletter .mailpoet_form {
        width: auto;
    }
    .mailpoet_form_columns_container {
        width: 100% !important;
    }
    .mailpoet_form_column.mailpoet_vertically_align_center > .mailpoet_paragraph
    {
        padding-left: 30px;
    }
}
#newsletter .container::before,
#newsletter .container::after {
    display: none;
}
#newsletter :is(h2,p) {
    margin: 0;
    color: var(--primary-color);
}
#newsletter h2 {
    font-size: 30px;
    font-weight: bold;
}
#newsletter p {
    font-size: 18px;
    font-weight: normal;
}
#newsletter .mailpoet_form {
    /* width: auto; */
}
#newsletter .mailpoet_form .form-group {
    padding: 0;
}
#newsletter .mailpoet_form .mailpoet_form_columns {
    flex-wrap: wrap;
    align-items: flex-start;
}
#newsletter .mailpoet_form .mailpoet_form_column {
    margin: 0 !important;
    flex-basis: unset !important;
    align-self: unset;
}
#newsletter .mailpoet_form .mailpoet_form_column .mailpoet_paragraph {
    margin: 0;
}
#newsletter .mailpoet_form input {
    margin: 0 !important;
    font-family: inherit !important;
    opacity: 1 !important;
}
#newsletter .mailpoet_form input.mailpoet_text {
    min-width: min(55vw,290px);
    padding: 10px 22px !important;
    background: unset;
    background-color: white;
    border-radius: 20px 0 0 20px;
}
#newsletter .mailpoet_form input.mailpoet_submit {
    padding: 10px 30px !important;
    border-radius: 0 20px 20px 0;
}
#newsletter .mailpoet_form .mailpoet_message {
    padding: 0;
}
#newsletter .mailpoet_form .mailpoet_validate_error {
    font-size: 14px;
}
@media (max-width: 374px) {
    #newsletter .mailpoet_form .mailpoet_form_column {
        flex-grow: 1;
    }
    #newsletter .mailpoet_form input.mailpoet_text {
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    #newsletter .mailpoet_form input.mailpoet_submit {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
}


/*--------------------------------------------------------------
## Blog Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Contact Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Page Devenir prescripteur
--------------------------------------------------------------*/
ul.biform_noindent {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.biform_noindent ul {
    list-style: none;
}

ul.biform_noindent li {
    position: relative;
    padding-left: 20px;
}

ul.biform_noindent li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50% 0 50% 0;
    display: inline-block;
}

ul.biform_noindent > ul li::before {
    top: 20%;
}

/*--------------------------------------------------------------
# Page Qui sommes nous
--------------------------------------------------------------*/

/* Header -  Alice - 10/05/2023 */
body.page-id-1507 #primary .text-center .hestia-title {
    display: none;
}
body.page-id-1507 #primary .text-center img {
    max-width: min(90vw,500px);
    margin-top: 20px;
}
/* Contenu de la page -  Alice - 10/05/2023 */
#post-1507 .page-content-wrap {
    width: 100%;
    margin: 0 0 50px;
}
#post-1507 .page-content-wrap h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
#post-1507 .page-content-wrap h2::before {
    width: 50px;
    height: 50px;
    background-image: url('assets/image/logo-biform-mini.png');
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}
#post-1507 .page-content-wrap p em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: bold;
}
#post-1507 .page-content-wrap h2:not(:first-child) {
    margin-top: 100px;
}
#post-1507 .page-content-wrap ul {
    padding-left: 20px;
}
#post-1507 .page-content-wrap ul li {
    margin-bottom: 10px;
}


/*--------------------------------------------------------------
## Single Post Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# WooCommerce
--------------------------------------------------------------*/

/* Miniature produit - Alice - 28/02/2023 */
#biform-body .card-description * {
    color: var(--secondary-color);
    font-size: 15px;
}
#biform-body .product .card-product .card-description p {
    margin-bottom: 0;
}
/* .content .card-description :is(strong,b), */
/* .woocommerce .product .card-product .content .card-description p :is(strong,b), */
/* .woocommerce.single-product .woocommerce-product-details__short-description :is(strong,b), */
section.pricing p.text-gray :is(strong,b) {
    font-weight: normal;
}
#biform-body .card-product .footer .price h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: bold;
}
#biform-body .card-product .footer .price del {
    font-size: 15px;
    font-weight: normal;
}
#biform-body:is(.woocommerce,.woocommerce-cart) ul.products li.product a img {
	height: 100%; /* Ajout pour ajuster toutes les tailles des miniatures produits - Patrick - 31/08/2023 */
}
#biform-body:is(.woocommerce,.woocommerce-cart) ul.products li.product .card-description {
    margin-bottom: 30px;
}
#biform-body:is(.woocommerce,.woocommerce-cart) ul.products li.product .avis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: -30px;
}
#biform-body:is(.woocommerce,.woocommerce-cart) ul.products li.product .avis .star-rating {
    margin-bottom: 0;
}
#biform-body:is(.woocommerce,.woocommerce-cart) ul.products li.product .avis .count {
    color: var(--tertiary-color);
    font-size: 15px;
    font-weight: normal;
}
#biform-body:is(.woocommerce,.woocommerce-cart) a.button.added::after {
    color: white;
}
#biform-body:is(.woocommerce,.woocommerce-cart) a.button.added:hover::after {
    color: var(--primary-color);
}
@media (max-width: 990px) {
    #biform-body .card {
        margin-bottom: 0;
    }
    #biform-body h4.card-title {
        min-height: unset;
    }
}

/*--------------------------------------------------------------
## Shop Page
--------------------------------------------------------------*/

/* Listing - Alice - 01/03/2023 */
/* Header */
.page-header.header-small .container > div > div {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}
.page-header.header-small .container .description {
    margin: 0;
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: bold;
    text-align: left;
}
.page-header.header-small .container .hestia-title {
    margin: 0;
    color: white;
    font-size: 50px;
    text-align: left;
    text-transform: uppercase;
}
@media (max-width: 990px) {
    .page-header.header-small {
        margin: 0;
    }
}
/* Tri */
#biform-body.woocommerce .before-shop-main > .row > div:first-child {
    width: 25%;
}
@media (max-width: 768px) {
    #biform-body.woocommerce .before-shop-main > .row > div:first-child {
        width: 100%;
    }
}
#biform-body.woocommerce .woocommerce-result-count {
    margin-top: 15px !important;
    font-size: 15px;
}
#biform-body.woocommerce .woocommerce-ordering {
    margin-top: 30px !important;
    float: left;
}
#biform-body.woocommerce .woocommerce-ordering select {
    font-size: 15px;
    text-transform: unset;
}
@media (max-width: 990px) {
    .page-header.header-small .container .description {
        font-size: 24px;
    }
    .page-header.header-small .container .hestia-title {
        font-size: 36px;
    }
}
/* Filtre à facettes */
#biform-body #woo-products-wrap {
    margin: 0;
}
.listing-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}
#biform-body .wpfMainWrapper {
    position: sticky;
    top: 120px;
    padding: 20px;
    background-color: var(--light-color);
}
@media (max-width: 990px) {
    .listing-grid {
        grid-template-columns: 1fr;
    }
    #biform-body .wpfMainWrapper {
        position: static;
    }
}
#biform-body .wpfMainWrapper::before {
    content: "Filtrer";
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
#biform-body .wpfFilterWrapper {
    padding: 0;
}
#biform-body .wpfFilterWrapper .wfpTitle,
#biform-body .wpfFilterWrapper::before {
    display: block;
    margin: 20px 0 10px;
    font-size: 15px;
    font-weight: bold;
}
#biform-body .wpfFilterWrapper .wpfTitleToggle {
    display: none;
}
/* #biform-body .wpfFilterWrapper[data-filter-type="wpfCategory"]::before {
    content: "Catégories";
} */
#biform-body .wpfFilterWrapper[data-filter-type="wpfTags"]::before {
    content: "Selon vos besoins";
}
#biform-body #woo-products-wrap .wpfFilterVerScroll {
    max-height: unset;
}
#biform-body .wpfFilterWrapper .wpfLiLabel {
    display: flex;
    gap: 10px;
}
#biform-body .wpfFilterWrapper .wpfLiLabel .wpfValue {
    padding-left: 0 !important;
}
#biform-body .wpfFilterWrapper .wpfCheckbox {
    padding-top: 4px;
}
#biform-body .wpfFilterWrapper .wpfCheckbox label::before {
    border-color: #979797 !important;
    border-radius: 3px !important;
}
#biform-body .wpfFilterWrapper .wpfCheckbox input[type="checkbox"]:checked + label::before {
    background-color: var(--primary-color) !important;
    background-image: url('assets/image/tick.png') !important;
    border-color: var(--primary-color) !important;
}
#biform-body ul.products li.product {
	height: max-content;
}
#biform-body .card-product.card-plain .card-image {
	height: 270px;
}

/*--------------------------------------------------------------
## Single Product Page
--------------------------------------------------------------*/

/* Main - Alice 13/02/2023 */
#biform-body.single-product .main {
    margin-top: 120px !important; /* Override d'une valeure inline qui vient je ne sais pas d'où */
}
@media (max-width: 500px) {
    #biform-body.single-product .main {
        margin-top: 0 !important;
    }
    #woo-products-wrap {
        padding: 0 15px;
    }
}
/* Single Product Page - Alice - 28/02/2023 */
#biform-body.single-product .blog-post,
#biform-body.single-product div.product {
    padding-bottom: 0;
    background-color: var(--light-color);
}
@media (max-width: 500px) {
    #biform-body.single-product .blog-post,
    #biform-body.single-product div.product {
        padding-bottom: 0;
    }
}
#biform-body.single-product .blog-post .col-md-12 > div[id^="product"].product {
    padding-left: 0;
    padding-right: 0;
}
/* Bandeau Rupture de stock - Alice - 25/04/2023 */
.single-product .wcsob_soldout {
    display: none;
    top: 20px;
    left: 50%;
    right: 0;
    width: unset;
    border: none;
    font-size: 14px;
}
/* Image produit */
#biform-body.single-product .product .images :is(.flex-viewport, .flex-control-thumbs li img) {
    background-color: white;
    border: 1px solid #dfdfdf;
}
#biform-body.single-product .product .images .flex-control-thumbs {
    display: grid;
    grid-template-columns: 15px minmax(0,1fr) 14px;
    gap: 2.5vw;
    align-items: center;
    margin-top: 20px;
}
.slick-arrow {
    width: 13px;
    height: 20px;
    padding: 0;
    background-color: transparent;
    background-image: url('assets/image/arrow-slick.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;
}
.slick-arrow:is(:hover,:focus,:active) {
    background-color: transparent;
}
.slick-next {
    transform: rotate(.5turn);
}
#biform-body.single-product .product .images .flex-control-thumbs li {
    margin: 0;
    padding: 0 16px;
}
/* Colonne de droite */
#biform-body.single-product .product_title {
    color: var(--secondary-color);
}
#biform-body .star-rating {
    color: var(--primary-color);
}
#biform-body .woocommerce-product-rating .star-rating {
    margin-top: 6px;
    font-size: 15px;
}
#biform-body.single-product .woocommerce-review-link {
    color: #979797;
    font-size: 15px;
}
#biform-body.single-product .summary {
    display: flex;
    flex-direction: column;
}
#biform-body.single-product .summary .price span {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: bold;
}
#biform-body.single-product div.product p.price del span {
    font-weight: normal;
}
#biform-body.single-product .summary .woocommerce-product-details__short-description {
    font-size: 15px;
}
#biform-body.single-product .summary .woocommerce-product-details__short-description ul {
    padding-left: 20px;
    list-style-image: url('assets/image/check.svg');
}
#biform-body.single-product .product form.cart {
    order: 4;
    margin-top: 20px;
}
#biform-body.single-product .qib-button:not(#qib_id):not(#qib_id) {
    background-color: white;
    border: none;
}
#biform-body.single-product .qib-container:not(#qib_id):not(#qib_id) {
    margin-top: 5px;
    margin-right: 30px;
    background-color: white;
}
#biform-body.single-product div.product form.cart .button {
    font-size: 15px;
    font-weight: bold;
    text-transform: unset;
}
#biform-body.single-product form.cart button[type="submit"]:not(#qib_id):not(#qib_id):not(_):not(_) {
    width: max-content;
    height: unset;
    padding: 12px 30px;
}
#biform-body.single-product .product .product_meta {
    order: 3;
}
#biform-body.single-product .product .product_meta .tagged_as {
    margin-bottom: 20px;
}
#biform-body.single-product .product .product_meta .tagged_as a {
    display: inline-block;
    margin-right: 10px;
    padding: 2px 10px;
    background-color: var(--primary-color-light);
    border-radius: 10px;
    font-size: 12px;
}
.conditionnement {
    width: max-content;
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.conditionnement::before {
    margin-right: 6px;
    content: url('assets/image/gelule.png');
}
/* Rupture de stock */
#biform-body.single-product .cwginstock-subscribe-form .panel-primary {
    border: none;
    box-shadow: none;
}
#biform-body.single-product .cwginstock-subscribe-form .panel-primary > .panel-heading {
    display: none;
}
#biform-body.single-product .cwginstock-subscribe-form .panel-body {
    padding: 0;
}
#biform-body.single-product .cwginstock-subscribe-form .panel-body .row > .col-md-12 {
    max-width: 340px;
    padding: 0;
}
#biform-body.single-product .cwginstock-subscribe-form .center-block {
    margin-bottom: 0;
    padding-bottom: 0;
}
#biform-body.single-product .cwginstock-subscribe-form .center-block input {
    margin-top: 0;
}
#biform-body.single-product .cwginstock-subscribe-form .center-block input[type="submit"] {
    box-shadow: none;
    font-size: 15px;
    text-transform: unset;
}
/* Réassurance */
#biform-body.single-product .reassurance {
    order: 5;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #dfdfdf;
}
#biform-body.single-product .reassurance-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
#biform-body.single-product .reassurance-item img {
    width: 34px;
    height: 30px;
    object-fit: contain;
}
#biform-body.single-product .reassurance-item p {
    margin-bottom: 0;
    font-size: 15px;
}
/* Onglets */
#biform-body.single-product div.product .woocommerce-tabs {
    margin-bottom: 100px;
}
#biform-body.single-product div.product .woocommerce-tabs ul.tabs {
    margin-bottom: 0;
}
#biform-body.single-product div.product .woocommerce-tabs ul.tabs.wc-tabs li a {
    padding: 12px 25px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: bold;
    text-transform: unset;
}
#biform-body.single-product div.product .woocommerce-tabs ul.tabs.wc-tabs li.active a {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
}
#biform-body.single-product div.product .woocommerce-tabs ul.tabs.wc-tabs li a:hover {
    color: var(--primary-color);
    opacity: 1;
}
#biform-body.single-product .woocommerce-tabs .panel {
    padding: 30px;
    background-color: var(--primary-color-light);
    color: var(--secondary-color);
    font-size: 15px;
}
#biform-body.single-product .woocommerce-tabs .panel p {
    margin-bottom: 20px;
}
#biform-body.single-product .woocommerce-tabs .panel ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style-image: url('assets/image/check.svg');
}
#biform-body.single-product .woocommerce-tabs .panel li {
    margin-bottom: 10px;
}
#biform-body.single-product .woocommerce-tabs .panel table p {
    margin-bottom: 0;
}
#biform-body.single-product .section {
    padding-bottom: 0;
}
/* Avis - Alice - 15/03/2023 */
#biform-body.woocommerce #reviews {
    margin-bottom: 70px;
}
#biform-body.woocommerce #reviews #comments .woocommerce-Reviews-title {
    padding-bottom: 20px;
}
#biform-body.woocommerce #reviews #comments ol.commentlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-bottom: 20px;
}
#biform-body.woocommerce #reviews #comments ol.commentlist::before,
#biform-body.woocommerce #reviews #comments ol.commentlist::after {
    display: none;
}
#biform-body.woocommerce #reviews #comments ol.commentlist li {
    margin-bottom: 0;
}
#biform-body.woocommerce #reviews #comments ol.commentlist li .comment_container {
    height: 100%;
}
#biform-body.woocommerce #reviews #comments ol.commentlist li img.avatar {
    display: none;
}
#biform-body.woocommerce #reviews #comments ol.commentlist li .comment-text {
    height: 100%;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}
#biform-body.woocommerce #reviews #comments ol.commentlist li .comment-text .comment-text-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
}
#biform-body.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
    float: unset;
}
#biform-body.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__author {
    color: var(--primary-color);
    font-family: DM Sans, Arial, sans-serif;
}
#biform-body.woocommerce div.product p.stars a::before {
    color: var(--primary-color);
}
#biform-body.woocommerce #reviews #comments ol.commentlist li .comment-text .description p {
    font-size: 15px;
}
#biform-body .comment-reply-title {
    display: inline-block;
    white-space: normal;
}
#biform-body .comment-reply-title + .comment-form {
    display: none;
}
#biform-body #review_form #respond .form-submit input {
    box-shadow: none;
    font-size: 15px;
    font-weight: bold;
    text-transform: unset;
}
/* Bandeau footer */
#biform-body .wsatc-stick-cart-wrapper .product-title,
#biform-body .wsatc-stick-cart-wrapper .wsatc-price {
    color: var(--secondary-color);
}
#biform-body .wsatc-rating-count {
    display: none;
}
#biform-body .wsatc-price {
    font-weight: bold;    
}
#biform-body .wsatc-price ins {
    text-decoration: none;
}
#biform-body .wsatc-price del {
    font-weight: normal;
}
#biform-body .wsatc-stick-cart-wrapper .wsatc-add-to-cart {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: bold;
}
#biform-body .wsatc-stick-cart-wrapper .wsatc-add-to-cart:hover {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
}
/* Responsive - Alice - 07/03/2023 */
@media (max-width: 990px) {
    #biform-body header + #primary {
        margin-top: 100px;
    }
    #biform-body.single-product div.product .woocommerce-tabs ul.tabs.wc-tabs li a {
        margin-bottom: 0;
        background-color: white;
        border-color: var(--primary-color);
        color: var(--tertiary-color);
        font-size: 16px;
    }
    #biform-body.woocommerce #reviews #comments ol.commentlist {
        grid-template-columns: 1fr;
    }
}

/* Nos cures bouton d'ajout au panier - Patrick - 04/08/2026 */
.nos_cures {
    border:solid;
    background-color:white;
    align-items:center;
    gap:10px;
}
.nos_cures_desktop {
    display:flex;
    margin:5px;
    flex:0 0 50px;
}
.nos_cures_phone {
    flex:1;
    justify-content:center;
    text-align:center;
}
@media (max-width: 990px) {
    .nos_cures_desktop {
        display: none;
    }
    .nos_cures_phone{
        display: block;
    }
}
@media (min-width: 990px) {
    .nos_cures_desktop {
        display: flex;
    }
    .nos_cures_phone{
        display: none;
    }
}

/*--------------------------------------------------------------
## Related Products
--------------------------------------------------------------*/

/* Alice - 07/03/2023 */
#biform-body.single-product .related.products {
    margin-top: 0;
}

/*--------------------------------------------------------------
## Upsells
--------------------------------------------------------------*/

/* Alice - 07/03/2023 */
#biform-body:is(.single-product,.woocommerce-cart) ul.products li.product {
    margin-bottom: 0 !important;
}
#biform-body .upsells {
    margin-bottom: 70px;
    padding: 30px 0 0;
    clear: both;
}
#biform-body .upsells .card {
    margin-bottom: 0;
}
#biform-body .cross-sells {
    width: 100%;
    margin-bottom: 70px;
    padding: 20px 0 0;
    background-color: var(--primary-color-light);
    border-radius: 15px;
}
#biform-body .cross-sells h2 {
    margin-left: 40px;
}

/*--------------------------------------------------------------
## WooCommerce Pagination
--------------------------------------------------------------*/

/* Alice - 07/03/2023 */
#biform-body nav.woocommerce-pagination ul li span.current {
    box-shadow: none;
}
#biform-body nav.woocommerce-pagination ul li a {
    color: var(--secondary-color);
}
#biform-body nav.woocommerce-pagination ul li a:is(:hover, :focus){
    background-color: var(--primary-color-light);
    color: var(--primary-color);
}

/*--------------------------------------------------------------
## WooCommerce Cart Page
--------------------------------------------------------------*/

#biform-body.woocommerce-cart .page-header {
    min-height: 60px !important;
}
.woocommerce-cart .shop_table thead tr th {
    padding: 12px 20px;
    /* Supression du border pour le header - Patrick - 23/11/2022 */
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    text-transform: none;
    white-space: nowrap;
}
/* Supression du border pour les produits - Patrick - 23/11/2022 */
.woocommerce-cart .shop_table tbody tr.cart_item td {
    border: none;
}
.woocommerce-cart .shop_table tbody .product-name {
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
@media (max-width: 990px) {
    #biform-body.woocommerce-cart .shop_table tbody .product-name,
    #biform-body.woocommerce-cart .shop_table tbody .product-price {
        font-size: 15px;
    }
}
.woocommerce-cart .shop_table tbody .product-name a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    /* Nom du produit en couleur - Patrick - 23/11/2022 */
    color: var(--primary-color) !important;
}
.woocommerce-cart .shop_table tbody .product-price {
    font-family: inherit;
    font-size: 17px;
    font-weight: 300;
    line-height: 25px;
    /* Mise en gras du prix - Patrick - 23/11/2022 */
    font-weight: bold;
}
.woocommerce-cart .shop_table tbody .product-quantity .qty {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding-left: 10px;
    border: 2px solid #66615B;
}
.woocommerce-cart .shop_table tbody .qib-button:not(#qib_id):not(#qib_id) {
    background-color: var(--primary-color);
    border: none;
    color: white;
}
.woocommerce-cart .shop_table tbody .product-subtotal .woocommerce-Price-amount {
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
}
.woocommerce-cart .shop_table tbody .product-subtotal .woocommerce-Price-currencySymbol {
    font-family: inherit;
    margin-right: 3px;
    /* modification de cette valeur, pour que la taille du symbole euro soit la meme que le prix - Patrick - 23/11/2022 */
    font-size: inherit;
    /* modification de cette valeur, mise en gras du symbol du prix euro - Patrick - 23/11/2022 */
    font-weight: 600;
}
/* Bouton Mettre à jour le panier - Alice - 07/03/2023 */
#biform-body.woocommerce-cart button[name="update_cart"] {
    border: none;
}
/* Card - Alice - 01/03/2023 */
.woocommerce-cart .card .content {
    padding: 30px;
}
.woocommerce-cart .card .content h2 {
    margin-top: 0;
}
@media (max-width: 990px) {
    .woocommerce-cart .card .content {
        padding: 10px;
    }
}
/* Titre Total panier */
.woocommerce .cart-collaterals h2 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
}
/* Tableau sous total panier - Patrick - 23/11/2022 */
.woocommerce-cart .cart-collaterals .cart_totals table tr th {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: none;
}
/* Tableau header du produit dans le panier - Patrick - 23/11/2022 */
.woocommerce-cart .woocommerce-cart-form table.shop_table thead th {
    background-color: var(--light-color);
    color: var(--primary-color);
}
.woocommerce-cart .cart_totals {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
.woocommerce-cart .cart_totals .card {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /* Ajout d'une couleur de fond au tableau Total panier - Patrick - 23/11/2022 */
    background-color: var(--light-color);
}
/* Icone poubelle */
#biform-body .woocommerce a.remove i {
    color: var(--tertiary-color);
    font-size: 18px;
}
#biform-body .woocommerce a.remove:hover {
    background-color: unset;
}
#biform-body .woocommerce a.remove:hover i {
    color: var(--primary-color);
}

/* Cart action buttons */

/* Mise a gauche du bouton Retour a la boutique - Patrick - 23/11/2022 */
.woocommerce-cart table.cart td.actions {
    text-align: left;
}
/* "Code Avantage en bleu - Alice - 03/05/2023 */
.woocommerce-cart table.cart td.actions label[for="coupon_code"] {
    color: var(--primary-color);
}
/* Changement graphique du bouton Retour a la boutique - Patrick - 23/11/2022 */
.woocommerce-cart table.cart td.actions a.button {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 21px;
    color: var(--primary-color);
    font-family: DM Sans, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}
#biform-body.woocommerce-cart table.shop_table td.actions {
    padding-bottom: 0;
}
/* Hover du bouton - Alice - 01/03/2023 */
.woocommerce-cart table.cart td.actions a.button:hover {
    background-color: var(--primary-color-light);
}
/* Mise en gras des boutons Mettre a jour le panier, et du bouton OK - Patrick - 23/11/2022 */
.woocommerce-cart table.cart td.actions button {
    font-weight: bold;
}

/* Ajustement des boutons quantites avec le plugin Qty Increment Buttons for WooCommerce - Patrick - 23/11/2022 */
/* dans le plugin, mettre tout a 34 pixels */
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
    border-color: white !important;
    font-weight: bold;
    font-size: 12px !important;
}
/* Cart is empty button */
.woocommerce .return-to-shop .button.wc-backward {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 11px 15px;
    border: none;
}
.woocommerce .return-to-shop .button.wc-backward:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    opacity: 0.75;
}
/* Arrangement du nouveau logo du panier - Patrick - 14/11/2022 */
.widget_shopping_cart.widget img.woocommerce-mini-cart__only_picture {
    width: auto !important;
    float: left !important;
    margin-left: auto !important;
    margin-top: 1px;
}
.header-widgets-wrapper .widget.widget_shopping_cart .widget_shopping_cart_content {
    min-width: 100px;
    max-height: 30px;
    font-size: 14px;
    margin-bottom: 6px;
}
/* Bouton Valider la commande - Alice - 02/03/2023 */
.woocommerce-cart .blog-post .woocommerce .cart-collaterals .cart_totals .checkout-button {
    font-size: 15px;
    font-weight: bold;
    text-transform: unset;
}

/* Responsive - Alice - 07/03/2023 */
@media (max-width: 600px) {
    #biform-body.woocommerce-cart .wrapper.no-content .main {
        margin-top: 120px;
    }
}


/*--------------------------------------------------------------
## WooCommerce Checkout Page
--------------------------------------------------------------*/

#biform-body.woocommerce-checkout .page-header {
    min-height: 60px !important;
}
/* Quand on veut valider la commande sans être connecté - Alice - 04/05/2023 */
#biform-body.woocommerce-checkout.page-id-144 button.button {
    max-width: max-content;
}
/* Changement de la couleur des titres des champs du formulaire - Patrick - 30/11/2022 */
#biform-body.woocommerce-checkout .blog-post .section form.woocommerce-checkout h3 {
    line-height: 3;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}
/* Changement de la couleur des titres des champs du formulaire - Patrick - 30/11/2022 */
.woocommerce-checkout form .woocommerce-shipping-fields .form-row label,
.woocommerce-checkout form .woocommerce-billing-fields .form-row label {
    font-size: 16px;
    font-weight: 900 !important;
    color: var(--primary-color);
}
/* Modification de "Expedier a une adresse differente ?" */
.woocommerce-checkout #ship-to-different-address span {
    font-size: 14px;
    color: var(--primary-color);
}
/* Retirer l'espace inutile entre les champs de Numero et nom de rue - Patrick - 30/11/2022 */
.woocommerce form p#billing_address_1_field {
    margin-bottom: 0px;
}

/* BEGIN - Modification du tableau Votre commande - Patrick - 23/11/2022 */

/* Ajout d'un espace supplementaire - Patrick - 30/11/2022 */
.woocommerce-checkout table.shop_table th:nth-of-type(1),
/* Selection de la premiere colonne */
/* Selection de la premiere colonne de chaque produit */
.woocommerce-checkout table.shop_table td:nth-of-type(1).product-name {
    padding-left: 30px;
}
/* Changement divers du header */
.woocommerce-checkout table.shop_table thead th {
    font-size: 16px;
    font-weight: normal;
    color: var(--primary-color);
    background-color: var(--light-color);
}
/* Enlever les border au niveau des produits */
.woocommerce-checkout table.shop_table td {
    border: none;
}
/* Mettre le prix du produit du tableau en gras */
.woocommerce-checkout table.shop_table td .woocommerce-Price-amount {
    font-weight: bold !important;
}
/* Mettre en gras les mentions Sous-total, Expedition... */
.woocommerce-checkout table.shop_table tfoot th {
    font-size: 16px;
    font-weight: 900 !important;
    color: var(--primary-color);
}

/* END - tableau Votre commande */


/* BEGIN - Modification du tableau des paiements - Patrick */

/* Affichage en gras des modes de paiements - 30/11/2022 */
.woocommerce-checkout .woocommerce-checkout-payment li>label {
    font-size: 15px;
    font-weight: bold;
    color: var(--primary-color) !important;
}
/* Couleur des titres DANS le mode de paiements - 30/11/2022 */
.woocommerce-checkout .woocommerce-checkout-payment ul.wc_payment_methods label {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 1.3;
}
/* Realingnement des modes de paiements dans le checkout - 30/11/2022 */
.woocommerce-checkout article .wc_payment_method label {
    width: 90%
}
/* Suppression du petit triangle - 30/11/2022 */
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}
/* Mettre le logo VivaWallet a cote du Powered by - 30/11/2022 */
.VWLogoContainer p {
    display: inline;
}
/* Aligner powered by avec l'image - 30/11/2022 */
.VWLogoContainer a img {
    padding-bottom: 5px !important;
}
/* Afficher une erreur de paiement proprement - 30/11/2022 */
.woocommerce-checkout #payment div.payment_box .woocommerce-error {
    max-width: 400px;
    padding-right: 50px !important;
    display: table-cell;
}

/* END - tableau des paiements */

/* Bloc paiements - Alice - 07/03/2023 */
#biform-body.woocommerce-checkout #payment {
    background-color: var(--light-color);
}
#biform-body.woocommerce-checkout #payment div.payment_box {
    background-color: var(--primary-color-light);
    font-size: 14px;
}

/* J'ai lu... - Alice - 02/03/2023 */
#biform-body.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox {
    line-height: 1.3;
}
#biform-body.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox input {
    margin-top: 0;
}
#biform-body.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox span:not(.required) {
    padding-left: 10px;
}
#biform-body.woocommerce-checkout .form-row .woocommerce-form__label-for-checkbox span:not(.required) {
    padding-left: 20px;
}

/* Reduction de la taille du bouton Commander - Alice - 02/03/2023 */
#biform-body.woocommerce-checkout #payment #place_order {
    width: max-content;
    padding: 12px 30px;
    font-size: 15px;
}
#biform-body.woocommerce-checkout #payment #place_order:not(:disabled):hover {
    background-color: var(--primary-color-light);
}

/* Arrondir les champs du checkout - Patrick - 28/11/2022 */
article .form-control,
article .woocommerce-checkout .form-group .form-control,
article .woocommerce form .form-row input.input-text {
    border-radius: 5px !important;
}
.woocommerce-checkout #payment #place_order {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 11px 10px;
}
.woocommerce-checkout #payment #place_order:hover {
    opacity: 0.75;
}

/* Responsive - Alice - 07/03/2023 */
@media (max-width: 990px) {
    #biform-body.woocommerce-checkout .wrapper.no-content .main {
        margin-top: 120px;
    }
    #biform-body.woocommerce-checkout #payment div.payment_box {
        padding: 5px !important;
    }
    #biform-body.woocommerce-checkout #payment .place-order {
        padding: 20px !important;
    }
}

/* Page Commande reçue - Alice - 02/03/2023 */
#biform-body .woocommerce-order-grid {
    display: grid;
    grid-template-columns: 50% auto;
    column-gap: 7vw;
}
@media (max-width: 990px) {
    #biform-body .woocommerce-order-grid {
        grid-template-columns: 1fr;
    }
}
#biform-body .woocommerce-customer-details .woocommerce-column {
    float: unset;
    width: auto;
}
#biform-body .woocommerce-order-grid h2,
#biform-body.woocommerce-account .addresses .title h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}
#biform-body .woocommerce-table__product-name.product-name a {
    color: var(--secondary-color);
}
#biform-body .woocommerce-order-grid address {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 20px;
    background-color: var(--light-color);
    border: none;
}
#biform-body .woocommerce-customer-details--address {
    margin-bottom: 0;
    padding-left: 1.5em;
}
#biform-body .woocommerce-customer-details--address::before {
    font-family: WooCommerce;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "\e038";
    text-decoration: none;
    margin-left: -1.5em;
    line-height: 1.75;
    position: absolute;
}
#biform-body .woocommerce-customer-details--address::before,
#biform-body .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before,
#biform-body .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
    color: var(--primary-color)
}


/*--------------------------------------------------------------
## WooCommerce Message
--------------------------------------------------------------*/

/* Notifications */
#biform-body .woocommerce-message {
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 2;
}
#biform-body .woocommerce-message .button {
    margin-bottom: 0 !important;
}


/*--------------------------------------------------------------
## WooCommerce My Account
--------------------------------------------------------------*/

/* Page de connexion - Alice - 02/03/2023 */
.woocommerce-account .page-header.header-small .container {
    padding-top: 200px !important;
}
.woocommerce-account .page-header.header-small .container .hestia-title {
    margin: 0;
    color: white;
    font-size: 40px;
    text-transform: unset;
}
#biform-body.woocommerce-account form.login,
#biform-body.woocommerce-account form.register {
    background-color: var(--light-color);
    border: none;
}
#biform-body.woocommerce-account form .form-row label,
#biform-body.woocommerce-account form .form-row label {
    color: var(--primary-color);
    font-size: 15px;
}
.blog-post .section-text p {
    margin-bottom: 10px;
}
#biform-body.woocommerce-account form .password-input {
    margin-bottom: 0;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: block;
    max-width: max-content;
    margin: 0 auto 15px;
}
#rememberme + span {
    font-weight: normal;
}
.woocommerce-account.woocommerce-page button.button {
    display: block;
    float: unset;
    max-width: max-content;
    margin: 0 auto 10px;
    font-size: 15px;
    font-weight: bold;
    text-transform: unset;
}
.woocommerce-LostPassword {
    color: var(--tertiary-color);
    font-size: 14px;
    text-align: center;
    text-decoration: underline;
}
.woocommerce-LostPassword a {
    color: var(--tertiary-color);
}
.woocommerce-privacy-policy-text {
    padding: 0 3px;
    font-size: 14px;
}

/* Page Mon compte - Alice - 06/03/2023 */
.woocommerce-account .page-header.header-small .container .row > div {
    margin-left: 0;
}
.woocommerce-account .page-content-wrap,
.woocommerce-account .page-content-wrap ul {
    font-size: 15px;
}
.woocommerce-account .page-content-wrap {
    width: 100%;
    margin-left: 0;
    margin-bottom: 150px;
}
.woocommerce-account .page-content-wrap .woocommerce {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
#biform-body .woocommerce-MyAccount-navigation {
    max-width: 300px;
    padding: 20px;
    background-color: var(--light-color);
}
#biform-body .woocommerce-MyAccount-navigation h2 {
    margin: 10px 0 30px 20px;
}
#biform-body .woocommerce-MyAccount-navigation ul,
#biform-body .woocommerce-MyAccount-navigation ul li {
    border: none;
}
#biform-body .woocommerce-MyAccount-navigation ul li.is-active {
    font-weight: bold;
}
#biform-body .woocommerce-MyAccount-navigation-link--spgw_save_card {
    display: none;
}
#biform-body .woocommerce-MyAccount-navigation-link--spgw_save_card a::before {
    display: inline-block;
    width: 25px;
    content: "\f09d";
    font-family: "Font Awesome 5 Free";
}
#biform-body .woocommerce-MyAccount-content {
    width: 65%;
}
#biform-body .woocommerce-MyAccount-content p:not([class]) {
    margin-bottom: 30px;
}
/* Responsive - Alice - 07/03/2023 */
@media (max-width: 990px) {
    .woocommerce-account .page-content-wrap h2:not(.woocommerce-order-details__title, .woocommerce-column__title) {
        margin-left: 20px;
    }
    .woocommerce-account .page-content-wrap {
        margin-bottom: 30px;
    }
    #biform-body .woocommerce-MyAccount-navigation ul li {
        width: 100%;
    }
    #biform-body .woocommerce-MyAccount-content {
        width: 100%;
        margin-top: 30px;
    }
}
/* Page Mon compte - Mes commandes - Alice - 06/03/2023 */
#biform-body .page-content-wrap table {
    font-size: 15px;
}
#biform-body table.my_account_orders .button {
    max-width: max-content;
}
@media (max-width: 990px) {
    #biform-body .woocommerce-orders-table__cell-order-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
/* Page Mon compte - Mes adresses - Alice - 06/03/2023 */
.woocommerce-account .addresses .title .edit {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: normal;
    text-decoration: underline;
}
.woocommerce form .form-row select {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
}
/* Page Mon compte - Moyens de paiement - Alice - 06/03/2023 */
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background-color: var(--light-color);
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background-color: var(--primary-color-light);
}
#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}
@media (max-width: 990px) {
    #add_payment_method #payment div.payment_box {
        padding: 10px !important;
    }
}


/*--------------------------------------------------------------
## WooCommerce My Order Tracking
--------------------------------------------------------------*/

/* Patrick addition */
/*the color of the container*/
.header-filter-gradient {
    background-image: linear-gradient(45deg, rgb(35, 177, 162) 0%, rgb(41, 68, 73) 100%)
}
/*Ajust button to add product*/
/* i.fa-cart-plus {
    background-color: #ec6707;
    padding: 10px 60px;
    border-radius: 50em;
} */
/*Button "Voir panier" after adding a product to the shopping cart*/
/*a.added_to_cart.wc-forward {
	display:none;
}*/
.hestia-view-cart-wrapper .added_to_cart.wc-forward {
    color: #ec6707;
    background-color: #11ffee00;
}
#menu-menu-1,
.header-widgets-wrapper .widget.widget_shopping_cart .total .amount,
div.textwidget.custom-html-widget {
    font-size: 18px;
}
/* div[id^="woocommerce_widget_cart"].widget .buttons div>div>div>p>.button:hover {
	opacity:0;
} */
div.textwidget.custom-html-widget {
    width: auto;
}
h4 .author {
    display: none;
}
h6.category {
    height: 44px;
    /* display: none; */
}
h4.card-title {
    height: 66px;
}
body.custom-background {
    background-color: white;
}
/* Affichage en gras des modes de paiements */
.woocommerce-checkout .woocommerce-checkout-payment li>label {
    font-weight: bold;
}
/* .woocommerce a.button.added::after
{
    display: none;
} */


/*--------------------------------------------------------------
## Page Zéro gaspi / Nos Packs
--------------------------------------------------------------*/

#biform-body.term-operation-zero-gaspillage     .page-header.header-small .container > div > div,
#biform-body.term-offre-speciale-influenceur    .page-header.header-small .container > div > div,
#biform-body.term-nos-packs                     .page-header.header-small .container > div > div {
    flex-direction: column;
}
#biform-body.term-operation-zero-gaspillage     .page-header.header-small .container .description, 
#biform-body.term-nos-packs                     .page-header.header-small .container .description,
#biform-body.term-offre-speciale-influenceur    .page-header.header-small .container .description
{
    color: white;
    font-size: 18px;
    font-weight: normal;
}