@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --primary-color: #6E8398;
}
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    list-style: none;
    outline: none;
}
body{
    background-color: #F5F7F8;
}
.connect-page{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: auto;
    background-image: url(/src/img/bg-accueil.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.form-co-box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.form-co-box form{
    padding: 40px;
    background-color: rgba(235,235,235,0.7);
    box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    width: 90%;
    max-width: 900px;
    overflow: hidden;
}
.error{
    margin-top: 20px;
    padding: 10px;
    color: rgb(235,0,0);
    background-color: rgb(232, 160, 160);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.form-co-box form .banner{
    position: relative;
}
.form-co-box form .banner .loupe{
    height: 250px;
    margin-left: -140px;
}
.form-co-box form .banner .logo{
    height: 130px;
    float: right;
    margin-top: 40px;
}
.form-co-box .banner img{
    vertical-align: middle;
}
.form-co-box .flexbox{
    display: flex;
}
.form-co-box .flexbox .left,.form-co-box .flexbox .right{
    width: 50%;
}
.form-co-box .flexbox .right{
    padding-left: 40px;
}
.form-co-box .flexbox .left .title{
    color: #58b3d3;
    font-size: 40px;
    font-weight: bold;
}
.form-co-box .flexbox .left .title span{
    font-weight: 200;
    color: black;
}
.form-co-box .left .desc{
    margin-bottom: 20px;
}
.form-co-box .left a{
    color: #959bae;
    text-decoration: underline;
    font-size: 14px;
    display: block;
}
.form-co-box form input{
    width: 100%;
    height: 30px;
    border-top: 2px solid rgba(255,255,255,0.3);
    border-left: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(0,0,0,0.1);
    border-right: 2px solid rgba(0,0,0,0.1);
    margin-top: 20px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    font-size: 16px;
    padding-left: 15px;
    background-color: transparent;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.05);
}
.form-co-box form input[type=submit]{
    height: 50px;
    width: 300px;
    display: block;
    margin: 0px auto;
    margin-top: 20px;
    font-weight: 600;
    color: #959bae;
}
.flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
  }
  
  .single-chart {
    width: 200px;
    justify-content: space-around ;
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    margin: 0px auto;
  }
  .circular-chart {
    display: block;
    margin: 10px auto;
    width: 200px;
  }
  .seven-chart .circular-chart{
      width: 100%;
  }
  
  .circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0);
    stroke-width: 0.5;
  }
  
  .circle {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    animation: progress 2s ease-out forwards;
    stroke: white;
  }
  
  @keyframes progress {
    0% {
      stroke-dasharray: 0 100;
    }
  }
  .percentage {
    fill: white;
    font-size: 0.4em;
    text-anchor: middle;
  }
.header{
    position: relative;
    height: 160px;
    background-color: #6e8398;
    z-index: 999;
}
.header .center-header{
    margin-left: 200px;
}
.header .container{
    position: relative;
    height: 160px;
}
.header .container img{
    height: 150px;
    float: right;
    margin-top: 5px;
}
.header .account{
    position: absolute;
    top: 50%;
    left: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.header .account a{
    color: white;
}
.header .account img{
    height: 30px;
    margin-right: 15px;
    vertical-align: middle;
}
.filtres-campaign{
    position: fixed;
    top: 0px;
    left: 200px;
    right: 0px;
    height: 55px;
    background-color: #41647F;
    z-index: 5;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}
.campaign-name{
    position: fixed;
    top: 0px;
    left: 200px;
    right: 0px;
    height: 55px;
    padding: 0px 20px;
    line-height: 55px;
    text-align: center;
    background-color: #41647F;
    color: white;
    font-size: 20px;
    z-index: 5;
}
.campaign-name-filtres{
    top: 55px;
}
.audit-result{
    margin-left: 200px;
    margin-top: 55px;
}
.audit-result-filtres{
    margin-top: 110px;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding:0px 20px;
}
section{
    margin: 80px 0px;
}
.section-indice{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
    padding: 40px 0px;
    padding-top: 200px;
    margin: 0px;
    display: none;
    z-index: 5;
}
.section-indice .close-indice-section{
    width: 200px;
    text-align: center;
    padding: 10px 20px;
    color: white;
    border: 1px solid white;
    margin: 0px auto;
    margin-bottom: 40px;
    border-radius:40px;
    -webkit-border-radius:40px;
    -moz-border-radius:40px;
    cursor: pointer;
}
.section-indice .content-section-indice{
    background-color:white;
    padding:40px;
    border-radius:20px;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    box-shadow:0px 0px 20px rgba(0,0,0,0.1);
    -webkit-box-shadow:0px 0px 20px rgba(0,0,0,0.1);
    -moz-box-shadow:0px 0px 20px rgba(0,0,0,0.1);
}
.company-account-title{
    font-size: 25px;
    margin: 40px 0px;
    color: var(--primary-color);
}
.audits{
    background-color: white;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    padding: 20px;
    padding-bottom: 1px;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
}
.audits div{
    margin-bottom: 20px;
    padding: 20px;
    background-color: #6E8398;
    border-radius: 10px;
}
.audits div span{
    display: inline-block;
    margin-right: 20px;
    color: white;
}
.audits div a{
    color: white;
    font-weight: bold;
}
.audits-content{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.header-indice{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;;
}
.header-indice .note{
    width: 350px;
}
.header-indice .graph{
    width: calc(100% - 350px);
}
.header-indice .note{
    padding: 0px 40px;
}
section .infos{
    margin-top: 40px;
    color: #40637e;
}
section h2{
    margin-bottom: 20px;
    font-size: 30px;
    color: #40637e
}
section h2 img{
   vertical-align: middle;
   height: 40px;
   margin-right: 20px;
}
.tab-result{
    width: 100%;
    border-collapse: separate;
    border-spacing:10px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.tab-result thead{
    background-color: white;
}
.tab-result th{
    text-align: center;
    background: linear-gradient(#7891a4,#40637e);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    position: relative;
}
.tab-result th img{
    width: 25px!important;
    height: 25px!important;
    position: relative!important;
    display: block;
    margin: 0px auto!important;
    top: auto!important;
    right: auto!important;
    cursor: default!important;
    margin-bottom: 10px!important;
}
.tab-result th .disparite{
    width: 40px!important;
    height: auto!important;
    position: absolute!important;
    margin: 0px auto!important;
    top: -40px!important;
    right: 50%!important;
    cursor: default!important;
    margin-bottom: 0px!important;
    margin-right: -20px!important; 
}
.tab-result .no-val{
    background: linear-gradient(#7891a4,#40637e);
}
.tab-result td{
    text-align: center;
    background: #f5f7f8;
    color: #40637e;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    position: relative;
}
.tab-result tbody tr:nth-child(odd) td{
    background-color: #d8dfe5;
}
.tab-result tbody td img{
    position: absolute;
    top: 50%;
    height: 70px;
    margin-top: -35px;
    right: -10px;
    cursor:pointer;
} 
.q-supp{
    position: relative;
    margin-top: -108px;
    margin-bottom: 60px;
}
.q-supp .display-more{
    height: 60px;
    background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0.7),white);
    text-align: center;
}
.q-supp .display-more span{
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    background-color: #f5f7f8;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    color: #40637e;
    border: 1px solid #40637e;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    margin-top: 20px;

}
.popup-question{
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(0,0,0,0.8);
    display: none;
    z-index: 10;
}
.popup-question .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    padding: 40px;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    width: 90%;
    max-width: 700px;
    background-color: white;
    max-height: 90%;
    overflow-y: auto;
}
.popup-question .content h3{
    font-weight: normal;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--primary-color);
}
.popup-question .content .close{
    position: absolute;
    top: 50px;
    right: 20px;
    height: 30px;
    width: 30px;
    cursor: pointer;
    opacity: 0.5;
}
.popup-question .content .close:hover{
    opacity: 0.8;
}
.indice-menu-link{
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    overflow: hidden;
    width: 200px;
    background-color: #D8DFE5;
}
.indice-menu-link .logo{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: 1s;
}
.indice-menu-link .scroll{
    position: absolute;
    top: 55px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    overflow-y: auto;
    background-color: #D8DFE5;
    transition: 0.3s;
}
.indice-menu-link .indice{
    padding: 20px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    color: #436680;
    background-color: rgba(65,100,127,0.1);
    cursor: pointer;
    transition: 0.2s;
    margin: 10px 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
.indice-menu-link .sous-indice{
    padding: 20px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    color: #436680;
    cursor: pointer;
    transition: 0.2s;
    margin: 10px 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
.indice-menu-link .sous-indice:hover{
    transform: scale(0.9);
}
.indice-menu-link .exit{
    color:white;
    background-color: rgba(235,0,0,0.7);
    padding: 20px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: 0.25s;
}
.indice-menu-link .general{
    color: white;
    background-color: rgb(65,100,127);
}
.indice-menu-link div img{
    display: block;
    margin: 0px auto;
    width: 30px;
    margin-bottom: 10px;
}
.indice-menu-link div .open-sous-indice{
    width: 30px;
    margin-bottom: 0px;
    margin-top: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    cursor: pointer;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}
.sm-link{
    display: none;
}
.menu-logo-fade .logo{
    opacity: 1;
}
.menu-logo-fade .exit{
    margin-top: 95px;
}
.menu-logo-fade .scroll{
    top: 152px;
}
.header-result{
    background-color: #6e8398;
    padding: 20px;
}
.header-result img{
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0px auto;
}
#section-0{
    background-color: #6e8398;
    padding-bottom: 80px;
    margin-bottom: 0px;
}
#section-0 .percentage {
    fill: white;
}
#section-0 .arrow-down{
    text-align: center;
    color: white;
    font-size: 20px;
    margin-top: 60px;
}
#section-0 .arrow-down img{
    margin-top: 10px;
    height: 30px;
}
.select-graph{
    margin: 40px 0px;
    margin-bottom: 20px;
}
.select-graph div{
    padding: 10px;
    display: inline-block;
    margin-right: 10px;
    background-color: rgb(110,131,152,0.2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor: pointer;
}
.select-graph .selected{
    background-color: var(--primary-color);
}
.select-graph div img{
    height: 25px;
    width: 25px;
}
.select-graph .selected img{
    filter: invert(1);
}

.graph-bar-content{
    position: relative;
}
.graph-bar-content .result{
    position: relative;
    margin-right: 80px;
    margin-bottom: 20px;
}
.graph-bar-content .percent{
    width: 80px;
    position: absolute;
    top: 50%;
    right: -80px;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    font-size: 30px;
    font-weight: 200;
}
.graph-bar-content .result .cursor-box{
    height: 7px;
    background-color: rgb(240,240,240);
    margin-top: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    margin-right: 20px;
}
.graph-bar-content .result .cursor-box .cursor{
    height: 100%;
    background-color: red;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    position: relative;
}
.graph-bar-content .result .cursor-box .cursor div{
    background-color: red;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    height: 20px;
    width: 20px;
    position: absolute;
    right: 0px;
    top: -7px;
}
.graph-bar-content .result .graduation{
    position: relative;
    height: 20px;
    margin-right: 20px;
}
.graph-bar-content .result .graduation nav{
    position: absolute;
    top: 0px;
    width: 30px;
    margin-left: -15px;
    text-align: center;
    font-size: 13px;
    color: rgb(100,100,100);
}
.graph-bar-content .result .graduation nav span{
    display: block;
    background-color: rgb(200,200,200);
    width: 1px;
    height: 10px;
    margin: 0px auto;
    margin-bottom: 5px;
}
.filtre-questions{
    margin-top: 40px;
    margin-bottom: -30px;
    margin-left: 10px;
    margin-right: 10px;
}
.filtre-questions nav{
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}
.filtre-questions div{
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.filtre-questions div:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.filtre-questions .active{
    color: white;
    background-color: var(--primary-color);
}
.table-array-recap{
    border-collapse: collapse;
    background-color: white;
    margin: 20px 20px;
    table-layout: fixed;
    width: calc(100% - 40px);
}
.table-array-recap thead{
    background-color: var(--primary-color);
}
.table-array-recap th{
    padding: 10px!important;
    background-color: var(--primary-color);
    color: white;
}
.table-array-recap td{
    padding: 0px!important;
    font-size: 0px;
    position: relative;
}
.table-array-recap td .bg{
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
.table-array-recap td .content{
    margin: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    position: relative;
    border: 1px solid transparent;
}
.table-array-recap td .content .plus{
    height: 30px;
    width: 30px;
    background-color: var(--primary-color);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    top: -15px;
    z-index: 2;
    display: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
}
.table-array-recap td .content .plus:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.table-array-recap td .content .plus img{
    height: 15px;
    width: 15px;
    margin-top: 7px;
    margin-left: 7px;
}
.table-array-recap td .content:hover{
    border-color: var(--primary-color);
}
.table-array-recap td .content:hover .plus{
   display: block;
}
.table-array-recap td div{
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    width: 50%;
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.table-array-recap td .note{
    border-right: 1px solid var(--primary-color);
}
.table-array-recap td .analyse{
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 40px;
    background-color: white;
    max-width: 600px;
    max-height: 600px;
    overflow-y: auto;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    text-align: left;
    display: none;
    z-index: 10;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
    cursor: default;
    color: black;
}
.table-array-recap td .analyse h2{ 
    text-align: center;
    margin-bottom: 40px;
}
.table-array-recap td .analyse h3{ 
    text-align: center;
    margin-bottom: 20px;
}
.table-array-recap td .analyse .btn{ 
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    width: 150px;
    text-align: center;
    margin: 0px auto;
    margin-top: 40px;
    cursor: pointer;
}
.table-array-recap .result-analyse{
    cursor: pointer;
}

.array-filtres{
    padding: 20px;
    background-color: white;
    width: 400px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}
.array-filtres div{
    flex: 1;
    text-align: center;
}
.array-filtres div p{
    font-weight: 600;
    font-size: 14px;
}
.array-filtres div select{
    width: 100%;
    margin-top: 10px;
    height: 30px;
    font-size: 16px;
    padding-left: 10px;
    border: 1px solid rgb(220,220,220);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.filtres-campaign form select{
    height: 35px;
    width: 250px;
    margin-top: 10px;
    margin-left: 10px;
    background-color: var(--primary-color);
    border: none;
    padding-left: 10px;
    font-size: 16px;
    color: white;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.filtres-campaign form input{
    height: 35px;
    width: 150px;
    margin-top: 10px;
    margin-left: 10px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor: pointer;
}
.save-result{
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white;
    background-color: #407e5b;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor: pointer;
}
.save-result img{
    height: 20px;
    vertical-align: middle;
    padding-right: 10px;
}
.confirm-save-result{
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 40px;
    background-color: white;
    max-width: 600px;
    max-height: 600px;
    overflow-y: auto;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    text-align: left;
    z-index: 10;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
    color: black;
    display: none;
}
.confirm-save-result input{
    width: 100%;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-top: 20px;
    border: 1px solid rgb(200,200,200);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.confirm-save-result input[type=submit]{
   border: none;
   background-color: #40637e;
   color: white;

}
.confirm-save-result .cancel{
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    color: #40637e;
}

@media screen and (max-width: 1200px) {
   
}
@media screen and (max-width: 900px) {
    
}