/**
    * Modulo............: rld_img.css
    * Ficheros:.........: rld_img.js
    * Descripcion.......: Módulo estilos para gestion imagenes
    * Fecha Creacion....: 22/12/2022
    * Fecha Modificacion: 
    *
    * @copyright CopyRight(C)2022 Daniel Rosado
    * @author Daniel Rosado
*/

/***************************** Precarga Imagene *******************************/
.Img_Precarga{
    width: 150px;
    height:150px;
    float: none;/* left;*/
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: calc(1em + 1.2vw);
}

.Img_Precarga img{
    max-width: 150px;
    max-height: 150px;
}

/****************************** Botones Imágenes ******************************/
/**
    <div id="Img_ContOpc">
        <div id="Img_ConOpc_Img">
            <a href="url"><img id="ImgIMG" src="img/eqEmp.png" ></a>
        </div>
        <div id="Img_ConOpc_Texto">
            <a href="url">Equipamiento<br/>Empresarial</a>
        </div>
    </div>
    <div id="Img_ContOpc">
        <div id=Img_ConOpc_Img">
            <a href="url"><img id="ImgIMG" src="img/eqSec.png" ></a>
        </div>
        <div id="Img_ConOpc_Texto">
            <a href="url">Equipamiento<br/>por Sectores</a>
        </div>
    </div>
    ...
*/
#Img_ContOpc{
    display: inline-block;
    text-align: center;
    width: 145px;
    height: 145px;
    /*height: 95%;*/
}
#Img_ContOpc:hover {
    filter: sepia(60%);
    filter: opacity(.85);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
Img_ContOpc:hover a{
    color:#aeaeae;

}

#Img_ConOpc_Img{
    width: 100%;
    height: 55%;
    display:flex;
    justify-content: center;
    align-items: center;
    float:left;
}
#ImgIMG{
    /*height:100%;*/
    max-width: 140px;
    max-height: 77px;
    /*width: 100%;*/
    display:flex;
    justify-content: center;
    align-items: center;
}
#Img_ConOpc_Texto{
    width: calc(100% - 10px);
    height: calc(45% - 4px);
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    font-size: 11px;/*x-small;*/
    float:left;
    display:block;
    white-space: normal;
    word-wrap: break-word;
}