/*** CSS adaptées aux téléphones mobiles ***/

/*********************************************/
/*** popin ***********************************/
/*********************************************/
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none; /* Cachée par défaut */
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.popup {
	background: white;
	width: 75%;
	height: 50%;
	padding: 20px;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	overflow-y: auto;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
}


