<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#langswitcher {
    display: inline-block;
    z-index: 999;
    position: relative;
    padding: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    background-color: #ffffff;
}
#langswitcher img {
    display: block;
    height: 20px;
}
#langswitcher {
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.2);
}
#langswitcher &gt; div#lang_list {
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.2);
}
#langswitcher &gt; div#lang_root {
    display: block;
    cursor: pointer;
}
#langswitcher &gt; div#lang_root:before {
    content: 'â–¼';
    vertical-align: sub;
    opacity: 50%;
}
#langswitcher &gt; div#lang_root:hover:after {
    content: attr(tool_tip);
    position: absolute;
    right: 30%;
    top: 20%;
    padding: 5px;
    background-color: rgba(255,255,255,0.9);
    border-color: #d3d3d3;
    border-radius: 5px;
    -moz-border-radius: 5px;
}
#langswitcher.active &gt; div#lang_root:hover:after {
    display: none;
}
#langswitcher &gt; div#lang_root img {
    float: right;
}
#langswitcher &gt; div#lang_list {
    position: absolute;
    top: 25px;
    right: 0;
    margin: 0;
    border-radius: 5px 0 5px 5px;
    -moz-border-radius: 5px 0 5px 5px;
    background-color: #ffffff;
}
#langswitcher &gt; div#lang_list ul {
    list-style: none;
    margin: 0;
    padding: 10px 5px;
}
#langswitcher &gt; div#lang_list {
    display: none;
}
#langswitcher.active &gt; div#lang_list {
    display: block;
}
#langswitcher &gt; div ul li {
    text-align: right;
}
#langswitcher &gt; div ul li a {
    display: inline-flex;
    padding: 5px 0;
    text-decoration-line: none;
    color: inherit;
}
#langswitcher &gt; div ul li:hover {
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.2);
}
#langswitcher &gt; div ul li a img {
    margin-left: 10px;
    display: inline;
}
#langswitcher &gt; div ul li a:before {
    content: attr(lang_name);
    font-weight: bold;
}</pre></body></html>