/* TEMPLATE SINGLE */

.post h1.entry-title {
    text-align: center;
    margin-bottom: 38px;
}

.post-articulo-text-desc {
    margin: 15px 0;
}

.post-articulo-image-main {
    margin-bottom: 20px;
}

.post-articulo-content-row {
    margin: 32px 0;
}

.post-articulo-indice-row {
    margin: 18px 0;
}

.post-articulo-button-wrap {
    text-align: center;
}

.post-articulo-button {
    width: 100%;
}

.post-articulo-badge {
    font-weight: 400 !important;
}

.post-articulo-social-buttons {
    margin-top: 18px;
    border-top: 1px #ccc solid;
    padding-top: 23px;
}

@media only screen and (max-width: 670px){
	.post-articulo-social-buttons {
		text-align:center;
	}
}


				
/* TEMPLATE ARCHIVE */

.category h1.page-title {
    text-align: center;
}

.category .taxonomy-description {
    text-align: center;
}

.archive .post {
    border-top: 1px #aaa dashed;
    padding: 30px 50px;
}

.archive .post h1.entry-title {
    text-align: left;
}

.archive-articulo-text-desc {
    margin: 10px 0;
}

.archive-articulo-badge {
    font-weight: 400 !important;
}


@media only screen and (max-width: 670px){

	.archive .post {
		padding: 30px 5px;
	}

	.archive .post h1.entry-title {
		text-align: center;
	}

	.archive-article-button {
		width: 100%;
	}


}

/* SHORTCODE GRILLA TAXONOMIAS*/

.grilla-articulo-tax-col {
    text-align: center;
    margin: 30px 0;
}

.grilla-articulo-tax-button {
    width: 100%;
}

.grilla-articulo-tax-nombre {
	margin: 10px auto;
}


/* SHORTCODE GRILLA*/

.grilla-articulo-col {
    text-align: center;
    margin: 30px 0;
}


.grilla-articulo-button {
    width: 100%;
}

.grilla-articulo-nombre {
	margin: 10px auto;
}

.grilla-articulo-desc {
    margin: 10px 0;
}

/* SHORTCODE LISTA*/

.lista-articulo-perfil-row {
    margin-top: 24px;
    margin-bottom: 24px;
}

.lista-articulo-perfil-nombre {
    margin: 0 0 10px;
}

.lista-articulo-perfil-descripcion {
    margin-top: 12px;
    margin-bottom: 12px;
}

.lista-articulo-perfil-button {
    margin: 5px;
}

@media only screen and (max-width: 670px){

	.lista-articulo-perfil-button {
		width: 100%;
	} 
	
	.lista-articulo-perfil-nombre {
		text-align: center;
	}

}


/* ------------------------------------------------------------------------------------------
Exclusive For screen -670px
   ------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 670px){

	.lista-articulo-perfil-button {
		width: 100%;
	} 
	
	.lista-articulo-perfil-nombre {
		text-align: center;
	}

	.post-articulo-button {
		width: 100%;
	}
	
	.archive .gestor-de-articulos {
		padding: 30px 5px;
	}

	.archive-articulo-text-titulo {
		text-align: center;
		margin: 12px 0;
	}

	.archive-articulo-button {
		width: 100%;
		margin: 5px 0;
	}

}

/* FILTROS DE IMAGEN DEL PLUGIN */

/* Zoom */  
.gestor-de-articulos-filter-zoom {
    overflow: hidden;
}

.gestor-de-articulos-filter-zoom img{
-webkit-transition: all 500ms ease; /* Safari and Chrome */
    -moz-transition: all 500ms ease; /* Firefox */
    -ms-transition: all 500ms ease; /* IE 9 */
    -o-transition: all 500ms ease; /* Opera */
    transition: all 500ms ease;
}

.gestor-de-articulos-filter-zoom:hover img{
  -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* IE 9 */
    -o-transform:scale(1.25); /* Opera */
     transform:scale(1.25);
}

/* Rotar*/
.gestor-de-articulos-filter-rote {
    overflow: hidden;
}

.gestor-de-articulos-filter-rote img {
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
 
.gestor-de-articulos-filter-rote img:hover {
  -webkit-transform: rotate(-5deg);
     -moz-transform: rotate(-5deg);
       -o-transform: rotate(-5deg);
      -ms-transform: rotate(-5deg);
          transform: rotate(-5deg);
}


/* Flashing */
.gestor-de-articulos-filter-flash:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}




