﻿.cargando-inicial {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background: var(--cargando-fondo);
    margin: 0;
}

    .cargando-inicial:after {
        content: "";
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.25em;
    }

    .cargando-inicial .cargando-inicial__contenido {
        box-sizing: border-box;
        display: inline-block;
        vertical-align: middle;
        text-align: left;
        font-size: 0;
        transition: all 0.3s;
    }


.contenido__circulo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -120px;
    margin-top: -120px;
}

.contenido__mascara {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 240px;
    margin-left: -120px;
    margin-top: -120px;
    overflow: hidden;
    transform-origin: 120px 120px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    animation: rotar 1.2s infinite linear;
}

    .contenido__mascara .mascara__linea {
        width: 240px;
        height: 240px;
        border-radius: 50%;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }


.contenido__marca {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 230px;
    height: 230px;
}

    .contenido__marca img {
        max-width: 60%;
        animation: latido 3s infinite linear;
    }


@keyframes rotar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@keyframes latido {
    0% {
        opacity:1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}









