#et-top-navigation .dwms-switcher {
    display: none;
    position: relative;
    align-items: center;
    margin: 0 8px;
}

@media (max-width: 980px) {
    #et-top-navigation .dwms-switcher {
        display: inline-flex;
        transform: translate(38px, 3px);
    }
}

#et-top-navigation .dwms-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

#et-top-navigation .dwms-flag {
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

#et-top-navigation .dwms-code {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

#et-top-navigation .dwms-caret {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .15s ease;
}

#et-top-navigation .dwms-switcher--open .dwms-caret {
    transform: rotate(-135deg) translateY(1px);
}

#et-top-navigation .dwms-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin: 8px 0 0;
    padding: 6px 0;
    list-style: none;
    min-width: 120px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    z-index: 999;
}

#et-top-navigation .dwms-switcher--open .dwms-dropdown {
    display: block;
}

#et-top-navigation .dwms-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
}

#et-top-navigation .dwms-dropdown li a:hover {
    background: rgba(0, 0, 0, .05);
}
