div.article{
    top: 10%;
    position: absolute;
    background: rgba(64,64,64,0.5);
    border-radius: 10px;
    min-height: 200px;
    width: 90%;
    left: 5%;
    margin: 5% auto;
}

div.close{
	position: absolute;
    right: 2%;
    top: 1em;
    font-size: 30px;
    cursor: pointer;
}

div.close:hover{
	color: green;
  	-webkit-transition: color 0.3s ease;
  	-moz-transition: color 0.3s ease;
  	-o-transition: color 0.3s ease;
  	-ms-transition: color 0.3s ease;
  	transition: color 0.3s ease;
}

div.close:not(:hover){
	color: black;
  	-webkit-transition: color 0.9s ease;
  	-moz-transition: color 0.9s ease;
  	-o-transition: color 0.9s ease;
  	-ms-transition: color 0.9s ease;
  	transition: color 0.9s ease;
}

div.plante-content{
	margin: 5em 3em;
	display: flex;
}

div.plante-center{
}

div.plante-image{
    text-align: center;
}

div.plante-div{
    max-width: calc(96%/3);
	width: calc(96%/3);
    margin: auto;
}

div.plante-image img{
    max-height: 100%;
    max-width: 100%;
    width: auto;
    cursor: zoom-in;
}

/* TABLE */

table.plante-table{
    width:100%;
    table-layout: fixed;
}
.tbl-header{
    background-color: rgba(255,255,255,0.3);
 }
.tbl-content{
    height:300px;
    overflow-x:auto;
    margin-top: 0px;
    border: 1px solid rgba(255,255,255,0.3);
}
table.plante-table th{
    padding: 20px 15px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}
table.plante-table td{
    padding: 15px;
    text-align: left;
    vertical-align:middle;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    border-bottom: solid 1px rgba(255,255,255,0.1);
}

table.plante-table td.center{
    text-align: center;
}

/* TABLE */

.property{
    font-weight: bold !important;
}

/* espece list */

.list{
    margin: 5em 3em;
    width: 70%;
}

.list ul {
}

.list h3 {
    font: bold 20px/1.5 Helvetica, Verdana, sans-serif;
}

.list li img {
    float: left;
    margin: 0 15px 0 0;
    width: 100px;
}

.list li p {
    font: 200 12px/1.5 Georgia, Times New Roman, serif;
}

.list li {
    background: rgba(200,230,70,0.3);
    padding: 10px;
    overflow: auto;
    transition: all .3s ease-in-out;
}

.list li:hover {
    background: rgb(200,230,70);
    cursor: pointer;
    transform: scale(1.1);
}

.multiple_ul{
    display: flex;
    justify-content: space-between;
}
.multiple_ul ul{
    width: 100%
}

.grpname{
    font: 400 30px/1.5 'Pacifico', Helvetica, sans-serif;
    text-decoration: underline;
    color : lightgreen;
}

.relation_link{
    text-decoration: underline;
}
.relation_link:hover{
    color: chartreuse;
}