.newsletter {
	position: relative;
	text-align: justify;
}

/*
 * FORMULAIRE ET BALISE
 */
#newsletter-popup {
	font-size: 1em;
	line-height: 1.4em;
}
#newsletter-popup p {
	margin: 0;
}
#newsletter-popup h4 {
	margin: 0;
	margin-top: -8px;
	margin-bottom: 12px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
}
#newsletter-popup input[type=text],
#newsletter-popup button {
	padding: 4px 10px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#newsletter-popup input[type=text] {
	background: white;
	border: 1px solid #DDD;
}
#newsletter-popup button {
	background-color: #666;
	color: white;
	border: none;
	line-height: 1.2em;
	font-size: 1em;
	min-width: 175px;
	margin: 0 16px 0 0;
}
#newsletter-popup button:first-child {
	background-color: #e11b27;
}
#newsletter-popup button:last-child {
	margin-right: 0;
}
#newsletter-popup button:hover {
	background-color: black;
}
#newsletter-popup .newsletter-email {
	width: 100%;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
.newsletter-kaze {
	color: #e11b27;
	font-weight: normal;
}
.newsletter-partner {
	color: #F2852D;
	font-weight: normal;
}
/*
 * POPUP
 */
#newsletter-form #newsletter-popup {
	display: none;
	position: absolute;
	top: 37px;
	left: 50%;
	margin-left: -200px;
	z-index: 999999;
	background-color: white;
	border: 1px solid #DDD;
	box-shadow: -2px 0px 10px rgba(0,0,0,0.3);
	padding: 16px;
	width: 400px;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	color: black;
}
#newsletter-form #newsletter-popup div {
	margin: 14px 0;
	float: none;
}
#newsletter-form #newsletter-popup #newsletter-content {
	margin: 0;
}
#newsletter-form #newsletter-popup:before {
	content: "";
	height: 20px;
	width: 20px;
	background: white;
	display: block;
	position: absolute;
	left: 50%;
	top: -11px;
	margin-left: -11px;
	border: 1px solid transparent;
	border-top-color: #DDD;
	border-left-color: #DDD;
	-webkit-transform: rotate(45deg);
	z-index: -1;
}
#newsletter-form #newsletter-popup.newsletter-show {
	display: block;
}
#newsletter-form .newsletter-popup-blur {
	-webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}


/*
 * Bouton close
 */
#newsletter-form #newsletter-popup .newsletter-close {
	position: absolute;
	right: 0;
	top: 0;
	height: 20px;
	width: 20px;
	background-color: #666;
	background-image: url(images/close.png);
	background-position: center center;
	background-repeat: no-repeat;
	margin: 0;
	cursor: pointer;
	z-index: 2;
}
#newsletter-form #newsletter-popup .newsletter-close:hover {
	background-color: black;
}

/*
 * message d'erreur
 */
#newsletter-error-message {
	max-height: 0em;
	opacity: 0;
	color: #e11b27;
	line-height: 1em;
	overflow: hidden;
	-webkit-transition: max-height 0.5s ease, opacity 0.5s ease;
	-moz-transition: max-height 0.5s ease, opacity 0.5s ease;
	-ms-transition: max-height 0.5s ease, opacity 0.5s ease;
	transition: max-height 0.5s ease, opacity 0.5s ease;
}
#newsletter-error-message.newsletter-erreur-message-show {
	max-height: 4em;
	opacity: 1;
}
.newsletter-erreur-message-show:before {
	content: "!";
	margin-right: 10px;
	font-weight: bold;
	font-size: 1.6em;
	vertical-align: middle;
	line-height: 1em;
	color: white;
	background-color: #e11b27;
	min-width: 1em;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	padding: 1px;
}

/*
 * message de validation
 */
 #newsletter-popup #newsletter-validation-message {
 	display: none;
 	opacity: 0;
 }
 #newsletter-popup #newsletter-validation-message.newsletter-validation-message-show {
	display: -webkit-flex;
	display: flex;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.9);
	line-height: 1em;
	opacity: 1;
	overflow: hidden;
	-webkit-transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	margin: 0;
	z-index: 1;
	-webkit-align-items: center;
	align-items: center;
}
#newsletter-popup .newsletter-validation-message-show p {
	text-align: center;
	margin: 0;
	font-size: 1.2em;
	line-height: 1.4em;
	padding: 16px;
	display: block

}
/*
 * texte pas important
 */
#newsletter-popup .newsletter-small-text {
	color: #666;
	font-size: 0.7em;
	line-height: 1em;
	text-align: justify;
}