.spots-container {
	position: relative;
	width: fit-content;
	border-radius: 3px;
	overflow: hidden;
}

.spots-items {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.image-spot {
	width: 35px;
	height: 35px;
	z-index: 10;
	cursor: pointer;
	position: absolute;
	border-radius: 50%;
	transition: transform .8s ease-in-out;
}

.image-spot:hover {
	transform:rotate(90deg);
}

.image-spot > span {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/wp-content/uploads/ac_assets/image-spots/plus.svg");
}


.image-spot:before {
	content: "";
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	position: absolute;
	border-radius: 50%;
	animation: spot-expand 2s infinite;
}

@keyframes spot-expand {
	0% {
		transform: scale(.5);
		opacity: 1
	}

	to {
		transform: scale(1.5);
		opacity: 0
	}
}

.item-spot-content {
	left: 0;
	top: 100%;
	z-index: 20;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: top 0.5s ease-in-out;
}

.item-spot-content.show {
	top: 0;
}

.item-spot-content_infos {
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.item-spot-content_infos-texts {
	gap: 1em;
	bottom: 0;
	padding: 5%;
	display: grid;
	position: absolute;
	grid-template-columns: 1.3fr 2fr;
}

.item-spot-content_infos-texts_close {
	left: 5%;
	top: -10%;
}

.item-spot-content_infos-texts_close > span {
	transform:rotate(45deg);
}


.item-spot-content_infos-texts_title {
	font-size: 2.188rem;
	line-height: 2.375rem;
	font-family: "Titillium Web", Sans-serif;
}

.item-spot-content_infos-texts_detail {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75rem;
	letter-spacing: 0.4px;
	font-family: "Titillium Web", Sans-serif;

	overflow: hidden;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.item-spot-content_infos-texts {
		gap: 0.5em;
		grid-template-columns: 1fr;
	}

	.item-spot-content_infos-texts_title {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}

	.item-spot-content_infos-texts_detail {
		font-size: 0.9rem;
		line-height: 1.5rem;
	}

	.item-spot-content_infos-texts_close {
		left: unset;
		right: 5%;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

}

/*mobile and tablet*/
@media (max-width: 1024px) {

}

/*desktop*/
@media (min-width: 1025px) {

}

/*pc portable*/
@media (min-width: 1025px) and (max-width: 1700px) {

}


/*RESPONSIVE*/
