
/*Fonts*/

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,600,700');

/*
Rem : Font Roboto
400 : regular
500 : medium
600 : semi-bold
700 : bold
*/

/* Couleurs /*
/************/
:root {
  --main-color: #008000;
  --second-color: rgba(2,61,125,1);
}

.color-main {color: var(--main-color)}
.color-second {color: var(--second-color)}

/*
#performance(rouge):#D50803/rgba(213,8,3,1)
#demography(bleu):#1d81a2/rgba(29,129,162,1)
#highlights(orange):#da9100/rgba(218,145,0,1)
#values(vert):#00A64C/rgba(0,166,76,1)

.performance (red) : #D50803
.green : #008000
.blue : #023D7D
.orange : #F6931E
.gold : #FFD700
.highlights (brown gold) : #da9100  / rgb(218,145,0)
.demography: #1d81a2
.value: #00A64C
*/


/*............general..................*/
body{
	color: var(--main-color);
    font-family: 'Roboto', sans-serif;
    background-color: rgb(241, 242, 245);
}

label {
    font-size: 0.825em;
    font-weight: 600;
}

div.row-full{
    background-color: rgba(255,215,0,0.8);
}

/*............container..................*/
div.container{
	max-width: 600px;
    min-width: 311px;
	background-color: #FFF;
}

/*............title..................*/
span.title{
    font-family: "Tableau Semibold", Tableau, Arial, sans-serif;
    font-size: 20px;
    color:#16212C ;
}
span.title-1{
    font-size: 25px;
    font-weight: bold;
}

/*............filtre..................*/

p.filter{
    font-size: 12px;
    color: #000;
    margin-bottom: 0px;
    line-height: 1.3;
}
.select-list{
	color: #000;
	font-size: 13.2px;
}

.row-filter{
    background-color:#FFF9D9;
}

/*............tableaux..................*/

#title_tab{
    font-size: 14px;
    color: var(--main-color);
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
}

div[data-max] {
    height: 14px !important;
    margin-top: 3px;
}
.detail{
    font-size:0.825em;
    color: var(--main-color); 
}

.title_col{
    margin: 0;
    margin-top: 3px;
    margin-bottom: -3px;
}

/*............footer..................*/

.coord {
    margin: 0px;
    margin-top: 10px;
    font-size: 11.25px;
    line-height: normal;
    color: rgba(0,0,0,.5);
    text-align: end;
}

footer p {
    font-size: 12px;
    margin-bottom: 0;
    color: #000;
    font-family: 'Work Sans', sans-serif;
}
.logo-fo-footer {
    float: right;
}
a {
    color: #333;
    text-decoration: underline;
}

/*............media..................*/

/*............Ajout marge et border pour grand ecran..................*/
@media (min-width: 600px) {
    body { 
        padding:10px 0;
    }
    div.container{
        border: 5px solid #008000;
    }
}
@media (max-width: 390px) {
    #liste-indicateur{
        margin-bottom:10px;
    }
}

/*............Ajout marge et border pour grand ecran..................*/
/* @media (min-device-height : 962px) and (max-width: 390px){
    body {
        height:100%;
        width:100%;
        position:absolute;
    }
    div.container{
        position: relative; 
        top:50%;
        margin-top:-481px;
    }
}

@media (min-device-height : 949px) and (min-width: 390px){
    body {
        height:100%;
        width:100%;
        position:absolute;
    }
    div.container{
        position: relative; 
        top:50%;
        margin-top:-475px;
    }
} */

