*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
}

:host {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  width: 100%;
}

:host([sticky]) {
  position: relative;
  z-index: 300;
}

.container {
  position: relative;
  z-index: 400;
  pointer-events: none;
}
.container * {
  pointer-events: auto;
}

::slotted(*[slot=mobile]) {
  display: inherit;
}

::slotted(*[slot=desktop]) {
  display: none;
}

@media (min-width: 62em) {
  ::slotted(*[slot=mobile]) {
    display: none;
  }
  ::slotted(*[slot=desktop]) {
    display: inherit;
  }
}
.sticky {
  position: sticky;
  top: 0;
}
@media (min-width: 62em) {
  .sticky {
    position: relative;
    top: unset;
  }
}