.magenest-lang-switcher {
    position: relative;
}

.magenest-lang-switcher .lang-dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 120%;
    right: 0;
    background-color: #fff;
    min-width: 170px;
    transition: all 0.3s ease;
    z-index: 99;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -moz-border-radius: 5px;
    list-style-type: none;
    padding: 10px 0;
}

.magenest-lang-switcher .lang-dropdown a {
    padding: 0 15px;
    color: #333333;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.magenest-lang-switcher .lang-dropdown a:hover {
    color: #153674;
}

.magenest-lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    /*top: 100%;*/
}

.magenest-lang-switcher .lang-selected {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}

.magenest-lang-switcher .lang-selected .lang-code {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.magenest-lang-switcher .lang-selected .icon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}