/* Strich unter Menüpunkten */

#astroid-header .astroid-nav > li > a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
        background-color: #008080;
        background-position-x: 0%;
        background-position-y: 0%;
        background-repeat: repeat;
        background-attachment: scroll;
        background-image: none;
        background-size: auto;
        background-origin: padding-box;
        background-clip: border-box;
    transition: width 0.3s;
        transition-property: width;
        transition-duration: 0.3s;
        transition-timing-function: ease;
        transition-delay: 0s;
}

#astroid-header .astroid-nav > li > a.active::after, #astroid-header .astroid-nav > li > a:hover::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #008080;
background-position-x: 0%;
background-position-y: 0%;
background-repeat: repeat;
background-attachment: scroll;
background-image: none;
background-size: auto;
background-origin: padding-box;
background-clip: border-box;
	transition-property: width;
	transition-duration: 0.3s;
	transition-timing-function: ease;
	transition-delay: 0s;
}

/* Strich unter Menüpunkten Ende */
