/* ---- Lang selector ---- */
.lang-select {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.lang-select img{
    width: 20px;
    height: 20px;
    border-radius: 50px;
}

.lang-select span,
.lang-select p{
    font-weight: 500;
    margin: 0;
}

.lang-select .dropdown {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid var(--color-grey);
    border-radius: 2px;
    width: 100%;
    max-width: 350px;
    z-index: 1000;
}

.lang-select .dropdown li {
    padding: .625rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-select .dropdown li:hover {
    background-color: #F4F3F3;
}

.lang-select .btn-select {
    all: unset;
    padding: .5rem .625rem;
    border-radius: 2px;
    border: 1px solid var(--color-grey);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media screen and (min-width: 992px){
    .lang-select .btn-select{
        border: none;
        padding: 0 .625rem;
    }

    .lang-select .dropdown{
        border: none;
        background: #F8F8F8;
    }
}