.lec-switcher {
  --lec-orange: #ef7d00;
  --lec-ink: #4f5a54;
  --lec-border: #d7e1db;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 4px;
  color: var(--lec-ink);
  background: #fff;
  border: 1px solid var(--lec-border);
  border-radius: 10px;
  box-shadow: none;
  font-family: inherit;
  line-height: 1;
  vertical-align: middle;
}

.lec-switcher *,
.lec-switcher *::before,
.lec-switcher *::after { box-sizing: border-box; }

.lec-switcher--floating {
  position: fixed;
  z-index: 99999;
  left: 16px;
  bottom: 16px;
  box-shadow: 0 8px 24px rgba(13, 47, 34, .14);
}

.lec-switcher__drag-handle {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 32px;
  place-items: center;
  color: #79837d;
  cursor: grab;
  font-size: 1rem;
  line-height: 1;
  touch-action: none;
  user-select: none;
}

.lec-switcher--floating.is-dragging .lec-switcher__drag-handle { cursor: grabbing; }

.lec-switcher__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  gap: 4px;
  margin: 0;
  padding: 0;
  background: transparent;
}

.lec-switcher button.lec-switcher__button {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  display: block !important;
  min-width: 50px !important;
  min-height: 32px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 5px 9px !important;
  color: var(--lec-ink) !important;
  background: #fff !important;
  border: 1px solid var(--lec-border) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: .03em !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  transition: border-color .16s ease, color .16s ease, background-color .16s ease !important;
}

.lec-switcher button.lec-switcher__button:hover,
.lec-switcher button.lec-switcher__button:focus-visible,
.lec-switcher button.lec-switcher__button.is-active {
  color: var(--lec-orange) !important;
  background: #fff !important;
  border-color: var(--lec-orange) !important;
}

.lec-switcher button.lec-switcher__button:focus-visible {
  outline: 2px solid var(--lec-orange) !important;
  outline-offset: 2px !important;
}

@media (max-width: 480px) {
  .lec-switcher--floating { left: 10px; bottom: 10px; }
}
