.row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.row.between {
  justify-content: space-between;
}
.row.right {
  justify-content: flex-end;
}
.mt-sm {
  margin-top: 0.5rem;
}
.mt {
  margin-top: 1rem;
}
.mt-lg {
  margin-top: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pv-gap);
}
.scroll-y {
  overflow: auto;
}
.text-dim,
.muted {
  color: var(--pv-text-dim);
}
.hidden {
  display: none !important;
}

#issueDate{
  color: var(--pv-text-dim);
}


/* Herramientas de texto */
.text_alined_center{
  text-align: center;
}