/* =========================
   LANGUAGE SELECTOR
========================= */

.language-selector {
    position: absolute;

    left: 12px;
    top: 50%;

    transform: translateY(-50%);
}

.language-button {
    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: transparent;

    font-size: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background 0.15s ease;
}

.language-button:hover {
    background: #f0f0f0;
}


.language-menu {
    position: absolute;

    top: 45px;
    left: 0;

    width: 145px;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.12);

    padding: 6px;

    display: none;

    overflow: hidden;
}

.language-menu.active {
    display: block;
}


.language-option {
    width: 100%;

    padding: 9px 10px;

    border: none;
    border-radius: 8px;

    background: transparent;

    text-align: left;

    font-size: 14px;

    cursor: pointer;
}

.language-option:hover {
    background: #f3f3f3;
}