.popup_page{
	display: none;
	position: fixed;
	top:0;
	left: 0;
	background: rgba(56,56,56,0.75);
	width: 100%;
	height : 100%;
	z-index: 999;
}
.popup_form{
	position: fixed;
	width: 500px;
	height: 80%;
	top:10%;
	right:10%;
	background-color: rgba(128,128,128,1);
	border: 3px solid;
	border-color: #ffffff;
	border-radius: 30px;
	padding: 15px;
	z-index: 1000;
}
.popup_form_titre{
	background-color: var(--colorBGP_jaune);
	text-align: center;
	font-size: 20px;
	font-weight: bolder;
	padding: 10px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	margin: -18px;
	margin-bottom: 10px;
	border: 3px solid;
	border-color: #ffffff;
}
.popup_form_imgclose{
	position: fixed;
	top: 10px;
	right: 10px;
}
.popup_form_pied{
	position: absolute;
	bottom: -3px;
	left:-3px;
	width: 510px;
	background-color: var(--colorBGP_jaune);
	text-align: center;
	font-weight: bolder;
	padding: 10px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	border: 3px solid;
	border-color: #ffffff;
}
.popup_form_pied_bloc{
    margin-right: 20px;
	margin-left: 20px;
	margin-top: -30px;
	background-color: transparent;
    font-size: 20px;
	text-align: center;
    padding: inherit;
    border: none;
    color: var(--color_text);
	cursor: pointer;
    font-weight: bolder;
}
.popup_form_pied_img{
	width: 30px;
    height: 30px;
    position: relative;
    top: 18px;
    margin: 10px;
}

.popup_form label{
	display: grid;
	font-size: 14px;
    font-style: italic;
	text-align: left;
    margin-bottom: 10px;
	margin-top: 5px;
}

.popup_form fieldset{
	padding-bottom: 5px;
	padding-top: 0px;
    margin-top: 20px;
}

.popup_form legend{
	font-size: 14px;
    font-weight: bolder;
}

.popup_form p{
	font-size: 14px;
	margin-bottom: 0px;
	margin-top: 15px;
}

.popup_form input:invalid{
	background-color: var(--color_alert);
}

.popup_form input[type=submit]{
	display: none;
}

.form_req{
	color: red;
	font-weight: bolder;
	display: contents;
}

.form_action {
	display: inline-block;
	float:right;
	margin-right: 4px;
	margin-top: 1px
}

.form_action.img {
	height: 20px;
	position: relative;
	cursor: pointer;
}
.form_action.msg {
	margin-right: 10px;
}