.simplenewsletter_form {
}

.simplenewsletter_form .infos_contact {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin-bottom:5px;
}

.simplenewsletter_form .infos_contact > div {
    width:49%;
}

.simplenewsletter_form input[type="email"], .simplenewsletter_form input[type="text"], .simplenewsletter_form select {
    color: black!important;
    background-color: white!important;
    font-family: "Ubuntu";
    border: 1px solid #ced4da;
    border-radius: 0;
    height: 50px;
    width:100%;
    line-height: 2;
    padding:.375rem .75rem;
    padding-bottom: 0;
    padding-top: 0;
    font-size:0.7rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.simplenewsletter_form .submit {
    margin-top:20px;
}

.simplenewsletter_form input[type="submit"] {
    color: white;
    background-color: transparent;
    font-family: "Ubuntu";
    font-weight:700;
    font-size: 20px;
    border: 0;
    border-radius: 0;
    text-transform:uppercase;
    font-weight: 700;
    padding: 0;
    transition:all 0.5s;
    position:relative;
}

.simplenewsletter_form .submit {
    text-align:center;
}

.simplenewsletter_form input[type="checkbox"] {
    opacity:0;
}

.simplenewsletter_form input[type="email"]::placeholder, .simplenewsletter_form input[type="text"]::placeholder {
    color:black !important;
}

.simplenewsletter_form .mentions {
    color:#6c757d!important;
    position:relative;
    font-size:0.9rem;
    margin-top:10px;    
    font-family: "Ubuntu";
}

[type="checkbox"]:not(:checked) + .label::before,
[type="checkbox"]:checked + .label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
    transform:translateY(-50%);
	width: 12px;
	height: 12px;
	border: 1px solid #1b2747;
	background: #FFF;
	border-radius: 0;
	transition: all .275s;
}

/* Aspect de la coche */
[type="checkbox"]:not(:checked) + .label::after,
[type="checkbox"]:checked + .label::after {
	content: '✕';
	speak: never; /* Pour être sûr que le lecteur d'écran ne lira pas "fois" */
	position: absolute;
	top: 50%;
    left:2px;
    transform:tranlateY(-50%);
	font-size: 13px;
	color: #1b2747;
	line-height: 0;
	transition: all .2s; /* Petite transition */
    font-weight: 900;
}

/* Aspect non cochée */
[type="checkbox"]:not(:checked) + .label::after {
	opacity: 0;
	transform: scale(0) rotate(45deg);
}

/* Aspect cochée */
[type="checkbox"]:checked + .label::after {
	opacity: 1;
	transform: scale(1) rotate(0);
}


.simplenewsletter_form .rgpd a {
    text-decoration:underline;
    color:white !important;
}

.popupidentite {
    color:white;
    text-align:center;
    font-family:"Ubuntu";
    font-size:1.2rem;
}


@media screen and (max-width:760px) {
    [type="checkbox"]:not(:checked)+.label::before, [type="checkbox"]:checked+.label::before {
        transform:none;
        top:5px;
    }

    [type="checkbox"]:not(:checked)+.label::after, [type="checkbox"]:checked+.label::after {
        transform:none;
        top:13px;
    }

    .simplenewsletter_form input[type="submit"]{
        max-width: 240px;
        font-size: 15px;
    }
}