/* Container */ .website-switcher { position: relative; display: inline-flex; align-items: center; } /* CURRENT FLAG */ .website-switcher .switcher-current { border: 1px solid #ddd; padding: 1px; } .website-switcher .switcher-current img { width: 28px !important; height: auto !important; display: block; } /* Dropdown */ .website-switcher .switcher-dropdown { display: none; position: absolute; top: 0; left: 0; background: #000; border: 1px solid #ddd; padding: 1px 2px; list-style: none; z-index: 99999; min-width: 30px; } /* Items */ .website-switcher .switcher-dropdown li { margin: 4px 0; } /* Flags in Dropdown */ .website-switcher .switcher-dropdown img { width: 28px !important; height: auto !important; display: block; } /* Hover */ .website-switcher:hover .switcher-dropdown { display: block; }