:host {
  /**
   * @prop --background: Background of the Chip Button
   * @prop --color: Color of the Chip Button
   * @prop --border-radius: Border radius of the Chip Button
   * @prop --margin-top: Margin top of the Chip Button
   * @prop --margin-end: Margin end of the Chip Button
   * @prop --margin-bottom: Margin bottom of the Chip Button
   * @prop --margin-start: Margin start of the Chip Button
   * @prop --width: Width of the Chip Button
   * @prop --height: Height of the Chip Button
   */
  --border-radius: 50%;
  --margin-top: 0;
  --margin-end: 0;
  --margin-bottom: 0;
  --margin-start: 0;
  --width: 32px;
  --height: 100%;
  width: var(--width);
  height: var(--height);
  font-size: 32px; }

:host(.chip-button-clear) {
  --background: transparent;
  --color: var(--ion-text-color-step-400, #666666); }

:host(.chip-button-solid) {
  --background: var(--ion-color-primary, #3880ff);
  --color: var(--ion-color-primary-contrast, #fff); }

:host(.chip-button-solid.ion-color) .chip-button-native {
  background: var(--ion-color-base);
  color: var(--ion-color-contrast); }

:host(.chip-button-clear.ion-color) .chip-button-native {
  background: transparent;
  color: var(--ion-color-base); }

.chip-button-native {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-overflow: inherit;
  text-transform: inherit;
  text-align: inherit;
  white-space: inherit;
  color: inherit;
  border-radius: var(--border-radius);
  margin: var(--margin-top) var(--margin-end) var(--margin-bottom) var(--margin-start);
  position: relative;
  width: var(--width);
  height: var(--height);
  border: 0;
  outline: none;
  background: var(--background);
  color: var(--color);
  appearance: none; }

.chip-button-inner {
  display: flex;
  flex-flow: row nowrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }
