*,
*::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;
}

.duet-popup-menu-list {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 950;
  visibility: hidden !important;
  width: max-content;
  min-width: 175px;
  padding: 8px;
  margin: 0;
  color: rgb(8, 42, 77);
  list-style: none;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07), 0 4px 10px 0 rgba(0, 41, 77, 0.15);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 300ms ease, visibility 300ms ease, opacity 300ms ease;
}
.duet-popup-menu-list.open {
  visibility: visible !important;
  opacity: 1;
  transform: scaleY(1);
}
.duet-popup-menu-list.fixed {
  position: fixed;
}
.duet-popup-menu-list.scroll-visible {
  overflow-y: scroll;
  scroll-margin: 20px;
}
.duet-popup-menu-list.duet-theme-turva {
  color: rgb(23, 28, 58) !important;
  background: rgb(255, 255, 255);
}

::slotted(duet-notification) {
  max-width: 360px;
}

slot {
  --divider-margin: var(--space-x-small, 8px);
}

:host(.duet-theme-turva2) .duet-popup-menu-list.duet-theme-turva {
  color: rgb(23, 42, 59) !important;
}