    /*********** 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;
    }
    *, *:before, *:after {
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
    }
       
    /***** IMPORT FONT LASIKMD *****/
    /* import Primary font here, for secondary font, see header of html */
    /* @import url("//hello.myfonts.net/count/3c02ed");*/
    @font-face {
        font-family: 'Greycliff-Regular';
        src: url("../fonts/GreycliffCF-Regular.woff2") format("woff2"), url("../fonts/GreycliffCF-Regular.woff") format("woff");
        font-weight: normal;
        font-style: normal; }
    @font-face {
        font-family: 'Greycliff-Bold';
        src: url("../fonts/GreycliffCF-Bold.woff2") format("woff2"), url("../fonts/GreycliffCF-Bold.woff") format("woff");
        font-weight: normal;
        font-style: normal; 
    }
    @font-face {
        font-family: 'Greycliff-Medium';
        src: url("../fonts/GreycliffCF-Medium.woff2") format("woff2"), url("../fonts/GreycliffCF-Medium.woff") format("woff");
        font-weight: normal;
        font-style: normal; }
    @font-face {
        font-family: 'Greycliff-Light';
        src: url("../fonts/GreycliffCF-Light.woff2") format("woff2"), url("../fonts/GreycliffCF-Light.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: 'Greycliff-Bold', Helvetica, Arial, sans-serif;
    --primary-font-family-regular: 'Greycliff-Regular', Helvetica, Arial, sans-serif;
    --secondary-font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
    --primary-color: #4700F0; /* blue LMD */
    --secondary-color: #F7A700; /* yellow LMD */
    --tertiary-color:#8A64FF; /* purple LMD*/
    --paragraph-font-color:#373536; /* grey LMD */
    --title-font-color:#373536; /* dark grey LMD */ 
    --bg-color: #ffffff; /* white */
    --bg-blue-color: #EEF5FD;
    --bg-grey-color: #F6F6F5;
    --bg-medium-grey-color: #E8E9EB;
    --bg-purple-color : #F0EEF8;
    --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-phone-filter:invert(10%) sepia(98%) saturate(7418%) huerotate(
    264deg) brightness(85%) contrast(127%);
    /*--icon-filter-color:#00aeef;--*/
    }
/* dark mode */
@media (prefers-color-scheme: dark) { 
:root { 
    --logo:url(../images/logo-white.svg) no-repeat;
    --primary-font-family: 'Greycliff-Bold', Helvetica, Arial, sans-serif;
    --secondary-font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
    --primary-color: #B3D0FF; /* blue LMD */
    --secondary-color: #FFD783; /* yellow LMD */
    --tertiary-color:#CEBDFF; /* purple LMD*/
    --paragraph-font-color:#D5D5D5; /* grey LMD */
    --title-font-color:#D5D5D5; /* dark grey LMD */ 
    --bg-color: #2B2B2B; /* white */
    --bg-blue-color: #21364E;
    --bg-grey-color: #1A1A1A;
    --bg-purple-color : #271E4A;
    --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%);
    --icon-phone-filter:brightness(0) saturate(100%) invert(84%)
    sepia(3%) saturate(7241%) hue-rotate(185deg) brightness(101%)
    contrast(101%);
    }
}
    img:not([src*=".svg"]) {
     filter: var(--image-filter);
    }
    
/***** MAIN CSS *****/

p {
    font-family:var(--secondary-font-family);
    font-size: 1.5rem; 
    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-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: 15px;
    padding-bottom: 5px;
}
.underline::after {
    content: '';
    /*width: 95px;  Todo: Check and remove */
    height: 5px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}

.text-center{
    text-align: center;
}

.underline.text-center::after {           
    width: 142px;
    height: 6px;
    bottom: -6px;
    left: 50%;
    margin-left: -71px;
}
h1 {
    font-family:var(--primary-font-family);
    font-size: 2rem; 
    line-height: 1;
    color: #373536;
}
h2 {
    font-family:var(--primary-font-family);
    font-size: 1.9em; /* equiv 16px */
    color:var(--title-font-color);
}
h3 { 
    font-family:var(--tertiary-font--family);
    font-size: 1.13em; /* equiv 18px */
    color:var(--paragraph-font-color);
}
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 *****/

body {
    background-color: var(--bg-color); 
    font-family:var(--secondary-font-family);
    font-size: 16px; /* VALEUR REFERENCE */ 
    overflow-x: hidden;
}

.wrapper {
    margin:0 auto;
    width:100%;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    max-width:600px;
    margin: 0 auto;
}

header{
    display: flex;
    align-items: center;
    justify-content: center;
    /*flex-grow: 1;*/
}

main{
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
    justify-content: center;
    flex-grow: 1;
}

header.wrapper-progressbar{
   /*margin: auto;
   position: sticky;*/
    width: 100%;
    min-height: 280px;
    margin: 0 auto;
    position: relative;
}
}

.bg-cloud {
    width: 100%;
    min-height: 280px;
    /*background-color: var(--bg-blue-color);*/
    background-image: url("/promotions/savings-quiz/templates/images/savings-quiz-bg-cloud-img.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

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;
}

.next-button button, .webform-cta-submit button, .next-button a.button-confirmation {
    display: block;
    width: 525px;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
    text-decoration: none;
    border: 0;
    border-radius: 50px;
    background-color: #4700F0;
    color: #FFF;
    font-family: var(--secondary-font-family);
    font-size: 2rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all 300ms ease 0s;
    position: relative;
    text-align: center;
    margin-top: 20px;
}

/* QC: SECTION FOOTER */
footer {
    width: 100%;
    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;
    padding-top: 0px;
}

.footer-logo{
    background: var(--logo) center center;
    margin: 0rem auto;
    min-height: 100px;
    max-width: 220px;
    width: 220px;
    justify-content: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center;
}

.footer-copy {
    background: var(--bg-grey-color);
    padding: 10px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-copy p, .footer-copy a{
    color:var(--paragraph-font-color);
    font-size: 1rem; /* equiv  */
}

/* mixin for 601 and up; */
@media screen and (min-width : 601px) {
    section, #content {
        max-width: inherit;
    }

}

/* mixin for 1023 and up; */
@media screen and (min-width : 1023px) {
    
    #content {
        max-width: initial;
    }
    section {
        max-width:initial;
    }
    
}

/***** MOBILE *****/
@media only screen and (max-width: 900px){
    
    .fa.fa-face-grin-stars, .fa.fa-badge-check{
        font-size: 2.5rem; 
    }
}

@media only screen and (max-width: 600px){

    div.content-progressbar {
         width: calc(100% - 5em) !important;
     }

    .cta-prev {
        left: -30px;
    } 

    .next-button button, .webform-cta-submit button, .next-button a.button-confirmation {
        width: calc(100vw - 2rem);
        min-width: 225px;
        margin-left:auto;
        margin-right:auto;
    }
    footer {
     position:relative !important;
     bottom:auto;    
    }
    .footer-copy {
        align-items: flex-start;
    }
    .footer-copy p{
        margin-left: 15px;
    }
}

@media screen and (max-width : 350px) {


    .step-title h1, .last-step h1 {
        font-size: calc(0.8rem + 1vw);
    }

    .fa.fa-face-grin-stars, .fa.fa-badge-check{
        font-size: calc(2rem + 1vw);
    }
}           

/*** 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;
}

/******* BG CLOUD RESPONSIVE **************/

/* Desktop */
@media screen and (min-width: 1026px) {
    header.wrapper-progressbar,
    .bg-cloud {
        min-height: 250px;
        background-image: url("/promotions/savings-quiz/templates/images/savings-quiz-bg-cloud-img.svg");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
    }
}

/* Laptop / small desktop */
@media screen and (min-width: 901px) and (max-width: 1025px) {
    header.wrapper-progressbar,
    .bg-cloud {
        min-height: 260px;
        background-image: url("/promotions/savings-quiz/templates/images/savings-quiz-bg-cloud-img.svg");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
    }
}

/* Tablet */
@media screen and (max-width: 900px) {
    header.wrapper-progressbar,
    .bg-cloud {
        min-height: 220px;
        background-size: cover;
        background-position: center bottom;
        background-image: url("/promotions/savings-quiz/templates/images/savings-quiz-bg-cloud-img.svg");
        background-repeat: no-repeat;
    }
}

/* Mobile */
@media screen and (max-width: 600px) {
    header.wrapper-progressbar,
    .bg-cloud {
        min-height: 180px;
        background-size: cover;
        background-position: center bottom;
        background-image: url("/promotions/savings-quiz/templates/images/savings-quiz-bg-cloud-img.svg");
        background-repeat: no-repeat;
    }
}

/* Very small mobile */
@media screen and (max-width: 350px) {
    header.wrapper-progressbar,
    .bg-cloud {
        min-height: 150px;
        background-image: url("/promotions/savings-quiz/templates/images/savings-quiz-bg-cloud-img.svg");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
    }
}
