.sticky-top {
	position: inherit;
}
#mainNav {
	/*background: rgb(255,255,255);
		background: -webkit-linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,250,250,1) 56%, rgba(250,250,250,1) 100%);
		background: -o-linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,250,250,1) 56%, rgba(250,250,250,1) 100%);
		background: linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,250,250,1) 56%, rgba(250,250,250,1) 100%); */
		padding: 0;
	background-color: #fff;
}
#mainNav .nav-item .nav-link {
	color: #E92F2D;
}

/*Dropdown-menu*/
.dropdown-menu {
	box-shadow: none;
}
.dropdown-item {
	font-size: 14px;
	padding: 0.75rem 6rem 0.75rem 1.5rem;
}
.dropdown-menu li:not(:last-child) {
		border-bottom: 1px dotted rgba(22,22,22,0.35);
	}
.dropdown-item:hover,
.dropdown-item:focus {
	background: #009DE2;
	color: #fff;
}

/*Dropdown Navigation*/
.navbar-nav.sm-collapsible .sub-arrow {
	border: 0;
}
.sub-arrow:before {
		position: absolute;
		content: '\ea73';
		font-family: IcoFont !important;
		right: 5px;
		top: 0px;
		padding-right: 5px;
	}
.navbar-nav.sm-collapsible .sub-arrow::before {
	content: '\ea73';
}
.navbar-nav.sm-collapsible .show > a > .sub-arrow::before {
	content: '\ea76';
}

@media (min-width: 992px) {
	.sticky-top {
	position: sticky;
}
	#mainNav {
		/*background: rgb(255,255,255);
		background: -webkit-linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,250,250,1) 56%, rgba(250,250,250,1) 100%);
		background: -o-linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,250,250,1) 56%, rgba(250,250,250,1) 100%);
		background: linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,1) 49%, rgba(250,250,250,1) 56%, rgba(250,250,250,1) 100%); */
		background-color: #fff;
		padding: 0;
}
	#mainNav.navbar-shrink {
		background-color: #fff;
	}
	#mainNav .nav-item .nav-link {
		color: #000;
		font-size: 14px;
		font-weight: lighter;
		padding: 2.5em 1.75em;
		text-transform: uppercase;
	}
	#mainNav .nav-item:hover {
		background-color: #DCDCDC;
	}
	#mainNav .nav-item:hover .nav-link {
		color: #fff;
	}
	.navbar .nav-item {
		border-left: 1px solid rgba(255,255,255,0.05);
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}
	.navbar .nav-item.dropdown {
		padding-right: 15px;
	}
	
	
	
	
	
	
	
	.sub-arrow {
		border: 0 !important;
	}
	.sub-arrow:before {
		position: absolute;
		content: '\ea73';
		font-family: IcoFont !important;
		right: 5px;
		top: 35px;
		padding-right: 5px;
	}
	
	
	/*Dropdown-menu*/
	.dropdown-menu {
		border-radius: 0rem !important;
		margin: 0;
		padding: 0;
		
		min-width: 15rem !important;
	}
	.dropdown-item {
		font-size: 14px;
		padding: 1rem 6rem 1rem 1.5rem;
	}
	.dropdown-menu li:not(:last-child) {
		border-bottom: 1px dotted rgba(22,22,22,0.35);
	}
	.dropdown-item:hover,
	.dropdown-item:focus {
		padding-left: 2rem;
		color: #000;
		background: #DCDCDC !important;
	}
}



/*Fade Effekt für die Dropdowns*/
@media (min-width: 992px) {
@-webkit-keyframes fadeIn {
    0% {
    opacity: 0;
    transform: translate(0, 20px);
    }
    100% {
    opacity: 1;
    transform: translate(0, 0);
    }
}
@keyframes fadeIn {
    0% {
    opacity: 0;
    transform: translate(0, 20px);
    }
    100% {
    opacity: 1;
    transform: translate(0, 0);
    }
}
li.dropdown:hover ul.dropdown-menu {
    opacity: 1;
}
li.dropdown:hover ul.dropdown-menu {
  
    -webkit-animation: fadeIn 0.2s;
    animation: fadeIn 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
}
