*{
    margin: 0;
    padding: 0;
}

#lang-selector{
    position: absolute;
    left: 100%;
    margin-left: 1rem;
    z-index: 1000;
    user-select: none;
    font-size: 15px;
    font-family: Roboto, 'sans-serif';
}

#lang-selector:hover{
    cursor: pointer;
}

#lang-selector.active .x-select{
    display: block;
}

#lang-selector .x-icon{
    text-align: center;
    padding: 0.25rem;
    width: 20px;
    height: 20px;
    background: url("/img/lang.svg") 100% / cover;
}

#lang-selector .x-select{
    display: none;
    position: absolute;
    top: 100%;
    right: -5px;
    width: auto;
    transition: all 0.25s ease;
    background: white;
    box-shadow: 0 0 7px 4px rgb(48 48 48 / 8%);
    border-radius: 6px;
    padding: 8px 5px;
}

#lang-selector .x-option{
    padding: 3px;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 1px;
    font-size: 19px;
}
#lang-selector .x-option:last-child{
    margin-bottom: 0;
}

#lang-selector .x-option:hover{
    background: rgb(248, 179, 140);
}

#lang-selector .x-option.current{
    background: #F0F0F0;
}

#lang-selector .x-option img{
    width: 15px;
    height: 15px;
    margin: 0 11px 0 2px;
}

#lang-selector .x-option a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
