@font-face {
    font-family:'Quattrocento_Sans';
    font-weight: normal;
    font-style: normal;
    src:url('../fonts/QuattrocentoSans-Regular.ttf'),
    url('../fonts/Quattrocento-Sans.woff') format('woff');
}

html {
    height:100%;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


body {
    font-family:Quattrocento_Sans;
    background-color:rgba(91,91,91,1);
    font-weight:400;
    font-size:100%;
    height:100%;
}

.login_window {
    padding-top:10%;
    margin-left:auto;
    margin-right:auto;
    width:60%;
}

.login_title {
    margin-left:auto;
    margin-right:auto;
    width:80%;
    padding-bottom:25px;
}

.login_title h1 {
    color:rgba(44,44,44,1);
    text-transform:uppercase;
    text-shadow:0 1px 1px rgba(200,200,200,1);
    font-weight:bold;
    font-size:70px;
    text-align:center;
}

.login_form {
    margin-left:auto;
    margin-right:auto;
    width:40%;
}

.login_input {
    border:2px solid red;
    font-size:30px;
    width:100%;
    height:45px;
    margin-bottom:50px;
}

.login_label {
    color:rgba(44,44,44,1);
    text-transform:uppercase;
    text-shadow:0 1px 1px rgba(200,200,200,1);
    font-weight:bold;
    font-size:35px;
}

.valid_the_button {
    width:100px;
    height:30px;
    color:white;
    font-weight:bold;
    font-size:15px;
    background-color:#0762FF;
    background:-webkit-gradient(linear,left top,left bottom,from(#0762FF),to(#064FCE));
    background:linear-gradient(to bottom,#0762FF,#064FCE);
    border:1px solid #0762FF;
    border-radius:3px;
    cursor:pointer;
}

.valid_the_button:active {
    background:-webkit-gradient(linear,left top,left bottom,from(#064FCE),to(#0762FF));
    background:linear-gradient(to bottom,#064FCE,#0762FF);
    border:1px solid #064FCE;
}

.cancel_the_button{
    background:-webkit-gradient(linear,left top,left bottom,from(rgba(220,0,0,1)),to(rgba(140,0,0,1)));
    background:linear-gradient(to bottom,rgba(220,0,0,1),rgba(140,0,0,1));
    border:1px solid rgba(140,0,0,1);
}

.cancel_the_button:active {
    background:-webkit-gradient(linear,left top,left bottom,from(rgba(140,0,0,1)),to(rgba(220,0,0,1)));
    background:linear-gradient(to bottom,rgba(140,0,0,1),rgba(220,0,0,1));
    border:1px solid rgba(220,0,0,1);
}

.cancel_button_modif_inter{
    position:absolute;
    right:7%;
    bottom:7%;
    height:50px;
    width:130px;
}

.valid_login {
    width:150px;
    height:50px;
    color:white;
    font-weight:bold;
    font-size:20px;
    background-color:green;
    border:1px solid green;
    border-radius:3px;
}

.valid_login:hover {
    background-color:blue;
}

.login {
    position:relative;
    left:70%;
}

nav a {
    color:#fff;
    text-decoration:none;
}

nav a:hover {
    color:#fff;
}

.menu {
    background:rgba(255,32,32,1);
    //width:240px;
    width:15%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    text-shadow:0 1px 1px rgba(0,0,0,0.1);
}

.menu h3 {
    font-size:1.8em;
    padding:20px;
    font-weight:bold;
    color:000;
    box-shadow:inset 0 -1px 0 rgba(0,0,0,0.5);
}

.menu-toc {
    list-style:none;
    height:100%;
}

.menu-toc-a {
    display:block;
    color:#fff;
    font-size:1.1em;
    line-height:3.5;
    padding:0 20px;
    background:rgba(255,64,64,0.3);
    border-bottom:1px solid #dd1338;
}

.menu-toc-deco{
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
}

.menu-toc-a:hover, .menu-toc-a.menu-toc-current{
    background:#dd1338;
}

.menu-toc-a:after, .menu-toc-a.menu-toc-current{
    background:#dd1338;
}

.inner_content{
    position:fixed;
    background:rgba(91,91,91,1);
    margin-left:15%;
    width:85%;
    overflow-y:auto;
    display:block;
    height:100%;
}

.inner_content h1 {
    margin-left:3%;
}

.search_list{
    margin-left:3%;
    list-style:none;
}

.search_list li{
    display:inline;
}

.inner_content_recap{
    background:rgba(91,91,91,1);
    margin-left:15%;
    width:85%;
}

.inner_content_recap_mini{
    width:70%;
    transition:width 0.2s ease-in;
}

.inner_content_recap_max{
    width:85%;
    transition:width 0.2s ease-in;
}

.modal_button {
    display:inline-block;
    text-decoration:none;
    width:170px;
    height:25px;
    text-align:center;
    color:white;
    font-weight:bold;
    background:red;
    border:1px solid black;
}


.modal_add_div {
    width:1000px;
    background:#CCC;
    position:relative;
    margin:10% auto;
    padding:3%;
    border-radius:7px;
    box-shadow:0 3px 20px rgba(0,0,0,0.9);
    text-shadow:0 1px 0 #FFF;
}

.confirmation_pop{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.6);
    z-index:12000;
    opacity:0;
    pointer-events:none;
}

.confirmation_pop_active{
    opacity:1;
    pointer-events:auto;
}

.content_confirmation_pop{
    width:800px;
    background:#CCC;
    position:relative;
    margin:15% auto;
    padding:3%;
    border-radius:7px;
    box-shadow:0 3px 20px rgba(0,0,0,0.9);
    text-shadow:0 1px 0 #FFF;
}

.confirm_pop_title p{
    text-align:center;
    font-size:2em;
}

.conf_buttons{
    margin:5% 0 0 0;
    text-align:center;
}

.conf_buttons button{
    margin:0 5%;
}

.modal_add {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.6);
    z-index:10000;
    opacity:0;
    pointer-events:none;
}

.modal_add:target {
    opacity:1;
    pointer-events:auto;
}

.modal_add a[href="#close"]{
    position:absolute;
    right:0;
    top:0;
    text-shadow:none;
    color:#CCC;
}

.modal_add a[href="#close"]:after {
    content:'X';
    display:block;
    position:absolute;
    right:-10px;
    top:-10px;
    width:1.5em;
    padding:1px 1px 1px 2px;
    text-decoration:none;
    text-shadow:none;
    text-align:center; 
    font-weight:bold;
    background:#333;
    color:#CCC;
    border:3px solid #FFF;
    border-radius:20px;
    box-shadow:0 1px 3px rgba(0,0,0,0.5);
}
.modal_add a[href="#close"]:focus:after, .modal_add a[href="#close"]:hover:after {
    -webkit-transform:scale(1.1,1.1);
    transform:scale(1.1,1.1);
}

.modal_add a[href="#close"]:focus:after {
    outline:1px solid #000;
}

.div_modal_menu {
    width:100%;
    text-decoration:none;
    padding:5px;
}

.table_modal_form_cust{
    width:80%;
}

.table_modal_form{
    margin-left:auto; 
    margin-right:auto;
    width:100%;
}

.table_modal_form_cust{
    margin-left:auto; 
    margin-right:auto;
}

.table_modal_form_cust td{
    width:100%;
}

.input_modal {
    margin-left:auto;
    margin-right:auto;
    width:80%;
}

.input_modal_checkbox{
    width:100%
}

.input_type{
    width:100%;
    height:35px;
    font-size:20px;
    margin-bottom:15px;
}

.input_type_checkbox{
    width:25px;
    height:25px;
    margin-top:7px;
}

.input_type_cust{
    margin-bottom:35px;
    height:40px;
}

.input_type_del{
    width:25%;
    margin:15px 10%;
    font-size:1.5em;
}

.textarea_meta{
    height:200px;
}

.input_button_meta{
    height:40px;
    width:65%;
}

.module_meta{
    opacity:0.1;
    pointer-events:none;
}

.module_meta_show{
    opacity:1;
    pointer-events:auto;
}

.name_custo{
    text-transform:uppercase;
}

.del_content_div{
    margin:2% 0;
}

.text_area{
    width:100%;
    height:105px;
}

.label_modal{
    margin-left:10%;
    font-size:22px;
    color:rgba(44,44,44,1);
    text-shadow:0 1px 1px rgba(200,200,200,1);
}

.label_modal_checkbox{
    font-size:22px;
    height:35px;
    color:rgba(44,44,44,1);
    text-shadow:0 1px 1px rgba(200,200,200,1);
}


.label_modal_cust{
    font-size:32px;
}

.modal_menu {
    position:relative;
    list-style:none;
}

.mod_button {
    width:250px;
    display:block;
    border:none;
    margin-top:2px;
    color:#fff;
    line-height:50px;
    padding:0 20px;
    background:rgba(224,0,0,1);
    text-decoration:none;
    text-shadow:none;
}

.modal_menu li button:hover{
    background:#dd1338;
}		 

.modal_table td{
    padding:0px 0px 0px 15px;
    width:400px;
}

.modal_choice {
    width:650px;
    margin-left:auto;
    margin-right:auto;
    vertical-align:top;
    height:300px;
    padding:2%;
}

.inner_modal {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.6);
    z-index:10000;
    opacity:1;
    pointer-events:none;
    display:none;
}

.inner_modal:target {
    display:block
}

.input_choice {
    float:right;
    width:50%;
    height:25px;
    margin-top:10px;
}

.input_checkbox {
    margin-top:10px;
}

.input_label {
    float:left;
    clear:left;
    margin:11px 20px 0 0;
    text-align:right;
    font-size:18px;
}

.research_id {
    display:none;
    padding:2%;
}

.research_id:target {
    display:inline-block;
}

.research td tr {
    border:1px solid black;
}

.equi_button {
    width:150px;
    height:30px;
    background:red;
    color:white;
    border:1px solid red;
    border-radius:3px;
}

.equi_button:hover {
    background:green;
}

.all_content {
    margin-top:25px;
    border-top:1px solid black;
    margin-left:auto;
    margin-right:auto;
    width:100%;
    padding:50px;
}

.show_client {
    margin-left:auto;
    margin-right:auto;
    width:100%;
    height:100%;
}

.show_client tr{
    background:#CCC;
    cursor:pointer;
}

.show_client tr:hover{
    background:rgba(160,160,160,1);
}

.show_client .hidden_child{
   background:rgba(160,160,160,1);
   display:none;
}

.show_client .show_child{
    background:rgba(150,150,150,1);
    display:table-row;
}

.show_client .show_child:hover{
    background:#DDD;
}

.show_client .select_client{
    background:rgba(115,115,115,1);
    cursor:pointer;
    font-weight:800;
}

.show_client .select_childs{
    padding-left:2%;
}

.show_recap {
    margin-left:auto;
    margin-right:auto;
    width:100%;
}

.show_recap tr:hover{
    background:rgba(160,160,160,1);
}

.modif_button {
    width:20px;
    height:20px;
    margin-left:2px;
    border:1px solid rgba(230,0,0,1);
    -webkit-border-radius:3px;
    border-radius:3px;
    color:white;
    background:rgba(230,0,0,1);
}

.modif_button:hover {
    background:rgba(255,0,0,1);
}

.search_name_div {
    background:rgba(91,91,91,1);
}

.form_choice_div {
    display:none;
}

.intervention_search_div ul{
    list-style:none;
}

.hide_set_acces_password{
    margin-top:25px;
    margin-left:auto;
    margin-right:auto;
    width:50%;
    display:none;
}

.supply_caption{
    font-size:30px;
    font-weight:bold;
    text-transform:uppercase;
}

.button_list{
    margin-left:auto;
    margin-right:auto;
    width:642px;
    padding:15px;
    margin-bottom:15px;
}


.recap_button {
    width:150px;
    height:35px;
    background:#ddd;
    background-image:-webkit-gradient(linear,left top,left bottom,from(#064FCE),to(#0762FF));
    background-image:linear-gradient(to top,#064FCE,#0762FF);
    border:1px solid #093c75;
    color:#fff;
    font-weight:bold;
    font-size:12px;
}

.recap_button:hover{
    text-shadow:1px 1px 15px #CCC;
}

.recap_button:active {
    width:150px;
    height:35px;
    background:#ddd;
    background:-webkit-gradient(linear,left top,left bottom,from(#0762FF),to(#064FCE));
    background:linear-gradient(to top,#0762FF,#064FCE);
    border:1px solid #093c75;
    color:#fff;
    font-weight:bold;
    font-size:12px;
}

.table_equi_search{
   width:100%;
}

.equi_search_label {
    font-size:22px;
}

.equi_search_input{
    margin-right:35px;
    border-right:1px solid-black
}

.equi_search_cust{
    font-size:20px;
}

.select_equi{
    width:100%;
    margin-top:1%;
}

.select_equi ul li{
    display:inline-block;
    width:16%;
    text-align:center;
    background:red;
    border:1px solid black;
    height:25px;
    list-style:none;
}

.select_equi a{
    text-decoration:none;
    color:white;
}

.all_table_content{
    position:relative;
    margin-left:auto;
    margin-right:auto;
    width:90%;
    margin-top:2%;
}

.all_table_div{
    position:absolute;
    width:auto;
    display:inline-block;
    vertical-align:top;
}

.all_table{
    margin-left:auto;
    margin-right:auto;
    width:90%;
    text-align:center;
}

.all_table tr{
    background:#CCC;
}


.all_table tr:hover{
    background:rgba(160,160,160,1);
}

.right_content{
    position:fixed;
    height: 100%;
    z-index: 1000;
    width:0;
    top:0;
    right:0;
    opacity:0;
    background:rgba(200,200,200,0.5);
    box-shadow:-5px 3px 2px #333;
}

.right_content_hide{
    opacity:0;
    width:0;
    transition:width 0.2s ease-in, opacity 0.5s ease-in;
}

.right_content_show{
    opacity:1;
    width:15%;
    transition:width 0.2s ease-in, opacity 0.5s ease-in;
    overflow: auto;
}

.right_content_div{
    margin:10%;
    margin-top:20%;
    width:80%;
}

.table_right_content{
    margin-top:30%;
    width:100%;
}

.table_right_content table{
    margin-left:auto;
    margin-right:auto;
    width:100%;
}

.table_right_content caption{
    font-weight:bold;
    width:100%;
    font-size:15px;
    text-transform:uppercase;
    background:red;
    color:white;
    border:1px solid red;
}

.table_right_content tr {
    width:100%;
}

.table_right_content td {
    border:1px solid #BBB;
    font-size:14px;
    width:90%;
    background:#DDD;
}

.table_right_content td:nth-child(2){
    text-align:center;
}

.content_doc{
    margin-left:auto;
    margin-right:auto;
    height:100%;
    width:80%;
    background:rgba(254,254,254,1);
    box-shadow:5px 3px 2px #333;
}

.content_doc_short{
    width:80%;
    transition:width 0.2s ease-in;

}

.content_doc_long{
    width:90%;
    transition:width 0.2s ease-in;

}


.redim_button{
    position:absolute;
    top:15px;
    right:16%;
    width:35px;
    height:35px;
    border-radius:50%;
    background:#0762FF;
    color:#fff;
    line-height:30px;
    text-align: center;
    speak: none;
    font-weight: bold;
    cursor: pointer;
    border:1px solid white;
}

.redim_button:after {
    position:absolute;
    content: '';
    width: 50%;
    height: 2px;
    background: #fff;
    top: 50%;
    margin-top: -1px;
    left: 25%;
    box-shadow: 0 -4px #fff, 0 4px #fff;
}

.pop_msg{
    position:fixed;
    left:25%;
    top:8%;
    width:50%;
    z-index:5000;
    pointer-events:none;
    padding:8px;
    text-align:center;
    color:white;
    font-weight:bold;
    border-radius:3px;
    opacity:0;
    transition:opacity 1.5s ease;
}

.show_pop_msg{
    opacity:1;
}

.hide_pop_msg{
    opacity:0;
}

.succes{
    border:2px solid green;
    background-color:rgba(0,255,0,0.2);
}

.error{
    border:2px solid red;
    background-color:rgba(255,0,0,0.2);
}

.client_msg{
    position:fixed;
    left:25%;
    top:14%;
    width:50%;
    pointer-events:none;
    padding:8px;
    text-align:center;
    color:white;
    font-weight:bold;
    border-radius:3px;
    opacity:0;
    border:2px solid green;
    background-color:rgba(0,255,0,0.2);
    animation:myfirst 5s;
    -webkit-animation:myfirst 5s; /* Safari and Chrome */
}

.inter_filtre{
    text-align:center;
    margin-bottom:1%;
}

.input_filter{
    height:1.4em;
    font-size:1.2em;
}

.customers_button{
    margin:1%;
}

.supply_to_xls_button{
    margin-left:80%;
    color:white;
}

.interact_tools{
    position:fixed;
    top:40%;
    height:150px;
    width:3%;
}

.tools_button{
    position:relative;
    height:33%;
    background:rgba(255,32,32,1);
    width:100%;
    border:1px solid black;
    cursor:pointer;
}

.tools_button:hover{
    background:#dd1338;
}

.tools_icon{
    font-size:150%;
    position:absolute;
    top:24%;
    left:26%;
}

#add_mat_choice {
    display: none;
    position: absolute;
    background-color: #CCC;
    width: 170px;
    padding:10px;
}

#add_mat_choice p {
    margin: 5px 0;
}

.iframe_documents{
    width:100%;
    height:100%;
}

#generic_reporting{
    width: 85%;
    height: 100%;
    margin-left: 15%;
}

#generic_reporting_container{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#generic_reporting_buttons {
    display: flex;
    margin:25px;
}

.generic_reporting_inputs {
    width: 20em;
    margin-left: 5px;
}

.generic_reporting_ok {
    width: 5em;
    margin-left: 10px;
}

@keyframes myfirst{
    0%   {opacity:1;}
    50%  {opacity:1;}
    100% {opacity:0;}
}

@-webkit-keyframes myfirst{
    0%   {opacity:1;}
    50%  {opacity:1;}
    100% {opacity:0;}
}