@charset "utf-8";
/* CSS Document */
.message-centre {
	/*display: block;*/
	display: none;
	float: none;
	position: fixed;
	z-index: 100000;
	width: 100%;
	top: 10%;
	height: 0px;
	text-align: center;
	font-size: 0px;
	transition-property: top,height;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
@media screen and (max-height: 640px) and (max-width: 580px){
	.message-centre {
		position: absolute;
		top: 0;
		height: 100%;
	}
}
.message-centre-cadre {
	display: inline-block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.6);
	background-color: rgba(255,255,255,0.95);
	max-width: 50%;
	transition-property: max-width;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	box-sizing:border-box;
}
@media screen and (max-width: 767px)  {
	.message-centre-cadre {
		max-width: 70%;
	}
}
@media screen and (max-height: 640px) and (max-width: 580px){
	.message-centre-cadre {
		max-width: 100%;
		border-radius: 0px;
		height: 100%;
		overflow: auto;
	}
}
@media screen and (max-width: 580px){
	.message-centre-cadre {
		max-width: 100%;
	}
}
.message-centre-titre {
	font-family: 'Roboto Condensed', sans-serif;
	background-color: #FFF;
	display: table;
	float: none;
	width: 100%;
	position: relative;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	border-radius: 10px 10px 0 0 ;
	box-sizing:border-box;
}
.message-centre-titre-icon{
	vertical-align: middle;
	display: table-cell;
	height: 40px;
	position: relative;
	box-sizing: border-box;
	text-transform: uppercase;
	text-align: right;
	width: 37px;
	box-sizing:border-box;
}
.message-centre-titre-texte{
	font-size: 15px;
	font-weight: 400;
	color: #000;
	vertical-align: middle;
	display: table-cell;
	padding-left: 8px;
	position: relative;
	height: 40px;
	box-sizing: border-box;
	text-transform: uppercase;
	text-align: left;
}
.message-centre-titre-bouton{
	padding-top: 10px;
	text-align: left;
	vertical-align: top;
	display: table-cell;
	height: 40px;
	width: 30px;
	position: relative;
	box-sizing:border-box;
}
.message-centre-titre-bouton-fermer {
	background-image: url(../graphisme/message/message-fermer.png);
	background-repeat: no-repeat;
	background-position: left top;
	display: inline-block;
	height: 20px;
	width: 20px;
	position: relative;
	cursor: pointer;
	margin-top: 2px;
}
.message-centre-titre-bouton-fermer:hover{
	background-position: left bottom;
}
.message-centre-contenu {
	font-family: 'Roboto Condensed', sans-serif;
	display: block;
	float: none;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	font-weight: 400;
	padding-top: 30px;
	padding-right: 40px;
	padding-bottom: 20px;
	padding-left: 40px;
	box-sizing:border-box;
}
@media screen and (max-width: 360px) {
	.message-centre-contenu {
		padding-right: 20px;
		padding-left: 20px;
	}
}
.message-centre-contenu figure{
	display: block;
	float: none;
	overflow: hidden;
	position: relative;	
}
.message-centre-contenu figure img{
	display: block;
	height: auto;
	width: 100%;
}
.message-centre-contenu h1 {
	font-size: 23px;
}
.message-centre-contenu h2 {
	font-size: 21px;
}
.message-centre-contenu h3 {
	font-size: 17px;
}
.message-centre-contenu p{
	font-size: 15px;
}
.message-centre-contenu li{
	font-size: 15px;
}
.message-centre-boutons {
	display: table;
	padding-right: 40px;
	padding-left: 40px;
	position: relative;
	padding-bottom: 30px;
	box-sizing: border-box;
	width: 100%;
}
@media screen and (max-width: 360px) {
	.message-centre-boutons {
		padding-right: 20px;
		padding-left: 20px;
	}
}
.message-centre-boutons-gauche{
	display: table-cell;
	position: relative;
	box-sizing: border-box;
	text-align: left;
	vertical-align: middle;
}
.message-centre-boutons-droit{
	display: table-cell;
	position: relative;
	box-sizing: border-box;
	text-align: right;
	vertical-align: middle;
}
.message-centre-bouton-gauche{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	line-height: 34px;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	background-color: #FFFFFF;
	display: inline-block;
	height: 34px;
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
	border-radius: 4px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	cursor: pointer;
}
.message-centre-bouton-gauche:hover {
	background-color: #f7f7f7;
}
.message-centre-bouton-droit{
	font-size: 16px;
	line-height: 35px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	background-color: #ffb400;
	display: inline-block;
	height: 34px;
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
	border-radius: 4px;
	box-sizing: border-box;
	cursor: pointer;
}
.message-centre-bouton-droit:hover {
	background-color: #e60000;
	color: #fff;
}

.message-haut {
	background-color: #f2f2f2;
	display: none;
	float: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b3b3b3;
	position: relative;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	z-index: 10000;
}
.message-bas{
	background-color: #f2f2f2;
	display: none;
	float: none;
	position: fixed;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #b3b3b3;
	width: 100%;
	left: 0px;
	bottom: 0px;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	z-index: 1000;
}
.message-cadre {
	display: table;
	width: 100%;
	position: relative;
	box-sizing:border-box;	
}
.message-etiquette {
	text-align: center;
	vertical-align: middle;
	display: table-cell;
	width: 43px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #cccccc;
	position: relative;
	box-sizing: border-box;
	background-color: #FFF;
	font-size: 0px;
}
.message-contenu {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.01em;
	vertical-align: middle;
	display: table-cell;
	padding-right: 20px;
	padding-left: 20px;
	position: relative;	
	box-sizing:border-box;	
}
@media screen and (max-width: 767px)  {
	.message-contenu {
		display: block;
		font-size: 11px;
	}
}
.message-action {
	text-align: right;
	vertical-align: middle;
	display: table-cell;
	padding-right: 20px;
	position: relative;
	box-sizing: border-box;
	white-space: nowrap;
	padding-left: 20px;
}
.message-action p{
	padding: 0px;
	margin: 0px;
}
@media screen and (max-width: 767px)  {
	.message-action {
		display: block;
		text-align: right;
	}
	.message-action p{
		margin: auto;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 10px;
		padding-left: 0px;	
	}
}
.message-bouton-plus {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 13px;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	background-color: #FFF;
	display: inline-block;
	height: 28px;
	padding-right: 10px;
	padding-left: 10px;
	border: 1px solid #b3b3b3;
	margin-right: 20px;
	position: relative;
	line-height: 27px;
	border-radius: 4px;
	box-sizing: border-box;
	letter-spacing: -0.01em;
	cursor: pointer;
}
.message-bouton-action {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 13px;
	line-height: 27px;
	font-weight: 400;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	background-color: #ffb400;
	display: inline-block;
	height: 26px;
	padding-right: 10px;
	padding-left: 10px;
	position: relative;
	border-radius: 4px;
	box-sizing: border-box;
	letter-spacing: -0.01em;
	cursor: pointer;
}
