<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***********************************************************************************************************************************/
/************************ 							/!\	AVANT D'EDITER /!\									************************/
/************************ 									VOIR					   						************************/
/************************ 							www.dev.equideow.com/doc								************************/
/************************ 						        	  ET											************************/
/************************ 			dev.owlient.eu/wiki/index.php/Guide_Int%C3%A9gration_Equideow			************************/
/***********************************************************************************************************************************/

/***********************************************************************************************************************************/
/* MESSAGE - GENERIC ***************************************************************************************************************/
/***********************************************************************************************************************************/

.message {
	font-size: 13px;
}


/***********************************************************************************************************************************/
/* MESSAGE - STYLE-1 ***************************************************************************************************************/
/***********************************************************************************************************************************/
.message-style-1 {
	background: linear-gradient(to bottom, rgba(245,244,193,1) 0%,rgba(242,242,183,1) 32%,rgba(238,237,173,1) 66%,rgba(231,230,160,1) 100%); /* W3C */
	min-height: 18px;
	padding: 10px;
	border: 1px solid #CDCB6C;
	border-radius: 7px;
}
.message-style-1 {
	background: -moz-linear-gradient(top, rgba(245,244,193,1) 0%, rgba(242,242,183,1) 32%, rgba(238,237,173,1) 66%, rgba(231,230,160,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(245,244,193,1)), color-stop(32%,rgba(242,242,183,1)), color-stop(66%,rgba(238,237,173,1)), color-stop(100%,rgba(231,230,160,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(245,244,193,1) 0%,rgba(242,242,183,1) 32%,rgba(238,237,173,1) 66%,rgba(231,230,160,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(245,244,193,1) 0%,rgba(242,242,183,1) 32%,rgba(238,237,173,1) 66%,rgba(231,230,160,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(245,244,193,1) 0%,rgba(242,242,183,1) 32%,rgba(238,237,173,1) 66%,rgba(231,230,160,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(245,244,193,1) 0%,rgba(242,242,183,1) 32%,rgba(238,237,173,1) 66%,rgba(231,230,160,1) 100%); /* W3C */
}
.message-style-1 .message-content:after{
	content:"";
	display: block;
	clear: both;
}
.message-style-1 a{
	font-weight:bold;
}


/***********************************************************************************************************************************/
/* MESSAGE - SOWCLE (MESSAGEBOX) ***************************************************************************************************/
/***********************************************************************************************************************************/

#messageBox {
	position: absolute;
	overflow: auto;
	z-index: 2000;
	width: 400px;
}
#messageBox .content {
	font-weight: bold;
}
#messageBoxInline {
	position:relative;
	z-index:1;
}
#messageBoxTop {
	animation-fill-mode: forwards;
	animation-iteration-count: once;
	background: #fdfff0;
	box-shadow: 0 0px 20px 0 rgba(0,0,0,.3);
	color: #3d251b;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	height: 40px;
	left: 0;	
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 1000;
}
#messageBoxTop {
	-o-animation-iteration-count: once;
	-o-animation-fill-mode: forwards;
	-moz-animation-iteration-count: once;
	-moz-animation-fill-mode: forwards;
	-webkit-animation-iteration-count: once;
	-webkit-animation-fill-mode: forwards;
}
#messageBoxTop .grid-cell {
	padding-top: 6px;
	padding-bottom: 6px;
}
#messageBoxTop.opening {
	-o-animation-name: messageBoxTopOpening;
	-o-animation-duration: 1s;
	-moz-animation-name: messageBoxTopOpening;
	-moz-animation-duration: 1s;
	-webkit-animation-name: messageBoxTopOpening;
	-webkit-animation-duration: 1s;
	animation-name: messageBoxTopOpening;
	animation-duration: 1s;
}
#messageBoxTop.closing {
	-o-animation-name: messageBoxTopClosing;
	-o-animation-duration: .5s;
	-moz-animation-name: messageBoxTopClosing;
	-moz-animation-duration: .5s;
	-webkit-animation-name: messageBoxTopClosing;
	-webkit-animation-duration: .5s;
	animation-name: messageBoxTopClosing;
	animation-duration: .5s;
}
.messageBoxTop__close{
	fill: #ad5b50;
	position: absolute;
	top: 13px;
}

/*SPECIFIQUE ADMIN*/
.admin .messageBoxTop__close{
	right: 10px;
}
.body--ltr .messageBoxTop__close{
	right: 10px;
}
.body--rtl .messageBoxTop__close{
	left: 10px;	
}
.messageBoxTop__close:hover{
	transform: scale(1.1);
}

/* opening animation */

@-o-keyframes messageBoxTopOpening {
	from { top: -40px; opacity: 0; }
	to { top: 0; opacity: 1; }
}

@-moz-keyframes messageBoxTopOpening {
	from { top: -40px; opacity: 0; }
	to { top: 0; opacity: 1; }
}

@-webkit-keyframes messageBoxTopOpening {
	from { top: -40px; opacity: 0; }
	to { top: 0; opacity: 1; }
}

@keyframes messageBoxTopOpening {
	from { top: -40px; opacity: 0; }
	to { top: 0; opacity: 1; }
}

/* closing animation */

@-o-keyframes messageBoxTopClosing {
	from { top: 0; opacity: 1; }
	to { top: -40px; opacity: 0; }
}

@-moz-keyframes messageBoxTopClosing {
	from { top: 0; opacity: 1; }
	to { top: -40px; opacity: 0; }
}

@-webkit-keyframes messageBoxTopClosing {
	from { top: 0; opacity: 1; }
	to { top: -40px; opacity: 0; }
}

@keyframes messageBoxTopClosing {
	from { top: 0; opacity: 1; }
	to { top: -40px; opacity: 0; }
}
</pre></body></html>