.switcher {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  text-decoration: none !important;
  color: var(--base-text-color);

  & label {
    font-weight: normal;
    margin: 0;
  }

  & p {
    font-size: 0.825rem;
    color: var(--base-muted-color);
    margin-top: 0.1rem;
  }

  & .toggle {
    background-color: light-dark(var(--gray-300), var(--gray-600));
    width: 42px;
    height: 23px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: 0.25rem;

    &.on {
      justify-content: flex-end;
      background-color: var(--dark-purple);
    }

    & .switch {
      border-radius: 100%;
      background-color: white;
      width: 16px;
      height: 16px;
      display: block;
    }
  }
}
