.lang-menu {
    width: 80px;
    text-align: right;
    font-weight: bold;
    margin-top: 0px;
    position: relative;
	left:0px;
	
}

.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-between;
    line-height: 4;
    cursor: pointer;
}
.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
	position:relative;
	top:18px;
	left:22px;
    background-image: url("slo.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 45px;
    right: -30px;
    width: 100px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
	.lang-menu ul{
	display:inline-block;
	 background: none;
	border: 0px solid #f8f8f8;
	}
	
	}
	.bela{
		color:#fff;
	}


.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

	

.lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
}

.lang-menu ul li:hover {
    background-color: #f2f2f2;
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.de:before {
    background-image: url("ger.png");
}

.en:before {
    background-image: url("eng.png");
}

.sl:before {
    background-image: url("slo.png");
}


.lang-menu:hover ul {
    display: block;
}


@media screen and (max-width: 768px) {
	.lang-menu{
		