.content-article {
	font-size: 15px;
	/*font-family: 'Pacifico', cursive;*/
}

.present {
	width: calc(100% - 300px);
	height: 100%;
}

.list_img {
	position: relative;
	height: 200px;
	width: 50%;
	overflow: hidden;
	margin-top: 20px;
}

.list_img img {
	position: absolute;
	height: 100%;
	width: 100%;

	transform: translateX( calc( var(--id-pointer) - var(--actual-id-img) ) );

	object-fit: cover;

	transition: 1s;
}

.list_img .selector {

	position: relative;
	top : 60%;
	height: 40%;
	width: 100%;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap-reverse;
	justify-content: center;

	opacity: 0.4;

	background: linear-gradient(transparent 70%, #000a);

	transition: 0.3s;
}

.list_img .selector:hover {

	background: linear-gradient(transparent 70%, #000a);
	opacity: 0.7;
	transition: 0.3s;
}

.round-tipo {
	position: relative;
	margin-bottom: 10px;
	height: 20px;
	width: 20px;
	transition: 0.3s;
}

.round-tipo::before {
	position: absolute;
	content: "";
	background-color: #fffa;
	top: 25%;
	right: 25%;
	bottom: 25%;
	left: 25%;
	border-radius: 5px;
	border: solid 5px white;
	transition: 0.3s;
}

.square-tipo {
	position: relative;
	margin-bottom: 10px;
	height: 20px;
	width: 20px;
	transition: 0.3s;
}

.square-tipo::before {
	position: absolute;
	content: "";
	background-color: transparent;
	border: solid 4px white;
	top: 10%;
	right: 10%;
	bottom: 10%;
	left: 10%;
	border-radius: 2px;
	transition: 0.3s;
}

.arow-right {
	position: relative;
	margin-bottom: 10px;
	height: 20px;
	width: 20px;
	padding-left: 10px;
	padding-right: 10px;
	transition: 0.3s;
}

.arow-right:hover {
	padding-left: 20px;
	padding-right: 0px;
	transition: 0.3s;
}

.arow-right::before {
	position: absolute;
	content: "";

	background-color: transparent;

	border-top : 10px solid transparent;
	border-bottom : 10px solid transparent;
	border-left : 18px solid white;

	transition: 0.3s;
}

.transparence-right {
	position: relative;
	margin-bottom: 10px;
	height: 20px;
	width: 20px;
	padding-left: 10px;
	padding-right: 10px;
	opacity: 0.3;
	transition: 0.3s;
}

.transparence-right::before {
	position: absolute;
	content: "";

	background-color: transparent;

	border-top : 10px solid transparent;
	border-bottom : 10px solid transparent;
	border-left : 18px solid white;

	transition: 0.3s;
}

.arow-left {
	position: relative;
	margin-bottom: 10px;
	height: 20px;
	width: 20px;
	padding-left: 10px;
	padding-right: 10px;
	transition: 0.3s;
}

.arow-left:hover {
	padding-left: 0px;
	padding-right: 20px;
	transition: 0.3s;
}

.arow-left::before {
	position: absolute;
	content: "";

	background-color: transparent;

	border-top : 10px solid transparent;
	border-bottom : 10px solid transparent;
	border-right : 18px solid white;

	transition: 0.3s;
}

.transparence-left {
	position: relative;
	margin-bottom: 10px;
	height: 20px;
	width: 20px;
	padding-left: 10px;
	padding-right: 10px;
	opacity: 0.3;
	transition: 0.3s;
}

.transparence-left::before {
	position: absolute;
	content: "";

	background-color: transparent;

	border-top : 10px solid transparent;
	border-bottom : 10px solid transparent;
	border-right : 18px solid white;

	transition: 0.3s;
}

p.date {
	text-decoration: none;
	font-size: 10;
	font: italic;
	color: gray;

	margin: 0px;
}

h1.titre-article
{
	text-decoration: underline;
	text-decoration-color: #ce0606;
	text-decoration-thickness: 2px;

	margin-top: 10px;
	margin-bottom: 0px;
	margin-left: 0px;

	font-family: 'Dancing Script', cursive;
	font-size: 30px;
}

.path-categorie
{
	text-decoration: none;
	color: black;

	margin: 0px;
	margin-right: 8px;
	padding: 0px;

	font-family: 'Dancing Script', cursive;
	font-size: 25px;
}


.link-article {
	position: relative;
	color: black;
	text-decoration: none;
}

.link-article::before {
	content: "";

	position: absolute;

	top: 0;
	bottom: 0;
	left: 50%;
	right: 50%;

	border-bottom: #2c498955 2px solid;

	transition: 0.5s;
}

.link-article:hover::before {
	content: "";

	position: absolute;

	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	border-bottom-color: #2c4989;

	transition: 0.5s;
}

.list-img {
	margin-top: 20px;
	padding-bottom: 20px;
	display: flex;
	width: 100%;
	overflow: hidden;
	border-bottom: 1px solid gray;
	aspect-ratio: 9.2 / 1;
}

.list-img img{
	height: calc(100% - 6px);
	/*max-height: 100px;*/

	margin: 3px;
}

div.article {
	margin-top: 10px;
	display: flex;
}

.left-content-article {
	width: 50%;
	min-width: 500px;

	margin: 10px;
	padding: 5px;
}

.full-content-article {
	width: 100%;

	margin: 10px;
	padding: 5px;
}

.path-categorie {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}