/* Feature switches are real buttons isolated from form and navigation defaults. */
.pc-feature[data-feature-toggle] {
  display: grid !important;
  grid-template-columns: 31px minmax(0, 1fr) 38px;
  align-items: center;
  justify-content: initial !important;
  width: 100%;
  min-height: 54px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .065) !important;
  border-radius: 9px;
  background: rgba(255, 255, 255, .025) !important;
  color: inherit !important;
  text-align: left;
  cursor: pointer;
  transition: .16s;
}

.pc-feature[data-feature-toggle]:focus-visible {
  outline: 2px solid var(--pc);
  outline-offset: 2px;
}

.pc-feature[data-feature-toggle][aria-checked="true"] .pc-switch {
  background: linear-gradient(90deg, #08c8d8, #49b9ff);
}

.pc-feature[data-feature-toggle][aria-checked="true"] .pc-switch::after {
  left: 19px;
  background: #fff;
}
