/*--------------------------
Initialisation de la police
----------------------------*/

@font-face {
    font-family:'f_bold';
    src:url('');
}

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

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


/*--------------------------
Element principale du body
----------------------------*/

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

:root{
    --back-color: #dddfe2;
    --broder-color : rgb(242,242,242);
    --section-color: white;
    --all-color : 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;
    background-color: var(--back-color);
}