.information-alert {
  position: fixed;
  top: calc(var(--sticky-topbar-height, 150px) + 8px);
  left: 50%;
  z-index: 142;
  display: grid;
  width: min(calc(100% - clamp(24px, 8vw, 32px)), 440px);
  min-height: 52px;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #f0c84b;
  border-radius: 8px;
  background: #fff7cc;
  padding: 9px 12px;
  color: #191f28;
  font-family: inherit;
  text-align: left;
  transform: translateX(-50%);
}

.feature-panel-open .information-alert {
  top: max(calc(env(safe-area-inset-top) + 62px), 62px);
}

.information-alert[hidden] {
  display: none;
}

.information-alert-signal {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6b7684;
}

.information-alert[data-tone="positive"] .information-alert-signal {
  background: #f04452;
}

.information-alert[data-tone="negative"] .information-alert-signal {
  background: #3182f6;
}

.information-alert-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.information-alert-copy strong {
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.information-alert-copy small {
  overflow: visible;
  color: #333d4b;
  font-size: clamp(12px, 3.333vw, 13px);
  font-weight: 700;
  line-height: 18px;
  text-overflow: unset;
  white-space: normal;
  word-break: keep-all;
}

.information-alert em {
  color: #8a6200;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 18px;
  white-space: nowrap;
}

.information-alert.is-new {
  animation: information-alert-pulse 620ms ease-in-out 3;
}

@keyframes information-alert-pulse {
  50% {
    border-color: #e4ad00;
    background: #ffe999;
    transform: translateX(-50%) scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .information-alert.is-new {
    animation: none;
  }
}

.ps-positions-toggle > span {
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.ps-positions-toggle > em {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 6px;
  place-items: center;
  border-radius: 6px;
  background: #edf5ff;
  color: #1769e5;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.cosmetic-item-icon {
  display: block;
  width: 68px;
  height: 68px;
  overflow: visible;
}
