body {
    margin: 0;
}

#intranet-cargando-sistema {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

#intranet-cargando-sistema > div {
    position: relative;
    width: 192px;
    height: 192px;
}

#intranet-cargando-sistema .pulso {
    box-sizing: border-box;
    position: absolute;
    top: 8px;
    left: 10px;
    width: 169px;
    height: 169px;
    border: 2px solid rgb(71 140 181);
    box-shadow: inset 0 0 10px rgb(63 126 163);
    border-radius: 50%;
    animation: intranet-spinner-pulso 2.1s ease-out infinite;
    z-index: -1;
}

@keyframes intranet-spinner-pulso {
    0% {
        transform: scale(0.8);
        opacity: 0.9;
        border-width: 2px;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.9;
        border-width: 2px;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border-width: 8px;
    }
}
