/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18 juil. 2018, 10:39:41
    Author     : djoluc
*/

body{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    font: 18px/1.5 Roboto,Arial,Helvetica,sans-serif;
    background-color: #212121;
    color: rgba(255, 255, 255, 0.7);
    padding: 0px;
    margin: 0px;
    margin-top: 0px;
    min-height: 100vh;
    border: 0px solid black;
}


a{
    color: #222;
}

*{
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

select{
    padding: 2px;
    font-size: 16px;
    background-color: rgba(53, 44, 34, 0.9);
    color: thistle;
}

input[type="submit"]{
    background-color: rgba(53, 44, 34, 0.9);
    font-size: 16px;
    color: thistle;
    margin-top: 20px;
    padding: 5px;
    float: right;
}

input[type="button"]{
    background-color: rgba(53, 44, 34, 0.9);
    font-size: 16px;
    color: thistle;
    margin-top: 20px;
    padding: 5px;
}

body::-webkit-scrollbar, p::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border: 0px solid blue;
    background-color: rgba(255, 255, 255, 255);
}

body::-webkit-scrollbar-corner, p::-webkit-scrollbar-corner {
    width: 10px;
}

body::-webkit-scrollbar-button, p::-webkit-scrollbar-button {
    background-color: rgba(53, 44, 34, 0.9);
    border-radius: 80px;
}

body::-webkit-scrollbar-track, p::-webkit-scrollbar-track {
    height: 2px;
    background-color: bisque;
}

body::-webkit-scrollbar-thumb,  p::-webkit-scrollbar-thumb{
    background-color: rgba(53, 44, 34, 0.9);;
    box-shadow: 0 0 50px;
    color: thistle;
    border-radius: 20px;
}

*::-mz-scrollbar {
    width: 10px;
    height: 10px;
    border: 0px solid blue;
    background-color: bisque;
}

*::-mz-scrollbar-corner {
    width: 10px;
}

*::-mz-scrollbar-button {
    background-color: rgba(53, 44, 34, 0.9);
    border-radius: 80px;
}

*::-mz-scrollbar-track {
    height: 2px;
    background-color: bisque;
}

*::-mz-scrollbar-thumb {
    background-color: rgba(53, 44, 34, 0.9);;
    box-shadow: 0 0 50px;
    color: thistle;
    border-radius: 20px;
}


*::-ms-scrollbar {
    width: 10px;
    height: 10px;
    border: 0px solid blue;
    background-color: bisque;
}

*::-ms-scrollbar-corner {
    width: 10px;
}

*::-ms-scrollbar-button {
    background-color: rgba(53, 44, 34, 0.9);
    border-radius: 80px;
}

*::-ms-scrollbar-track {
    height: 2px;
    background-color: bisque;
}

*::-ms-scrollbar-thumb {
    background-color: rgba(53, 44, 34, 0.9);;
    box-shadow: 0 0 50px;
    color: thistle;
    border-radius: 20px;
}

header{
    display: block;
    position: fixed;
    margin: 0px;
    width: 100%;
    background-color: white;
    /*background-color: red;*/
    height: 50px;
    margin-bottom: 0px;
    top: 0px;
}

header div#header_contener{
    display: block;
    width: 100%;
    height: 100%;
    border: 0px solid blue;
    background-color: #212121;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

footer{
    display: block;
    color: cyan;
    /*float: left;*/
    float: bottom;
    bottom: 0;
    margin-top: 0px;
    min-height: 30px;
    bottom: 0px;
    background-color: rgba(53, 44, 34, 0.9);
    width: 100%;
}



#leftContent{
    display: none;
    float: left;
    border: 0px solid black;
    width: 0px;
    margin-top: 50px;
    min-height: 100vh;
}

#rightContent{
    display: block;
    float: right;
    /*position: relative;*/
    border: 0px solid blue;
    width: 100%;
    margin: 0px;
    margin-top: 50px;
    min-height: 100vh;
}

#menu{
    display: none;
    background: linear-gradient(to bottom, rgba(251,251,251,1) 0%,rgba(227,227,227,1) 100%);
    border-color: rgba(53, 44, 34, 0.9);
    height: 45px;
    float: left;
    list-style: none;
    padding-left: 0px;
    padding-right: 0px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    color: #222;
    margin-left: 80px;
    margin-top: 10px;
}

#menu li{
    display: block;
    padding: 13px;
    float: left;
    border-left: 1px solid #fbfbfb;
    border-right: 1px solid #d8d9da;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

#menu li:hover{
    transform: scaleY(1.1);
    background: -moz-linear-gradient(top, rgba(243, 135, 42, 1) 0%, rgba(206, 115, 35,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243, 135, 42,1)), color-stop(100%,rgba(206, 115, 35,1)));
    background: -webkit-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(243, 135, 42,1) 100%);
    background: -o-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: -ms-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: linear-gradient(to bottom, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    /* border-radius: 2px; */
}

#menu #current{
    transform: scaleY(1.1);
    background: -moz-linear-gradient(top, rgba(243, 135, 42, 1) 0%, rgba(206, 115, 35,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243, 135, 42,1)), color-stop(100%,rgba(206, 115, 35,1)));
    background: -webkit-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(243, 135, 42,1) 100%);
    background: -o-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: -ms-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: linear-gradient(to bottom, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
}

#foot_info_div{
    display: none;
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 0px;
    text-align: center;
    color: thistle;
    font-size: 14px;
    word-wrap: break-word;
    background-color: red;
    border: 0px solid black;
}

#foot_info_div_show{
    display: block;
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 50px;
    text-align: center;
    color: thistle;
    font-size: 14px;
    word-wrap: break-word;
    background-color: red;
    border: 0px solid black;
}


.top_left_icon > img{
    height: 20px; 
    width: auto;
    margin-left: 14px; 
    margin-top: 16px; 
    float: left;
}

.top_left_title{
    float: left; 
    margin-left: 5px; 
    color: #ffffff; 
    font-weight: bold; 
    height: 100%; 
    line-height: 55px; 
    font-size: 20px;
    font-style: italic;
}

.advice_button{
    float: right; 
    margin-right: 10px; 
    margin-top: 10px; 
    background: #AA0000; 
    color: rgba(255, 255, 255, 1); 
    border: 1px solid rgba(0, 0, 0, 0.5); 
    padding: 7px; 
    border-radius: 20px;
}

