:root {

    /* colores de fondos ... backgrond-color  */
    --bg-main-contenedor: #e6e6fa;
    --bg-contenedor: rgb(187, 198, 209);
    --bg-card: #7b8fa3;
    --bg-div: rgb(231, 178, 18);

    --bg-alert: #babae491;
    /* colores de border ...   border-color */
    --borde-color: #154b06;

    /* colores de texto .... color */
    --text-alert: #000;
    --text-card: #fff;
    --text-div: #f70303;

}

.main-container {
    background-color: var(--bg-main-contenedor);
    /* border: 1px solid var(--borde-color); */
    color: lightslategrey;

    border-radius: 15px;
    min-height: 10px;
}

.mycontainer {
    background-color: var(--bg-contenedor);
    border: 3px solid var(--borde-color);

    border-radius: 15px;
    min-height: 10px;

}

.mycard {
    background-color: var(--bg-card);
    color: var(--text-card);
    border: 1px solid var(--borde-color);

    border-radius: 7px;
    min-height: 55px;
    margin: 5px;
    /*margin: 1px;*/
}

.myalert {
    background-color: var(--bg-alert);
    color: var(--text-alert);
    font-weight: 700;
    border-radius: 10px;
    margin: 5px;
    padding: 10px;
}

.myicon {
    background-color: blue;
    color: rgb(8, 212, 8);
    font-size: 22px;
    border-radius: 8%;
}

.divBuscador {
    width: 350px;
    background: rgb(209, 212, 203);
    margin: 3px;
    align-content: center;
    /* alineado verticar en el div */
    border-radius: 10px;
}

.divTarjetero {
    width: 350px;
    min-height: 250px;

    background: rgb(188, 221, 116);
    margin: 3px;

    border-radius: 10px;
}


/***************************************
****************************************
***************************************/
/**
css  : para el menu social....
**/

.social {
    /* background-color: var(--bg-main-contenedor);  */
    /* color: var(--text-card); */

    background-color: #e6e6fa;
    border: 1px solid var(--borde-color);
    border-radius: 7px;

    min-height: 50px;
    min-width: 50%;

    justify-content: center;
    align-items: center;

}

.social a {

     margin: 5px;
     /* border: 1px solid #000; */
    /* font-size: 35px; */
    font-size: 2rem;
    font-weight: bolder;
    transition: all ease 350ms;
}

.social .icon-whatsapp  { color: #054e07;}
.social .icon-face      { color: #3b5998;}
.social .icon-insta     { color: #f000bc;}
.social .icon-twit      { color: #0ebedd;}
.social .icon-otro      { color: #ae181f;}
.social .icon-email     { color:red; }
.social .icon-website   { color: #535472;}
.social .icon-catalogo  {color: #2cee05;}
.social .icon-telegram  {color: #1472a8;}
.social .icon-map       { color: #e6b42c;}
.social .icon-youtube   {color: #ff0707;}
.social .icon-spotify   { color: #14e509;}


.social a:hover {
    
    transform: scale(1.5);
   
    /* background: #030303;
    border-radius: 50%; */
}



/***************************************
****************************************
***************************************/
/**
css : PARA MYMENU : para el menu DATOS ....
**/
.menudato {
    background-color: var(--bg-div);
    color: var(--text-card);
    border: 1px solid var(--borde-color);

    border-radius: 7px;
    margin: 5px;

}

.menudato .imagen-qr {
	width: 85%;
    margin: 5px;
}


.menudato ul {
    background-color:#054e07;
    list-style-position: outside;
    /* disc, circle, ... firutia a mostrar .... */
    list-style-type: square;
    /* list-style-type:':(';   */
    /* list-style-image: url('url-img'); */
}

.menudato ul li {
    background-color:var(--bg-card);
    /* padding: 9px 2px;  */
    /* margin: 5px 10px; */

    margin: 2px 7px;
    padding: 19px 5px;
    text-align: start;
}

.menudato ul li::marker {
    /* content: "* - "; */
    color: red;
    text-shadow: 2px 2px blueviolet;
    font-weight: bolder;
    font-size: 15px;
}





/**********************************/
/*-----  solo para los btn ..... **/
/**********************************/
#divBotones i {
    margin: 5px;
    padding: 3px 9px;
    cursor: pointer;

    font-size: 1.3rem;
    font-weight: bold;

    color: white;
    background-color: #107ba6;
    border: 1px solid black;
    border-radius: 10px;

    transition: all ease 350ms;

}

#divBotones i.activo {
    background-color: green;
}
#divBotones i:hover{
    background-color:green;
    transform: scale(1.3);
}



/***************************************
****************************************
***************************************/
/**
css : PARA MY-Formulario : para el formulario Mensaje Whats App ....
**/

* {
    box-sizing: border-box;
}

.mensajeWhats {
    background: #E5E5E5;
    max-width: 300px;
    width: 75%;

    padding: 7px;
    border-radius: 9px;

    margin: 5px auto;
}

.formulario {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;

    color: #119200;
    font-weight: 700;
}
