* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Libre Franklin', Heveltica, Arial, sans-serif;
}


#appContainer {
    height: 100vh;
    background-size: cover;
    background-position: center center;
}

.bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.65);
}

.modal--visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.modal__floating:not(.modal--visible) {
    pointer-events: none;
}

/* ESTILOS COMUNES CAMPANA DE NOTIFICACIONES (TOPBAR, TARJETAS DE APPS) */
.notification--bell {
    cursor: pointer;

    .notification__number {
        position: absolute;
        z-index: 11;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--suite-secundary-S360);
        color: var(--suite-quaternary-S360);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 8px;
        font-weight: bold;
        transition: all 0.15s ease;

        &.number--hidden {
            display: none;
        }
    }
    &.notification--hidden {
        display: none;
    }
}

/* ESTILOS COMUNES PARA MODALES USUARIO, MENU, NOTIFICACIONES */
.modal__floating {
    user-select: none;
    position: absolute;
    pointer-events: none;
    z-index: 100;
    background-color: var(--background-element);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: all .1s;
    display: flex;
    flex-direction: column;

    .close {
        position: absolute;
    }
}


/* Estilos para ajustar horizontalmente el fondo al centro */
@media (min-width: 769px) and (max-width: 1024px) {
    #root {
        #appContainer {
            /* background-position: 58% 78vh; */
            background-position: center top;
        }
    }
}

@media (max-width: 768px) {
    #root {
        #appContainer.app--suite {
            background-position: center 7%;
            background-size: 100vh;
        }
    }
}