.grid {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;

	margin-top: 32px;
}

.grid-entity {
	margin-bottom: 16px;
	margin-right: 16px;
}

.grid-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;

	box-shadow: 3px 3px 6px 0 #0004;

	width: 320px;
	height: 320px;
}

.grid-container-2 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;

	box-shadow: 3px 3px 6px 0 #0004;

	width: 240px;
	height: 300px;
}

.grid-head {
	background-color: #80CC28;
}

.grid-head * {
	color: #fff;
}

.grid-type {
	padding-top: 8px;
	padding-left: 8px;
	font-size: 14px;
}

.grid-titre {
	font-family: "Roboto-Bold", Arial;
	padding-left: 8px;
	padding-bottom: 16px;
}

.grid-body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-grow: 2;

	padding: 16px;
	overflow-y: auto;
}

.grid-body > div {
	margin-bottom: 16px;
}

.grid-body * {
	font-size: 14px;
}

.grid-body a {
	font-family: "Roboto-Regular", Arial;
}

.grid-img {
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.grid-adjustHeight {
  	height: 235px;
}

.grid-desc {
	font-style: italic;
}

.grid-societe {
	font-family: "Roboto-Bold", Arial;
	font-size: 18px;
}

.grid-president {
	font-family: "Roboto-Regular", Arial;
	font-size: 16px;
}

.grid-button {
	display: flex;
	flex-direction: row;
	align-items: flex-end;

	padding: 16px;
	padding-top: 0;
}

.grid-button > a {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 8px 0;

	width: 86px;
}

.grid-button > a:hover {
	background-color: #80CC28;
	text-decoration: none;
}

.grid-button > a + a {
	margin-left: 16px;
}

.grid-info {
	border: solid 1px #333;
	background-color: #fff !important;
	color: #333 !important;
}

.grid-info:hover {
	border: solid 1px #80CC28;
	color: #80CC28 !important;
}

.grid-controller {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

	float: right;
}

.grid-controller a {
	text-align: center;
	border-radius: 0 0 10px 10px;
	background-color: #333;
	color: #fff;
	font-size: 28px;

	margin-right: 16px;
	width: 64px;
}

.grid-controller a:hover {
	text-decoration: none;
	color: #80CC28;
}

.grid-mdf {
	background-image: url('/assets/images/pencil.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25%;
	height: 30px;
}

.grid-dlt {
	background-image: url('/assets/images/trash.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25%;
	height: 30px;
}