.alertHome { display: none; }
.oppacity_layer {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
	z-index: 100;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	cursor: pointer;
}
.cadre_popup {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
	height: auto;
	padding: 10px;
    background-color: #FFF;
	border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
	position: relative;
	text-align: left;
	cursor: initial;
	border: 5px solid #f78e78;
}
.contenaire_alerte {
	margin-top: 10px;
    padding-top: 5px;
    border-top: 1px dashed #f78e78;
}
.contenaire_alerte:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.cadre_popup h1 { 
	margin: 0;
	color: #f78e78;
	font-size: 18px;
	font-weight: bold;
}
.cadre_popup span {
	display: block;
	text-align: right;
}
.cadre_popup img {
	margin: 0 auto;
	display: block;
	max-width: 100%;
}
.cadre_popup p {
    margin: 8px 0;
	font-size: 14px;
}
.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: #f78e78; }

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