.modal {
	position: fixed;
	background: rgba(240, 240, 240, 0.85);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	backdrop-filter: blur(4px); /* optionnel : effet flou */
	display: flex;
	justify-content: center;
	align-items: center;

	&-content{
		background-color: #fff;
		border-radius: 1rem;
		max-width: 300px;
		height: 140px;
	}
	
	&-text{
		position: relative;
		padding: 1rem;
		color: #000;
		line-height: 32px;
	}

	a {
		padding: 1rem;
		text-decoration: none;
	}

	&-btnClose{
		color: whitesmoke;
		background-color:#000;
		position: absolute;
		height: 40px;
		width: 40px;
		top: -15px;
		right: -15px;
		border-radius: 50%;
		cursor: pointer;
	}
}
