/* modale */
#modal-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}
#close-modal {
	position:absolute;
	top:0;
	right:0;
	font-size:1.3rem;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	width:2.2rem;
	height:2.2rem;
	color:#000;
	font-weight:400;
	cursor:pointer;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.8;
	z-index: 99;
	cursor: pointer;
}
.modal-content-box {
	position: fixed;
	background-color: #fff;
	z-index: 100;
	top: 50%;
	left: 50%;
	width: min(92vw, 700px);
	height: auto;
	max-height: 92vh;
	overflow-y: auto;
	transform: translate(-50%,-50%);
	padding:2.2rem;
	box-sizing:border-box;

	h1, h2, h3 {
		margin-top: 0;
	}
}
.stopscroll {
	overflow:hidden !important;
}
/**/