/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 26 2025 | 00:08:31 */
/* Ausgangszustand: Header hat kein negatives Padding */
.headerSticky {
    padding-top: 60px; /* Sicherstellen, dass kein anderes CSS es überschreibt */
    transition: padding-top 1.5s ease, background-color 1.5s ease !important; /* Smooth Transition mit !important */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
	
}

/* Wenn gescrollt wird: Padding oben auf -60px */
.sticky-header {
    padding-top: 0px !important; /* Verwende !important, um alle Konflikte zu umgehen */
	box-shadow: 10px 0px 10px 2px rgba(0, 0, 0, 0.1); /* Schatten hinzufügen */
	background-color: #F3EEEA!important;
}



.headerSticky .jet-mega-menu-item__inner {
    border-radius: 10px; /* Border-Radius beim Hover */
}

.headerAccount .jet-button__plane-hover {
    border-radius: 10px; /* Border-Radius beim Hover */
}

