.psns-bar {
  width: 100%;
  background: #eeeae4;
  color: #444;
  font-size: 13px;
}

.psns-viewport {
  --psns-height: 40px;
  height: var(--psns-height);
  overflow: hidden;
  position: relative;
}

.psns-list {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  transform: translateY(0);
  will-change: transform;
  display: block;
}

.psns-item {
  height: var(--psns-height);
  line-height: var(--psns-height);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  justify-content: center;
}

/* Enlaces dentro del aviso */
.psns-item a.psns-link {
  text-decoration: underline;
}

/* Botón corto */
.psns-item .psns-btn {
  display: inline-block;
  padding: 1px 0px;
  border-radius: 0px;
  border-bottom: 1px solid currentColor;
  line-height: 1.2;
  text-decoration: none;
  font-size: 14px;
  vertical-align: middle;
}
.psns-item .psns-btn:hover,
.psns-item .psns-btn:focus {
  text-decoration: none;
  opacity: .9;
  outline: none;
}