/**
 * Weglot language switcher styles for KSG.
 *
 * Renders a custom <select.ksg-weglot-select> inside #weglot-switcher,
 * positioned at the top-right of the header bar (.header-bottom).
 */
.header .header-bottom {
  position: relative;
}

.weglot-switcher {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .weglot-switcher {
    right: 8px;
  }
}
.weglot-switcher .ksg-weglot-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 32px;
  min-width: 110px;
  padding: 0 28px 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%231a1a1a' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 7px;
  color: #1a1a1a;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  outline: none;
}

.weglot-switcher .ksg-weglot-select:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* Belt-and-braces: hide any Weglot default floating switcher just in case
   the dashboard configuration re-injects it. */
body > .country-selector,
body > .weglot-container {
  display: none !important;
}

/*# sourceMappingURL=weglot.css.map */
