:root 
{
    --separa-alto-seccion: 10vh
}
html,body
{
    width: 100%;
    height:100%;
    margin: 0;
    padding: 0;
    display:block;
    overflow:hidden;
}
.logo-menu
{
    height:35px;
}

.navbar
{
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: var(--color-white);
    box-shadow: 0 0 10px -1px rgba(0, 0, 0, .1);
}

.tarjeta-datos {
    border-radius: 10px;
    background-color: var(--color-white);
    box-shadow: 0 0 20px -3px rgba(0,0,0,.1);
    padding:var(--padding-1);
}

.flex-vertical-centrado
{
    display:flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.mt--1 {
    margin-top: -.5rem;
    display: block;
}

.flex-centered-x
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.divider[hidden] {
    display: none;
}


/* PARA BORRAR */
span.precarga_contenedor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    background: transparent;
    border-radius: 12px;
    line-height: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

aside[data-precarga-rdigital] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    backdrop-filter: blur(3px);
    background: #F0F0F0;
    background: linear-gradient(50deg, rgb(255 255 255 / 46%) 0%, rgb(11 244 255 / 8%) 100%);
}
    .lds-ellipsis.loading.loading-lg
    {
        background-color:var(--color-secondary-light);
    }
    .lds-ellipsis.loading.loading-lg::after {
        border-left-color: var(--color-secondary-dark);
        border-bottom-color: var(--color-secondary-dark);
    }