/*  ------------------------------------  *\
 *  $ DEFAULT
\*  ------------------------------------  */

    
    /*  modificador --filtro  */
    .menu--filtro {
        display: flex;
        /*flex-direction: column;*/
        align-items: center;
        justify-content: center;
        height: 100%;
        background-color: #755c46;
        font-size: 13px;
        color: #ffffff;
        padding-left: 20px;
        border-radius: 0px 38px 38px 0px;
        font-weight: normal;

    }
        .menu--filtro span{width: 345px;}

        .menu--filtro .menu__enlace {
            display: block;
            width: 100px;
            color: #d9c7a8;
            text-align: center;
            line-height: 1em;
            text-decoration: none;
            font-size: 9px;
            padding-top: 8px;
            height: 100%;
        }

        .menu--filtro .menu__enlace + .menu__enlace {
            /*margin-top: 30px;*/
        } 

        /* .menu--filtro .menu__enlace:hover , */
        .menu--filtro .menu__enlace.esta-activo {
            color: #f7af1a;
        } 

        .menu--filtro .menu__enlace::before {
            content: '';
            display: block;
            margin: 0 auto 5px;
            width: 60px; height: 60px;
            background-image: url( ../images/iconos-filtro.png );
            background-repeat: no-repeat;
            zoom:0.5;
        }

        .menu--filtro .menu__enlace.--preguntas::before { background-position: left     0px; }
        .menu--filtro .menu__enlace.--imagenes::before  { background-position: left   -60px; } 
        .menu--filtro .menu__enlace.--videos::before    { background-position: left  -120px; } 

         /* .menu--filtro .menu__enlace.--preguntas:hover::before  , */
         .menu--filtro .menu__enlace.--preguntas.esta-activo::before { background-position: right    0px; }

         /* .menu--filtro .menu__enlace.--imagenes:hover::before   , */
         .menu--filtro .menu__enlace.--imagenes.esta-activo::before  { background-position: right  -60px; }

         /* .menu--filtro .menu__enlace.--videos:hover::before     , */
         .menu--filtro .menu__enlace.--videos.esta-activo::before    { background-position: right -120px; }

    /*  medias queries */
        @media print, screen and (max-width:  767px) { /* para tablet */
            .menu--filtro {
                display: grid;
                grid-template-columns: repeat( auto-fit, minmax(1px, 1fr) );
                grid-gap: 1px;
                height: 55px;
                background-color: transparent;
                width: 100%!important;
                border-radius: 0;
                padding: 0;
            }

            .menu--filtro .menu__enlace {
                position: relative;
                margin-top: 0px !important;
                font-size: 9px;
            }

            .menu--filtro .menu__enlace br {
                display: none;
            }

            .menu--filtro .menu__enlace + .menu__enlace {
                /*border-left: 1px dotted rgba(255,255,255,.1)*/
                width:100%;
                color: #755c46;
            } 

            .menu--filtro .menu__enlace::before {
                /*margin-bottom: -10px; margin-top: -15px;*/
                margin: -15px auto 8px auto;
                -webkit-transform: scale(.8);
                    -ms-transform: scale(.8);
                     -o-transform: scale(.8);
                        transform: scale(.8);
                -webkit-filter: brightness(250%);
                        filter: brightness(20%);
            }
            .btn-yt, .btn-fb{margin-top: 0px;}
        }


    

/*  ------------------------------------  *\
 *  $ CLASES UTILES
\*  ------------------------------------  */

    .mostrar { display: block !important }
    .ocultar { display: none  !important }
    
    .no-visibilidad {
        position: fixed !important;
        left: 200%; top: 0px;
        visibility: visible;
    }

    .visible-desktop { display: none !important; }
    .visible-mobile  { display: none !important; }

    [role="status"]{display: none!important; font-size: 1px;}

    @media print, screen and (max-width:  767px) { /* para tablet en adelante */
        .visible-mobile { display: block !important; }
    }


    @media print, screen and (min-width:  768px) { /* para desktop en adelante */
        .visible-desktop { display: block !important; }
    }

    /*  alto ( tamaño )  */
        /* para pantalla */
        html.alto-pantalla,
        html.alto-pantalla body {
            height: 100%;
        }

        /* para cualquier tag */
        .alto-pantalla  { height: 100%; }
        .alto-heredado  { height:100%; /* (1) hereda el alto de su padre */ }
        .alto-contenido { height: auto; /* (2) calcula el alto en base a su contenido */}
        .alto-adaptivo  { min-height: 100%; /* mezcla de (1) y (2)*/ }
            /*\ 
                Uso clases altos:
                SI VALIDO: 
                    .alto-heredado > .alto-heredado
                    .alto-heredado > .alto-adaptivo
                NO VALIDO: 
                    .alto-adaptivo > .alto-heredado
                    .alto-adaptivo > .alto-adaptivo
            \*/

            @media print, screen and (max-width:  767px) {
                .alto-adaptivo--mobile { min-height: 100%; height: auto; }
            }

            @media print, screen and (max-width:  767px) and (orientation: landscape) {
                .alto-pantalla,
                .alto-heredado,
                .alto-contenido,
                .alto-adaptivo { min-height: 100%; height: auto; }
            }






          

    /*  logos */
        .logo {

        }
            /*  elementos  */
                

            /*  modificadores  */
                .logo--mineria {
                    display: block;
                    /*margin-top: 9px;*/
                    background-position : center;
                    background-repeat   : no-repeat;
                    background-size     : contain;
                }

                .logo--mineria-2 {
                    position: absolute;
                    top: 0px; left: 0px;
                    display: block;
                    width: 170px; height: 50px;
                    /*margin-top: 21px;*/
                    background-image    : url( ../images/logo-mineria-2.png );
                    background-position : center;
                    background-repeat   : no-repeat;
                    background-size     : contain; 
                    -webkit-transform: scale(.9);
                        -ms-transform: scale(.9);
                         -o-transform: scale(.9);
                            transform: scale(.9);
                }

                .logo--mineria-2 a{
                    display: block;
                    height: 100%;
                    width: 100%;
                }

                    @media print, screen and (max-width:  767px) { /* para tablet en adelante */
                        .logo--mineria { 
                            width: 100px; height: 35px;
                            background-image: url( ../media/imagenes/logo-sinosescuchamos-small.png );
                            margin-right: -10px;
                        }

                        .logo--mineria-2{
                            height: 35px;
                            width: 125px;
                        }

                        .logo--mineria.--positivo {
                            background-image: url( ../media/imagenes/logo-sinosescuchamos-small.png );
                        }

                    }


                    @media print, screen and (min-width:  768px) { /* para desktop en adelante */
                        .logo--mineria { 
                            width: 150px; height: 60px;
                            background-image: url( ../media/imagenes/logo-sinosescuchamos-small.png );
                        }

                        .logo--mineria.--positivo {
                            background-image: url( ../media/imagenes/logo-sinosescuchamos-small.png );
                        }
                    }


                

    /*  imagen  */
        .imagen {
            background-position : top center;
            background-repeat   : no-repeat;
            background-size     : cover;
        }

            /*  elementos  */

            /*  modificador  */
                .imagen--destacada {
                    position: relative;
                    display: block;                    
                    margin-bottom: 20px;
                    overflow: hidden;
                    background-color: white; 
                    background-position: top center;
                    background-size: cover;
                    background-blend-mode: multiply; /* overlay; */
                }

                .imagen--destacada::after {
                    position: absolute; z-index: 0;
                    left: 0; bottom: -50%;
                    content: '';
                    display: block;
                    width: 150%; height: 50%;
                    background-color: white;
                    /* punto origen */
                    -webkit-transform-origin: left top;
                       -moz-transform-origin: left top;
                        -ms-transform-origin: left top;
                            transform-origin: left top;
                    /* girar */
                    -webkit-transform: rotate(-5deg);
                       -moz-transform: rotate(-5deg);
                        -ms-transform: rotate(-5deg);
                            transform: rotate(-5deg);
                }


                @media print, screen and (min-width:  768px) { /* para desktop en adelante */
                    .imagen--destacada {
                        height: 300px;
                        margin-bottom: 120px;
                    }

                    .imagen--destacada::after {
                        display: none;
                    }
                }

                @media print, screen and (max-width:  767px) { /* para tablet en adelante */
                    .imagen--destacada {
                        height: 125px;
                    }

                    .imagen--destacada::after {
                        display: block;
                    }
                }

    /*  estructura  */
        .encabezado {

        }

        .contenido {

        }
    
    


/*  ------------------------------------  *\
 *  $ COMPONENTES
\*  ------------------------------------  */
      

    
   

    /*  buscador  */
        .buscador {

        }
            /* elementos */

            /* modificadores */
            .buscador--demo {

            }

                .buscador--demo,
                .buscador--demo .buscador__envoltura {
                    height: 95px;
                }

                .buscador--demo.esta-fijo .buscador__envoltura {
                    position: fixed; z-index: 1000;
                    left: 0px; bottom: 0px;
                    display: block;
                    width: 100%;
                    background-color: white;
                }





    /*  control  */
        .control {
            position: relative;
            -webkit-box-sizing:  border-box;
               -moz-box-sizing:  border-box;
                    box-sizing:  border-box;
        }

        	.control + .control {
        		margin-top: 15px;
        	}

        	 /*  elementos */

            

            /*  modificador */
            .control--buscar{
              padding: 25px 0;
            }

            .control--buscar .campo {
            	
            	border-radius: 50px; 
                
                background-position: center right;
                background-size: contain;
                background-repeat: no-repeat; 
                background-color: #f6b631;
                color: #ffffff;
            }

            .campo.icon{background-image: url( ../images/ico_buscar.png );}

            .input-group-btn a{
                padding: 1.3em;
                border-radius: 0 20px 20px 0;
                background-color: #007648;
                color: #ffffff;
                font-weight: 700;
            }

            .input-group-btn a:hover{
                background-color: #ffffff;
                color: #007648;
            }

            @media print, screen and (min-width:  768px) { /* para desktop en adelante */
                .control--buscar .campo {
                    padding: 2em;
                }

            }

            @media print, screen and (max-width:  767px) { /* para tablet en adelante */
                .control--buscar .campo {
                    padding: 1.5em;
                } 
                .input-group-btn a{
                    padding: 0.76em;
                    border-radius: 0 20px 20px 0;
                }
            }

            /*  modificador --buscador */
                .control--buscador {
                    margin-top: 17px;
                    padding: 0 30px 0 55px;
                    width: 45%;
                }

                    .control--buscador .campo {
                        background-color: transparent;
                        border: 0px;
                        /*border-bottom: 1px solid #f7af1a;*/
                        box-shadow: none;
                        border-radius: 0px;
                        font-size: 24px; height: auto;
                        padding: 0;
                    }

                        .control--buscador .campo::-webkit-input-placeholder   { color: #c3c3c3 !important; }
                        .control--buscador .campo::-moz-placeholder            { color: #c3c3c3 !important; }
                        .control--buscador .campo:-ms-input-placeholder        { color: #c3c3c3 !important; }
                        .control--buscador .campo:-moz-placeholder             { color: #c3c3c3 !important; }
                    
                    .control--buscador::before {
                        content: '';
                        position: absolute;
                        left: 35px;
                        top: 14px;
                        display: block;
                        width: 55px;
                        height: 40px;
                        background: url(../images/ico_buscar-2.png) no-repeat center;
                        zoom: .55; }
			


    /*  cuadricula  */
        .cuadricula {
            display: grid;
        } 

            /*  elementos  */
                .cuadricula__item {

                }

            /*  modificador  */
                .cuadricula--filtro {
                    grid-template-columns: repeat( 2, 50% );
                    /* grid-gap: 20px; */
                }
                    .cuadricula--filtro .cuadricula__item {
                        padding: 10px;
                    }

    /*  filtro  */
        .filtro {

        }

        .filtro-enlace {
            position: relative;
            display: block;
            text-align: center;
            line-height: 1em;
            font-weight: 600; 
            font-size: 16px;
        }

            /*  elementos  */
                .filtro-enlace > span {
                    text-transform: uppercase;
                }

                .filtro-enlace img {
                    display: block;
                    margin: 0 auto;
                    height: 60px;
                    margin-bottom: 5px;
                }

                @media print, screen and (min-width:  768px) { /* para desktop en adelante */
                    .filtro-enlace {
                        text-align: left;
                        padding-top: 20px;
                        padding-left: 120px;
                        padding-right: 20%;
                        min-height: 100px;
                    }

                    .filtro-enlace img {
                        position: absolute;
                        left: 0px; top: 0px;
                        height: 100px;
                    }

                    .filtro-enlace br {
                        display: none;
                    }

                    .filtro-enlace > span {
                        display: block;
                        margin-bottom: 10px;
                        font-size: 18px;
                    }

                    .filtro-enlace p {
                        line-height: initial;
                    }
                }

                @media print, screen and (max-width:  767px) { /* para tablet en adelante */
                    .filtro-enlace p {
                        display: none;
                    }
                }


            /*  modificadores  */

   
               

                      .cuestionario__calificacion{text-align: right;}
                      .cuestionario__calificacion input[type = "radio"]{ display:none;/*position: absolute;top: -1000em;*/}
                      .cuestionario__calificacion label{ color:grey; font-size: 18px;}

                      .cuestionario__valoracion form{
                          direction: rtl;
                          unicode-bidi: bidi-override;
                      }

                      .cuestionario__respuesta a{color: #007648;}

                      .cuestionario__calificacion label:hover,
                      .cuestionario__calificacion label:hover ~ label{color:orange;}
                      .cuestionario__calificacion input[type = "radio"]:checked ~ label{color:orange;}
                          


/*  ------------------------------------  *\
 *  $ CLASES ESTRUCTURA BASE
\*  ------------------------------------  */
  

                

    

    /*  seccion  */
        


/*  ------------------------------------  *\
 *  $ IDS
\*  ------------------------------------  */
   
  
/*  ------------------------------------  *\
 *  $ CLASES SECCIONES
\*  ------------------------------------  */

    /*  banners  */
        
    

       

        #buscador {
            z-index: 9;
        }

        #buscador .isotope-pager{display: none;}



  #videomodal{

  }
  
  

    .redes a{
      display: block;
      background-color: #007648;
      text-align: center;
      color: #ffffff;
      float: left;
      width: 50%;
      box-sizing: border-box;
      height: 100px;
      vertical-align: middle;
      padding-top: 25px;
      border: 1px solid #fff;
      font-weight: 100;
    }

    @media print, screen and (min-width:  768px) { /* para desktop en adelante */
        
        #videomodal iframe,
        #videohome iframe{
          /*width: 75vw;*/
          /* width: 60vw; */
          /*height: calc(75vw/1.77777778);*/
          height: calc(75vw/2.3);
        }

        #modalpregunta .la-respuesta iframe{
            width: 22vw;
            height: calc(35vw/2.3);
        }
        
        .redes{
            /*display: none;*/
/*            float: right;
            clear: both;
            margin-top: -75px;*/
        }

        .redes a{
            display: flex;
            background-color: #4267b2;
            width: 141px;
            padding: 5px 10px;
            line-height: 8px;
            border: 1px solid #4267b2;
            border-radius: 5px;
            margin: 5px auto 0;
            font-weight: bold;
            -webkit-font-smoothing: antialiased;
            height: inherit;
            float: none;
        }

        .redes img{
            width: 25px!important;
            height: 25px;
            margin-right: 10px;
        }

        .redes .wapp{display: none;}

        .boton--banner.visible-mobile{display: none!important;}
        .boton--banner.visible-desktop{display: inline-block!important;}

    }

 


    .btn-close{
      display: block;
      width: 30px;
      height: 30px;
      background-color: #007648;
      position: relative;
      right: 0;
      top: 0;
      float: right;
      border: 0;
      background-size: 75%;
      padding: 4px;
      background-repeat: no-repeat;
      background-position: center;
    }


    .filtros{
      padding-bottom: 70px;
    }

    .filtros .item{
      text-align: center;
      color: #755b46;
      text-transform: uppercase;
      font-weight: 500;
      font-size: 1.3em;
      padding-top: 15px;
    }
    

    .item img{
      height: 89px;
      margin-bottom: 15px;
    }
    

    .logo-mineriadetodos {
        display: inline-block;
        width: 200px; height: 70px;
        margin: 0 20px 20px ;
        background: url( ../images/logo-mineriadetodos.png ) no-repeat center;
        background-size: contain;
    }

    .logo-sociedad {
        display: inline-block;
        width: 200px; height: 70px;
        margin: 0 20px 20px ;
        background: url( ../images/logo-sociedad.png ) no-repeat center;
        background-size: contain;
    }




    
    
    /*  totales  */
        .totables {

        }

            /*  modificador --resultados  */
                .totales--resultados {
                    position: absolute;
                    right: 10px; top: 10px; bottom: 10px;
                    display: grid;
                    grid-template-columns: repeat( auto-fit, minmax(1px, 1fr) );
                    grid-gap: 0px;
                    width: 30%;
                    background-color: white;
                    border: 1px solid #cccccc;
                }

                    .totales--resultados .totales__item {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        text-align: center;
                        font-size: 12px;
                        line-height: 1em;
                        font-weight: 100;
                    }

                    .totales--resultados .totales__item b {
                        display: block;
                        font-size: 2.5em;
                        /* font-weight: 100; */
                        margin-bottom: 5px;
                        line-height: 1em;
                    }

    /*  colorbox  */
        @media print, screen and (max-width:  767px) {
            #colorbox {
                top: 0px !important; left: 0px !important;
            }

            #colorbox, 
            #cboxWrapper,
            #cboxWrapper > div:nth-child(2),
            #cboxContent{
                width: 100% !important; height: 100% !important; padding:0px!important;
            }

            #cboxContent {
                margin-top: 0px;
            }

            #cboxLoadedContent {
                position: relative; z-index: 1;
                padding: 0px;
                overflow: auto;
                width: 100%!important;
            }

            #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose, #cboxTitle {
                z-index: 100;
            }
        }

    /*  modales  */
        .modal {

        }

            /*  modificador --preguntas  */
                .modal--preguntas {
                    position: relative;
                    display: block;
                    width: 100%; height: 100%;
                    padding-top: 120px;
                    background-color: #fafafa;
                    border-radius: 15px;
                    overflow: hidden;
                }

                    .modal--preguntas .modal__cerrar {
                        position: absolute; z-index: 10;
                        right: 10px; top: 10px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        width: 1.2em; height: 1.2em;
                        font-size: 36px;
                        font-weight: 100;
                        cursor: pointer;
                    }

                    .modal--preguntas .modal__cerrar::before {
                        content: 'x';
                    }

                    .modal--preguntas .modal__encabezado {
                        position: absolute;
                        left: 0px; top: 0px;
                        padding: 10px 25px;
                        width: 100%; height: 120px;
                    }

                    .modal--preguntas .modal__contenido {
                        position: relative;
                        height: 100%;
                        background: url( ../images/bg_preguntarespuesta.png) no-repeat top center;
                        background-size: cover;
                    }

                    .modal--preguntas .la-pregunta  , 
                    .modal--preguntas .la-respuesta {
                        position: relative;
                        float: left;
                        display: block;
                        width: 50%;
                        height: 100%;
                        padding: 80px 25px 25px;
                    }

                    .modal--preguntas .la-pregunta {
                        padding-bottom: 75px;
                    }

                    .modal--preguntas .la-respuesta {
                        background-color: #f0f0f0;
                    }               

                        .modal--preguntas .la-pregunta::before  ,
                        .modal--preguntas .la-respuesta::before {
                            position: absolute;
                            top: 30px;
                            display: block;
                            width: 100%; height: 28px;
                            margin-bottom: 20px;
                            padding-left: 45px; padding-top: 8px;
                            background-image: url( ../images/ico_preguntarespuesta.png);
                            background-repeat: no-repeat;
                            color: #007648;
                        }

                        .modal--preguntas .la-pregunta::before {
                            content: 'Pregunta';
                            background-position: left 0; 
                        }     

                        .modal--preguntas .la-respuesta::before {
                            content: 'Respuesta';
                            background-position: left -36px; 
                        }

                        .modal--preguntas .envoltura {
                            margin-left: -25px; margin-right: -25px;
                            padding-left: 25px; padding-right: 25px;
                            overflow-x: hidden;
                            overflow-y: auto; 
                            height: 100%;
                        }

                    .modal--preguntas .logo {
                        position: absolute;
                        top: 0px;
                        float: left;
                        width: 150px;
                        height: 100%;
                    }

                    .modal--preguntas .valoracion {
                        position: absolute;
                        right: 25px;
                        bottom: 10px;
                    }

                    .modal--preguntas .quien-pregunto {
                        display: block;
                        position: absolute;
                        bottom: 40px;                        
                    }

                @media print, screen and (max-width:  767px) { /* para tablet */
                    .modal--preguntas {
                        border-radius: 0px;
                        height: 100%;
                        overflow-x: hidden;
                        overflow-y: auto;   
                    }

                    .modal--preguntas .modal__contenido {
                        overflow-x: hidden;
                        overflow-y: auto;  
                        height: 100%;
                    }

                    .modal--preguntas .la-pregunta, 
                    .modal--preguntas .la-respuesta {
                        float: none;
                        width: 100%; height: auto;
                    }

                    .modal--preguntas .la-pregunta {
                        padding-bottom: 35px;
                    }

                    .modal--preguntas .envoltura {
                        height: auto;
                        overflow: auto;
                    }

                    .modal--preguntas .quien-pregunto {
                        position: static;
                        margin-top: 30px;
                    }
                }


                @media print, screen and (min-width:  768px) { /* para desktop */

                }


            /*  modificador --imagenes  */
                .modal--imagenes {

                }
                    .modal--imagenes #cboxContent{
                        padding: 0px;
                    }

                    .modal--imagenes #cboxNext ,
                    .modal--imagenes #cboxPrevious {

                    }

                    .modal--imagenes #cboxNext ,
                    .modal--imagenes #cboxPrevious {
                        right: auto;
                        left: auto;
                        bottom: auto;
                        top: 50%;
                        display: block;
                        width: 60px; height: 130px;
                        margin-top: -50px; 
                        background: white;
                    }

                    .modal--imagenes #cboxPrevious {
                        left: -62px;

                        -webkit-border-top-left-radius: 10px;
                        -webkit-border-bottom-left-radius: 10px;
                        -moz-border-radius-topleft: 10px;
                        -moz-border-radius-bottomleft: 10px;
                        border-top-left-radius: 10px;
                        border-bottom-left-radius: 10px;
                    }

                    .modal--imagenes #cboxNext {
                        right: -62px;
                        -webkit-border-top-right-radius: 10px;
                        -webkit-border-bottom-right-radius: 10px;
                        -moz-border-radius-topright: 10px;
                        -moz-border-radius-bottomright: 10px;
                        border-top-right-radius: 10px;
                        border-bottom-right-radius: 10px;
                    }

                        .modal--imagenes #cboxNext::before    ,
                        .modal--imagenes #cboxPrevious::before {
                            content: '';
                            position: absolute;
                            left: 50%; top: 50%;
                            display: block;
                            margin: -13.5px 0 0 -7px; 
                            width: 14px; height: 27px;
                            background-image: url( ../images/ico-arrows.png );
                            background-repeat: no-repeat;
                        }

                        .modal--imagenes #cboxNext::before { background-position: top right }
                        .modal--imagenes #cboxPrevious::before { background-position: top left }

                    .modal--imagenes #cboxTitle {
                        color: white;
                        top: auto;
                        bottom: 0;
                        width: 100%;
                        padding: 20px 0;
                        text-align: center;
                        font-weight: 100;
                        background-color: rgba(73, 48, 26, .8);
                        min-height: 60px;
                    }

                    .no-title #cboxTitle{
                        display:none!important;
                    }



            /*  modificador --videos  */
                .modal--videos {

                }
                    .modal--videos #cboxContent{
                        padding: 0px;
                    }
                    
                    .modal--imagenes #cboxClose,
                    .modal--videos #cboxClose {
                        position: absolute;
                        z-index: 10;
                        right: -1.2em;
                        top: 0px;
                        display: block;
                        width: 1em !important;
                        height: 1em !important;
                        font-size: 36px;
                        font-weight: 100;
                        cursor: pointer;
                        background: transparent;
                    }

                        /*.modal--imagenes .colorbox-zoom::after {content: '\e015';}
                        .modal--imagenes .colorbox-zoom {
                            font-family: 'Glyphicons Halflings';
                            position: absolute;
                            border:0;
                            width: 36px;
                            height: 38px;
                            font-size: 24px;
                            font-weight: normal;
                            text-shadow: 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000, 2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000;
                            text-indent: 0;
                            z-index: 99;
                            cursor: pointer;
                            padding: 0px 6px;
                            text-align: center;
                            right: -39px; 
                            top: 60px;
                            background-color: transparent;
                            color: #ffffff;
                        }*/

                        .colorbox-zoom{
                            -webkit-touch-callout: none;
                            -webkit-user-select: none;
                            -khtml-user-select: none;
                            -moz-user-select: none;
                            -ms-user-select: none;
                            user-select: none;
                        }

                        .colorbox-zoom{
                            position: absolute;
                            height: 147px;
                            width: 9px;
                            top: 55px;
                            right: -25px;
                            text-align: center;
                            color: #ffffff;
                            font-size: 15px;
                            z-index: 3;
                        }

                        input[type=range][orient=vertical]{
                            writing-mode: bt-lr;
                            -webkit-appearance: slider-vertical;
                            width: 8px;
                            height: 80px;
                        }

                        .modal--imagenes #cboxClose::before ,
                        .modal--videos #cboxClose::before {
                            /* content: "x"; */
                            content: "";
                            display: block;
                            background: url(../images/close.png) no-repeat center;
                        
                            background-size: 75%;
                            /*font-family: 'Glyphicons Halflings';*/
                            position: absolute;
                            left: 0; top: 0px;
                            width: 1em; height: 1em;
                            
                            color: white;
                            text-indent: 0;
                        }

                        .zoom-out{
                            position: absolute;
                            width: 100%;
                            height: 100%;
                            z-index: 9999;
                            display: none;
                        }



            /*  en comun  */
                .modal--imagenes,
                .modal--imagenes #cboxOverlay,  
                .modal--imagenes #cboxWrapper,
                .modal--videos,
                .modal--videos #cboxOverlay,  
                .modal--videos #cboxWrapper {
                    overflow: initial !important;
                }

                @media print, screen and (max-width:  767px) { /* para tablet */
                    
                    .modal--imagenes .colorbox-zoom{
                        position: absolute;
                        height: auto;
                        width: 41px;
                        bottom: 64px;
                        right: 5px;
                        text-align: center;
                        background-color: #007649;
                        color: #ffffff;
                        font-size: 15px;
                        z-index: 3;
                        top: auto;
                    }

                    input[type=range][orient=vertical]{
                        /*float: left;
                        -webkit-appearance: slider-horizontal;
                        width:auto;*/
                        height: 80px;
                        width: 100%;
                    }

                    .modal--imagenes #cboxClose , 
                    .modal--videos #cboxClose  {
                        right: 0px !important; top: 0px;
                        background: white !important;
                        font-size: 30px;
                    }

                    .modal--imagenes #cboxClose::before , 
                    .modal--videos #cboxClose::before   {
                        color: black;
                        font-size: 28px;
                        filter: invert();
                    }

                    .modal--imagenes #cboxClose {
                        right: 0px !important; top: 0px;
                        background: white !important;
                        color: black !important;
                    }

                    .modal--imagenes #cboxNext, 
                    .modal--imagenes #cboxPrevious {
                        margin-top: -35px;
                        width: 30px;
                        height: 70px;
                    }

                    .modal--imagenes #cboxPrevious { 
                        left: 5px
                    }
                    .modal--imagenes #cboxNext { right: 5px }

                    
                }



/*  ------------------------------------  *\
 *  $ CLASES GRID
\*  ------------------------------------  */
    .grid {

    }

        /*  modificador --buscador  */
            .grid--buscador {
                /* padding-left: 180px; */
            }

                .grid--buscador .grid__filtro {
                    width: 55%;
                }

                .grid--buscador .seccion {
                    
                    /*background-color: #dcdcdc;*/
                    overflow: hidden;
                }

                .grid--buscador .grid__encabezado {
                    /* position: absolute; */
                    /*position: fixed; */
                    z-index: 10;
                    top: 0px; left: 0px; right: 0px;
                    height: 70px;
                    background-color: #dcdcdc;
                    width: 936px;
                    display: flex;
                    margin: 30px auto 30px;
                    /*padding: 10px 30% 10px 145px;*/
                    background-color: #fff;
                    border-radius: 37px;
                    border: 1px solid #f7b631;
                }

                .bginfografia.grid--buscador .grid__encabezado{
                    width: 430px;
                    margin-bottom: 20px;
                }

                .tags a{
                    display: inline-block; 
                    padding: 5px 11px; 
                    border:1px solid #bda793; 
                    background-color: #bda793; 
                    margin: 5px; 
                    color: #ffffff;
                    border-radius: 15px;
                }
                
                


                .grid--buscador .grid__contenido {
                    position: relative;
                    display: block;
                    /* padding: 110px 10px  10px 10px; */
                    /*background-color: #dcdcdc;*/
                    height: 100%;
                    margin: 0 auto;
                }

                /*  tipo de grid item */
                .grid--buscador .grid-item {
                    position: relative;
                    padding: 5px;
                    float: left;
                }

                .grid--buscador .grid-item__envoltura {
                    /*
                    position: absolute;
                    top: 5px; bottom: 5px; right: 5px; left: 5px;
                    */
                    position: relative;
                    padding-bottom: 30px; /* 40px; */
                    background-color: white;
                    font-size: 12px;
                    font-weight: 100;
                    /*  sombras  */
                    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.02);
                       -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.02);
                            box-shadow: 0px 0px 10px 1px rgba(0,0,0,.02);
                }

                .grid--buscador .grid-item__info {
                    position: relative;
                    display: block;
                    width: 100%; height: 100%;
                    overflow: hidden;
                    background-position: center;
                    background-size: cover;
                }

                .grid--buscador .grid-item__etiqueta {
                    position: absolute; z-index: 1;
                    left: 0px; bottom: 0px; right: 0px;
                    display: flex;
                    flex-direction: column;
                    /* align-items: center; */
                    justify-content: center;
                    text-align: left;         
                    min-height: 30px; max-height: 40px; 
                    color: white;  
                    padding: 7px 10px;
                    font-size: 11px;
                    font-weight: 500;
                    line-height: 1.2em;
                }

                    /* tamaños */
                    .grid--buscador .grid-item.--1x1 { width: 200px; height: 200px; } 
                    .grid--buscador .grid-item.--2x2 { width: 400px; height: 400px; } 
                    .grid--buscador .grid-item.--2x1 { width: 400px; height: 200px; } 
                    
                    .grid--buscador .grid-item__envoltura {
                        width: 100%; height: 100%;
                        cursor: pointer;
                    }


                    /* tipos  */
                    .grid--buscador .grid-item.--pregunta   .grid-item__etiqueta { background-color: #007649; }
                    .grid--buscador .grid-item.--imagen     .grid-item__etiqueta { background-color: #E1934D; }
                    .grid--buscador .grid-item.--video      .grid-item__etiqueta { background-color: #F7B631; color: #4a4444;}
                        
                        /* tipo pregunta */
                        .grid--buscador .grid-item.--pregunta .grid-item__envoltura {
                            /* position: relative; */
                            padding-left: 10px; padding-top: 40px; padding-right: 10px;
                        }

                        .grid--buscador .grid-item.--pregunta .grid-item__envoltura::before {
                            position: absolute;
                            left: 10px; top: 10px; right: 10px;
                            content: '';
                            display: block;
                            width: 100%; height: 25px;
                            background: url( ../images/ico_pregunta.png ) no-repeat center left; 
                        }

                        .grid--buscador .grid-item.--pregunta .grid-item__envoltura::after {
                            position: absolute;
                            content: 'Ver más';
                            right: 12px;
                            top: 14px;
                            font-size: 12px;
                            text-decoration: underline;
                        }

                        .grid--buscador .grid-item.--pregunta .grid-item__info::after {
                            content: '';
                            position: absolute;
                            left: 0px; bottom: 0px; right: 0px;
                            height: 50px;
                            background: url(../images/difuminado.png) repeat-x center bottom; 
                            background-size: cover;
                        }

                        /* tipo imagen */

                        /* tipo video */
                        .grid--buscador .grid-item.--video::before {
                            content: '';
                            position: absolute;
                            left: 50%; top: 50%;
                            display: block;
                            font-size: 10px;
                            width: 5em; height: 4em;
                            margin-left: -2.5em; margin-top: -3.5em;
                            background-color: tomato;
                        }
                        
                        /*
                        .grid--buscador .quien-pregunto {
                            display: block;
                            position: absolute;
                            bottom: 10px; left: 25px;
                        }
                        */

                    .grid--buscador .isotope-pager {
                        /*
                        position: fixed;
                        left: 0px;
                        top: 90px; bottom: 47px;
                        */
                        position: relative;
                        text-align: center;
                        width: 100%;
                        display: block;
                        margin-top: 20px;
                        /*
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        */
                        /*
                        display: grid;
                        grid-template-rows: repeat( auto-fit, minmax(10px, 1fr) );  
                        */                 
                        
                        padding-top: 10px;
                        padding-bottom: 10px;
                        overflow-x: auto;
                        overflow-y: hidden;
                    }

                    .grid--buscador .isotope-pager .pager {
                        margin: 0px 5px 20px;
                        display: inline-block;
                        background-color: #ffffff;
                        width: 1.5em;
                        height: 1.5em;
                        font-size: 14px;
                        border-radius: 100px;
                        text-decoration: none;
                        color: #333333;
                    }
                    
                    .grid--buscador .isotope-pager .pager:hover,
                    .grid--buscador .isotope-pager .pager:focus {
                        text-decoration: none;
                    }
                    
                    .grid--buscador .isotope-pager .pager.esta-activo {
                        background-color:  #f7af1a;
                        color: white;
                        text-decoration: none;
                    }

                .grid__botoncarga {
                    display: none;
                }

            @media print, screen and (max-width:  767px) { /* para tablet */
                .grid--buscador .seccion {
                    padding: 50px 5px 80px 5px !important;
                }

                .grid--buscador .grid__encabezado {
                    position: relative;
                    padding: 10px 20px 5px;
                    height: auto;
                    display: block;
                    width: auto;
                    text-align: center;
                    border: 0;
                    background-color: transparent;
                    margin: 5px 0;
                }

                .grid--buscador .grid__contenido::after {
                    content: '';
                    clear: both;
                    display: block;
                    width: 100%;
                }

                .bginfografia.grid--buscador .grid__encabezado{
                    width: 100%;
                }

                .grid--buscador .control--buscador {
                    /*position: fixed;*/
                    left: 0px;
                    bottom: 0px;
                    display: block;
                    width: 100%;
                    background-color: #ffffff;
                    padding: 9px 40px 12px 55px;
                    border-radius: 25px;
                    border-style: solid;
                    border-width: 1px;
                    border-color: #d69934;
                    margin-top: 0px;
                }

                    .grid--buscador .control--buscador::before {
                        bottom: 3px;
                        left: 10px;
                        top: 19px;
                        -webkit-transform: scale(1);
                            -ms-transform: scale(1);
                             -o-transform: scale(1);
                                transform: scale(1);
                    }

                    .grid--buscador .control--buscador .campo {
                        font-size: 18px;
                    }

                .grid--buscador .totales--resultados {
                    position: relative;
                    top: auto; right: auto; bottom: auto;
                    width: 100%; height: auto;
                    border: 0px;
                }

                    .grid--buscador .totales--resultados .totales__item {
                        padding-top: 10px; padding-bottom: 10px;
                    }

                .grid--buscador .grid-item.--1x1 { width:  50%; }
                .grid--buscador .grid-item.--2x1 { width: 100%; }
                .grid--buscador .grid-item.--2x2 { width: 100%; }

                .grid__botoncarga {
                    margin: 20px auto;
                    padding: 10px 20px;
                    display: block;
                    max-width: 200px;
                    border-radius: 100px;
                    background-color: #f7af1a;
                    text-align: center;
                    text-decoration: none !important;
                    color: white !important;
                }

                .grid__botoncarga:hover, .grid__botoncarga:focus {

                }
            }

