.navArea {
	background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    display: flex;
    flex-flow: wrap;
}

.nav_entry {
	font-size: 25px;
    margin: 10px 0px 10px 10px;
    cursor: pointer;
    padding: 5px;
    color: white;
    transition: background-color 0.5s ease-out;
    border-radius: 6px;
	height: 50px
}

.nav_entry:hover {
	background: rgba(255,255,255,0.3);
}

.nav_entry_choosen {    
	margin: 10px 0px 10px 10px;
    cursor: pointer;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 6px;
    font-size: 25px;
	height: 50px
}

.nav_entry_choosen:before {
	/* content: '>'; */
    position: absolute;
    left: 217px;
	color: #118AB2;
	font-weight: bolder;
}
