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

/*
    @AUTHOR : Nicolas BOUDOT

    STRUCTURE
    Structure globale du site
*/

/*
  00 - ZONE EXTÃ‰RIEURE
        Loader
        Page
  01 - HEADER (EN-TETE)
        nav-up / nav-down
  02 - ZONE INTERIEURE (CONTENU)
        Main
        HeaderPage
        ScrollTop
  03 - ASIDE
        Leftbar
        Rightbar
  04 - FOOTER (PIED DE PAGE)
  05 - PAGE ERREUR
*/



/* -----------------------
  00 - ZONE EXTÃ‰RIEURE
        Loader
------------------------ */

.loader-container {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    z-index: 11;
}

.loader {
    position: relative;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: rotate 1s linear infinite
}

    .loader::before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border: 5px solid var(--color-primary);
        border-radius: 50%;
        animation: prixClipFix 2s linear infinite ;
    }

    @keyframes rotate {
      100%   {transform: rotate(360deg)}
    }

    @keyframes prixClipFix {
        0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
        25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
        50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
        75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
        100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
    }



/* -----------------------
  00 - ZONE EXTÃ‰RIEURE
        PAGE
------------------------ */

body &gt; .page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

    /* ConnectÃ© au BO */
    body.admin-bar &gt; .page {
        min-height: calc(100vh - 32px);
    }



/* -----------------------
  01 - HEADER (EN-TETE)
        Widget - Header
------------------------ */

/* Recherche */
.btn-searchMobile {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--gray-500);
    margin-right: 12px;
    padding: 3px 6px;
    padding-right: 12px;
    font-size: 1.6rem;
    transform: none;
}

    @media (min-width: 992px) {
        .btn-searchMobile {
            display: none;
        }
    }

@media (max-width: 991px) {
    /* Formulaire */
    .widget-search {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--black);
        padding: 20px;
        transition: top .4s, opacity .4s;
        z-index: 1;
    }

        /* Not Active */
        .js_toggleSearchMobile:not(.active) + .widget-search {
            pointer-events: none;
            top: 60%;
            opacity: 0;
            z-index: 1;
        }

    .widget-search .search-field {
        width: 100%;
    }
}

/* Mon compte + Mon panier */
.box-header {
    display: flex;
    align-items: center;
}

    @media (min-width: 992px) {
        .box-header {
            margin-left: 50px;
        }
    }

.box-header .widget_block + .widget_block {
    border-left: 1px solid var(--gray-500);
    margin-left: 12px;
    padding-left: 12px;
}

    @media (min-width: 992px) {
        .box-header .widget_block + .widget_block {
            margin-left: 20px;
            padding-left: 20px;
        }
    }

/* Mon compte */
.wp-block-woocommerce-customer-account {
    padding: 0;
}

.wp-block-woocommerce-customer-account a {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

    .wp-block-woocommerce-customer-account a::before {
        content: "\e90c";
        font-family: 'icomoon';
        font-size: 2.2rem;
        line-height: 1;
        margin-right: 6px;
    }

        @media (max-width: 991px) {
            .wp-block-woocommerce-customer-account a::before {
                font-size: 1.6rem;
            }
        }

    /* Hover */
    .wp-block-woocommerce-customer-account a:hover {
        text-decoration: none !important;
    }

.wp-block-woocommerce-customer-account a svg {
    display: none;
}

@media (max-width: 991px) {
    .wp-block-woocommerce-customer-account a .label {
        display: none;
    }
}

.wp-block-woocommerce-customer-account a .label {
    font-size: 1.4rem;
    line-height: 1;
}

    /* Hover */
    .wp-block-woocommerce-customer-account a:hover .label {
        color: var(--color-tertiary);
        text-decoration: underline;
    }

/* Mon panier */
.wc-block-mini-cart__button {
    cursor: pointer;
    padding: 0;
}

    /* Hover */
    .wc-block-mini-cart__button:hover:not([disabled]) {
        opacity: 1;
    }

.wc-block-mini-cart__quantity-badge {
    display: flex;
    align-items: center;
    text-align: center;
}

    @media (max-width: 991px) {
        .wc-block-mini-cart__quantity-badge {
            margin-right: 20px;
        }
    }

    /* Before */
    .wc-block-mini-cart__quantity-badge::before {
        content: "\e90b";
        font-family: 'icomoon';
        font-size: 2.2rem;
        margin-right: 6px;
    }

        @media (max-width: 991px) {
            .wc-block-mini-cart__quantity-badge::before {
                font-size: 1.6rem;
            }
        }

.wc-block-mini-cart__quantity-badge svg {
    display: none;
}

.wc-block-mini-cart__badge {
    position: initial;
    display: block;
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    height: auto;
    transform: none;
}

    @media (max-width: 991px) {
        .wc-block-mini-cart__badge {
            position: absolute;
            top: 50%;
            left: 100%;
            font-size: 1.1rem;
            transform: translateY(-50%);
        }
    }

    /* Vide */
    .wc-block-mini-cart__badge:empty {
        opacity: 1;
    }

    /* Hover */
    .wc-block-mini-cart__button:hover .wc-block-mini-cart__badge {
        color: var(--color-tertiary);
        text-decoration: underline;
    }

    /* Pseudo */
    .wc-block-mini-cart__badge::before {
        content: "Mon panier (";
    }

        @media (max-width: 991px) {
            .wc-block-mini-cart__badge::before,
            .wc-block-mini-cart__badge::after {
                color: var(--black);
            }
        }

        /* Vide */
        .wc-block-mini-cart__badge:empty::before {
            content: "Mon panier (0";
        }

            @media (max-width: 991px) {
                .wc-block-mini-cart__badge:empty::before {
                    content: "(0";
                }
            }

    .wc-block-mini-cart__badge::after {
        content: ")";
    }



/* -----------------------
  01 - HEADER (EN-TETE)
------------------------ */

.header {
    /* @changelog 2024-01-12 [EVOL] (Nicolas) Utile pour le menu mobile */
    position: relative;
    background-color: var(--white);
}
@media (min-width: 992px) {
    .header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }
}

.header a {
    color: var(--color-secondary);
}

/* TopBar */
.headerTopBar {
    position: relative;
    background-color: var(--gray-100);
    padding: 0px 28px;
}
@media (max-width: 991px) {
    .headerTopBar {
        display: none;
    }
}

.headerTopBar a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.rs {
    display: flex;
    align-items: center;
}

    .rs li:not(:first-child) {
        margin: 0 0 0 8px;
    }

.rs a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    color: var(--gray-700);
    border: 3px solid #D1D1D1;
    border-radius: 50%;
}
    .rs a span{
        font-size: 15px;
    }
    .rs a span.icon-youtube{
        font-size: 12px;
    }

/* Logo + Navigation */
.headerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    box-shadow: 0 1px 20px rgba(0, 0, 0, .16);
}
@media (min-width: 992px) {
    .headerInner {
        padding: 10px 35px 10px calc(((100vw - 880px) / 2) + 30px);
        box-shadow: none;
    }
    .header.fixed .headerInner {
        padding: 5px 35px 5px calc(((100vw - 880px) / 2) + 30px);
    }
}
@media (min-width: 1200px) {
    .headerInner {
        padding: 10px 35px 10px calc(((100vw - 1088px) / 2) + 30px);
    }
    .header.fixed .headerInner {
        padding: 5px 35px 5px calc(((100vw - 1088px) / 2) + 30px);
    }
}
@media (min-width: 1400px) {
    .headerInner {
        padding: 10px 35px 10px calc(((100vw - 1184px) / 2) + 30px);
    }
    .header.fixed .headerInner {
        padding: 5px 35px 5px calc(((100vw - 1184px) / 2) + 30px);
    }
}
@media (min-width: 1600px) {
    .headerInner {
        padding: 10px 35px 10px calc(((100vw - 1184px) / 2) + 22px);
    }
    .header.fixed .headerInner {
        padding: 5px 35px 5px calc(((100vw - 1184px) / 2) + 22px);
    }
}

.headerInner-container {
    flex: 1;
    justify-content: space-between;
}

/* Logo */
.header__logo {
    padding: 5px 0 7px;
}

.header__logo img {
    min-width: 119px;
}
@media (min-width: 768px) {
    .header__logo img {
        min-width: 199px;
    }
}
@media (min-width: 992px) {
    .header.fixed .header__logo img {
        max-width: 160px;
        min-width: initial;
        transition: all .2s;
    }
}



/* -----------------------
  01 - HEADER (EN-TETE)
        nav-up / nav-down
------------------------ */

.header.scrollUp {
	position: fixed;
	top: 0;
	width: 100%;
	transition: top 0.2s ease-in-out;
	z-index : 2;
}

    .header.scrollUp.nav-up {
        transition: top 0.2s ease-in-out;
    }

    .header.scrollUp.nav-down {
        -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.32);
        -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.32);
            box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.32);
    }

@media (max-width: 991px) {
    .fixed-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--white);
        /* assure que le header reste au-dessus du contenu */
    }
}



/* -----------------------------
  01 - HEADER (EN-TETE)
        Widgets Mobile Bottom
----------------------------- */

.widgets-mobile-bottom {
    width: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 0 0 32px;
}

    @media (min-width: 992px) {
        .widgets-mobile-bottom {
            display: none;
        }
    }



/* ---------------------------------
  02 - ZONE INTERIEURE (CONTENU)
        Main
--------------------------------- */

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}
@media (max-width: 991px) {
    main {
        overflow: hidden;
    }
}
main &gt; img{
    position: absolute;
    top: 40%;
    right: -72px;
    z-index: -1;
}
@media (min-width: 992px) {
    main &gt; img{
        top: 14%;
        right: -34px;
    }

}

.contentPage {
    flex-grow: 1;
}

.page-contact{
    min-height: 100vh;
}
.page-contact,
.blog .contentPage{
    padding: 0 0 82px;
}


/* ---------------------------------
  02 - ZONE INTERIEURE (CONTENU)
        HeaderPage
--------------------------------- */

.headerPage {
    position: relative;
    margin: 40px 0 0;
}
@media (min-width: 768px) {
    .headerPage {
        margin: 40px 0;
    }
}
@media (min-width: 992px) {
    .headerPage {
        margin: 0 0 40px;
    }
}
@media (min-width: 992px) {
    .page-template-default .headerPage-picture + .contentPage{
        margin-top: -72px;
    }
}

.headerPage__description {
    color: var(--gray-700);
    font-size: 1.8rem;
    line-height: 133%;
    padding-bottom: 40px;
}
    .headerPage__description p{
        line-height: initial;
    }

.headerPage__img {
    aspect-ratio: 443 / 439;
    border-radius: 50%;
}

    @media (max-width: 991px) {
        .headerPage__img {
            max-width: 245px;
            margin: 15px auto 0;
        }
    }

.headerPage__circle {
    position: absolute;
    left: calc(100% - 104px);
    bottom: -42px;
}
@media (min-width: 992px) {
    .headerPage__circle {
        left: calc(100% - 56px);
    }

}
.headerPage__circle::before {
    width: 182px;
    height: 182px;
    background-color: transparent;
    border-radius: 50%;
    border: 33px solid var(--gray-700);
    mix-blend-mode: multiply;
    content: '';
    display: block;
}
@media (min-width: 992px) {
    .headerPage__circle::before {
        width: 275px;
        height: 275px;
        border: 50px solid var(--gray-700);
    }
}
.headerPage__circle &gt; img {
    position: absolute;
    right: calc(100% - 8px);
    top: 50%;
    transform: translateY(-50%) scale(.6);
}
@media (min-width: 992px) {
    .headerPage__circle &gt; img {
        right: calc(100% + 5px);
        transform: translateY(-50%);
    }
}




/* ---------------------------------
  02 - ZONE INTERIEURE (CONTENU)
        ScrollTop
--------------------------------- */

/*
  Infos :
    On gÃ¨re l'espace avec reCaptcha v3 mais aussi
    avec l'effet sticky avant le footer
*/

.scrollTop {
    position: sticky;
    bottom: 60px;
}



/* ---------------------------------
  03 - ASIDE
        Leftbar
--------------------------------- */




/* ---------------------------------
  03 - ASIDE
        Rightbar
--------------------------------- */
.box-shortcut-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 992px) {
    .box-shortcut-content {
        flex-direction: column;
        align-items: flex-end;
    }
}

.box-shortcut-content-item {
    background-color: var(--gray-700);
    box-shadow: 0 0 10px rgba(255, 255, 255, .4);
    border-radius: 15px;
}
.box-shortcut-content-item:not(:last-child) {
    margin-right: 7px;
}
@media (min-width: 992px) {
    .box-shortcut-content-item:not(:last-child) {
        margin-bottom: 7px;
        margin-right: 0;
    }
}
.box-shortcut-content-item &gt; a {
    padding: 13px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 60px;
    min-height: 60px;
    transition: min-width 0.3s ease-in-out;
}
.box-shortcut-content-item__title {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0;
    margin-left: 0;
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-left 0.3s ease-in-out;
}
@media (min-width: 992px) {
    .box-shortcut-content-item:hover .box-shortcut-content-item__title {
        width: auto;
        opacity: 1;
        margin-left: 22px;
    }
    .box-shortcut-content-item:hover &gt; a {
        min-width: 324px;
    }
}


#rightbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, .16);
    padding: 12px;
    z-index: 10;
}
@media (min-width: 992px) {
    #rightbar {
        position: fixed;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        width: initial;
        background: transparent;
        box-shadow: none;
        bottom: initial;
    }
}

.box-shortcut-content-item__icon {
    display: flex;
    align-items: center;
}
    .box-shortcut-content-item__icon img {
        min-width: 28px;
    }


/* -----------------------------
  04 - FOOTER (PIED DE PAGE)
----------------------------- */

.footer {
    background-color: var(--color-secondary);
    color: var(--black);
    margin-top: auto;
    padding: 40px 40px 90px;
}
@media (min-width: 992px) {
    .footer {
        padding: 40px;
    }
}

.footer a {
    color: var(--black);
}

.footer__menu {
    margin: 15px 0;
    line-height: 1.5;
}

    @media (min-width: 992px) {
        .footer__menu {
            margin: 0 0 0 50px;
        }
    }
    @media (min-width: 1200px) {
        .footer__menu {
            margin: 0 0 0 108px;
        }
    }

.footer__menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
    @media (max-width: 767px) {
        .footer__menu ul {
            flex-direction: column;
        }
    }

.footer__menu ul li {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    .footer__menu ul li:not(:last-child) {
        margin-bottom: 6px;
    }
}

.footer__menu ul li a {
    font-size: 1.2rem;
}
    @media (min-width: 768px) {
        .footer__menu ul li:not(:last-child) a::after {
            content: "|";
            color: var(--black);
            margin: 0 4px;
        }
    }

.footer .rs {
    justify-content: center;
}

.footer-recaptcha-consent {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
}
</pre></body></html>