.containerFichaWeb{
    padding: 3rem;
}
.rowFichaResumen{
    display: flex;
}

.resumenFicha{
    padding: 1rem;
    width: 90%;
    background-color: #ebf6ff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;

}

.cardResumen{
    background-color: #fdfeff;
    width: 30%;
    min-width: 200px;
    min-height: 60px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0px 0px 20px -10px rgba(125,125,125,1);
    cursor: pointer;
}

.cardResumen:hover {
    background-color: #0569B1;
    color: #fff;
}
.cardResumen:hover .icono_ficha{
    color: #fdfeff;
}

.pCardFicha i{
    color: #0569B1;
    font-size: 30px;
}

.pCardFicha{
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.anexoLink{
    text-decoration: none;
    color: #333;
}
.anexosDiv{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.anexosDiv p{
    margin: 0;
}
.anexo{
    display: flex;
    flex-direction: column;
    width: 100px;
    height: 150px;
    border-radius: 8px;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px;
    transition: all .3s ease;
    border: 1px solid #1d6eb6;
}
.anexo i{
    font-size: 30px;
}
.anexo small{
    font-size: 12px;
    text-align: center;
}
.anexo:hover{
    background-color: #41a6ff; 
    color: #fff;
}

.contenedorDescargaAnexos{
    display: flex;
    gap: 3px;
    justify-content: flex-start;
    align-items: center;
}

.btnImprimir{
    width: 75%;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    background-color: #0569B1;
    color: #ddd;
    transition: all .3s ease;
}

.btnImprimir:hover{
    background-color: #0c7bca;
    color: #fff;
}

.accionesCard{
    display: flex;
    flex-direction: column;
}

.btnIniciar{
    width: 75%;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    background-color: #41a6ff;
    color: #ddd;
    transition: all .3s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btnIniciar:hover{
    background-color: #1d6eb6;
    color: #fff;
}

.infoGral ul{
    margin-left: 30px;
}
.infoGral ol{
    margin-left: 30px;
}
.verificador p{
    margin: 0;
}

.aviso{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rowInfoGeneral{
    background-image: url("https://res.cloudinary.com/bcedrez/image/upload/v1694290316/telarifas/sk3bfcj2pd5gt2h77a6b.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;

}

.imprimir{
    display: none;
}

@media print{
    body * {
        display: none;
    }
    .imprimir, .imprimir *{
        display: block;
    }
    .rowInfoGeneral{
        position: relative;
    }
    .rowInfoGeneral img{
        position: absolute;
        top: 15%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .rowFichaResumen{
        flex-direction: column;
    }
    .colResumen{
        order: 2;
    }
    .accionesCard{
        justify-content: center;
        align-items: center;
    }
    .colAcciones{
        order: 1;
        margin-bottom: 1rem;
        justify-content: center;
        align-items: center;
    }
    .cardResumen{
        width: 100%;
    }

    .btnImprimir{
        width: 90%;
    }
    .btnIniciar{
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    .rowInfoGeneral{
        background-position: center;
        background-size: cover;
    }
}