<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom elements */
/*---------------------------------------------------
      LESS Elements 0.9
    ---------------------------------------------------
      A set of useful LESS mixins
      More info at: http://lesselements.com
    ---------------------------------------------------*/
.languagePickerWidget {
  position: relative;
}
.languagePickerWidget .langIcon {
  width: 20px;
  cursor: pointer;
}
.languagePickerWidget .langDropdown {
  display: none;
  position: absolute;
  top: 35px;
  right: -8px;
  background-color: white;
  border: 0;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 0 5px;
}
.languagePickerWidget .langDropdown .langBlock {
  display: block;
  text-align: right;
}
.languagePickerWidget .langDropdown .langLabel {
  position: relative;
  display: block;
  padding-right: 30px;
  white-space: nowrap;
  margin: 5px 0;
  color: #4a4a4a;
}
.languagePickerWidget .langDropdown .langIcon {
  position: absolute;
  right: 2px;
  top: 2px;
}
</pre></body></html>