
#login_register {
	width: 100%;
}

#login_register_box {

	background: #F48800;

	width: auto;
	padding-left: 60px;
	padding-right: 15px;
	float: right;
	height: 35px;
	text-align: center;

	line-height: 35px;
	

	/*
    border-width: 5px 5px 15px 15px;
    border-style: solid;
    border-color: #F48800 #F48800 transparent transparent ;
	*/

	/*clip-path: polygon(0 0, 100% 0%, calc(100% - 32px) 100%, 0% 100%);*/
	clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

#login_register_box a:link, a:visited {
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: white;
}




#menu {

	background-color: #ffffff;

	/*background: linear-gradient(to left, #146da2,transparent); */
	padding-left: 150px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
	font-family: 'Roboto', sans-serif;
	padding: 5px 0;position: relative;
	z-index: 3;
	left: 0;
	top:55px;
	width: 92%;
	font-weight: bold;
	animation: left_to_right 1s ease-out;
	height: 60px;
}

#menu ul {
	margin: 0;
	padding: 0;
	display:flex;
	align-items: center;

}

#menu ul li {
	list-style-type: none;
	margin-right: 3%;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	box-sizing: border-box;
	
	display:block;

	display: inline-block;
	vertical-align: middle;

}


#menu ul li a {
	color: #0a8cbb;
	position: relative;
	display: block;
	margin: 0px;
	text-decoration: none;
	font-size: 1em;


}
#menu ul li a::before {

	content: '';
    display: block;
    position: absolute;
	bottom: -15px;
    left: 0;
    height: 3px;
    width: 100%;
	background-color: #F48800;
	transform: scale(0);
	transition: transform 0.5s;

}
#menu ul li a:not(#logolink):hover::before {
	transform-origin: top left;
	transform: scale(1,1);
}
#logolink_mobile {
	display: none;
        /*float: left;*/
}
#menu ul li:first-of-type  {
	margin-right: auto;
	margin-left: 10%;
}
#logo {
	/*width: 120px;*/
	height: 60px;
	/*transform: scale(1.8);*/
	display:block;
	margin-right: 20px;
	display: inline-block;
	vertical-align: middle;
}

.orange {
	color: #F48800 !important;
}
	
	



@keyframes left_to_right { 
	from { 
		width: 0%;
	} 
	to { 
		width: 92%;
	} 
}


/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #146da2; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #F48800; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #F48800; 
}

/* Text markieren */

::selection {background: #F48800; color: #ffffff;}
::-moz-selection {background: #F48800; color: #ffffff;}