.adbanner{
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--adbanner-height);
	position: relative;
	background: var(--wp--preset--color--theme-rouge);
	color: var(--wp--preset--color--theme-blanc);
	padding-right: 50px;
	z-index: 11;
}
body.adbanner-opened .adbanner{
	display: flex;
}
	.adbanner_content{
		display: flex;
		flex-direction: row;
		align-items: center;
		height: 100%;
		width: 100%;
		max-width: 1000px;
		overflow: hidden;
	}
		.adbanner_content-scroller{
			display: flex;
			flex-direction: row;
			align-items: center;
			gap: 10px;
		}
			.adbanner_icon{
				font-size: 23px;
				margin-left: 5px;
				color: var(--wp--preset--color--theme-blanc);
			}
			.adbanner_text{
				color: var(--wp--preset--color--theme-blanc);
				font-size: 16px;
				font-weight: bold;
				white-space: nowrap;
			}
    .adbanner_close{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		height: 100%;
		width: 40px;
		font-size: 16px;
		position: absolute;
		right: 0;
		top: 0;
		cursor: pointer;
	}