.list_offres_single {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.list_offres_single_top {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	background-color: #faeae38c;
	border-radius: 10px;
	transition: .3s !important;
	overflow: hidden;
	position: relative;
}

.list_offres_single_top::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 3px solid transparent;
	pointer-events: none;
	border-radius: 10px;
	transition: .3s;
}

.list_offres_single.open .list_offres_single_top {
	background-color: var(--color_background);
}

.list_offres_single.open .list_offres_single_top::before {
	border-color: var(--color_primary);
}

.list_offres_single_title {
	margin-bottom: 5px;
}

.list_offres_single_infos {
	display: flex;
	gap: 25px;
	font-size: 0.9em;
	font-weight: 500;
}

.list_offres_single_ville,
.list_offres_single_type {
	display: flex;
	align-items: center;
	gap: 5px;
	width: max-content;
}

.list_offres_single_content {
	padding: 20px 20px 20px 30px;
}

.list_offres_single_more_content {
	padding: 60px;
	background-color: white;
	border-radius: 10px;
	margin-top: 10px;
}

.list_offres_single_more_content h2 {

}

.list_offres_single_btns {
	display: flex;
	align-items: center;
	gap: 50px;
	min-width: 350px;
	justify-content: flex-end;
}

.list_offres_single_more {
	min-width: 165px;
	height: max-content;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-family: 'Barlow Condensed';
	font-weight: 700;
	line-height: 16.8px;
	text-transform: uppercase;
	justify-content: flex-end;
}

.list_offres_single_apply {
	height: 100%;
	padding: 0 20px 0 10px;
	min-width: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition-duration: 0.5s;
	text-transform: uppercase;
	font-weight: 600;
	font-family: 'Barlow Condensed';
	letter-spacing: 1px;
	position: relative;
	color: white;
	background-color: #1f4246;
	transition: color 0.5s;
}

.list_offres_single_apply:hover {
	color: var(--color_secondary);
}

.list_offres_single_apply::before {
	content: "";
	position: absolute;
	display: block;
	left: -24px;
	top: 0;
	bottom: 0;
	width: 25px;
	height: 100%;
	background: #1f4246;
	-webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
	clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.list_offres_single_more_content,
.list_offres_single_apply_content {
	display: none;
}

.list_offres_single_more::after {
	content: "";
	display: block;
	width: 10px;
	height: 7px;
	margin-left: 12px;
	background-image: url('/wp-content/uploads/2023/06/Vector-1.svg');
	background-repeat: no-repeat;
}

.list_offres_single_more.less::after {
	content: "";
	content: "";
	display: block;
	width: 10px;
	height: 7px;
	margin-left: 12px;
	transform: rotate(180deg);
	background-image: url('/wp-content/uploads/2023/06/Vector-1.svg');
	background-repeat: no-repeat;
}

.list_offres_single_apply:hover {
	background-color: #1f4246;
	;
}

.list_offres_single_apply_content form {
	padding: 60px;
	background-color: white;
	border-radius: 10px;
	margin-top: 10px;
	position: relative;
	z-index: 2;
}

.list_offres_single_more_content h2 {
	margin-bottom: 30px;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.2;
	font-family: 'Barlow Condensed';
}

.list_offres_single_more_content h2:not(:first-child) {
	margin-top: 50px;
}

/* .list_offres_single_more_content p:not(.small_title) {
	margin: 0 0 30px 0;
} */

.list_offres_single_more_content .list_nautilus {
	margin: 0;
	padding: 0;
}

.list_offres_single_more_content.list_nautilus li {
	font-size: 1rem;
	line-height: 1.4;
}

.list_offres_single_apply_content .btcd-fld-itm.bf3-10 {
	display: none;
}



@media screen and (max-width: 767px) {
	.list_offres_single_top {
		flex-direction: column;
	}

	.list_offres_single_btns {
		gap: 0;
		min-width: 0;
		background-color: #e9ac8d4f;
	}

	.list_offres_single_btns>div {
		width: 50%;
	}

	.list_offres_single_more {
		border-radius: 0;
		text-align: center;
		justify-content: center;
		padding-right: 30px;
	}

	.list_offres_single_apply {
		padding: 5px 20px;
		line-height: 1.25;
		min-height: 70px;
	}

	.list_offres_single_apply_content form {
		padding: 40px 30px;
	}
}

@media screen and (max-width: 480px) {
	.list_offres_single_more_content {
		padding: 40px 30px;
	}

	.list_offres_single_more,
	.list_offres_single_apply {
		font-size: 0.8em;
	}

	.list_offres_single_content {
		padding-left: 20px;
	}
}