:host {
  display: block;
}

.popout__menu-header {
  display: flex;
}

.popout__menu-content {
  z-index: 9999;
  margin-left: 0.1vw;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  padding: 10px;
  position: absolute;
  background-color: #f8f8f8;
}

.popout__menu-content:before {
  content: '';
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f8f8f8;
}

.popout__menu-content.mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.popout__menu-content.tablet {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

.popout__menu-button {
  border: none;
  background-color: transparent;
  outline: none;
  padding: 0;
  min-height: 30px;
  min-width: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: 0.5rem;
}

.popout__menu-button.mobile,
.popout__menu-button.tablet {
  min-width: 0px;
  margin-left: auto;
}

.popout__button-text-open {
  text-decoration: underline;
}

.popout__menu-icon {
  flex: 1;
}

.popout__additional.mobile ::slotted([slot='additional']),
.popout__additional.tablet ::slotted([slot='additional']) {
  width: 100%;
  margin-left: 0px;
}
