.alert-btn .alert-submit::before {
	content: "\f0f3";
	font-family: "Font Awesome 5 Free";
	padding-right: 10px;
	font-weight: 900;
}

/* Modals */
.pj-annonces-modal.modal-closed {
	display: none;
}
.pj-annonces-modal {
	position: fixed;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	z-index: 20;
}

.pj-annonces-modal .overlay {
	position: fixed;
	left: 0;
	right:0;
	top: 0;
	bottom:0;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}

.pj-annonces-modal .content {
    position: relative;
    z-index: 9993;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    background-color: #fefefe;
    margin: 0 auto;
}

.pj-annonces-modal .content input[type="radio"] { 
	position: absolute !important; 
	visibility: hidden; 
	overflow: hidden;
}

.pj-annonces-modal .content label {
	float: left;
	display: inline-block;
	text-align: center;
	padding: 15px 0;
	width: 50%;
	background-color: #ccc;
}

.pj-annonces-modal .content label:hover { 
	cursor: pointer;
}

.pj-annonces-modal .content input[type="radio"]:checked + label { 
	color: #444; 
	background: #eee;
}
.pj-annonces-modal .content input[type="radio"]:checked + label::before { 
	content: "\f00c"; 
	font-family: "Font Awesome 5 Free";
	padding-right: 10px;
}

.pj-annonces-modal .content .alert_inputs,
.pj-annonces-modal .content .confirm-alert-checkbox { 
	padding: 0 10px; 
	text-align: left;
}

.pj-annonces-modal .content .alert_inputs input,
.pj-annonces-modal .content .alert_inputs select { 
	width: 49%; 
	margin: 5px 0; 
	display: inline;
}

.pj-annonces-modal .content .alert_inputs textarea { 
	width: 100%;
}
.pj-annonces-modal .content .submit-btns { 
	text-align:right; padding-right: 10px;
}

.pj-annonces-modal.modal-confirm .content { 
	display: flex;
	justify-content: space-between;
}
.pj-annonces-modal.modal-confirm p,
.pj-annonces-modal.modal-confirm span { 
	padding: 20px 10px;
	display: inline-block;
	margin: 0;
}

.pj-annonces-modal.modal-confirm .content .close-modal { 
	cursor: pointer;
}
.pj-annonces-modal.modal-confirm .content .close-modal:before { 
	content: "\f00d";
	font-family: "Font Awesome 5 Free";
}

@media all and (max-width: 1400px) {
	.pj-annonces-modal .content {
		width: 40%;
	}
}

@media all and (max-width: 958px) {
	.pj-annonces-modal .content {
		width: 80%;
	}
}