@keyframes barras-1 {
    0% {
        top: 36px;
        height: 128px
    }

    50% {
        top: 60px;
        height: 80px
    }

    100% {
        top: 60px;
        height: 80px
    }
}

@keyframes barras-2 {
    0% {
        top: 41.99999999999999px;
        height: 116.00000000000001px
    }

    50% {
        top: 60px;
        height: 80px
    }

    100% {
        top: 60px;
        height: 80px
    }
}

@keyframes barras-3 {
    0% {
        top: 48px;
        height: 104px
    }

    50% {
        top: 60px;
        height: 80px
    }

    100% {
        top: 60px;
        height: 80px
    }
}

.barras div {
    position: absolute;
    width: 30px
}

.barras div:nth-child(1) {
    left: 35px;
    background: #1403fc;
    animation: barras-1 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: -0.2s
}

.barras div:nth-child(2) {
    left: 85px;
    background: #3869c5;
    animation: barras-2 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: -0.1s
}

.barras div:nth-child(3) {
    left: 135px;
    background: #4686f4;
    animation: barras-3 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: undefineds
}

.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background: #000f1fd8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1059;
    clip-path: circle(141.4% at 100% 100%);
    transition: clip-path 0.10s ease-in-out;
}

.preloader-close {
    clip-path: circle(0.0% at 100% 100%);
}

.loadingio-spinner-pulse {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
}

.barras {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    /* see note above */
}

.barras div {
    box-sizing: content-box;
}


/**************************SVG Format*********************************/
#text-contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.objet-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    /* Asegura que el contenedor ocupe toda la altura disponible */
}

.img-hidde {
    display: none;
}

.objet-img img {
    margin: auto;
    max-width: 30%;
    max-height: 30%;
}

/* .logo-municipio {
    position: relative;
    width: 350px;
    min-height: 184px;
} */

.logo-municipio {
    display: flex;
    justify-content: center;
    position: relative;
    width: 350px;
    min-height: 184px;
}

.logo-municipio img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    animation: aparecer 8s normal forwards;
}

.logo-municipio svg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 3s ease-out;
    animation: desaparecer 6s normal forwards;
}

.logo-municipio-consult {
    position: relative;
    width: 150px;
    min-height: 63px;
}

.logo-municipio-consult img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    animation: aparecer 8s normal forwards;
}

.logo-municipio-consult svg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 3s ease-out;
    animation: desaparecer 6s normal forwards;
}

.object-svg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 3s ease-out;
}

#agStroke .st0 {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-miterlimit: 10;
}

.desaparecer {
    animation: desaparecer 8s normal forwards;
}

#virtual-office h3 {
    margin: 1rem
}

.causante-data {
    margin: 1rem;
}

.round-corner {
    border-radius: 5rem;
}

@keyframes aparecer {
    to {
        opacity: 1;
    }
}

@keyframes desaparecer {
    to {
        opacity: 0;
    }
}

@keyframes text-animado {
    to {
        stroke-dashoffset: 0;
    }
}

/**************************SVG Format*********************************/

#comentarios .list-group-item p a {
    color: #e9c00c !important;
    /* Cambia el color del enlace a blanco */
    font-size: 1.5rem !important;
    /* Aumenta el tamaño de la fuente */
}