.carte-interactive
{
	margin: 0;

	font-family: "Vinci Sans", sans-serif;
	font-weight: normal;
}

.c-interactive-svg
{
	display: block;
	width: 100%;
	max-width: 100%;
	line-height:0;
}

.c-interactive-svg svg
{
	display: block;
	height: auto;
	width: 100%;
}

.c-interactive-svg svg .cls-2
{
	opacity: 0;

	fill: rgba(255, 255, 255, .31);
	stroke: #FFF;
	stroke-width: 5px;
}

.c-interactive-svg svg > g[id]:not([id="image_fond"])
{
	cursor: pointer;
}

.c-interactive-svg svg > g[id]:not([id="image_fond"]):hover .cls-2
{
	opacity: 1;
}

.c-interactive-svg svg > g[id]:not([id="image_fond"]).is-active .cls-2
{
	opacity: 1;
}

.c-svg-dialog
{
	line-height: 1.6;
	max-height: 100%;
	width: 365px;
	max-width: calc(100% - 24px);

	margin: auto 0;
	padding: 0;

	background-color: #FFF;

	border-radius: 10px;
	border: none;

	box-shadow: 0 0 10px 1px rgb(233 233 233 / 63%);

	outline: none;

	animation: box-animation 340ms ease;
}

/* ------------------ Mobile ------------------ */
@media (max-width: 599px)
{
	.c-svg-dialog
	{
		right: auto !important;
		left: 50% !important;

		transform: translateX(-50%);
	}
}

.c-svg-dialog::backdrop
{
	background-color: rgb(0 0 0 / 30%);

	animation: background-animation 340ms ease;
}

.c-svg-dialog__header
{
	position: relative;
	display: flex;

	padding: 12px 42px 12px 18px;

	justify-content: space-between;
}

.c-svg-dialog__title
{
	display: flex;

	gap: 10px;

	line-height: 1.2;

	margin: 0 0 15px 0;

	font-family: "Vinci Sans", sans-serif;
	font-weight: bold;
	font-size: 24px;
	color: #0F4586;

	text-align: left;
	text-transform: uppercase;

	align-items: center;
	justify-content: flex-start;
}

.c-svg-dialog__close
{
	position: absolute;
	display: inline-flex;

	height: 100%;
	min-height: 42px;
	width: 42px;

	top: 0;
	right: 0;
	padding: 0;

	background-color: transparent;

	font-size: 18px;

	cursor: pointer;

	border: none;

	outline: none;

	transition: background-color 240ms ease;

	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}

.c-svg-dialog__close:hover
{
	background-color: #EBEBEB;
}

.c-svg-dialog__close::before,
.c-svg-dialog__close::after
{
	height: 1em;
	width: 2px;

	margin-left: -2px;

	background-color: #999;

	content: "";

	transform-origin: center;
}

.c-svg-dialog__close::before
{
	transform: rotate(-45deg);
}

.c-svg-dialog__close::after
{
	transform: rotate(45deg);
}

.c-svg-dialog__img
{
	height: auto;
	max-height: 500px;
	width: 200px;

	margin: 0 auto 12px;

	object-fit: contain;
	object-position: center;
}

@media (max-height: 650px)
{
	.c-svg-dialog__img
	{
		width: 88px;
	}
}

.c-svg-dialog__content
{
	padding: 0 18px 16px;

	text-align: center;
}

.c-svg-dialog__text
{
	line-height: 1.3;

	font-size: 17px;

	text-align: justify;
}

.c-svg-dialog__ext-link
{
	position: relative;
	display: inline-flex;

	max-width: 100%;

	margin-top: 25px;
	margin-right: auto;
	margin-left: auto;
	padding: 11px 25px;
	padding-right: 45px;

	background-color: #0F4586;

	font-family: "Vinci Sans", sans-serif;
	font-weight: bold;
	font-size: 15px;
	color: #FFF!important;
	text-decoration: none;

	text-align: center;
	text-transform: uppercase;

	border-radius: 0;

	align-items: center;
	justify-content: center;
}

.c-svg-dialog__ext-link::before
{
	position: absolute;
	display: flex;

	height: 2px;
	width: 15px;

	top: 50%;
	margin-top: -1px;
	right: 20px;

	background-color: currentcolor;

	content: "";
}

.c-svg-dialog__ext-link::after
{
	position: absolute;
	display: flex;

	height: 6px;
	width: 6px;

	top: 50%;
	margin-top: -4px;
	right: 19px;

	content: "";

	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: currentcolor;

	transform: rotate(45deg);
}

.u-readers-only
{
	position: absolute;

	height: 1px;
	width: 1px;

	left: -1000px;
	padding: 0;

	color: transparent;

	border: none;

	overflow: hidden;

	z-index: -1;
}

.u-no-select,
.u-no-select *:not(input):not(textarea):not(select)
{
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;

	-webkit-touch-callout: none;
}

/* ------------------ Mobile ------------------ */
@media (max-width: 599px)
{
	@keyframes box-animation
	{
		0%
		{
			opacity: 0;

			transform: translate3d(-55%, 0, 0);
		}

		20%
		{
			opacity: 0;

			transform: translate3d(-55%, -10px, 0);
		}

		100%
		{
			opacity: 1;

			transform: translate3d(-50%, 0, 0);
		}
	}
}

/* --------- Tablet, Laptop & Desktop --------- */
@media (min-width: 600px)
{
	@keyframes box-animation
	{
		0%
		{
			opacity: 0;

			transform: translate3d(0, 0, 0);
		}

		20%
		{
			opacity: 0;

			transform: translate3d(-10px, -6px, 0);
		}

		100%
		{
			opacity: 1;

			transform: translate3d(0, 0, 0);
		}
	}
}

@keyframes background-animation
{
	0%
	{
		background-color: transparent;
	}

	20%
	{
		background-color: transparent;
	}

	100%
	{
		background-color: rgb(0 0 0 / 30%);
	}
}

