    /*********** RESET CSS ***********/
    /* http://meyerweb.com/eric/tools/css/reset/ 
       v2.0 | 20110126
       License: none (public domain)
       */
    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 16px;
        font: inherit;
        vertical-align: baseline;
    }
    article, aside, details, figcaption, figure, 
    footer, header, hgroup, menu, nav, section {
        display: block;
    }
    ol, ul {
        list-style: none;
    }
    blockquote, q {
        quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }
    html {
        text-rendering: optimizeLegibility !important;
        -webkit-font-smoothing: antialiased !important;
    }
    * {
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
    }
    /***** IMPORT FONT TLC *****/
    /* import Primary font here, for secondary font, see header of html */
    /* @import url("//hello.myfonts.net/count/3c02ed");*/
    @font-face {
        font-family: 'Gilroy-Regular';
        src: url("../fonts/GilroyRegular.woff2") format("woff2"), url("../fonts/GilroyRegular.woff") format("woff");
        font-weight: normal;
        font-style: normal; }
    @font-face {
        font-family: 'Gilroy-Bold';
        src: url("../fonts/GilroyBold.woff2") format("woff2"), url("../fonts/GilroyBold.woff") format("woff");
        font-weight: normal;
        font-style: normal; 
    }
    @font-face {
        font-family: 'Gilroy-Light';
        src: url("../fonts/GilroyLight.woff2") format("woff2"), url("../fonts/GilroyLight.woff") format("woff");
        font-weight: normal;
        font-style: normal; }
    @font-face {
        font-family: 'Gilroy-SemiBold';
        src: url("../fonts/GilroySemiBold.woff2") format("woff2"), url("../fonts/GilroySemiBold.woff") format("woff");
        font-weight: normal;
        font-style: normal; }
    @font-face {
        font-family: 'Gilroy-Medium';
        src: url("../fonts/GilroyMedium.woff2") format("woff2"), url("../fonts/GilroyMedium.woff") format("woff");
        font-weight: normal;
        font-style: normal; }

/***** Personnalisation des Variables LMD *****/
/* Light mode */
:root {
    --logo:url(../images/logo.svg) no-repeat;
    --primary-font-family: 'Gilroy-Medium', Helvetica, Arial, sans-serif;
    --secondary-font-family: 'Roboto', Helvetica, Arial, sans-serif;
    --primary-color: #165895; /* blue lapis TLC */
    --secondary-color: #96C4EF; /* sky blue TLC */
    --tertiary-color:#0E9880; /* emerald green TLC */
    --virtual-color:#2C55CA; /* generic blue virtual */
    --clinic-color:#F9810C; /* generic orange clinic */
    --paragraph-font-color:#575857; /* grey TLC */
    --title-font-color:#000000; /* black TLC */  
    --bg-color: #ffffff; /* white */
    --bg-blue-color: #EEF5FD;
    --bg-grey-color: #F6F6F5;
    --bg-medium-grey-color: #E8E9EB;
    --grey-form: #BCBCBD;
    --webform-red : #D70000;
    --webform-red-bg :#F6E4E4;
    --webform-green : #61c663;
    --webform-green-bg :#daffda;
    --image-filter: grayscale(0%);
    --svg-fill-color:invert(0%);
    /*--icon-filter-color:#00aeef;--*/
    }
/* dark mode */
@media (prefers-color-scheme: dark) { 
:root { 
    --logo:url(../images/logo-white.svg) no-repeat;
    --primary-font-family: 'Gilroy-Medium', Helvetica, Arial, sans-serif;
    --secondary-font-family: 'Roboto', Helvetica, Arial, sans-serif;
    --primary-color: #6F8AA2; 
    --secondary-color: #628AB0; 
    --tertiary-color: #0D8B75; 
    --virtual-color:#6382DB; 
    --clinic-color:#FFB064; 
    --paragraph-font-color:#EEEEEE; 
    --title-font-color:#D5D5D5; 
    --bg-color: #2B2B2B;
    --bg-blue-color: #21364E;
    --bg-grey-color: #1A1A1A;
    --bg-medium-grey-color: #484848;
    --grey-form: #5D5D5D;
    --webform-red : #D76969;
    --webform-red-bg :#5F3939;
    --webform-green : #61c663;
    --webform-green-bg :#314b36;
    --image-filter: grayscale(30%);
    --svg-fill-color: invert(100%);
    }
}
    img:not([src*=".svg"]) {
     filter: var(--image-filter);
    }
    
/***** MAIN CSS *****/
            body {
                background-color: var(--bg-grey-color); 
                font-family:var(--secondary-font-family);
                font-size: 16px; /* VALEUR REFERENCE */ 
            }
            p {
                font-family:var(--secondary-font-family);
                font-size: 1rem; /* equiv 16px */
                line-height: 1.5;
                font-weight: normal;
                color:var(--paragraph-font-color);
            }
            .fweight-300 {font-weight:300 !important;}
            .fweight-600 {font-weight:600 !important;}
            .fweight-700 {font-weight:700 !important;}
            .fcolor-primary {color:var(--primary-color);  }
            .fcolor-secondary {color:var(--secondary-color);}
            .fcolor-tertiary {color:var(--tertiary-color);}
            .fcolor-grey {color:var(--paragraph-font-color);}
            .fcolor-darkgrey {color:var(--title-font-color);}
            .fsmaller {font-size: 0.875rem;} /* equiv 14px */
            .color-virtual {color:var(--virtual-color);}
            .color-clinic {color:var(--clinic-color);}
            .icons-svg-filter { filter: var(--svg-fill-color);}
            .align-center {text-align:center;}
            .align-left {text-align:left;}
            .align-right {text-align:right;}
            .uppercase {text-transform: uppercase;}
            h1.underline, h2.underline, h3.underline, p.underline {
                position: relative;
                margin-bottom: 20px;
                padding-bottom: 15px;
            }
            .underline::after {
                content: '';
                width: 175px;
                height: 5px;
                background-color: var(--secondary-color);
                position: absolute;
                bottom: 0;
                margin-left: auto;
                margin-right: auto;
                left: 0;
                right: 0;
                text-align: center;
                z-index: 1;
            }
            h1 {
                font-family:var(--primary-font-family);
                font-size: 2.0625rem; /* equiv 33px */
                line-height: 1;
                color:var(--title-font-color);
            }
            h2 {
                font-family:var(--primary-font-family);
                font-size: 1rem; /* equiv 16px */
            }
            h3 { 
                font-family:var(--secondary-font-family);
                font-size: 1.25rem; /* equiv 20px */
                line-height: 1.2;
            }
            h4 {
                font-family:var(--secondary-font-family);
                font-size: 1.125rem; /* equiv 18px */
            }
            hr {
                height: 1px;
                color:var(--grey-form);
                background-color: var(--grey-form);
                border: 0;
                padding:0;
            }
            a {
                text-decoration: underline;
                color:var(--paragraph-font-color);
            }
            /***** MAIN CONTENT *****/
            #container-fluid {
                margin:0 auto;
                width:100%;
                overflow:auto;
            }

            /*****  HEADER *****/
            header {
                width:100%;
                z-index: 600;
                position:fixed;
                background-color: var(--bg-grey-color);
                box-shadow: 0px 1px 30px rgba(112, 112, 112, 0.2);
                -webkit-box-shadow: 0px 1px 30px rgba(112, 112, 112, 0.2);
                -moz-box-shadow: 0px 1px 30px rgba(112, 112, 112, 0.2); 
            }
            .header-info {
                max-width:600px;
                height:70px;
                position:relative;
                margin:0 auto;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-flex-direction: row;
                -ms-flex-direction: row;
                flex-direction: row;
                -webkit-flex-wrap: nowrap;
                -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
                -webkit-justify-content: space-between;
                -ms-flex-pack: space-between;
                justify-content: space-between;
            }
            .header-info .logo {
                min-width:300px;
                display: block;
                background: var(--logo);
            }
            nav{
                max-width:210px;
                margin:auto 0.3rem auto 0;
                position:relative;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-flex-direction: row;
                -ms-flex-direction: row;
                flex-direction: row;
                -webkit-flex-wrap: nowrap;
                -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
                align-items:center;
                -webkit-align-items:center;
                -ms-align-items:center;
                -webkit-justify-content: flex-end;
                -ms-flex-pack: flex-end;
                justify-content: flex-end;
            }
            .cta-contact { 
                background-color:var(--bg-medium-grey-color);
                border:1px solid var(--bg-medium-grey-color);  
                padding: 0.95rem 0.5rem;
            }
            .cta-contact a{ 
                text-decoration: none;
                font-size: 1.125rem; /* equiv 18px */  
                display: inline;
            }
            img.icon-phone {
                display: inline-block !important;
                vertical-align: middle !important;
            }
            .cta-contact p{
                display: none;
                vertical-align: middle;
            }
            .cta-contact:hover {
                border:1px solid var(--title-font-color);
                transition: all 300ms ease 0s;
                -webkit-transition:all 300ms ease 0s;
            }
            .cta-language {
                background-color:var(--bg-grey-color);
                margin:0 0 0 0.8rem;
                border:1px solid var(--title-font-color); 
                padding: 1.12rem 1rem;
            }
            .cta-language p, .cta-language a{ 
                color:var(--title-font-color);
                text-decoration: none;
                font-size: 1.125rem; /* equiv 18px */
                text-transform: uppercase;
                text-align:center;
                padding:0;
            }
            .cta-language:hover {
                border:2px solid var(--title-font-color);
                transition: all 200ms ease 0s;
                -webkit-transition:all 200ms ease 0s;
            }
            .cta-book {
                background-color:var(--tertiary-color);
                margin:0 0 0 0.5rem;
                padding: 0.8rem 0.5rem;
                cursor: pointer; 
            }
            .cta-book-fr {
                background-color:var(--tertiary-color);
                margin:0 0 0 0.5rem;
                padding: 0.3rem 0.5rem;
                cursor: pointer; 
            }
            .cta-book p, .cta-book a, .cta-book-fr p, .cta-book-fr a{
                color:white; 
                font-family: var(--primary-font-family);
                text-decoration: none;
                font-size: 0.75rem; /* equiv 12px - not to increase because the FR copy longer */
                line-height:1.4; /* do not touch */
                text-transform: uppercase;
                text-align:left;
                padding:0;
            }
            .cta-book:hover, .cta-book-fr:hover {
                background-color: var(--title-font-color);
                color: white;
                transition: all 200ms ease 0s;
                -webkit-transition:all 200ms ease 0s;
            }
            .cta-book:hover p, .cta-book:hover a, .cta-book-fr:hover p, .cta-book-fr:hover a {
                color: white;
            }
            /* animation arrow cta */
            #ico-bookcta{
                width:100%; 
                cursor: pointer; 
                position: absolute;
                bottom: 71%;
                left: 64%;
            }
            #ico-bookcta .arrowbook {
                left: 26%;
                filter: brightness(100);
            }
            .cta-book:hover #ico-bookcta .arrowbook{
                filter: brightness(100);
            }
            .arrowbook {
                position: absolute; 
                bottom: 0;  
                margin-left:0px; 
                width: 10px; 
                height: 10px; 
                background-size: contain; 
                top:8px;
                cursor: pointer;
            }
            .segundabook{margin-left: 7px;}
            .nextbook {
                background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHN0eWxlPi5zdDB7ZmlsbDojZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTMxOS4xIDIxN2MyMC4yIDIwLjIgMTkuOSA1My4yLS42IDczLjdzLTUzLjUgMjAuOC03My43LjZsLTE5MC0xOTBjLTIwLjEtMjAuMi0xOS44LTUzLjIuNy03My43UzEwOSA2LjggMTI5LjEgMjdsMTkwIDE5MHoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzE5LjEgMjkwLjVjMjAuMi0yMC4yIDE5LjktNTMuMi0uNi03My43cy01My41LTIwLjgtNzMuNy0uNmwtMTkwIDE5MGMtMjAuMiAyMC4yLTE5LjkgNTMuMi42IDczLjdzNTMuNSAyMC44IDczLjcuNmwxOTAtMTkweiIvPjwvc3ZnPg==);
            }

            /***** MOBILE FIRST *****/
            /* mixin for Mobiles/Tablet Portrait up : max-width 600px; */

            /* mixin for Tablet Landscape up; */
            @media screen and (min-width : 601px) and (max-width : 900px) {
                .header-info {
                    max-width:900px;
                }
                
                nav{
                    min-width:400px;
                    margin:auto 0.5rem auto 0;
                }
                .cta-language {
                    display:block;
                    padding:1.14rem 0.8rem;
                }
                .cta-book, .cta-book-fr {
                    padding:1.33rem 1.9rem 1.33rem 1rem; /* do not increase, FR version */
                }
                #ico-bookcta {
                    left:68%;
                }
            }

            /* mixin for Desktop up; */
            @media screen and (min-width : 901px) and (max-width : 1200px) {
                .header-info { 
                    max-width:1200px;
                    height: 80px;
                }

                nav{
                    min-width:550px;
                    margin:auto 0.5rem auto 0;
                }
                .cta-contact {
                    padding:1rem 1.8rem;
                }
                .cta-contact p{
                    display: inline-block;
                    vertical-align: middle;
                    font-size: 1.125rem; /* equiv 18px */
                    padding:0 0 0.1rem 1rem;
                }
                /* .cta-contact:hover img {
                    transform:translateX(5px);
                }remove without copy */
                .cta-language p, .cta-language a{ 
                    font-size:1rem; /* 18px */
                }
                .cta-book,.cta-book-fr {
                    padding:1.33rem 2.5rem 1.33rem 1.7rem; 
                }
                #ico-bookcta {
                    left:60%;
                }
                #ico-bookcta .arrowbook {
                    left: 35%;
                }
                h1 {
                    font-size: 2.5rem; /* equiv 40px */
                }
            }

            /* mixin for Big Desktop up */
            @media screen and (min-width : 1201px) and (max-width : 2500px) {
                .header-info { 
                    max-width:1200px;
                    height: 80px;
                }
              
                nav{
                    min-width:550px;
                    margin:auto 0.5rem auto 0;
                }
                .cta-contact  {
                    padding:1rem;
                }
                .cta-contact p{
                    display: inline-block;
                    vertical-align: middle;
                    font-size: 1.125rem; /* equiv 18px */
                    padding:0 0 0.1rem 1rem;
                }
                /* .cta-contact:hover img {
                    transform:translateX(5px);
                } remove without copy */
                .cta-language p, .cta-language a{ 
                    font-size:1rem;
                }
                .cta-book, .cta-book-fr {
                    padding:1.33rem 2.5rem 1.33rem 1.7rem; 
                }
                #ico-bookcta {
                    left:60%;
                }
                #ico-bookcta .arrowbook {
                    left: 35%;
                }
                h1 {
                    font-size: 2.5rem; /* equiv 40px */
                }
            }

            @media screen and (max-width : 600.98px){

                .header-info .logo {
                    min-width:165px;
                    background-position: center;
                }

            }


            /**********  MAIN CONTENT  **********/
            #content {
                max-width:600px;
                padding: 80px 0 0 0;
                margin: 0 auto;
            }
            section {
                max-width:600px;
                margin-left: auto;
                margin-right: auto;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-justify-content: space-around;
                -ms-flex-pack: space-around;
                justify-content: space-around;
                flex-direction: column;
                -ms-flex-direction: column;
                -webkit-flex-direction: column;
            }
            .two-columns {
                width:100%;
                margin-left:auto;
                margin-right: auto;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-flex-direction: column;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-flex-wrap: nowrap;
                -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
            }

            /*****  SECTION INTRO *****/
            #intro {
                padding: 1rem 1rem 0.2rem;
            }
            /* ajustement step 3*/
            #intro-step3 {
                padding: 1rem 1rem 0rem;
            }
            #intro p{
                color: var(--title-font-color);
            }


            
            /*****  SECTION STEPS Bandeau *****/
            #steps {
                background-color: var(--bg-medium-grey-color);
                min-width: 335px;
                margin: 0 20px;
                padding: 20px;
            }
            /* version mobile only */
            #steps-mobile{
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-justify-content: space-between;
                -ms-flex-pack: space-between;
                justify-content: space-between;
                flex-direction: row;
                -ms-flex-direction: row;
                -webkit-flex-direction: row;
                position: relative;
            }
            #steps-mobile.second-step:before{
                content: '';
                width: 50%;
                height: 3px;
                background-color: var(--secondary-color);
                position: absolute;
                top: 19px;
                z-index: 1;
            }
            #steps-mobile.third-step:before{
                content: '';
                width: 100%;
                height: 3px;
                background-color: var(--secondary-color);
                position: absolute;
                top: 19px;
                z-index: 1;
            }
            #steps-mobile::after{
                content: '';
                width: 100%;
                height: 3px;
                background: var(--bg-color);
                position: absolute;
                top: 19px;
            }
            h2.step-title-mobile {
                text-align: center;
                padding:1.2em 0 0;
            }
            #steps-desktop {
                display: none;
            }
            .dot {
                height: 40px;
                width: 40px;
                border-radius: 50%;
                display: inline-block;
                text-align: center;
                line-height: 35px;
                z-index:20;
            }
            .step-active{
                background-color: var(--primary-color);
                color:var(--bg-color);
                border:2px solid var(--bg-grey-color);
            }
            .step-noactive{
                background-color: var(--bg-color);
                color:var(--title-font-color);
                border:1px solid var(--grey-form);
            }

            /*****  SECTION 1 FORMULAIRE *****/
            #form-structure {
                background-color: var(--bg-color);
                min-width: 335px;
                margin: 0 20px;
                padding: 20px;
            }

            /*****  SECTION FOOTER *****/
            footer {
                max-width:600px;
                margin-left: auto;
                margin-right: auto;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-justify-content: space-between;
                -ms-flex-pack: space-between;
                justify-content: space-between;
                flex-direction: column;
                -ms-flex-direction: column;
                -webkit-flex-direction: column;
            }
            .footer-copy{
                margin: 2rem auto;
                width: 89%;
            }
            .footer-copy p, .footer-copy a{
                color:var(--paragraph-font-color);
                font-size: 0.6875rem; /* equiv 11px */
            }

            /***** MOBILE FIRST *****/
            /* mixin for Mobiles/Tablet Portrait up : max-width 600px; */

            /* mixin for Tablet Landscape up; */
            @media screen and (min-width : 601px) and (max-width : 900px) {
                #content {
                    max-width: 900px;
                }
                section {
                    max-width:900px;
                }
                .two-columns {
                    -webkit-flex-direction: row;
                    -ms-flex-direction: row;
                    flex-direction: row;
                }
                #intro, #intro-step3 {
                    padding: 1rem 0;
                }
                #intro p {
                    max-width: 600px;
                    margin: auto;
                }
                 #steps-desktop {
                    display: none;
                }
                footer {
                    max-width:900px;
                    flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                .footer-copy {
                    width:94%;
                }
            }

            /* mixin for Desktop up; */
            @media screen and (min-width : 901px) and (max-width : 1200px) {
                #content {
                    max-width: 1200px;
                }
                section {
                    max-width:1200px;
                    flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                .two-columns {
                    -webkit-flex-direction: row;
                    -ms-flex-direction: row;
                    flex-direction: row;
                }
                #intro {
                    padding: 1.5rem 0;
                }
                #intro-step3 {
                    padding: 1.5rem 0 0;
                }
                #intro p {
                    font-size:1.125rem; /* equiv 18px */
                    max-width: 600px;
                    margin: auto;
                }
                #steps {
                    max-width: 1200px;
                }
                #steps-mobile, h2.step-title-mobile {
                    display: none;
                }
                #steps-desktop{
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-flex-wrap: wrap;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
                    -webkit-justify-content: space-around;
                    -ms-flex-pack: space-around;
                    justify-content: space-around;
                    flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                #steps-desktop h2{
                    display: inline;
                    padding: 0 0 0 10px;
                }
                #form-structure {
                    max-width: 1200px;
                }
                footer {
                    max-width:1200px;
                    flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                .footer-copy {
                    width:95%;
                }
            }

            /* mixin for Big Desktop up */
            @media screen and (min-width : 1201px) and (max-width : 2500px) {
                #content {
                    max-width: 1200px;
                }
                #content-step2 {
                    max-width:1200px;
                     flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                section {
                    max-width:1920px;
                    flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                .two-columns {
                    -webkit-flex-direction: row;
                    -ms-flex-direction: row;
                    flex-direction: row;
                }
                #intro{
                    padding: 1.5rem 0 0.5rem;
                }
                #intro-step3 {
                    padding: 1.5rem 0 0;
                }
                #intro p {
                    font-size:1.125rem; /* equiv 18px */
                    max-width: 600px;
                    min-width: 600px;
                    margin: auto;
                }
                #steps {
                    max-width: 1200px;
                    margin: 0;
                }
                 #steps-mobile, h2.step-title-mobile {
                    display: none;
                }
                #steps-desktop{
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-flex-wrap: wrap;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
                    -webkit-justify-content: space-around;
                    -ms-flex-pack: space-around;
                    justify-content: space-around;
                    flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                #steps-desktop h2{
                    display: inline;
                    padding: 0 0 0 10px;
                }
                #form-structure {
                    max-width: 1200px;
                    margin: 0;
                }
                footer {
                    max-width:1200px;
                    flex-direction: row;
                    -ms-flex-direction: row;
                    -webkit-flex-direction: row;
                }
                .footer-copy {
                    width:96%;
                }
            }

/*** Osano CMP integration patch ***/
.osano-cm-info p, .osano-cm-info ul, .osano-cm-info ol,  .osano-cm-info label {
    color: inherit;
}
 
.osano-cm-description p {
    font-size: 12px;
}