
/*@Start - Initialisation de la police */

@font-face {
    src:url('../../asset/police/segui_bold.ttf');
    font-family:'f_bold';
}

@font-face {
    src:url('../../asset/police/segoeui_light.ttf');
    font-family:'f_light';
}

@font-face {
    src:url('../../asset/police/segoeui_normal.ttf');
    font-family:'f_normal';
}


/*@Start - Parametre du body */

*{
    box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    -o-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
}

:root{
    --grey: #e8eaec;
    --greyo : rgb(242,242,242);
    --white: white;
    --green : rgb(3, 87, 37);
    --black : rgba(0,0,0,.30);
    --blue: #077AF5;
    --red: #F4312E;
}

body{
    -webkit-touch-callout: none;                
    -webkit-text-size-adjust: none;      
    -webkit-tap-highlight-color: transparent;
    font-family: 'f_normal';
    margin: 0px; 
    padding: 0px;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-right, 0px);
    direction: ltr; 
    overflow-x: hidden;
    font-size: 16px;
}

.main-container{
    width: 100%;
    height: 100vh;
    position: relative;
}

.section-nav-map{
    width: 300px;
    height: 500px;
    position: absolute;
    top: 13px;
    left: 50px;
    z-index: 100000;
}

.section-nav-map .nav-map{
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 8px;
}

.nav-map h1{
    font-family:'f_bold';
    font-size: 14px;
    text-align: center;
}

.nav-map img{
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    border: 1px solid var(--blue);
}


.main-block-search{
    width: 500px;
    height: 100px;
    position: absolute;
    top: 19px;
    left: 370px;
    z-index: 100000;
    
}

.block-search .nav-site{
    margin-bottom: 15px;
}

.block-search .nav-site a{
    text-decoration: none;
    background-color: var(--white);
    color: black;
    padding: 5px 8px;
    border: 1px solid var(--grey);
    border-radius: 3px;
    font-size: 14px;
}

.block-search .nav-site a.active{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}

.block-input-search{
    width: 100%;
    padding: 5px;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: 3px;
}






.form-flex-search{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.groupe-width:first-child{
    width: 30%!important;
    margin-right: 10px;
}

.groupe-width:last-child{
    width: 70%!important;
}

.groupe-input-border{
    border: 1px solid var(--blue);
    padding: 8px 8px 0px 8px;
    border-radius: 3px;
}

.groupe-input label{
    display: block;
    font-family:"f_bold";
    font-size: 14px;
}

.groupe-input .champs-input{
    font-size: 16px;
    width: 100%;
    height: 45px;
    border: 1px solid transparent;
    background-color: transparent;
    outline: none;
    font-family: "f_normal";
}


.section-map{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.main-footer p {
    margin: 3px;
    text-align: center;
    color: rgba(0, 0, 0, 0.822);
    font-size: 14px;
}

.main-footer p:last-child {
    font-family:'f_bold';
    color: black;
    margin-top: 5px;
}




.section-data {
    width: 300px;
    height: 500px;
    position: absolute;
    top: 13px;
    right: 50px;
    z-index: 100000;
}

.section-data .data-quartier {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 8px;
}