#langsel {
	display: none;
	background-color: #FFFFFF;
	position: absolute;
	right: 25px;
	top: 10px;
	/*display: flex;*/
	/* padding: 5px 10px 5px 10px;*/
	border-radius: 3px;
	cursor: pointer;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
     -moz-user-select: none; /* Old versions of Firefox */
     -ms-user-select: none; /* Internet Explorer/Edge */
     user-select: none;
}

#langsel.expanded {
	border-radius: 3px 3px 0px 0px;
}

#langselpos {
	position: relative;
	display: flex;
	padding: 5px 10px 5px 10px;
	min-width: 85px;
}

#langsellabel {
	height: 100%;
	display: flex;
	align-items: center;
}

#langsel > ul {
	display: none;
	position: absolute;
	top: 100%;
	background-color: #EEEEEE;
	padding: 0px;
	margin: 0px;
	width: 100%;
}

#langsel.expanded > ul {
	display: block;
	border-radius: 0px 0px 3px 3px;
}

#langsel > ul > li {
	padding: 5px 10px 5px 10px;
	list-style-type: none;
	display: flex;
	align-items: center;
}

#langsel > ul > li:hover {
	background-color: #3f3f93;
	color: #FFFFFF;
}

#langsel > ul > li > img {
	margin-right: 10px;
	width: 20px;
}

#langselpos > div > img {
	margin-right: 10px;
	width: 20px;
}