/*@tailwind base;
@tailwind components;
@tailwind utilities;*/

/*@font-face {
    font-family: "Proxima Nova";
    font-weight: 900;
    src: url('../fonts/proxima/ProximaNova-Black.woff2');
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 800;
    src: url('../fonts/proxima/ProximaNova-Extrabold.woff2');
    font-display: swap;
}*/

/*@font-face {
    font-family: "Proxima Nova";
    font-weight: 700;
    src: url('../fonts/proxima/ProximaNova-Bold.woff2');
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 600;
    src: url('../fonts/proxima/ProximaNova-Semibold.woff2');
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 500;
    src: url('../fonts/proxima/ProximaNova-Medium.woff2');
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    font-weight: 400;
    src: url('../fonts/proxima/ProximaNova-Regular.woff2');
    font-display: swap;
}
*/
:root {
    interpolate-size: allow-keywords;
    --nextbuttoncolor: #5c9278;
    --nextbuttonbackgroundcolor: #dbf7e8;
    --nextbuttoncolorhover: #393939;
    --nextbuttonbackgroundcolorhover: #99d5b5;
    --paddingsmcontainer: 1.2rem;
    --LG-Margin-left: 80px;
    --LG-Margin-right: 80px;
    --Lg-Survey-app-width: 530px;
    --LG-Survey-width: calc(var(--LG-Margin-right) + var(--LG-Margin-left) + var(--Lg-Survey-app-width));
    --LG-Content-width: calc(calc(100% - var(--LG-Survey-width)) / 2);
    --LGS-Margin-left: 60px;
    --LGS-Margin-right: 60px;
    --LGS-Survey-app-width: 530px;
    --LGS-Survey-width: calc(var(--LGS-Margin-right) + var(--LGS-Margin-left) + var(--LGS-Survey-app-width));
    --LGS-Content-width: calc(calc(100% - var(--LGS-Survey-width)) / 2);
}

* {
    -webkit-tap-highlight-color: transparent;
}

a, button, label {
    -webkit-tap-highlight-color: transparent;
}

a {
    transition: color 0.3s ease;
}

a:hover {
    color: #bfbfc1;
}

.button-md {
    padding: 10px 20px;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #dbeafe;
    color: #1d4ed8;
    font-weight: 600;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
    transition: background-color .3s ease,border-color .3s ease,color .3s ease;
}

.button-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
    line-height: 1.5;
    background-color: #dbeafe;
    color: #1d4ed8;
    font-weight: 600;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: #dbeafe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
    transition: background-color .3s ease,border-color .3s ease,color .3s ease;
}

.button-md svg {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
}

.button-sm svg {
    height:16px;
    width:16px;
    flex-shrink:0;
}


.button-blue {
    background-color: #dbeafe;
    color: #1d4ed8;
    border-color: #dbeafe;
}

.button-green {
    border-color: #dbf7e8;
    background-color: #dbf7e8;
    color: #5c9278;
}

.button-red {
    border-color: #fdf1f2;
    background-color: #fdf1f2;
    color: #bc3b5c;
}

.flex {
    display:flex;
}
.gap-5 {
    gap: 5px;
}
.gap-10 {
    gap:10px;
}

.full-width {
    width:100%;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.button-hover-color-gray {
   transition:color 0.3s ease;
}

.button-hover-color-gray:hover {
    color: #bfbfc1;
}

.font-weight-600 {
    font-weight: 600;
}

.items-center {
    align-items: center;
}


.pro-description {
    overflow: auto;
    margin-top: 20px;
}

.pro-description .bottom-background {
    background-color: var(--LG_BackgroundColor);
    background: linear-gradient(transparent, var(--LG_BackgroundColor));
    height: 30px;
    position: sticky;
    bottom: 0;
    width: 100%;
}

.pro-details-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 6px;
    background: #f7f7f7;
    width: 100%;
    margin-top:12px;
}

.pro-details-group .pro-details-sub-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    margin-left: -7px;
    margin-right: -7px;
    border-radius: 4px;
    background: #ffffff;
    width: 100%;
    border: 1px solid #edf2f9;
}

.pro-details-group .pro-details-group-header {
    font-size:16px;
    font-weight:600;
    line-height:1.1;
    text-decoration:underline;
}

.pro-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pro-details .pro-details-history-list-button {
    border-radius: 4px;
    background-color: #3579d2;
    color: #ffffff;
    border: 2px solid #3579d2;
    display: flex;
    align-items: center;
    text-align: left;
    line-height: 1;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 6px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 20;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 4px;
}

.pro-details .pro-details-history-list-button svg {
    height: 14px;
    width: 14px;
    flex-shrink: 0;
}

.pro-details .data-value-action {
    display: inline-flex;
    font-weight: 600;
    gap:8px;
    align-items:center;
}

.pro-details .data-value-action svg {
    height: 16px;
    width: 16px;
}


.pro-details .pro-details-info-line {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    line-height: 1.2;
    gap:4px;
}

.pro-details .pro-details-info-line .pro-details-info-label {
    font-weight:600;
    font-size:14px;
    white-space:nowrap;
}

.pro-details .pro-details-info-line .pro-details-info-value {
    font-weight: 700;
    font-size: 14px;
}


.pro-actions {
    display:flex;
    flex-direction:column;
    gap:15px;
}

.round-green {
    width: 12px;
    height: 12px;
    border-radius: 15px;
    background: #00f981;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.historique-list {
    display:grid;
    gap:20px;
}

.historique-list .historique-card {
    border: 1px solid #edf2f9;
    padding: 10px;
    border-radius: 6px;
}
.historique-list div .title {
    font-size:22px;
    font-weight: 600;
}

.historique-list div .data-type {
    font-weight:600;
}

html, body {
    overscroll-behavior: none;
}

body {
    scrollbar-color: #ffffff;
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: rgb(57, 57, 57);
    font-family: 'Proxima Nova','Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
}

body::-webkit-scrollbar {
    width: 11px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(155, 155, 155);
    border-radius: 6px;
    border: 3px solid white;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
}


body.modal-open {
    overflow:hidden;
}

@media (min-width: 1024px) {
    body {
        background-color: #ffffff;
        overflow-x: hidden;
    }
}

.survey-content-container {
    z-index: 1;
    position: relative;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.survey-container.survey .survey-content-container {
    flex-grow: 0;
}

.survey-content-container .survey-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.survey-container.survey .survey-content-container .survey-content {
    flex-grow: 0;
}

.survey-content-container .survey-content header {
    background-color: var(--SM_BackgroundColor);
}

.survey-app-container {
    z-index: 2;
    position: relative;
}

@media (min-width: 1024px) {
    .survey-content-container {
        z-index: 2;
        height: 100vh;
        height: 100dvh;
        border-right: 1px solid var(--LG_SecondaryBackgroundColor);
        position: sticky;
        top: 0;
        overflow-y: auto;
        background-color: var(--LG_BackgroundColor);
    }

    .survey-content-container::-webkit-scrollbar {
        width: 11px
    }

    .survey-content-container::-webkit-scrollbar-thumb {
        background-color: #9b9b9b;
        border-radius: 6px;
        border-color: #f6f8fa;
        border-style: solid;
        border-width: 3px
    }

    .survey-content-container::-webkit-scrollbar-track {
        background: #0000
    }

    .survey-content-container .survey-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        max-width: 590px;
        width: 100%;
        margin-left: auto;
        min-height: 650px;
    }

    .survey-container.pro-mode .survey-content-container .survey-content {
        max-width: 535px;
    }

    .survey-content-container .survey-content header {
        background-color: unset;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin-top: auto;
    }

    .survey-app-container {
        z-index: 1;
        margin-top: 0;
        background-color: #ffffff;
        background-image: var(--LG_SecondaryBackgroundPattern);
    }

    .survey-app-container .survey-app {
        height: 100%;
        display: flex;
    }
}


/*SURVEY CONTAINER*/
.survey-container {
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    min-height:100dvh;
    display:flex;
    flex-direction:column;
}

.survey-container.pro-mode {
    margin-left: 350px;
}



@media (min-width: 492px) {
    .survey-container {
        display: flex;
        flex-direction: column;
        max-width: 492px;
        gap: 0px;
        border-left: 1px solid #f6f8fa;
        border-right: 1px solid #f6f8fa;
        box-shadow: 0 5px 10px #9aa0b90d,0 -5px 20px #a6adc933;
    }
}

@media (min-width: 1024px) {
    .survey-container {
        display: grid;
        grid-template-columns: minmax(500px, 1fr) minmax(0, 1fr);
        transition: grid-template-columns 0.3s ease;
        max-width: 100%;
        gap: 0px;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }

    .survey-container.survey,
    .survey-container.validation {
        grid-template-columns: minmax(350px, 1fr) minmax(var(--LGS-Survey-width),1fr);
    }
}

@media (min-width: 1215px) {
    .survey-container {
        grid-template-columns: minmax(700px, 34%) minmax(0, 1fr);
    }

    .survey-container.survey,
    .survey-container.validation {
        grid-template-columns: minmax(450px, var(--LG-Content-width)) minmax(var(--LG-Survey-width),1fr);
    }
}

@media (min-width: 1024px) {
    .survey-container.pro-mode {
        display: grid;
        grid-template-columns: minmax(370px, 590px) minmax(var(--LG-Survey-width), 1fr);
        max-width: 100%;
        gap: 0px;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
}


/*MODULE START*/
.survey-container .survey-app-container .start {
    display: none;
}

.survey-container .start {
    padding-left: var(--paddingsmcontainer);
    padding-right: var(--paddingsmcontainer);
    z-index: 1;
    position: relative;
    background-color: var(--SM_FooterBackgroundColor);
}

.survey-container .survey-content-container .start-sentinel {
    height: 1px;
    background-color: var(--SM_FooterBackgroundColor);
}

.survey-container .survey-content-container .start {
    height:0px;
    position:sticky;
    bottom:0px;
    padding-bottom:0px;
}

.survey-container .survey-content-container .start .button-start {
    margin-top: -20px;
    transform:translate3d(0, 0, 0);
}

.survey-container .survey-content-container .start.is-pinned .button-start {
    transform: translate3d(0, -100%, 0);
}



.survey-container .start .button-start {
    min-height: 50px;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    font-size: 17px;
    line-height: 1;
    background-color: var(--SM_ButtonStartBackgroundColor);
    color: var(--SM_ButtonStartColor);
    font-weight: 500;
    border-radius: 4px;
    border-color: var(--SM_ButtonStartBorderColor);
    border-width: 2px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.survey-container .start .button-start:hover {
    border-color: var(--SM_ButtonStartHoverBorderColor);
    color: var(--SM_ButtonStartHoverColor);
    background-color: var(--SM_ButtonStartHoverBackgroundColor);
}

@media(min-width:1024px) {
    .survey-container .start .button-start {
        background-color: var(--LG_ButtonStartBackgroundColor);
        color: var(--LG_ButtonStartColor);
        border-color: var(--LG_ButtonStartBorderColor);
    }

    .survey-container .start .button-start:hover {
        border-color: var(--LG_ButtonStartHoverBorderColor);
        color: var(--LG_ButtonStartHoverColor);
        background-color: var(--LG_ButtonStartHoverBackgroundColor);
    }
}

.survey-container .start p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .survey-container .survey-content-container .start {
        display: none;
    }
    .survey-container .survey-content-container .start-sentinel {
        display: none;
    }

    .survey-container .survey-app-container .start {
        display: flex;
    }


    .survey-container .start {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: var(--LG-Survey-width);
        padding-left: var(--LG-Margin-left);
        padding-right: var(--LG-Margin-right);
        background-color: transparent;
    }
}

.survey-container.survey .start {
    display: none;
}

.survey-container.validation .start {
    display: none;
}
/*FIN MODULE START*/



/*MODULE VALIDATION*/
.survey-container .validation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: var(--paddingsmcontainer);
    padding-right: var(--paddingsmcontainer);
    background-color: var(--SM_FooterBackgroundColor);
    position: relative;
    z-index: 1;
}

.survey-container .survey-content-container .survey-content .validation .validation-container{
    margin-top:-20px;
}

.survey-container .validation-container {
    border: 1px solid #f6f8fa;
    text-align: center;
    background-color: white;
    border-radius: 0px;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    width: 100%;
    box-shadow: 0 5px 10px #9aa0b90d, 0 -5px 20px #a6adc933;
}

.survey-container .validation h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.survey-container .validation p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    margin-top:15px;
}

@media (min-width: 1024px) {
    .survey-container .validation {
        flex: 1;
        max-width: var(--LG-Survey-width);
        padding-left:var(--LG-Margin-left);
        padding-right:var(--LG-Margin-right);
        background-color: transparent;
    }
}


/*gauche*/
.survey-container .survey-content-container .survey-content .validation {
    display: none;
}

.survey-container.validation .survey-content-container .survey-content .validation {
    display: flex;
}

/*droite*/
.survey-container .survey-app-container .survey-app .validation {
    display: none;
}
.survey-container.validation .survey-app-container .survey-app .validation {
    display: none;
}

@media (min-width: 1024px) {
    /*gauche*/
    .survey-container .survey-content-container .survey-content .validation {
        display: none;
    }
    .survey-container.validation .survey-content-container .survey-content .validation {
        display: none;
    }

    /*droite*/
    .survey-container .survey-app-container .survey-app .validation {
        display: none;
    }
    .survey-container.validation .survey-app-container .survey-app .validation {
        display: flex;
    }
}
/*FIN MODULE VALIDATION*/


/*MODULE HEADER*/
header {
    position:relative;
    z-index:0;
}

header .container {
    padding-top: 50px;
    padding-bottom: 65px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

header .container h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    color: var(--SM_MainTitleColor);
}

header .container h2 {
    letter-spacing: -0.5px;
    font-size: 19px;
    line-height: 1;
    margin-top: 12px;
    font-weight: 500;
    position: relative;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    color: var(--SM_MainSubTitleColor);
}

header .draft-survey-init-container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    margin-top: 12px;
    margin-bottom: 20px;
}

.survey-container.survey header .draft-survey-init-container {
    margin-bottom: 0px;
}

header .draft-survey-init-container .button-draft-survey-init {
    background-color: var(--SM_ButtonActionBackgroundColor);
    color: var(--SM_ButtonActionColor);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    z-index: 20;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--SM_ButtonActionBorderColor);
    gap: 10px;
    transition: 0.3s;
}

header .draft-survey-init-container .button-draft-survey-init:hover {
    background-color: var(--SM_ButtonActionHoverBackgroundColor);
    color: var(--SM_ButtonActionHoverColor);
    border-color: var(--SM_ButtonActionHoverBorderColor);
}

@media(min-width:1024px) {
    header .draft-survey-init-container .button-draft-survey-init {
        background-color: var(--LG_ButtonActionBackgroundColor);
        color: var(--LG_ButtonActionColor);
        border-color: var(--LG_ButtonActionBorderColor);
    }

    header .draft-survey-init-container .button-draft-survey-init:hover {
        background-color: var(--LG_ButtonActionHoverBackgroundColor);
        color: var(--LG_ButtonActionHoverColor);
        border-color: var(--LG_ButtonActionHoverBorderColor);
    }
}

header .draft-survey-init-container .button-draft-survey-init svg {
    height: 18px;
    width: 18px;
    flex-shrink: 0;
}



header .container h2 + .header-intro {
    margin-top: 20px;
}

header .container .header-intro {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

header .container .description {
    overscroll-behavior: none;
}

header .container .description, header .container .description p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding-right: 1.25rem;
    overflow-x: hidden;
    word-break: break-word;
    color: var(--SM_MainDescriptionColor);
}

header .container .description a, header .container .description p a {
    color: var(--SM_MainDescriptionLinkColor);
}

header .container .description a:hover, header .container .description p a:hover {
    color: var(--SM_MainDescriptionLinkHoverColor);
}

header .container .description p:not(:last-child),
header .container .description ul:not(:last-child),
header .container .description ol:not(:last-child) {
    margin-bottom: 8px;
}

header .container .description ul, header .container .description ol {
    list-style: disc;
    margin-left: 20px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

header .container .description h1:not(:first-child) 
{
    margin-top: 22px;
}
header .container .description h2:not(:first-child) 
{
    margin-top: 20px;
}
header .container .description h3:not(:first-child) 
{
    margin-top: 18px;
}
header .container .description h4:not(:first-child),
header .container .description h5:not(:first-child),
header .container .description h5:not(:first-child) 
{
    margin-top: 16px;
}

header .container .description h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 14px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    color: var(--SM_MainDescriptionColor);
}

header .container .description h2 {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 12px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    color: var(--SM_MainDescriptionColor);
}

header .container .description h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    color: var(--SM_MainDescriptionColor);
}

header .container .description h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    color: var(--SM_MainDescriptionColor);
}

header .container .description h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    color: var(--SM_MainDescriptionColor);
}

header .container .description h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    color: var(--SM_MainDescriptionColor);
}

header .container .description b, header .container .description strong, header .container .description p b, header .container .description p strong {
    font-weight: 700;
}



header .container h2 + .review-question-container {
    margin-top: 20px;
}

header .container .review-question-container {
    display: flex;
    flex-direction: column;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    margin-bottom: 15px;
}

.survey-container.validation header .container .review-question-container {
    display: none;
}

.survey-container.survey header .container .review-question-container {
    margin-bottom: 0px;
}

header .container .review-question-list {
    display:flex;
    flex-direction:column;
    gap:3px;
}

header .container .review-question-list .review-question {
    color: rgb(185, 28, 28);
    background-color: rgb(254, 226, 226);
    display: flex;
    align-items:center;
    justify-content:space-between;
    border-radius: 5px;
    padding: 6px 12px 6px 8px;
    gap: 8px;
    cursor:pointer;
}

header .container .review-question-list .review-question .review-question-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 3px;
}

header .container .review-question-list .review-question .review-question-state {
    font-size:12px;
    font-weight:600;
    line-height:1;
}

header .container .review-question-list .review-question .review-question-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

header .container .review-question-list .review-question .review-question-comment {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

header .container .review-question-list .review-question .review-question-action {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

header .container .review-question-list .review-question .review-question-action svg {
    width:22px;
    height:22px;
    flex-shrink:0;
    transition:transform 0.2s ease;
}

header .container .review-question-list .review-question:hover .review-question-action svg {
   transform:translateX(4px);
}

@media(min-width:1024px) {

    header .container {
        border-color: #edf2f9;
        padding-top: 73px;
    }

    header .container h1 {
        color: var(--LG_MainTitleColor);
        padding-left:1.7rem;
        font-size: 2.7rem;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 1;
        letter-spacing: -1px;
    }

    header .container h2 {
        color: var(--LG_MainSubTitleColor);
        padding-left: 1.7rem;
    }

    header .container .description {
        overflow: auto;
        padding-right: 0px;
        transition: --thumbBackgroundColor 0.15s linear;
        transition-delay: 150ms;
    }

    header .container .description::-webkit-scrollbar {
        width: 11px;
    }

    @property --thumbBackgroundColor {
        syntax: "<color>";
        inherits: true;
        initial-value: rgba(155, 155, 155, 0.10);
    }

    header .container .description::-webkit-scrollbar-thumb {
        background-color: var(--thumbBackgroundColor);
        border-radius: 6px;
        border-color: var(--LG_BackgroundColor);
        border-style: solid;
        border-width: 3px;
    }

    header .container .description:hover {
        --thumbBackgroundColor: rgba(155, 155, 155, 1);
    }

    header .container .description::-webkit-scrollbar-track {
        background: transparent;
    }

    header .container .description, header .container .description p {
        color: var(--LG_MainDescriptionColor);
        padding-right: 0;
    }

    header .container .description a, header .container .description p a {
        color: var(--LG_MainDescriptionLinkColor);
    }

    header .container .description a:hover, header .container .description p a:hover {
        color: var(--LG_MainDescriptionLinkHoverColor);
    }

    header .container .description h1 {
        color: var(--LG_MainDescriptionColor);
    }

    header .container .description h2 {
        color: var(--LG_MainDescriptionColor);
    }

    header .container .description h3 {
        color: var(--LG_MainDescriptionColor);
    }

    header .container .description h4 {
        color: var(--LG_MainDescriptionColor);
    }

    header .container .description h5 {
        color: var(--LG_MainDescriptionColor);
    }

    header .container .description h6 {
        color: var(--LG_MainDescriptionColor);
    }

    header .container .description .bottom-background {
        background-color: var(--LG_BackgroundColor);
        background: linear-gradient(transparent, var(--LG_BackgroundColor));
        height: 30px;
        position: sticky;
        bottom: 0;
        width: 100%;
    }
}

.survey-container.survey header .container h2 {
    display: none;
}

@media(min-width:1024px) {
    .survey-container.survey header .container h2 {
        display: block;
    }
}

.survey-container.survey header .container .header-intro {
    display:none;
}

@media(min-width:1024px) {
    .survey-container.survey header .container .header-intro {
        display: block;
    }
}

.survey-container.validation header .container .header-intro {
    display: none;
}

@media(min-width:1024px) {
    .survey-container.validation header .container .header-intro {
        display: block;
    }
}

.survey-container.survey header .container h1 br {
    display:none;
}

@media(min-width:1024px) {
    .survey-container.survey header .container h1 br {
        display: block;
    }
}

.survey-container.validation header .container h1 br {
    display: none;
}

@media(min-width:1024px) {
    .survey-container.validation header .container h1 br {
        display: block;
    }
}

@media(max-width:1024px) {
    .survey-container.survey header .container {
        padding-top: 42px;
        padding-bottom: 27px;
    }
}
/*FIN MODULE HEADER*/


/*FOOTER*/
footer {
    width: 100%;
    padding-left: var(--paddingsmcontainer);
    padding-right: var(--paddingsmcontainer);
    flex-grow: 1;
    background-color: var(--SM_FooterBackgroundColor);
    padding-top: 53px;
    position:relative;
    z-index:0;
}

footer .container {
    padding-top: 35px;
    padding-bottom: 27px;
}

footer .container .button-rgpd {
    font-weight: 600;
    font-size: 16.8px;
    line-height: 1.4;
    transition: color .3s ease;
    color: var(--SM_FooterLegalLinkColor);
}

footer .container .button-rgpd:hover {
    color: var(--SM_FooterLegalLinkHoverColor);
}


footer .container img {
    max-height:50px;
    margin-bottom: 15px;
}

footer .container .logo-sm {
    display:block;
}

footer .container .logo-md {
    display: none;
}

footer .container p {
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-right: 1.25rem;
    color: var(--SM_FooterDescriptionColor);
}

footer .container a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--SM_FooterLinkColor);
}

footer .container a:hover {
    color: var(--SM_FooterLinkHoverColor);
}

@media(min-width: 1024px) {
    footer {
        margin-top: auto;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        flex-grow: 0;
        background-color: transparent;
        margin-top:auto;
        max-width:470px;
    }

    footer .container {
        max-width: 100%;
        width: 100%;
        padding-left: 1.7rem;
        padding-right: 1.2rem;
    }

    footer .container .logo-sm {
        display: none;
    }

    footer .container .logo-md {
        display: block;
    }

    footer .container p {
        color: var(--LG_FooterDescriptionColor);
        padding-right: 0;
    }

    footer .container a {
        color: var(--LG_FooterLinkColor);
    }

    footer .container a:hover {
        color: var(--LG_FooterLinkHoverColor);
    }

    footer .container .button-rgpd {
        color: var(--LG_FooterLegalLinkColor);
    }

    footer .container .button-rgpd:hover {
        color: var(--LG_FooterLegalLinkHoverColor);
    }
}

.survey-container footer {
    display:block;
}

.survey-container.survey footer {
    display: none;
}

.survey-container.validation footer {
    display: block;
}

@media (min-width: 1024px) {
    .survey-container footer {
        display: block;
    }

    .survey-container.survey footer {
        display: block;
    }

    .survey-container.validation footer {
        display: block;
    }
}



/*MODAL*/
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    animation-name: backdrop-appear;
    animation-duration: 0.3s;
}

.modal-backdrop.visible {
    display: block;
}


@keyframes backdrop-appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-legal {
    max-width: 450px;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    padding: 30px;
    z-index: 10000;
    border-left-width: 1px;
    border-left-style: solid;
    box-shadow: 0 0.75rem 1.5rem #12263f08;
    border-color: #edf2f9;
    overflow: auto;
    display: none;
    animation-name: modal-legal-appear;
    animation-duration: 0.2s;
}

.modal-legal::-webkit-scrollbar {
    width: 11px;
}

.modal-legal::-webkit-scrollbar-thumb {
    background-color: rgb(155, 155, 155);
    border-radius: 6px;
    border: 3px solid white;
}

.modal-legal::-webkit-scrollbar-track {
    background: #ffffff;
}


@keyframes modal-legal-appear {
    from {
        transform: translate3d(100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.modal-legal.visible {
    display:block;
}

.button-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: red;
    border-width: 1px;
    border-style: solid;
    border-color: #ebebeb;
    background-color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.modal-legal .modal-legal-content, .modal-legal .modal-legal-content p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 15px;
    line-height: 1.4;
}


.modal-legal .modal-legal-content p:not(:last-child),
.modal-legal .modal-legal-content ul:not(:last-child),
.modal-legal .modal-legal-content ol:not(:last-child) {
    margin-bottom: 8px;
}

.modal-legal .modal-legal-content ul, .modal-legal .modal-legal-content ol {
    list-style: disc;
    margin-left: 20px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.modal-legal .modal-legal-content h1:not(:first-child) {
    margin-top: 22px;
}

.modal-legal .modal-legal-content h2:not(:first-child) {
    margin-top: 20px;
}

.modal-legal .modal-legal-content h3:not(:first-child) {
    margin-top: 18px;
}

.modal-legal .modal-legal-content h4:not(:first-child),
.modal-legal .modal-legal-content h5:not(:first-child),
.modal-legal .modal-legal-content h5:not(:first-child) {
    margin-top: 16px;
}

.modal-legal .modal-legal-content h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 14px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.modal-legal .modal-legal-content h2 {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 12px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.modal-legal .modal-legal-content h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.modal-legal .modal-legal-content h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.modal-legal .modal-legal-content h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.modal-legal .modal-legal-content h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.modal-legal .modal-legal-content b, .modal-legal .modal-legal-content strong, .modal-legal .modal-legal-content p b, .modal-legal .modal-legal-content p strong {
    font-weight: 700;
}


.draft-survey-action-container {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.draft-survey-action-container .draft-survey-action-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.draft-survey-action-container .draft-survey-action-comment {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #595959;
    margin-bottom:8px;
}

.draft-survey-action-container .draft-survey-action-input {
    height: 2.1rem;
    line-height: 1.1rem;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border-width: 1px;
    border-color: #ebebeb;
    border-radius: 4px;
    font-size: 1.1rem;
    padding: .5rem .75rem;
    transition: box-shadow .18s ease-in-out;
    margin-bottom:12px;
}

.draft-survey-action-container .draft-survey-action-button {
    padding: 6px 10px;
    font-size: 14px;
    line-height: 18px;
    background-color: var(--SM_ButtonActionBackgroundColor);
    color: var(--SM_ButtonActionColor);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--SM_ButtonActionBorderColor);
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease, opacity .3s ease;
}
.draft-survey-action-container .draft-survey-action-button:hover {
    background-color: var(--SM_ButtonActionHoverBackgroundColor);
    color: var(--SM_ButtonActionHoverColor);
    border-color: var(--SM_ButtonActionHoverBorderColor);
}

@media(min-width:1024px) {
    .draft-survey-action-container .draft-survey-action-button {
        background-color: var(--LG_ButtonActionBackgroundColor);
        color: var(--LG_ButtonActionColor);
        border-color: var(--LG_ButtonActionBorderColor);
    }

    .draft-survey-action-container .draft-survey-action-button:hover {
        background-color: var(--LG_ButtonActionHoverBackgroundColor);
        color: var(--LG_ButtonActionHoverColor);
        border-color: var(--LG_ButtonActionHoverBorderColor);
    }
}



.draft-survey-action-container .draft-survey-action-button:disabled, .draft-survey-action-container .draft-survey-action-input:disabled {
    background-color: #cecece;
    color: #838383;
    border-color: #cecece;
    box-shadow: none;
    cursor: not-allowed;
}

.draft-survey-action-container .draft-survey-action-result {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #393939;
    margin-top:6px;
}

.draft-survey-action-container .draft-survey-action-result.draft-survey-action-result-error {
    color: #8f2021;
}

.draft-survey-action-container .draft-survey-action-result.draft-survey-action-result-success {
    color: #8EE098;
}



/*OTHER PAGES*/
main.message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 40rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

main.message img {
    height: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

main.message h1 {
    font-size: 2.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-bottom: 0.7rem;
}

main.message a {
    font-size: 1rem;
    font-weight: 600;
}




