/* HOTELS */
.encart_hotels {
	background: #c3e1df;
	padding: 20px;
	margin-bottom: 1.5em;
}

.encart_hotels p {
	margin-bottom: 0em;
}

.encart_hotels > p {
	font-weight: bold;
}

.encart_hotels > ul {
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 0 0;
	padding: 0;
}

.encart_hotels > ul > li {
	list-style-type: none;
	padding: 0;
	margin: 5px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	background: #fff;
	width: 165px;
	box-shadow: 0px 0px 5px 0px #00000030;
}



.encart_hotels .img {
	aspect-ratio: 16/9;
	background-size: cover;

	position: relative;
}

.encart_hotels .hotel_note {
	background: white;
	display: inline-flex;
	flex-direction: column;
	margin-left: auto;
	position: absolute;
	right: 5px;
	top: 5px;
	padding: 0.5em;
	line-height: 1em;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}


.encart_hotels .text {
	padding: 0.5em;
	font: 0.91em/1em "Open Sans", Arial, sans-serif;
}

.encart_hotels .hotel_cta {
	color: var(--tdm-couleur-cta) !important;
	font-size: 13px;
}

.encart_hotels .hotel_cta:hover {
	text-decoration: none;
}

.encart_hotels .hotel_title {
	font-size: 1em;
	margin-bottom: 0.25em;
}

@media all and (max-width:600px) {
	.encart_hotels > ul {
		flex-wrap: nowrap;
	}
}