/*******************/
/*** MAINTENANCE ***/
/*******************/

/* POP-UP HOME */
/***************/
body.modal-open {
	overflow: hidden; /* Empêche le défilement lorsque la modal est ouverte */
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(0, 0, 0, 0.5); /* Noir à 50% d'opacité */
    z-index: 999;
}
.modal {
	display: none;
    position: fixed;
	box-sizing: border-box;
	padding: 78px 93px 67px;
	width: 69%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background: var(--vertpastel);
	border-radius: 20px;
    z-index: 1000;
}
.close {
	position: absolute;
	width: 68px;
	height: 68px;
	top: 20px;
	right: 20px;
    font-size: 20px;
    cursor: pointer;
	z-index: 2000;
}
.home_popup_article {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 38px 46px 38px 40px;
	border-radius: 10px;
	background: #FFF;
}
.home_popup_main_title {
	position: relative;
	padding-top: 0;
	padding-left: 16px;
}
.home_popup_main_title .classic_titles_main_title:before {
	position: absolute;
	content: '';
	background: url(chat_img/chat_home_popup_picto_infos.svg)no-repeat;
	width: 47px;
	height: 62px;
	top: -8px;
	left: 0;
}
.home_popup_container_content {
	overflow-y: scroll;
	scrollbar-width: thin;
	max-height: 350px;
}
