/* ===============================================
// ###############################################
// ### OLLOWEB - CSS PRESENTATION MESSAGE ########
// ###############################################
// ===============================================
// ### HISTORIQUE DE VERSION #####################
// ===============================================
// 21/02/2024 : Personnalisation du SVG de la flèche
// 22/02/2023 : remplacement de la flèche par du code SVG
// 26/01/2023 : Mise à jour des valeurs du thème
// ===============================================
// ###############################################
// ===============================================
*/
:root {
	--message-police-23: 23px;
	--message-police-21: 21px;
	--message-police-17: 17px;
	--message-police-15: 15px;
	--message-police-14: 14px;
	--message-police-13: 13px;
	--message-police-12: 12px;
}
.message-haut {
	display: none;
	float: none;
	position: relative;
	background-color: #FFF;
}
.message-haut-resume {
	display: flex;
	margin: 0px;
	padding: 0px;
	float: none;
	position: relative;
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.message-haut-resume li {
	display: block;
	float: none;
	position: relative;
	flex-grow: 1;
	box-sizing: border-box;
	font-size: 14px;
}
.message-haut-resume li:first-of-type {
	padding-left: 20px;
	align-self: center;
	padding-top: 9px;
	padding-bottom: 9px;
}
.message-haut-resume li:first-of-type img {
	height: 22px;
	width: 22px;
	display: block;
}
.message-haut-resume li:nth-of-type(2) {
	align-self: center;
	flex-grow: 1000;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
}
@media screen and (max-width: 460px) {
	.message-haut-resume li:nth-of-type(2) span{
	display: none;	
	}
}
.message-haut-resume li:last-of-type {
	display: flex;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	width: 36px;
	cursor: pointer;
	justify-content: center;
	align-items: flex-end;
}
.message-haut-resume li:last-of-type div {
	display: block;
	float: none;
	position: relative;
	flex-grow: 0;
	padding-bottom: 8px;
}
.message-haut-resume li:last-of-type div .pictogramme {
	fill: rgb(var(--theme_couleur_1));
}
.message-haut-resume li:last-of-type:hover>div {
	padding-bottom: 5px;
}
.message-haut-resume li p {
	margin: 0px;
	padding: 0px;	
}
.message-haut-detail {
	background-color: rgb(var(--theme_couleur_blanc));
	display: none;
	float: none;
	position: relative;
	border-bottom: 1px solid rgb(var(--theme_couleur_gris_clair));
}
.message-haut-descriptif {
	display: block;
	float: none;
	position: relative;
	font-size: 15px;
	padding-right: 25px;
	padding-left: 25px;
	padding-top: 10px;
	padding-bottom: 0px;
}
.message-haut-action {
	display: flex;
	float: none;
	position: relative;
	justify-content: flex-end;
	padding-bottom: 10px;
	padding-right: 25px;
	box-sizing: border-box;
}
.message-haut-action ul {
	display: flex;
	float: none;
	position: relative;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	box-sizing: border-box;
}
.message-haut-action ul li {
	display: block;
	float: none;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	padding-right: 20px;
	padding-left: 20px;
	position: relative;
	box-sizing: border-box;
}
.message-haut-action ul li:first-of-type {
	border-left-style: none;
	padding-left: 0px;
}
.message-haut-action ul li:last-of-type {
	border-right-style: none;
	padding-right: 0px;
}
.message-haut-bouton-plus {
	font-size: 14px;
	color: rgb(var(--theme_bouton_1_couleur_contenu));
	text-decoration: none;
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	display: block;
	padding-top: 6px;
	padding-right: 9px;
	padding-bottom: 6px;
	padding-left: 9px;
	position: relative;
	border-radius: var(--theme_bouton_1_arrondi);
	border: 1px solid rgb(var(--theme_bouton_1_couleur_contour));
	box-sizing:border-box;
}
.message-haut-bouton-plus:hover {
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
    border: 1px solid rgb(var(--theme_bouton_1_couleur_contour_survol));
	color: #fff;	
}
.message-haut-bouton-action {
	font-size: 14px;
	color: rgb(var(--theme_bouton_2_couleur_contenu));
	text-decoration: none;
	background-color: rgb(var(--theme_bouton_2_couleur_fond));
	display: block;
	padding-top: 6px;
	padding-right: 9px;
	padding-bottom: 6px;
	padding-left: 9px;
	position: relative;
	border-radius: var(--theme_bouton_2_arrondi);
	border: 1px solid rgb(var(--theme_bouton_2_couleur_fond));
	box-sizing: border-box;
	cursor: pointer;
	transition-property: box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}
.message-haut-bouton-action:hover {
	box-shadow: 0px 0px 0px var(--theme_bouton_2_halo) rgba(var(--theme_bouton_2_couleur_fond),0.2);
}
.message-bas {
	background-color: #fff;
	display: none;
	float: none;
	position: fixed;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ccc;
	width: 100%;
	left: 0px;
	bottom: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	z-index: 1000;
}
.message-bas-cadre {
	display: flex;
	position: relative;
	box-sizing: border-box;	
	align-items: center;
}
@media screen and (max-width: 580px)  {
	.message-bas-cadre {
	flex-wrap: wrap;
	}
}
.message-bas-etiquette {
	display: flex;
	position: relative;
	padding-left: 20px;
	align-items: center;
	flex-grow: 1;
}
@media screen and (max-width: 580px)  {
	.message-bas-etiquette {
	width: 10%;	
	padding-left: 0px;
	justify-content: flex-end;
	}
}
.message-bas-contenu {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.01em;
	display: block;
	padding-right: 10px;
	padding-left: 10px;
	position: relative;	
	flex-grow: 1000;	
}
@media screen and (max-width: 767px)  {
	.message-bas-contenu {
	font-size: 11px;
	}
}
@media screen and (max-width: 580px)  {
	.message-bas-contenu {
	width: 90%;	
	}	
}
.message-bas-action {
	display: flex;
	padding-right: 10px;
	position: relative;
	white-space: nowrap;
	padding-left: 10px;
	align-items: center;
	justify-content: flex-end;
}
@media screen and (max-width: 580px)  {
	.message-bas-action {
	width: 100%;
	padding-bottom: 20px;
	}
}
.message-bas-bouton-plus {
	font-weight: 400;
	font-size: 13px;
	color: rgb(var(--theme_bouton_1_couleur_contenu));
	text-decoration: none;
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	display: inline-block;
	padding-right: 9px;
	padding-left: 9px;
	border: 1px solid rgb(var(--theme_bouton_1_couleur_contour));
	margin-right: 10px;
	position: relative;
	border-radius: var(--theme_bouton_1_arrondi);
	box-sizing: border-box;
	cursor: pointer;
	margin-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: pointer;
}
.message-bas-bouton-plus:hover {
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
    border: 1px solid rgb(var(--theme_bouton_1_couleur_contour_survol));
	color: rgb(var(--theme_bouton_1_couleur_contenu_survol));	
}
.message-bas-bouton-action {
	font-size: 13px;
	color: rgb(var(--theme_bouton_2_couleur_contenu));
	text-decoration: none;
	background-color: rgb(var(--theme_bouton_2_couleur_fond));
	display: block;
	padding-top: 5px;
	padding-right: 9px;
	padding-bottom: 5px;
	padding-left: 9px;
	position: relative;
	border-radius: var(--theme_bouton_2_arrondi);
	border: 1px solid rgb(var(--theme_bouton_2_couleur_fond));
	margin-right: 10px;
	margin-left: 10px;
	cursor: pointer;
	transition-property: box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}
.message-bas-bouton-action:hover {
	box-shadow: 0px 0px 0px var(--theme_bouton_2_halo) rgba(var(--theme_bouton_2_couleur_fond),0.2);
}
.message-centre-fenetre{
	display: flex;
	float: none;
	position: absolute;
	width: 100%;
	top: 0px;
	height: 100%;
	left: 0px;
	justify-content: center;
	align-items: center;
}
.message-centre {
	display: none;
	float: none;
	position: fixed;
	z-index: 1000;
	/*top: 10%;*/
	text-align: center;
	font-size: 0px;
	min-width: 320px;
	max-width: 440px;
	transition-property: top,height;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
.message-centre-cadre {
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
	background-color: #fff;
	max-width: 440px;
	border-radius: 10px;
}
@media screen and (max-width: 440px){
	.message-centre-cadre {
	border-radius: 0px;
	overflow: auto;
	}
}
.message-centre-titre {
	display: flex;
    float: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #CCC;
    position: relative;
    padding-left: 20px;
    padding-top: 11px;
    padding-bottom: 10px;
    border-radius: 10px 10px 0px 0px;
    user-select: none;
    transition-property: box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
	align-items: center;
}
.message-centre-titre:hover {
    box-shadow: 0 0 0 5px rgba(var(--theme_couleur_1),0.2);
}
.message-centre-titre-icon {
	display: flex;
	position: relative;
	width: 22px;
	align-items: center;
}
.message-centre-titre-texte {
	font-size: 15px;
	font-weight: 400;
	color: #000;
	display: block;
	padding-left: 8px;
	position: relative;
	text-transform: uppercase;
	text-align: left;
}
.message-centre-titre-bouton{
	display: block;
	float: none;
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 100000;
}
.message-centre-titre-bouton-fermer {
	display: flex;
	float: none;
	height: 21px;
	width: 21px;
	position: relative;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transform: rotate(45deg);
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: linear;
}
.message-centre-titre-bouton-fermer:hover {
	transform: rotate(315deg);	
}
.message-centre-titre-bouton-fermer div:first-of-type {
    background-color: #999;
    display: block;
    float: none;
    height: 1px;
    width: 21px;
    position: absolute;
}
.message-centre-titre-bouton-fermer:hover div:first-of-type {
	background-color: #999;
}
.message-centre-titre-bouton-fermer div:last-of-type {
    background-color: #999;
    display: block;
    float: none;
    height: 21px;
    width: 1px;
    position: absolute;
}
.message-centre-titre-bouton-fermer:hover div:last-of-type {
	background-color: #999;
}
.message-centre-contenu {
	display: block;
	float: none;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	font-weight: 400;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	box-sizing: border-box;
}
.message-centre-contenu figure{
	display: flex;
	float: none;
	overflow: hidden;
	position: relative;	
	justify-content: center;
}
.message-centre-contenu figure img{
	display: block;
	height: auto;
	width: 100%;
	max-height: 200px;
}
.message-centre-contenu h1 {
	font-size: var(--message-police-23);
}
.message-centre-contenu h2 {
	font-size: var(--message-police-21);
}
.message-centre-contenu h3 {
	font-size: var(--message-police-17);
}
.message-centre-contenu p{
	font-size: var(--message-police-15);
}
.message-centre-contenu li{
	font-size: var(--message-police-15);
}
.message-centre-boutons {
	display: flex;
	padding-right: 30px;
	padding-left: 30px;
	position: relative;
	padding-bottom: 30px;
	width: 100%;
 	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 580px) {
	.message-centre-boutons {
	padding-bottom: 20px;
	}	
}
@media screen and (max-width: 380px) {
	.message-centre-boutons {
	padding-right: 20px;
	padding-left: 20px;
	}
}
.message-centre-boutons-gauche{
	display: flex;
	position: relative;
	float: none;
	justify-content: flex-start;
}
.message-centre-boutons-droit{
	display: flex;
	position: relative;
	box-sizing: border-box;
	float: none;
	justify-content: flex-end;
}
.message-centre-bouton-gauche {
	font-size: 15px;
	line-height: 35px;
	font-weight: normal;
	color: rgb(var(--theme_bouton_1_couleur_contenu));
	text-decoration: none;
	background-color: rgb(var(--theme_bouton_1_couleur_fond));
	display: block;
	height: 34px;
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
	border-radius: var(--theme_bouton_1_arrondi);
	border: 1px solid rgb(var(--theme_bouton_1_couleur_contour));
	box-sizing: border-box;
	cursor: pointer;
}
.message-centre-bouton-gauche:hover {
	background-color: rgb(var(--theme_bouton_1_couleur_fond_survol));
    border: 1px solid rgb(var(--theme_bouton_1_couleur_contour_survol));
	color: rgb(var(--theme_bouton_1_couleur_contenu_survol));
}
.message-centre-bouton-droit{
	font-size: 15px;
	line-height: 35px;
	font-weight: bold;
	color: rgb(var(--theme_bouton_2_couleur_contenu));
	text-decoration: none;
	background-color: rgb(var(--theme_bouton_2_couleur_fond));
	display: block;
	height: 34px;
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
	border-radius: var(--theme_bouton_2_arrondi);
	border: 1px solid rgb(var(--theme_bouton_2_couleur_fond));
	box-sizing: border-box;
	cursor: pointer;
    transition-property: box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}
.message-centre-bouton-droit:hover {
	box-shadow: 0px 0px 0px var(--theme_bouton_2_halo) rgba(var(--theme_bouton_2_couleur_fond),0.2);
}