/* Masquer Oceanwp toolbar */
.oceanwp-toolbar{
	height: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	border: none !important;
	overflow: visible !important;
}

/* cercle plus grand */
.oceanwp-off-canvas-filter{
	position: fixed !important;
	bottom: 20px !important;
	right: 5px !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 24px 24px !important;
	background: #f79b6d !important;
	border: 1px solid #f5f5f5 !important;
	border-radius: 36px !important;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
	font-size: 16px !important;
	color: #333 !important;
	z-index: 9999 !important;
}

/* Texte du bouton */
.oceanwp-off-canvas-filter .off-canvas-filter-text{
	font-size: 12px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	color: white !important;
}

/* Cacher licne hamburger dorigine */
.oceanwp-off-canvas-filter > i{
	display: none !important;
}

/* icne encore plus visible */
.oceanwp-off-canvas-filter::before{
	content: "\f1de";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 22px;
	line-height: 1;
	margin-right: 0;
	speak: none;
	display: inline-block;
	color: white !important;
}

/* Hover */
.oceanwp-off-canvas-filter:hover{
	background: #b1cdc8 !important;
}

/* 768px and smaller screen sizes */
@media (max-width: 768px){

	/* Texte du bouton */
	.oceanwp-off-canvas-filter .off-canvas-filter-text{
		display: none !important;
	}
	
	/* cercle plus grand */
	.oceanwp-off-canvas-filter{
		width: 56px !important;
		height: 56px !important;
		right: 0px !important;
		padding: 0 !important;
		min-width: 0 !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0 !important;
		border: 1px solid #b1cdc8 !important;
	}
	
	/* icne encore plus visible */
	.oceanwp-off-canvas-filter::before{
		font-size: 24px !important;
		margin: 0 !important;
	}
	
}