.horizontal {
    display: flex;
    align-items: center;
    min-width: 0;
}
.vertical {
    display: flex;
    flex-direction: column;
}

.between {
    justify-content: space-between;
}
.start {
    align-items: flex-start !important;
}
.center {
    justify-content: center !important;
}

.texto-fin {
  display: inline-block;       
  max-width: 100%;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis; 
  min-width: 0;  
}

.texto-fin-dos {
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}





.gap40 {
    gap: var(--xxl);
}
.gap30 {
    gap: var(--xl);
}
.gap20 {
    gap: var(--l);
}
.gap10 {
    gap: var(--m);
}
.gap5 {
    gap: var(--s);
}

