/* Breadcrumb container */
.breadcrumb-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 8px 0px;
    gap: 8px;
    width: 100%; /* Full width of the viewport */
    min-height: 36px;
    background: var(--paleta-principal-blanco-todo-puede-pasar, #FFFFFF);
    flex-wrap: wrap;
}

/* Breadcrumb item container */
.breadcrumb-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;
    height: 20px;
    flex: none;
    flex-grow: 0;
}

/* Breadcrumb text */
.breadcrumb-text {
    max-width: 140px;
    height: 20px;
    font-family: 'Sura Sans';
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 20px;
    color: #0033A0;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Breadcrumb icon */
.breadcrumb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* Current breadcrumb item */
.breadcrumb-current {
    height: 20px;
    font-family: 'Sura Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #0033A0;
    flex: none;
    order: 0;
    flex-grow: 1;
}

/* Ellipsis item */
.breadcrumb-ellipsis {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;
    height: 20px;
    flex: none;
    flex-grow: 0;
    cursor: pointer;
}

.breadcrumb-ellipsis-text {
    font-family: 'Sura Sans';
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 20px;
    color: #0033A0;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.breadcrumb-ellipsis-icon {
    width: 20px;
    height: 24px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

/* Title container */
.contenedor-titulo-pagina {
    width: 100%; /* Full width of the viewport */
    padding: 8px 0px;
    color: var(--paleta-principal-azul-cielo-latino);
}