﻿.cintillo * {
    color: var(--ine)!important;
}

body {
    background-image: url('images/background.png') !important;
    background-size: 100% 100%;
}

.control-label {
    font-weight: bold;
}
canvas#image {
    max-height: 300px !important;
    max-width: 300px !important;
}

.auth-page .auth-left-wrapper {
    width: 100%;
    height: 100%;
    background-image: url(/Content/images/silla.jpg);
    background-size: cover;
}

.toast-success {
    background-color: #51a351 !important;
}

.toast-error {
    background-color: #bd362f !important;
}




.text-facebook {
    color: #3b5998;
}

.text-instagram {
    color: #833AB4;
}




.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }




/* Cubre toda la pantalla y centra el contenido */
.preloader {
    position: fixed;
    inset: 0; /* top/right/bottom/left: 0 */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* No uses opacity aquí porque apaga a los hijos */
    background: rgba(0,0,0,.9);
}

    /* Contenedor del mensaje + logo */
    .preloader .mensajeEspera {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }

    /* Logo centrado, sin posiciones absolutas */
    .preloader .loader {
        width: 200px;
        height: 200px;
        position: relative; /* para el anillo */
        background: url("../Content/images/camaradiputados.png") center/contain no-repeat;
        /* si el logo es circular, puedes dejar el borde redondo; si no, quítalo */
        /*border-radius: 200%;*/
        /* sin márgenes mágicos, sin top/left */
    }

        /* Anillo giratorio alrededor del logo */
        .preloader .loader::after {
            content: "";
            position: absolute;
            inset: -40px; /* crea el aro por fuera del logo */
            border-radius: 50%;
            border: 3px solid rgba(255,255,255,.18);
            border-top-color: white;/*var(--ine); *//* acento */
            animation: spin 1.1s linear infinite;
        }

    /* Mensaje */
    .letraAmarilla,
    .preloader #mensajeRandom {
        color: #fff; /* cambia si usas otra clase */
        font-weight: 600;
        letter-spacing: .3px;
    }

/* Animación */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Respeta accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .preloader .loader::after {
        animation: none;
    }
}



.card:hover img {
    /*opacity: 0.8;*/
}

.card img {
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}







/********************PULSE BTN************/
.pulse-button {
    /*background: black;*/
    /*border-radius: 50%;*/
    /*margin: 10px;
        height: 20px;
        width: 20px;*/
    /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);*/
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.archivo-nombre {
    max-width: 100%; /* o el ancho que consideres según tu diseño */
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}


.btn-secondary, .badge-secondary {
    background-color: var(--secundarioBadge) !important;
    border-color: var(--secundarioBadge) !important;
}




body {
    font-family: "Raleway", sans-serif !important;
    
}


/**:not(.fa) {
    font-family: "Raleway", sans-serif !important;*/
   /* font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;*/
/*}*/

