.banner {
  border-radius: 15px;
  padding: 30px;
  color: white; // override; scheme colors not working yet
  width: 400px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  @media (max-width: 400px) {
    border-radius: 0;
    width: 100%;
    right: 0;
    bottom: 0;
  }
}

.learnMoreLink {
  // override; scheme colors not working yet
  color: inherit;
}

.dialog[data-reach-dialog-overlay] {
}
.dialog[data-reach-dialog-content] {
}

.dialogOverlay {
  z-index: 2;
}

.dialogContent[data-reach-dialog-content] {
  width: 500px;
  max-width: calc(100% - 30px);
  border-radius: 10px;

  @media (max-width: 400px) {
    width: 360px;
  }

  .btn-close {
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .options input[type='checkbox'] {
    margin-right: 0.6em;
  }

  .btn-ghost {
    color: black;
  }
}

.category {
  cursor: pointer;
  user-select: none;
  display: flex;
  margin: -0.5rem;
  opacity: 0.6;
  &.enabled {
    opacity: 1;
  }
}

.categoryToggle {
  flex: 0 0 auto;
  padding: 0.5rem;
  transform: translateY(-0.125rem);
}

.categoryDescription {
  flex: 1 1 auto;
  padding: 0.5rem;
}

.toggleLabel {
  display: flex;
  align-items: center;
  opacity: 0.5;
  &:global {
    &.enabled {
      opacity: 1;
    }
  }
}

.toggleDescription {
  opacity: 0.5;
  &:global {
    &.enabled {
      opacity: 1;
    }
  }
}

.toggleOuter {
  border: 2px solid currentColor;
  padding: 4px;
  width: 80px;
  display: inline-flex;
  border-radius: 50vmin;
  opacity: 0.5;
  &:global {
    &.enabled {
      opacity: 1;
    }
  }
}

.toggleInner {
  display: inline-block;
  background: none;
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 50%;
  margin-right: auto;
  transform: translateX(0px);
  transition: transform 100ms ease-in-out;
  &:global {
    &.enabled {
      border-color: #e42ebb;
      background-color: #e42ebb;
      transform: translateX(32px);
    }
  }
}
