/*
Colors

Green : #00a64e (text)
Black : #000000 (text)
Grey  : #f1f1f1 (background)

*/

html, body {
    height: 100%;
    background-color: #e4e4e4;
    margin: 0;
}

main {
    height: 83%;
}

.box {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    height: 100%;
}

/* index html */
.img-responsive {
    width: 100%;
}

.btn-green {
    background-color: #57BC90;
    color: #FFFFFF;
    font-weight: bold;
    display: block;
    margin: 50px auto;
    cursor: pointer;
}

.btn-green:hover {
    background-color: #f1f1f1;
    color: #57BC90;
    border: 2px solid #57BC90;
    font-weight: bold;
    display: block;
}

.btn-green2 {
    background-color: #57BC90;
    color: #FFFFFF;
    font-weight: bold;
    display: block;
    margin: 5px;
    cursor: pointer;
}

.btn-green2:hover {
    background-color: #f1f1f1;
    color: #57BC90;
    border: 2px solid #57BC90;
    font-weight: bold;
    display: block;

}

.btn-grey {
    background-color: #FFFFFF;
    color: #000000;
    width: 100%;
    font-weight: bold;
    display: block;
    cursor: pointer;
    margin-top: 5px;
}

.btn-grey:hover {
    background-color: #57BC90;
    color: #000000;
    border: 2px solid #f1f1f1;
    font-weight: bold;
    display: block;

}

.vertical-center {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
    justify-content: center;
}

/****** STAGE PLANNER.html ******/

/* SAVE PLAN (menu) */
#nom_projet_en_cours{
    color: #57BC90;
    font-size: 20px;
}

#top_menu{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 5px;
}

#top_menu img {

}

#top_menu ul{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    width: 70%;
}

#top_menu ul li{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

#section_plan{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 500px;
}


/* MENU (objets) */


input[type=color] {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
}

#drop-zone {
    border: 4px dashed #FFFFFF;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
}

#menu{
    flex: 1 1 auto;
    width: 20%;
    background-color: #57BC90;
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 5px;
    padding: 10px;
}

label{
    font-weight: bold;
    display: block;
    color: #000000;
}

.border{
    border: 5px solid #FFFFFF;
    border-radius: 5px;
    margin: 2px;
    padding: 2px;
}

.iconImg {
    width: 30%;
}

/* PLAN */

#background {
    background-color: #57BC90;
    flex: 1 1 auto;
    width: 78%;
    border-radius: 5px;
}

#background svg{
    margin: 0 auto;
    width: 90%;
    height: 90%;
    display: block;
    background-color: #e4e4e4;
}

#container-svg{
    height: 100%;
    display: flex;
    align-items: center;
}

#arriereplan, #listImages {
    position: relative;
    height: 50%;
    padding: 5px;
}

#listImages {
    overflow-y: scroll;
    overflow-x: hidden;
}



