/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 27 2024 | 11:40:42 */
/* CSS Mobile Menu Blur - CSS Code hier einfügen.

Zum Beispiel:
.example {
    color: red;
}

Um dein CSS-Wissen zu prüfen, teste es hier http://www.w3schools.com/css/css_syntax.asp

Kommentarende*/ 

/*  START Divi Mobile Menu START */

html.menu-blur #et-main-area 
{
	top:-30px;
	transition-duration: 1.8s;
	/* filter sind immer für den parent mit childelementen gültig und können nicht zurückgenommen werden */
  	filter: grayscale(79%) blur(4px); 
}

html.menu-blur-out #et-main-area 
{
	 top:-30px;
	 transition-duration: 1.8s;
	 /* filter sind immer für den parent mit childelementen gültig und können nicht zurückgenommen werden */
  	 /* filter: grayscale(0%) blur(0px); */
	filter: unset;
}


