/* 
^ Styling the drop-down menu for language switcher
* Author : Fadi Nouh
* URL : https://bluebit.dev
* Repository: https://github.com/bluebits-academy/language-switcher
*/

@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css');
body {
    font-family: 'Didact Gothic', sans-serif;
    color:#333;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}



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

.lang-menu .selected-lang {
    display: flex;
    justify-content: space-between;
    line-height: 1;
    cursor: pointer;
    --selected-flag: url(../flags/ro.png);
}

.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: var(--selected-flag);
}

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

.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(../flags/de.png);
}

.uk:before {
    background-image: url(../flags/uk.png);
}

.fr:before {
    background-image: url(../flags/fr.png);
}

.ro:before {
    background-image: url(../flags/ro.png);
}
.es:before {
    background-image: url(../flags/es.png);
}

.it:before {
    background-image: url(../flags/it.png);
}

.hu:before {
    background-image: url(../flags/hu.png);
}
.lang-menu:hover ul {
    display: block;
}
