/*
Theme Name: iDiv2 by SIAICA
Theme URI: http://carlosruizzaragoza.com
Description: Tema adaptado por Carlos Ruiz Zaragoza (SIAICA) que permite la construccion de paginas mediante modulos totalmente personalizables y con posiblidad de cambiar los todos los colores y formatos del sitio web.
Author: Carlos Ruiz Zaragoza
Author URI: https://carlosruizzaragoza.com
Template: Divi
Version: 0.1.6
*/

/* Arriba moficar lo que se desee (opcional) 
Debajo hay que poner la url del archivo style.css del tema padre 
(aunque tambien se puede hacer desde el archivo functions.php) 
ej: @import url("../parenttheme/style.css"); 
@import url("../Divi/style.css"); */

/* Main Theme Styles */
@import url("../Divi/style.css");


/* Fuente predeterminada */
/**
 * Auto Generated by OMGF
 * @author: Daan van den Bergh
 * @url: https://ffw.press
 */

@font-face {
    font-family: 'Play';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-400.eot');
    src: url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-400.eot?#fix') format('embedded-opentype'),
    url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-400.woff2') format('woff2'),
    url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-400.woff') format('woff'),
    url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-400.ttf') format('ttf');
}
@font-face {
    font-family: 'Play';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-700.eot');
    src: url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-700.eot?#fix') format('embedded-opentype'),
    url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-700.woff2') format('woff2'),
    url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-700.woff') format('woff'),
    url('https://carlosruizzaragoza.com/wp-content/uploads/web-fonts/play-normal-700.ttf') format('ttf');
}

/* Aquí debajo aÃ±adimos las modificaciones del aspecto CSS (lo que no se especifique aquí será heredado del tema-padre/style.css) */
/* CSS de Wordpress */

/* Ajustar altura máxima de imagenes destacadas del modulo blog en el formato rejilla */
div.et_pb_image_container a.entry-featured-image-url  img{
   max-height: 190px !important;
   width: auto !important;
}

.negrita {
    font-weight: bold;
} 

.cursiva {
    font-style: italic;
}

.subrayado {
    text-decoration: underline;
}

.centro {text-align:center}


/* Ajustar algura del contenedor de página */
#main-content .container {
    padding-top: 5px;
}

/* hacer foto circular */
.circular img{ 
    border-radius: 50%;
}
.rectangular img{ 
    border-radius: 5%;
}

/* Sombra */
.sombraimg img {
    -webkit-box-shadow: 3px 3px 15px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 3px 15px 2px rgba(0,0,0,0.75);
    box-shadow: 3px 3px 15px 2px rgba(0,0,0,0.75);
}
.sombranegra {
    text-shadow: 2px 2px 2px #000000;
}
.sombrablanca {
    text-shadow: 2px 2px 2px #ffffff;
}

/* Efectos de títulos */
efectotitulo{
      text-shadow: 0 1px 0 #bbb,
                   0 1px 0 #bbb,
                   0 2px 0 #aaa,
                   0 3px 0 #aaa,
                   0 4px 0 #999,
                   0 5px 1px #000,
                   0 0px 2px #000,
                   0 1px 3px #000,
                   0 2px 4px #000,
                   0 5px 10px #000,
                   0 5px 20px #000;
}

h1, h2, .titulo {
    text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
    font-size: 25px !important;
    font-weight: bold;
    font-family: 'Arial Black';
}

h3, h4, h5, h6 {
    text-shadow: 3px 5px 10px #000;
}

/* color de la navegación por puntos */
ul.et_pb_side_nav {
    left: 0;
    top:51%;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topright: 15px;
    border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    border-bottom-right-radius: 15px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    border-top-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-left-radius: 0px;
    background: #1a432d;
}

/* controno logo del tema */
#logo {
    border-radius: 20% 0 !important; /* Borde redondeado */
    padding:10px; background-color:white;
    max-width:250px;
    height:auto!important;
}

#logo:hover {
        border: solid white 2px;
        box-shadow: 0px 0px 15px #000; /* Sombra */
        max-width:255px;
        height:auto!important;
}

/* Efectos de fotos */
.efectoimg_rectangle_semioval2, .efectoimg1 img {
padding:15px; /* Espacio entre la imagen y el borde */
background:#FFF; /* Color de fondo que se ve entre el espacio */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}

.efectoimg_rectangle_semioval2, .efectoimg1 img:hover {
border-radius: 0% 20%; /* Borde redondeado */
box-shadow: 0px 0px 15px #000; /* Sombra */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

.efectoimg_semioval2_rectangle img, .efectoimg2 img {
border-radius: 20% 0; /* Borde redondeado */
box-shadow: 0px 0px 15px #000; /* Sombra */
padding:0px; /* Espacio entre la imagen y el borde */
background:#FFF; /* Color de fondo que se ve entre el espacio */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}

.efectoimg_semioval2_rectangle img:hover , .efectoimg2 img:hover {
border-radius:0; /* Con esto quitamos el borde redondeado */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
/*cursor:pointer;*/
}

.efectoimg_rectangle_oval img, .efectoimg3 img {
padding:0;
border:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}

.efectoimg_rectangle_oval img:hover, .efectoimg3 img:hover {
border-radius: 50%; /* Borde redondeado */
box-shadow: 0px 0px 15px #000; /* Sombra */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

 .efectoimg_oval_rectangle img, .efectoimg4 img {
border-radius: 50%; /* Borde redondeado */
box-shadow: 0px 0px 15px #000; /* Sombra */
padding:0;
border:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}

.efectoimg_oval_rectangle img:hover, .efectoimg4 img:hover{
/*box-shadow: 0; /* Con esto eliminamos la sombra */
border-radius: 0; /* Con esto eliminamos el borde redondeado */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

.efectoimg_semioval_rectangle img, .efectoimg5 img {
border-radius: 45% / 20%; /* Borde redondeado */
box-shadow: 0px 0px 15px #000; /* Sombra */
padding:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}

.efectoimg_semioval_rectangle  img:hover, .efectoimg5 img:hover{
border-radius: 0; /* Con esto eliminamos el borde redondeado */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

.efectoimg6 img, .efectoimg_zoom img{
/* Aumentamos la anchura y altura durante 1 segundos */
transition: width 1s, height 1s, transform 1s;
-moz-transition: width 1s, height 1s, -moz-transform 1s;
-webkit-transition: width 1s, height 1s, -webkit-transform 1s;
-o-transition: width 1s, height 1s,-o-transform 1s;
}

.efectoimg6:hover img, .efectoimg_zoom img:hover{
/* tranformamos el elemento al pasar el mouse por encima al doble de
 su tamaÃ±o con scale(2). */
transform : scale(1.1);
-moz-transform : scale(1.1);      /* Firefox */
-webkit-transform : scale(1.1);   /* Chrome - Safari */
-o-transform : scale(1.1);        /* Opera */
background:transparent !important;
}

/* div styles rota_imagen */
.efectoimg7 img, div.rota_imagen img {
    margin: 5px;
    border: 3px solid #000;
    -webkit-box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
    box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.efectoimg7 img:hover, div.rota_imagen img:hover {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
}

@-webkit-keyframes rotater {
0% { -webkit-transform:rotate(0) scale(1) }
50% { -webkit-transform:rotate(360deg) scale(2) }
100% { -webkit-transform:rotate(720deg) scale(1) }
}

img.rota360zoom, .efectoimg_360, .efectoimg8     { position:relative;display:block; }
img.rota360zoom:hover, .efectoimg_360:hover, .efectoimg8:hover { 
    position:relative;z-index:111;
    /* safari / chrome */
    -webkit-animation-name:rotater; 
    -webkit-animation-duration:750ms; 
    -webkit-animation-iteration-count:1;
    -webkit-animation-timing-function: ease-out;
    /* mozilla */
    -moz-transform:rotate(720deg) scale(1.5);
    -moz-transition-duration:750ms;
    -moz-transition-timing-function: ease-out;
    /* opera */

    -o-transform:rotate(720deg) scale(1.5);
    -o-transition-duration:750ms;
    -p-transition-timing-function: ease-out;
    /* ie */
    -ms-transform:rotate(720deg) scale(1.5);
    -ms-transform-duration:500ms;
    -ms-transform-timing-function: ease-out;
}

.sombraimg {
    box-shadow: 5px 5px 5px gray;
}

.boton {
   border-top: 1px solid #5b7a76;
   background: #26524e;
   background: -webkit-gradient(linear, left top, left bottom, from(#09302d), to(#26524e));
   background: -webkit-linear-gradient(top, #09302d, #26524e);
   background: -moz-linear-gradient(top, #09302d, #26524e);
   background: -ms-linear-gradient(top, #09302d, #26524e);
   background: -o-linear-gradient(top, #09302d, #26524e);
   padding: 9.5px 19px;
   -webkit-border-radius: 40px;
   -moz-border-radius: 40px;
   border-radius: 40px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: white;
   font-size: 16px;
   font-family: Helvetica, Arial, Sans-Serif;
   text-decoration: none;
   vertical-align: middle;
   }

.boton:hover {
   border-top-color: #09302d;
   background: #09302d;
   color: #f7f7f7;
   }

.boton:active {
   border-top-color: #1b435e;
   background: #1b435e;
   }

.efectofacebook {
    color: #0040FF; padding-left:2px; padding-right:2px; margin-right:2px; margin-left:2px;; float:right;
}

.efectogoogle-plus {
    color: #FA5858; padding-left:2px; padding-right:2px; margin-right:2px; margin-left:2px;; float:right;
}
.efectotwitter {
    color: #00BFFF; padding-left:2px; padding-right:2px; margin-right:2px; margin-left:2px;; float:right;
}
.efectoyoutube {
    color: red; padding-left:2px; padding-right:2px; margin-right:2px; margin-left:2px;; float:right;
}
.efectolinkedin {
    color: #0000FF; padding-left:2px; padding-right:2px; margin-right:2px; margin-left:2px;; float:right;
}
.efectopinterest {
    color: #DF0101; padding-left:2px; padding-right:2px; margin-right:2px; margin-left:2px;; float:right;
}.efectorss {
    color: orange; padding-left:2px; padding-right:2px; margin-right:2px; margin-left:2px;; float:right;
}
/* HOVER */
.efectofacebook:hover, .efectogoogle-plus:hover, .efectotwitter:hover, .efectoyoutube:hover, .efectolinkedin:hover, .efectopinterest:hover,.efectorss:hover {
    /*top:-2px; position:relative;   */ 
    -webkit-transition:all 0.3s linear;
    -moz-transition:all 0.3s linear;
    -o-transition:all 0.3s linear;
    transition:all 0.3s linear;
}
/* POSITION */
.posicion-redes-sociales-buscador {
    margin-top:-10px;margin-left:20%;margin-bottom:60px;
}

/* MOVIMIENTO */
.efecto-arriba-2 {
   max-width:35px;
   float:left;
   margin-top:5px;
   -webkit-transition:all 0.3s ease;
   -moz-transition:all 0.3s ease;
   -o-transition:all 0.3s ease;
   transition:all 0.3s ease;
}

.efecto-arriba-2:hover {
   margin-top:0px;
}

/* Ajustes de plantilla */
ul#top-menu{
 color:#FFFFFF;
 text-shadow: 0 1px 0 #ccc,
 0 2px 0 #c9c9c9,
 0 3px 0 #bbb,
 0 4px 0 #b9b9b9,
 0 5px 0 #aaa,
 0 6px 1px rgba(0,0,0,.1),
 0 0 5px rgba(0,0,0,.1),
 0 1px 3px rgba(0,0,0,.3),
 0 3px 5px rgba(0,0,0,.2),
 0 5px 10px rgba(0,0,0,.25),
 0 10px 10px rgba(0,0,0,.2),
 0 20px 20px rgba(0,0,0,.15);
}

ul.fullwidth-menu  {
    text-shadow: 4px 6px 10px #000;
}

/* CSS Captcha Contacto Corregido Ancho */
.et_pb_contact_right p input {
    max-width: 65px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
}

  /* estilo sabías que */
  #sabias {
    margin-left:50px;
  }
  #mimensaje {

  }

.et_pb_image_container {
    margin: 0px 0px 2px;
}

.et_pb_image_container img {
   min-height:210px;
   max-height:210px;
}

.big{
    font-size:28px;
}

.alto150 {
    min-height:160px;
}

.alto100 {
    min-height:100px;
}

.flotar{
    position:absolute;
}

.floatleft {float:left}
.floatright {float:right}
.colorblanco {color:white}
.colornegro {color:black;}
.colorazul {color:#2E64FE;}
.letra10 {font-size:10px;}
.letra16 {font-size:16px;}
.letra18 {font-size:18px;}
.letra20 {font-size:20px;}
.letra22 {font-size:22px;}
.letra24 {font-size:24px;}
.letra26 {font-size:26px;}
.colorcyan {color:cyan !important;}
.alineacionizquierdafooter {width:300;left:50%;margin-left: 50px; }
.derecha {text-align:right;}
.colortema{color: #002d2a;}
.centro {text-align:center;margin-right:auto;margin-left:auto;}
.oculto {display:none;}
.centroabsoluto {text-align:center; }
.izquierda10 {margin-left:10px;} .izquierda20 {margin-left:20px;} .izquierda30 {margin-left:30px;} .izquierda40 {margin-left:40px;} .izquierda50 {margin-left:50px;}
.derecha10 {margin-right:10px;} .derecha20 {margin-right:20px;} .derecha30 {margin-right:30px;} .derecha40 {margin-right:40px;} .derecha50 {margin-right:50px;}
.left50 {left:50%}
.arriba10 {margin-top:10px;} .arriba20 {margin-top:20px;} .arriba10 {margin-top:30px;}
.abajo10 {margin-bottom:10px;} .abajo20 {margin-bottom:20px;} .abajo10 {margin-bottom:30px;} 
.marginrightauto {margin-right:auto;}
.marginleftauto {margin-left:auto;}
.left120 {left:120px;}
.sombranegra {background-color: rgba(0, 0, 0, 0.6); padding-right: 20px; padding-left: 30px; padding-top: 20px; padding-bottom: 40px; color: white;}
.sombranegrafina {background-color: rgba(0, 0, 0, 0.6); padding: 15px; color: white;}

.footer-widget {text-align:center;}
.fondoblanco {background-color:white;}
.post {margin-top:30px;}
.addthis_horizontal_follow_toolbox {width:auto;max-width:200px;}
.et_pb_section {padding: 0% 0px;}
.et_pb_row {padding: 1% 0;}
.et_main_title h1 {color:white}
.et_main_title {text-align:center;background-color:#002d2a;color:white;padding-top:15px;}
.widgettitle {text-align:center;background-color:#002d2a;color:white;padding-top:15px;}
h4.widgettitle a {color:white;}
	h2 a { text-decoration: none; color: #002622; }
	h2 a:hover { text-decoration: none;color:#2EA3F2; }
.et_pb_widget li a:hover {
    color: #002d2a !important;
}
.et_pb_widget li a {
    color: #005446 !important; /* text-decoration:underline */
}
 /* Color de enlace activo */
.current_page_item a{
    color:#1e73be !important;}
/* fin color enlace activo */

#main-content .container {margin-top: 20px;}
.post {margin-top: 10px;}
.et_post_meta_wrapper h1 {text-align:center;background-color:#002d2a;color:white;padding-top:15px}
.project {margin-top:20px;text-align:justify;}
.project h2{margin-bottom:-15px;}
html { overflow-x:hidden; }
.et_pb_fullwidth_header {
    padding: 0px 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#atftbx {z-index:-1;}
/* CSS heredado de la vieja web */
#ticker { height: 40px; overflow: hidden; margin: 0; padding: 0; }
#ticker li { height: 40px; }
#top {
    display:inline-block;
    top:0px; 
    right:0px;  
    width:100%; 
    border: solid 0px gray; /* Los bordes de la barra */ 
    border-top:none; 
    background-color: #ffffff; 
    height: 1080px;
    position:fixed;
    z-index:10001;
    text-align:right; 
    min-height:15px;
    font-size:13px;
    font-style:italic;
    font-weight:bold;
    color:#000000;
}
#menu-top {margin-top:0px;}
#topprensa {
    line-height:0.9em; 
    z-index:10002 !important;
    position:absolute; 
    top: 0px; 
    left:0px;
    width:130px;
    min-height:80px; 
}

/* posicion menu top prensa */
.pos-menu-prensa {
    width:130px;min-height:60px;
}

/* */
/* posicion tiempo en buscador */
.pos-tiempo-buscador {
	z-index:-1 !important;position:absolute !important;top:20px;right:0px;
}
/* estilo campo buscador google */
.estilo-campo-google {
    font-family:georgia;font-style:italic;z-index:1005; margin-left:10px;
}
.estilo-boton-buscar {
    font-family:georgia;letter-spacing:1px;font-style:italic;z-index:1000008 !important; margin-left:5px;
}
div.aumenta_imagen_200a240 img{
    width:200px;
    margin-left:auto;margin-right:auto; position:absolute;
     -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
}
div.aumenta_imagen_200a240 img:hover {
    width: 240px;    position:absolute;
    margin-left:auto;margin-right:auto;
}
div.aumenta_imagen_200a240 img:active {
    box-shadow: 2px 2px 10px #0B173B;
    width: 240px;    position:absolute;
    margin-left:auto;margin-right:auto;
}
div.aumenta_imagen img{
    box-shadow: 1px 1px 2px #045FB4;
    border:solid white 0px;
    width: 80px;
    height:20px;
    margin: 0px 0;
     -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
div.aumenta_imagen img:hover {
    box-shadow: 5px 5px 5px gray; /* old color - #2ECCFA */
    width: 80px;
    height:20px;
    margin-left: 2px;
}
div.aumenta_imagen img:active{
    box-shadow: 2px 2px 10px #0B173B;
    width: 80px;
    height:25px;
    margin-left: 2px;
}
div.aumenta_imagen120 img {
    width:80%;
    margin: 0px 0;
     -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
}
div.aumenta_imagen120 img:hover {
    width: 120%;    position:relative;
    margin-left: 0px;
}
div.aumenta_imagen120 img:active  {
    box-shadow: 2px 2px 10px #0B173B;
    width: 120%;    position:relative;
    margin-left: 0px;
}
img.efecto_menu {
    top:-6px;
    position:relative;
    width: 100px;
    height: 45px;
    margin: 0px 0;
    margin-right:-5px;
}

img.efecto_menu:hover {
    top:-3px;
   -webkit-transition:all 0.1s linear;
   -moz-transition:all 0.1s linear;
   -o-transition:all 0.1s linear;
    transition:all 0.1s linear;
    height: 45px;
    width: 100px;
    color: red; transform:scale(1.0,1.1);
}

 /* Efecto zoom de enlaces Outlook, facebook y rededes sociales Twitter, Tuenti, etc... */
img.efecto_menu_redes_sociales {
    position:relative;
    height: 22px;
    width:auto;
    margin-right: 8px;
}

img.efecto_menu_redes_sociales:hover {
    height: 22px;
    z-index:10009;
    transform:scale(1.2,1.2);
    -webkit-transition:all 0.3s linear;
    -moz-transition:all 0.3s linear;
    -o-transition:all 0.3s linear;
    transition:all 0.3s linear;
}

#et-top-navigation nav>ul>li>a:hover {
    color: #1e73be;
}
    #seehideboxbuttons {
        right:-765px;
        position: fixed;
        bottom: 3%;
        z-index: 10004;
    }
    #seehidebox #seehideboxbuttons a:hover {
        margin-right:760px;
        transition-duration: 1s;
    }
    #seehidebox #seehideboxbuttons a:hover > span {
        margin-right:30px;
        transition-duration: 1s;
    }
    #seehideboxbuttons2 {
        right:-230px;
        position: fixed;
        bottom: 55px;
        z-index: 10004;
    }
    #seehidebox2 #seehideboxbuttons2 a:hover {
        margin-right:225px;
        transition-duration: 1s;
    }
    #seehidebox2 #seehideboxbuttons2 a:hover > span {
        margin-right:30px;
        transition-duration: 1s;
    }

/* estilo de la propiedad title en enlaces <a> */
/* tooltip negro */
/* tooltip negro alineado a la derecha */
a.tooltipde {outline:none; color:white; }
a.tooltipde strong {line-height:25px;color:cyan; font-size:18px;}
a.tooltipde:hover {text-decoration:none;} 
a.tooltipde span {
    z-index: 99999;display:none; padding:4px 30px;
    margin-top:35px;
    margin-left:-20px;
    width:320px; line-height:18px;
}
a.tooltipde:hover span{
    display:inline; position:absolute; 
    border:2px solid #FFF;  color:#EEE;
    background:#333 url(https://carlosruizzaragoza.com/onewebmedia/css-tooltip-gradient-bg.png) repeat-x 0 0;
    z-index: 99999
}
.tooltiptopde {z-index:100001;position:absolute;border:0;top:-14px;left:30px;}

/*CSS3 extras*/
a.tooltipde span {
    border-radius:2px;        
    box-shadow: 0px 0px 8px 4px #666;
    /*opacity: 0.8;*/
}

a.tooltip {outline:none; color:white; }
a.tooltip strong {line-height:25px;color:cyan; font-size:18px;}
a.tooltip:hover {text-decoration:none;} 
a.tooltip span {
    z-index: 99999;;display:none; padding:4px 20px;
    margin-top:35px;
    margin-left:-200px;
    width:320px; line-height:18px;
}

a.tooltip:hover span{
    display:inline; position:absolute; 
    border:2px solid #FFF;  color:#EEE;
    background:#333 url(https://carlosruizzaragoza.com/onewebmedia/css-tooltip-gradient-bg.png) repeat-x 0 0;
    z-index: 99999
}
.tooltiptop {z-index:100001;position:absolute;border:0;top:-14px;left:200px;}

/*CSS3 extras*/

a.tooltip span {
    border-radius: 2px;
    box-shadow: 0px 0px 8px 4px #666;
    z-index: 99999;
    /* opacity: 0.8; */
}

/* tooltip negro alineado a la izquierda */
a.tooltipiz {outline:none; color:white; }
a.tooltipiz strong {line-height:25px;color:cyan; font-size:18px;}
a.tooltipiz:hover {text-decoration:none;} 
a.tooltipiz span {
    z-index: 99999;display:none; padding:4px 20px;
    margin-top:35px; 
    margin-left:-300px;
    width:320px; line-height:18px;
}

a.tooltipiz:hover span{
    display:inline; position:absolute; 
    border:2px solid #FFF;  color:#EEE;
    background:#333 url(https://carlosruizzaragoza.com/onewebmedia/css-tooltip-gradient-bg.png) repeat-x 0 0;
    z-index: 99999
}
.tooltiptopiz {z-index:100001;position:absolute;border:0;top:-14px;left:300px;}

/*CSS3 extras*/
a.tooltipiz span {
    border-radius:2px;        
    box-shadow: 0px 0px 8px 4px #666;
    /*opacity: 0.8;*/
}

/* posicion de la foto interna del tooltip */
.pos-img-tooltip{
    background:white; margin-left:15px;float:right;
}

/* */
table.cart th, #main-content table.cart th, table.cart td, #main-content table.cart td, table.cart tr, #main-content table.cart tr, #content-area table tr, #content-area table td, #content-area table th {
    max-width: 100% !important;
}

/* */
.border-hover .et_pb_column {
 overflow: hidden;
 position: relative;
}
 
.border-hover .et_pb_column img {
 -webkit-transition: all 0.5s ease-in-out;
 -moz-transition: all 0.5s ease-in-out;
 transition: all 0.5s ease-in-out;
}
 
.border-hover .et_pb_column:hover img {
 transform: scale(1.1);
}
 
.border-hover .et_pb_column:hover .et_pb_image:after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0,0,0,0.4);
 content: '';
}
 
.border-hover .et_pb_column .et_pb_promo_description:before {
 top: 50px;
 right: 30px;
 bottom: 50px;
 left: 30px;
 border-top: 1px solid #fff;
 border-bottom: 1px solid #fff;
 -webkit-transform: scale(0,1);
 transform: scale(0,1);
 -webkit-transform-origin: 0 0;
 transform-origin: 0 0;
 position: absolute;
 content: '';
 opacity: 0;
 -webkit-transition: opacity 0.35s,
 -webkit-transform 0.35s;
 transition: opacity 0.35s, transform 0.35s;
}
 
.border-hover .et_pb_column .et_pb_promo_description:after {
 top: 30px;
 right: 50px;
 bottom: 30px;
 left: 50px;
 border-right: 1px solid #fff;
 border-left: 1px solid #fff;
 -webkit-transform: scale(1,0);
 transform: scale(1,0);
 -webkit-transform-origin: 100% 0;
 transform-origin: 100% 0;
 position: absolute;
 content: '';
 opacity: 0;
 -webkit-transition: opacity 0.35s,
 -webkit-transform 0.35s;
 transition: opacity 0.35s, transform 0.35s;
}
 
.border-hover .et_pb_column:hover .et_pb_promo_description:before, .border-hover .et_pb_column:hover .et_pb_promo_description:after {
 -webkit-transition-delay: 0.15s;
 transition-delay: 0.15s;
 opacity: 1;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 
.border-hover .et_pb_column .et_pb_promo_description h2 {
 opacity: 0;
 color: #fff;
 position: absolute;
 top: 37%;
 width: 100%;
 text-align: center;
 -webkit-transition: all 0.5s ease-in-out;
 -moz-transition: all 0.5s ease-in-out;
 transition: all 0.5s ease-in-out;
 margin: 0;
 padding: 0;
}
 
.border-hover .et_pb_column .et_pb_promo_description p {
 opacity: 0;
 color: #fff;
 position: absolute;
 top: 42%;
 width: 100%;
 text-align: center;
 -webkit-transition: all 0.5s ease-in-out;
 -moz-transition: all 0.5s ease-in-out;
 transition: all 0.5s ease-in-out;
}
 
.border-hover .et_pb_column:hover .et_pb_promo_description h2 {
 opacity: 1;
 position: absolute;
 top: 40%;
 width: 100%;
 text-align: center;
 color: #fff;
}
 
.border-hover .et_pb_column:hover .et_pb_promo_description p {
 opacity: 1;
 position: absolute;
 top: 50%;
 width: 100%;
 text-align: center;
 color: #fff;
}
 
.border-hover .et_pb_promo {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}
 
.border-hover .et_pb_promo_button {
 opacity: 0;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}

/* Estilo Botones Submit */
.file, .button, #respond .form-submit input#submit, input[type="submit"], input[type="reset"] {
    background-color: #FFFFFF;
    border-color: #ccc !important;
    border-radius: 25px 25px 25px 25px ;
    -moz-border-radius: 25px 25px 25px 25px ;
    -webkit-border-radius: 25px 25px 25px  25px ;
    border: 1px solid rgba(20,54,56,1);
    padding:10px;
    margin-top:2px;
    font-size:16px;
    color:blue;
}
/* Estilo Botones Submit con el ratón encima (hover) */
.file, .button, #respond .form-submit input#submit, input[type="submit"]:hover, input[type="reset"]:hover {
    color:green;
    border-color: rgba(20,54,56,1) !important;
    -webkit-transition: all 0.5s ease !important;
    -moz-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}

/* Estilo botón enviar comentario */
#respond .form-submit input#submit {
    color:green;
    border-color: rgba(20,54,56,1) !important;
    -webkit-transition: all 0.5s ease !important;
    -moz-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}

#respond .form-submit input#submit:hover {
    border-color: transparent!important;
    -webkit-transition: all 0.5s ease !important;
    -moz-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}

/* Estilo campo google del buscador */
.estilo-campo-google {
    font-family: georgia;
    font-style: italic;
    z-index: 1005;
    margin-left: 0px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 25px;
}
/* fondo degradado en el menú de la version mobil (fondo original blanco) */
.et_mobile_menu {
background: rgba(7,40,46,1);
background: -moz-linear-gradient(left, rgba(7,40,46,1) 0%, rgba(10,56,64,1) 51%, rgba(21,87,99,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(7,40,46,1)), color-stop(51%, rgba(10,56,64,1)), color-stop(100%, rgba(21,87,99,1)));
background: -webkit-linear-gradient(left, rgba(7,40,46,1) 0%, rgba(10,56,64,1) 51%, rgba(21,87,99,1) 100%);
background: -o-linear-gradient(left, rgba(7,40,46,1) 0%, rgba(10,56,64,1) 51%, rgba(21,87,99,1) 100%);
background: -ms-linear-gradient(left, rgba(7,40,46,1) 0%, rgba(10,56,64,1) 51%, rgba(21,87,99,1) 100%);
background: linear-gradient(to right, rgba(7,40,46,1) 0%, rgba(10,56,64,1) 51%, rgba(21,87,99,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#07282e', endColorstr='#155763', GradientType=1 );
}

@media all and (min-width: 981px) and (max-width: 1100px) {
    #top-menu li {
    padding-right: 10px;
    }   
}

/* Responsive Styles Smartphone Portrait */
@media all and ( max-width: 1100px )  {
  #et_top_search {display:none;}
  .ocultarentablet {display:none!important;}

}


@media all and ( max-width: 980px ) {
    #logo {
        border: solid white 2px; background-color: white;
        box-shadow: 0px 0px 15px #000; /* Sombra */
    }
  .ocultarenmobil {display:none;}
  .anchovariable {width:200px;}   
  .margen {margin-top:5px;}
  h1, h2, titulo {
    text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
    font-size: 20px !important;
    font-weight: bold;
    font-family: 'Arial Black';
    }
      #et_top_search {display:block;}
}

@media  (min-width:600px) and (max-width:768px) {
  .ocultarenmobil {display:none!important;}
  div#et-info {
    width: calc( 100% - 68px );
    float: left;
  }
  div#et-secondary-menu {
    width: 68px!important;
    float: right;
  }
}
 
 @media all and ( max-width: 600px ) {
  .anchovariable {width:160px;}   
  .margen {margin-top:5px;}
  .ocultarenmobil {display:none!important;}
    h1, h2, titulo {
    text-shadow: 0px 0px 0px rgba(0,0,0,0.3);
    font-size: 16px !important;
    font-family: 'Arial';
    }
    #et_top_search {display:block;}
}

 @media all and ( max-width: 450px ) {
  .anchovariable {width:80px;}   
  .margen {margin-top:2px;}
  .ocultarenmobil {display:none!important;}
      h1, h2, titulo {
    text-shadow: 0px 0px 0px rgba(0,0,0,0.3);
    font-size: 14px !important;
    font-family: 'Arial';
    }
    #et_top_search {display:none!important;}
}


/******* integrar este css al styles.css *******/
/* Corregir altura de modulo */
.et_section_regular article.post {min-height: 555px !important;}

/* eliminar lupa-buscador del idioma catalán */
/*:lang(ca) span#et_search_icon::before {
    display:none !important;
}*/

/* Estilo botón leer-más */
/*.et_section_regular {
    position: relative;
   top: -20px!important;
}*/
.et_section_regular article.post {
   position:relative;
   border-radius: 15px 15px 15px 15px;
   -moz-border-radius: 15px 15px 15px 15px;
   -webkit-border-radius: 15px 15px 15px 15px;
   border: 2px solid #bbc5c9;
   padding: 3%;
}
/* juntar las columnas del blog layot de la biblioteca */
.et_pb_gutters2 .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3  {margin-right:1%!important;}

.more-link {
   position:absolute;
   bottom:-1px;
   right:10px;
   background: #fff;
   padding-top:1px;padding-bottom:2px; padding-right:4px; padding-left:4px;
   border-style: solid;
   border-width: 1px;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
    border-left: 6px solid transparent;  /* izquierda flecha */
    border-right: 6px solid transparent; /* derecha flecha */
    border-bottom: 6px solid #0B3B2E; /* base flecha y color*/
}
.more-link:hover {
   background: #CEF6F5;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;

   -moz-box-shadow: 0px 0px 10px #0B3B2E; 
   -webkit-box-shadow: 0px 0px 10px #0B3B2E; 
   box-shadow: 0px 0px 10px #0B3B2E;

}
.more-link:after {
   content:" ⇧";
}
.more-link:hover:after {
   content:" ⇧";
}

/* Alinear titulos h2 a la izquierda */
h2.entry-title {text-align: left !important;}

/* Estilo título h1 de categorías */
.cat-title {
   background: white !important;
   text-align:center;
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom:-20px !important;
}
.cat-title h1 {
   padding-top:20px;
   margin-right:4%;
   margin-bottom:-20px;
}

/* Corregir ancho widget del footer */
div#footer-widgets  {width:100%!important}

img#img-move {
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
   -webkit-transform: translate3d(0, 0, 0);
   /*width:80%;*/
   -webkit-filter: brightness(33%);
   filter: brightness(33%);
   position:absolute;
   top:-590px;
   right:150px;
   width:180px;
}
img#img-move:hover {
    top:-640px;
    right:150px;
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    width: 696px;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    transition: all 0.8s ease;
    -webkit-transform: translate3d(0, 0, 0);
}

.et_button_icon_visible .et_pb_button:after, .et_button_icon_visible.woocommerce a.button.alt:after, .et_button_icon_visible.woocommerce-page a.button.alt:after, .et_button_icon_visible.woocommerce button.button.alt:after, .et_button_icon_visible.woocommerce-page button.button.alt:after, .et_button_icon_visible.woocommerce input.button.alt:after, .et_button_icon_visible.woocommerce-page input.button.alt:after, .et_button_icon_visible.woocommerce #respond input#submit.alt:after, .et_button_icon_visible.woocommerce-page #respond input#submit.alt:after, .et_button_icon_visible.woocommerce #content input.button.alt:after, .et_button_icon_visible.woocommerce-page #content input.button.alt:after, .et_button_icon_visible.woocommerce a.button:after, .et_button_icon_visible.woocommerce-page a.button:after, .et_button_icon_visible.woocommerce button.button:after, .et_button_icon_visible.woocommerce-page button.button:after, .et_button_icon_visible.woocommerce input.button:after, .et_button_icon_visible.woocommerce-page input.button:after, .et_button_icon_visible.woocommerce #respond input#submit:after, .et_button_icon_visible.woocommerce-page #respond input#submit:after, .et_button_icon_visible.woocommerce #content input.button:after, .et_button_icon_visible.woocommerce-page #content input.button:after {
    opacity: 1;
}

/* Imagen destacada a la izquierda del extracto en las categorias */
div#content-area div#left-area article.post a img {
  height: auto !important;
  float:left;
  width: auto !important;
  max-width: 30%;
  left:0;
  padding-right: 15px;
  max-height:180px;
}
/* Volver a poner todo bien en los posts individuales */
div#content-area div#left-area article.post div a img {
  height: auto;
  float:inherit;
  width: auto;
  max-width: 100%;
  left:auto;
  padding-right: 0px;
  max-height:100%;
}
div#content-area div#left-area article.post a img.alignright {
  height: auto !important;
  float:right;
  width: auto;
  max-width: 100%;
  left:auto;
  padding-right: 0px;
  max-height:100%;
}
div#content-area div#left-area article.post a img.alignleft {
  height: auto;
  float:left;
  width: auto;
  max-width: 100%;
  left:auto;
  padding-right: 0px;
  max-height:100%;
}
div#content-area div#left-area article.post a img.aligncenter {
  height: auto;
  float:center;
  width: auto;
  max-width: 100%;
  left:auto;
  padding-right: 0px;
  max-height:100%;
}
/* Aumentar margen superior de cada post y página de resultados y categorías */
div.categorie article.post, body.search article.post, body.search article.page,  body.tag article.post, body.tag article.page {
    margin-bottom: 50px; margin-bottom:50px; min-height: 210px;
    -webkit-box-shadow: 0px -1px 32px 0px rgba(13,38,37,1);
    -moz-box-shadow: 0px -1px 32px 0px rgba(13,38,37,1);
    box-shadow: 0px -1px 32px 0px rgba(13,38,37,1);
    padding: 2%;
}

/* corregir proporción imágenes galería publicaciones */
.et_pb_image_container img {
  min-height: auto;
  max-height: auto;
}

.et_pb_blog_grid .et_pb_image_container img {
    min-width: auto;
    max-width: 100%;
    height: auto;
    width: auto;
}

@media only screen and (max-width: 1124px) {
    .et_pb_blog_grid .et_pb_image_container img {
        min-width: auto;
        max-width: 100%;
        height: auto;
        max-height: 150px;
    }
}
@media only screen and (max-width: 980px) {
    .et_section_regular article.post {min-height: 480px !important; }
 /* Estilo título h1 de categorías */
   .cat-title {
      text-align:center;
      background: white!important;
      background-color:white!important;
      margin-bottom: -20px!important;
   }
   .cat-title h1 {  
      background:white!important;
      padding-top: 20px;
      margin-right:0%;
  }
  
  div#content-area div#left-area article.post a img {
    float:left;
    width: 30%;
    height: auto;
  }
  .et_pb_blog_grid .et_pb_image_container img {
    min-width: auto;
    max-width: 100%;
    height: auto;
  }
  
  .et_pb_image_container img {
    min-height: auto;
    max-height: 100%;
    height:auto;
  }
}
@media only screen and (max-width: 768px) {
  .et_section_regular article.post {min-height: auto !important; }
  div#content-area div#left-area article.post a img {
    float:none;
    width: 100%;
    height: auto;
  }
  .et_pb_image_container img {
    min-height: auto;
    max-height: auto;
  }
}
@media only screen and (max-width: 640px) {
  div#content-area div#left-area article.post a img {
    float:none;
    width: 100%;
    height: auto;
  }
  .et_pb_image_container img {
    min-height: auto;
    max-height: auto;
  }
}


