.alertHome { display: none; }
.oppacity_layer {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	cursor: pointer;
	overflow: auto;
}
.cadre_popup {
    box-sizing: border-box;
	/* width: 500px; */
    height: auto;
	padding: 10px;
    background-color: #FFF;
	border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
	position: relative;
	text-align: left;
	cursor: initial;
	margin: 20px;
}
.cadre_popup .contenaire_alerte {
	margin-top: 10px;
    padding-top: 5px;
    border-top: 1px dashed #DC0000;
}
.cadre_popup .contenaire_alerte:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.cadre_popup .alerte_info { max-width: 480px; }
.cadre_popup h1 { 
	margin: 0;
	color: #DC0000;
	font-size: 18px;
	font-weight: bold;
}
.cadre_popup span {
	display: block;
	text-align: right;
}
.cadre_popup p {
    margin: 8px 0;
}
.cadre_popup img { 
	max-width: 100%; 
	display: block;
	margin: 0 auto;
}
.cadre_popup .descriptif_popup {
	text-align: justify;
	font-size: 14px;
	color: #6d6d6d;
}
.cadre_popup .descriptif_popup b { color: #083c6b; }
.cadre_popup .descriptif_popup.avec_titre { margin-top: 8px; }
.cadre_popup .descriptif_popup > *:last-child { margin-bottom: 0; }
.align_popup {
	height: 100%;
	display: inline-block;
    vertical-align: middle;
}
.close_popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #FFF;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    font-weight: 900;
    font-size: 17px;
    font-family: "Comic Sans MS";
}
.close_popup:hover { color: #DC0000; }


@media only screen and (max-width: 769px) {
	.cadre_popup { width: 85%; }
	.cadre_popup .alerte_info { max-width: initial !important; }
}