
/**********************************************************************************/
/* MAIN MENU */
/**********************************************************************************/

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
	  /* background-color: #afd156; */
    min-width: 290px;
	margin-top: 68px; /*70*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    /* padding: 12px 16px; */
	 padding: 6px 16px 10px 20px;
    z-index: 999999;
	border-top: 2px solid #afd156;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/*UNTERMENÜPUNKTE*/


.sub{
	float:left!important;
	display: block;
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 4px 0px 4px 0px!important;
	text-transform: uppercase;text-transform: uppercase;
	color: #666!important;
	/* color: #fff!important; */
}
.sub:hover{
	border-bottom: 1px solid #ccc!important;
	color: #afd156!important;
}

.sub:before{
    /* content:"\2022 "; */
    /* color:#afd156; */
}



/**********************************************************************************/
/* SMALL MENU TOP */
/**********************************************************************************/

.dropdownsmall {
    position: relative;
    display: inline-block;
}

.dropdown-content-small {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
	  /* background-color: #afd156; */
    min-width: 290px;
	
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    /* padding: 12px 16px; */
	 padding: 2px 5px 2px 5px;
    z-index: 999999;
	border-top: 2px solid #afd156;
}
@media(min-width:768px) {.dropdown-content-small {margin-top: 5px; /*70*/}}
@media(min-width:992px) {.dropdown-content-small {margin-top: 10px; /*70*/}}
@media(min-width:1200px) {.dropdown-content-small {margin-top: 10px; /*70*/}}


.dropdownsmall:hover .dropdown-content-small {
    display: block;
}/*UNTERMENÜPUNKTE*/

.dropdown-content-small .sub{
	float:left!important;
	display: block;
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 4px 0px!important;
	text-transform: uppercase;
	color: #666!important;
	font-size: 14px;
	margin: 5px 5px 5px 15px;
	/* color: #fff!important; */
}
.dropdown-content-small .sub:hover{
	border-bottom: 1px solid #ccc!important;
	color: #afd156!important;
	text-decoration: none;
}

.sub:before{
    /* content:"\2022 "; */
    /* color:#afd156; */
}

/* mobile sub */
.mobsub{margin-left: 5px; font-size: 14px;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    line-height: 16px !important;
}
.mobsub:before{
    content:"\2022";
	margin-right: 10px;
    /* color:#afd156; */
}

