body {
    /* display: flex; */
    /* justify-content: center;  */
    /* align-items: start;   */
    /* height: auto; */
    /* width: 100vh; */
    background-color: rgb(222, 219, 212);
    /* overflow: auto;  */
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    /* margin: 0px 20px 0px 20px; */
    /* padding: 0px 20px 0px 20px; */
    /* box-sizing: border-box; */
    /* overflow: hidden; */
    /* margin: 0; */
}

.vContainer {
    display: flex;
    position: relative;
    /* height: 100vh; */
    /* width: 100vw; */
    /* height: 100vh; */
    /* width: 90vw; */
    /* height: 90vh; */
    /* width: 100%; */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;     /* vertical */
    /* margin: 0px 20px 0px 20px; */
    z-index: 1;
    /* padding: 10px;  */
    /* padding: 0px 0px 20px 0px; */
}

#title {
    font-size: 1.2em;
    color:white;
    text-align: center;
    margin : 0px 0px 5px 0px;
}

#settingsCont {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    margin: 0px 0px 0px 0px;
}


#chksDiv{
    display: flex;
    flex-direction: column;
    margin: 0px 20px 15px 20px;
}

#controlsAndTitle {
    /* display: flex; */
    flex-direction: column;
    position: absolute;
    /* top: 5%;
    left: 5%; */
    width: auto;
    height: auto;
    border-radius: 30px;
    border: 1px solid;
    border-color: rgb(black);
    background-color: #486347;
    justify-content: space-evenly;
    padding: 20px;
    margin: 20px 0px 0px 0px;
    z-index: 5;
    /* box-shadow: 1px 1px 3px black; */
    box-shadow:inset 5px 5px 15px 0px black;
}

#canvasDiv {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* position: absolute; */
    position: relative;
    /* overflow: auto;  */
    /* min-height: 100vh; */
    width: 100vw;
    height: 100vh;
    z-index: 2;
    /* box-shadow: 4px 5px 14px 1px rgb(24, 29, 37); */
    /* Pour désactiver la sélection du canvas sur smartphone : */
    /* touch-action: none;
    user-select: none; */
    /* padding: 0px 0px 20px 0px;  */
    /* margin: 10px 0px 20px 0px; */
}

#slidersDiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px 0px 10px 0px;
}


.sliderSetting{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 4px 0px 2px 0px;
}

.sliderValue {
    margin: 0px 0px 0px 10px;
    color: white;
    font-size: 0.8em;
}



.checkbox{
    display: flex;
    color: white;
    font-size: 0.8em;
    margin: 4px 0px 2px 0px;
}

.hidden {
    display: none;
}


/* **************************************************** */
/* HIDE CONTROLS BUTT ********************************* */
/* **************************************************** */

#hideButtContainer {
    display: flex;
    /* position: relative; */
    position: absolute;
    /* width:auto; */
    /* height:auto; */
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    /* justify-content: center; */
    margin: 0px 0px 0px 0px;
    z-index: 100;
}

#hideControlsButtDiv {
    display: flex;
    position: relative;
    align-items: flex-start;
    margin: 0.5% 1% 0px 0px;
    /* top: 3%; */
    /* left: 5%; */
}

#hideControlsButt {
    position: absolute;
    /* position: relative; */

    /* top: -10%; */
    /* left: 87%; */
    z-index: 10;
    white-space: nowrap;
}

/* #animationStoppedWarning { */
    /* position: absolute; */
    /* display: none; */
/* } */





/* **************************************************** */
/* INFO BULLE ***************************************** */
/* **************************************************** */

/* 
.hidden { 
  position: relative;
  display: inline-block;
} */

.tooltiptext {
    display: inline-block;
    white-space: normal;
    max-width: 100px;
    word-wrap: break-word;
}

.tooltip {
  /* position: relative; */
  position: absolute;
  cursor: pointer; /* optionnel */
  
}

.tooltip .tooltiptext {
  visibility: hidden;
  position: relative;
  /* position: absolute; */
  /* width: 50px; */
  background-color: #faeed1;
  color: black;
  text-align: center;
  border-radius: 8px;
  padding: 5px 12px;
  z-index: 20;
  top:12px;
  left:-108px;
  /* transform: translateX(-50%); */
  opacity: 0;
  transition: opacity 0.4s;
  font-size: 0.8em;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}



.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


/* **************************************************** */
/* BUTTONS ***************************************** */
/* **************************************************** */

#bu†tonsDiv {
    display: flex;
    flex-direction: column;
    margin: 4px 0px 14px 0px;
}

.gvgButton{
    background: rgb(192, 192, 192);
    color: black;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    padding: 3px 15px 3px 15px;
    border-radius: 8px;
    border: 1px solid black;
    box-shadow: 1px 1px 3px black;
    transition: all 0.03s ease;
    margin: 2px 3px 3px 3px;
    cursor: pointer;
}

.gvgButton:active:hover {
    transform: translateY(1px);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
}

.gvgButton:hover {
    transform: scale(1.07);
    box-shadow: 1px 1px 3px black, 1px 1px 8px rgba(192, 188, 188, 0.3);
    
}

:disabled {
    opacity: 0.5;
}


/* pour mettre en colonnes à partir d'une taille mini de la fenetre */
@media (max-width: 700px) { 
    /* @media screen and (min-width: 30em) { */
    /* @media screen and (-webkit-min-device-pixel-ratio: 1),
            and (min-device-width: 1000px), 
            and (max-device-width: 1600px) { */


    #bu†tonsDiv {
        display: flex;
        flex-direction: row;
        margin: 4px 0px 14px 0px;
    }

    #controlsAndTitle {
        flex-direction: column;
        top: auto;
        left: auto;
    }
    
    /* #hideControlsButtDiv {
        position: absolute;
        top: 3%;
        left: 28%;
        z-index: 10;
        white-space: nowrap;
    } */

    #settingsCont {
        display: flex;
        flex-direction: column;
    }


    /* .tooltip .tooltiptext {
        top: 18px;
        left: 12 px;
    } */

}