/*
Theme Name: Black & White
Theme URI: http://themewagon.com/demo/Black-And-White/
Author: ThemeWagon
Author URI: http://themewagon.com/
Description: Minimal Blogging Theme
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: black, white, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: blackandwhite
*/


/**
 * Table of Contents
 *
 * 1.0 - Google Font
 * 2.0 - General Elements
 * 3.0 - Site Header
 *   3.1 - Logo
 *   3.2 - Main Navigation
 *     3.2.1 - Main Nav CSS 3 Hover Effect
 * 4.0 - Home/Blog
 *   4.1 - Read More Button CSS 3 style
 * 5.0 - Widget
 * 6.0 - Footer
 * 7.0 - Header Search Bar
 * 8.0 - Mobile Menu
 * 9.0 - Contact Page Social
 * 10.0 - Contact Form
 * 11.0 - Media Query
 */

/**
 * 1.0 - Google Font
 */

/*
@import url(http://fonts.googleapis.com/css?family=Lato:300,400);
@import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400);
*/

/**
 * 2.0 - General Elements
 */

* {outline: none;}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 { 
	margin-top: 0;
}

b {
	font-weight: 400;
}

a {
	color: #333;
}

a:hover, a:focus {
	text-decoration: none; 
	color: #000;
}

::selection {
	background-color: #eee;
}

body {
	color: #444;
	font-family: 'Poppins', sans-serif;
	padding-top:110px;
}

p {
	font-family: 'Poppins', sans-serif;
	word-spacing: 1px;
	letter-spacing: 0.01em;
	font-size: 16px;
	line-height: 25px;
}

#single p,
#page p {
	margin-bottom: 25px;
}

.page-title {
	text-align: center;
}
h1.entry-title a:hover {
	color: gray;
}

.title {
	margin-bottom: 30px;
}

figure {
	margin-bottom: 25px;
}

.img-responsive-center img {
	margin: 0 auto;
}

.height-40px {
	margin-bottom: 40px;
}

/**
 * 3.0 - Site Header
 */

#site-header {
	background-color: #FFF;
	padding: 15px 20px;	
	border-bottom: 1px solid #e7e7e7;
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index:999;
    box-shadow: 3px 3px 8px #dfdfdf;	
}

#site-header .row {
	display:flex;
	align-items: center;
}

/**
 * 3.1 - Logo
 */

.logo h1 a {
    color: #000;
}

.logo h1 a:hover {
    text-decoration: none;
    border-bottom: none;
}

.logo h1 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 20px;
	max-width:150px;
}

.logo h1 img {
	max-width:100%;
}

/**
 * 3.2 - Main Navigation
 */

.main-nav {
	margin-top: 11px;
	max-width: 95%;
}

.trigger-subm {
	cursor:pointer;
}

.main-nav a {
	color: #000000 !important;
	padding: 0 0 0 0 !important;
	margin-right: 30px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
}

.navbar-nav {
    display: flex;
    align-items: center;	
}

.main-nav a:active,
.main-nav a:focus,
.main-nav a:hover {
	background-color: transparent !important;
	border-bottom: 0;
}

.navbar-toggle {
    margin: 0;
    border: 0;
    padding: 0;
    margin-right: 25px;
}

.navbar-toggle span {
    font-size: 2em;
    color: #000;
}

/**
 * 3.2.1 - Main Nav CSS 3 Hover Effect
 */

.cl-effect-11 a {
	padding: 10px 0;	
	text-shadow: none;
} 

.cl-effect-11 a::before {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	padding: 0 0 5px 0 !important;
	max-width: 0;
	border-bottom: 1px solid #000;
	color: #000;
	content: attr(data-hover);
	-webkit-transition: max-width 0.5s;
	-moz-transition: max-width 0.5s;
	transition: max-width 0.5s;
}

.cl-effect-11 a:hover::before,
.cl-effect-11 a:focus::before {
	max-width: 100%;
}

/**
 * 4.0 - Home/Blog
 */

.content-body {
	padding-bottom: 4em;
}

.post {
	background: #fff;
	padding: 10px !important;
    box-shadow: 3px 3px 8px #dfdfdf;	
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;        
}

.theGrid.top .post, .category-posts .post {
	max-width:33%;
}

.category .category-posts .post, .search .category-posts .post, .tag .category-posts .post {
	max-width:initial;
}

.entry-title {
	text-align: center;
	font-size: 1.9em;
	margin-bottom: 20px;
	line-height: 1.2;
	padding: 10px 20px 0;
}

.entry-meta {
	text-align: center;
	color: #DDDDDD;
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 30px;
}

.entry-meta span, .entry-meta a {
	color:#E40056;
}

.entry-content {
	font-size: 18px;
	line-height: 1.9;
	font-weight: 300;
	color: #000;
}

.post-category,
.post-date,
.post-author {
	position: relative;
	padding-right: 5px;
}

.post-category::after,
.post-date::after,
.post-author::after {
	position: absolute;
	content: '.';
	color: #E40056;
	font-size: 30px;
	top: -20px;
	right: 1px;
}

/**
 * 4.1 - Read More Button CSS 3 style
 */

.read-more {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	word-spacing: 1px;
	letter-spacing: 0.01em;
	text-align: center;
	margin-top: 20px;
}

.cl-effect-14 a {
	padding: 0 20px;
	height: 45px;
	line-height: 45px;
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
}

.cl-effect-14 a::before,
.cl-effect-14 a::after {
	position: absolute;
	width: 45px;
	height: 1px;
	background: #C3C3C3;
	content: '';
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}

.cl-effect-14 a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.cl-effect-14 a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::before,
.cl-effect-14 a:focus::after {
	background: #000;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}


/**
 * 5.0 - Widget
 */

.widget {
    background: #fff;  
    padding: 30px 0 0;  
}

.widget-title {  
	font-size: 1.5em;  
	margin-bottom: 20px;  
	line-height: 1.6;  
	padding: 10px 0 0;
	font-weight: 400;
}

.widget-recent-posts ul {
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.widget-recent-posts ul li {
    list-style-type: none;
    position: relative;
    line-height: 170%;
    margin-bottom: 10px;
}

.widget-recent-posts ul li::before {
    content: '\f3d3';
    font-family: "Ionicons";
    position: absolute;
    left: -17px;
    top: 3px;
    font-size: 16px;
    color: #000;
}

.widget-archives ul {
    padding: 0;
    margin: 0;
    padding-left: 25px;
}

.widget-archives ul li {
    list-style-type: none;
    position: relative;
    line-height: 170%;
    margin-bottom: 10px;
}

.widget-archives ul li::before {
    content: '\f3f3';
    font-family: "Ionicons";
    position: absolute;
    left: -25px;
    top: 1px;
    font-size: 16px;
    color: #000;
}

.widget-category ul {
    padding: 0;
    margin: 0;
    padding-left: 25px;
}

.widget-category ul li {
    list-style-type: none;
    position: relative;
    line-height: 170%;
    margin-bottom: 10px;
}

.widget-category ul li::before {
    content: '\f3fe';
    font-family: "Ionicons";
    position: absolute;
    left: -25px;
    top: 1px;
    font-size: 18px;
    color: #000;
}

/**
 * 6.0 - Footer
 */

#site-footer {
	padding-top: 10px;
	padding: 0 0 1.5em 0;
	background-color: #f2f2f0;
	border-top: 1px solid #eee;
}

.flex-footer {
	display:flex;
	justify-content: space-between;
    padding: 30px 60px;
}

.flex-footer div {
	justify-content: center;
}

.logo-footer {
	max-width:200px;
}

.logo-footer img {
	max-width:100%;
}

#site-footer ul {
	list-style: none;
    margin: 0;
    padding: 0;	    
}

#site-footer .sociales li i {
    font-size: 32px;
}

#site-footer ul li {
    line-height: 30px;
    font-size: 18px;
    margin-right: 70px;
    display:inline;
}

#site-footer ul li a {
    font-size: 16px;
    line-height: 30px;
}

#site-footer .menu-footer ul {
	max-width:600px;
}

#site-footer .menu-footer ul li {
	display:inline-block;
	width:214px;
}


#site-footer .sociales ul li {
	display:inline-flex;
	margin:0 10px;
}

.copyright {
	text-align: center;
	padding-top: 1em;
	margin: 0;	
	color: #666;
}

/**
 * 7.0 - Header Search Bar
 */

#header-search-box {
	position: absolute;
	right: 38px;
	top: 8px;
}

.search-form {
	display: none;
	width: 25%;
	position: absolute;
	min-width: 200px;
	right: -6px;
	top: 33px;
}

#search-menu span {
	font-size: 20px;
}

#searchform {
    position: relative;
	border: 1px solid #ddd;
	min-height: 42px;
}

#searchform input[type=search] {
	width: 100%;
	border: none;
	position: absolute;
	left: 0;
	padding: 10px 30px 10px 10px;
	z-index: 99;
}

#searchform button {
	position: absolute;
	right: 6px;
	top: 4px;
	z-index: 999;
	background: transparent;
	border: 0;
	padding: 0;
}

#searchform button span {
	font-size: 22px;
}

#search-menu span.ion-ios-close-empty {
    font-size: 40px;
    line-height: 0;
    position: relative;
    top: -6px;
}

/**
 * 8.0 - Mobile Menu
 */

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
}

.overlay .overlay-close {
	position: absolute;
	right: 25px;
	top: 10px;
	padding: 0;
	overflow: hidden;
	border: none;
	color: transparent;
	background-color: transparent;
	z-index: 100;
}

.overlay-hugeinc.open .ion-ios-close-empty {
    color: #000;
    font-size: 50px;
}

.overlay nav {
	text-align: center;
	position: relative;
	top: 50%;
	height: 60%;
	font-size: 54px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: block;
}

.overlay ul li a {
	font-weight: 300;
	display: block;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	font-size: 24px;
	text-transform: uppercase;

}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: #000;
}

.overlay-hugeinc {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-hugeinc nav {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.overlay-hugeinc nav ul {
	opacity: 0.4;
	-webkit-transform: translateY(-25%) rotateX(35deg);
	transform: translateY(-25%) rotateX(35deg);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
	-webkit-transform: translateY(25%) rotateX(-35deg);
	transform: translateY(25%) rotateX(-35deg);
}

/**
 * 9.0 - Contact Page Social
 */

.social {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.social li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 20px;
}

.social li a {
	border: 1px solid #888;
	font-size: 22px;
	color: #888;
	transition: all 0.3s ease-in;
}

.social li a:hover {
	background-color: #333;
	color: #fff;
}

.facebook a {
	padding: 12px 21px;
}

.twitter a {
    padding: 12px 15px;
}

.google-plus a {
    padding: 12px 15px;
}

.tumblr a {
	padding: 12px 20px;
}

/**
 * 10.0 - Contact Form
 */

.contact-form input {
	border: 1px solid #aaa;
	margin-bottom: 15px;
	width: 100%;
	padding: 15px 15px;
	font-size: 16px;
	line-height: 100%;
	transition: 0.4s border-color linear;
}

.contact-form textarea {
	border: 1px solid #aaa;
	margin-bottom: 15px;
	width: 100%;
	padding: 15px 15px;
	font-size: 16px;
	line-height: 20px !important;
	min-height: 183px;
	transition: 0.4s border-color linear;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #666;
}

.btn-send {
	background: none;
	border: 1px solid #aaa;
	cursor: pointer;
	padding: 25px 80px;
	display: inline-block;
	letter-spacing: 1px;
	position: relative;
	transition: all 0.3s;
}

.btn-5 {
	color: #666;
	height: 70px;
	min-width: 260px;
	line-height: 15px;
	font-size: 16px;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.btn-5 span {
	display: inline-block;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-webkit-backface-visibility: hidden;
	-moz-transition: all 0.3s;
	-moz-backface-visibility: hidden;
	transition: all 0.3s;
	backface-visibility: hidden;
}

.btn-5:before {
	position: absolute;
	height: 100%;
	width: 100%;
	line-height: 2.5;
	font-size: 180%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-5:active:before {
	color: #703b87;
}

.btn-5b:hover span {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-ms-transform: translateX(200%);
	transform: translateX(200%);
}

.btn-5b:before {
	left: -100%;
	top: 0;
}

.btn-5b:hover:before {
	left: 0;
}

/**
 * 11.0 - Media Query
 */

@media (max-width: 991px) {
	.main-nav a {
		margin-right: 20px;
	}

	#header-search-box {
		position: absolute;
		right: 20px;
	}
}

@media (max-width: 767px) {
	#header-search-box {
		right: 20px;
		top: 9px;
	}

	.main-nav {
		margin-top: 2px;
	}

	.btn-5 span {
    	display: none;
	}

	.btn-5b:before {
	    left: 0;
	}
}

@media (max-width: 431px) {
	.logo h1 {
		margin-top: 8px;
		font-size: 24px;
	}

	.post {
		background: #fff;
		padding: 0 10px 0;
	}

	.more-link {
		font-size: 0.9em;
		line-height: 100%;
	}
}

@media screen and (max-height: 30.5em) {
	.overlay nav {
		height: 70%;
		font-size: 34px;
	}
	.overlay ul li {
		min-height: 34px;
	}
}

/* NEUQUEN */

.only-desktop {
	display:block;
}

.only-mobile {
	display:none;
}

.banner {
	margin-bottom:20px;
	display:flex;
	justify-content: center;
	align-items: center;
}

.banner-300x250 {
	background: #eee;
    width: 300px;
    height: 250px;
    margin: auto;
}

.banner-300x600 {
	background: #eee;
    width: 300px;
    height: 600px;
    margin: auto;
}

.banner-970x100 {
	background: #eee;
    width: 970px;
    height: 100px;
    margin: auto;	
}

/* PUBLICIDAD */

#push span {
	float: left;
	color: #212121;
	text-transform: uppercase;
	border: 0;
	font-size: 12px;
	padding: 8px;
	font-family: inherit;
	line-height: normal;
	display: block;
}

#push .scrollBaja {
	color: #fff;
	background-color: #212121;
	text-transform: uppercase;
	text-decoration: none;
	border: 0;
	font-size: 12px;
	padding: 8px;
	font-family: inherit;
	line-height: normal;
	float: left;
	display: block;
	cursor: pointer;
}

#push i {
	background-image: url('../img/scrollBaja.png');
	background-size: 100%;
	width: 10px;
	height: 10px;
	display: inline-block;
	margin-left: 10px;
}

/**/

.container {
	width:100%;
}

main {
	max-width:1180px;
	margin:auto;
	padding-left: 15px;
	padding-right: 15px;	
}

li.vivo {
	margin-left: 10px;
	min-width: 75px;
}

li.vivo a {
	margin-right:0;
}

li .en-vivo {
    background-color: #E40056;
    color: #fff;
    padding: 4px 7px;
    border-radius: 100px;
}

.main-nav {
	margin-top:0;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin: 3px;
}

.sub-menu {
	position: absolute;
    top: 79px;
    background-color: #ffffff;
    width: 100%;
    left: 0;
    right: 0;    
	list-style: none;
	padding-left: 0;
    max-height: 0;
    overflow: hidden;	
	-webkit-transition: max-height 0.5s; 
	-moz-transition: max-height 0.5s; 
	-ms-transition: max-height 0.5s; 
	-o-transition: max-height 0.5s; 
	transition: max-height 0.5s;     
    
}  

#site-header.opened .sub-menu{
	max-height:50px;
  -webkit-transition: max-height 0.5s; 
  -moz-transition: max-height 0.5s; 
  -ms-transition: max-height 0.5s; 
  -o-transition: max-height 0.5s; 
  transition: max-height 0.5s;
  border-bottom: 1px solid #eee;	
}

.sub-menu .navbar-nav {
	justify-content: center;
    float: none;
} 

.sub-menu a {
    color: #000;
}

li i {
	font-size:24px;	
	
}

li.socials i {
	color:#2468D7;
}

li.search-button {
	margin-left:30px;
	position:relative;
}

li.search-button  .fa-magnifying-glass {
	cursor:pointer;
}

.searchform {
	position: absolute;
    right:37px;
    top: -5px;
    overflow: hidden;
    width: 0;
  -webkit-transition: width 1s; 
  -moz-transition: width 1s; 
  -ms-transition: width 1s; 
  -o-transition: width 1s; 
  transition: width 1s; 
  animation-direction: reverse;   
}

.nav.to-search .searchform{
	width:232px;
  -webkit-transition: width 1s; 
  -moz-transition: width 1s; 
  -ms-transition: width 1s; 
  -o-transition: width 1s; 
  transition: width 1s;	
  animation-direction: reverse;
}

.nav .searchform input {
	width:100%;
	padding:5px;
}

.main-nav .socials a {
	margin-right:15px;
}

.theGrid {
    display: flex;    
    grid-gap:20px;
    margin-bottom: 10px;
}

.theGrid .posts {
	width:calc(100% - 300px);
}

.the2ndGrid {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap:20px;
    grid-auto-rows: auto;
}

.the2ndGrid .post {
	max-width:initial;
	margin-bottom:0;
}

.entry-image a {
	width:100%;
}

.entry-image img {
	width:100%;
	height:auto;
}

.theGrid-col1 {
	width:55%;
}

.theGrid-col2 {
	width:45%;
}

.theGrid-col1 .post {
	height:96%;
	max-width:initial;
}

.theGrid-col2 .post {
	max-width:initial;	
}

.theGrid-col2 .post:last-of-type {
	margin-bottom:0;
}

.theGrid-col2 .post .entry-header {
	display:flex;
}

.post .entry-image {
    max-height: 300px;    
    overflow: hidden;
    border-radius:8px;
	display: flex;
    justify-content: center;
    align-items: center;        
}

.single .post .entry-image {
	margin: 30px auto;
	max-height:initial;
}

.post .data {
	padding-top:8px;
}

.theGrid-col2 .post .entry-image {
	width:40%;
	max-height:150px;
}

.theGrid-col2 .post .data {
	padding-left:10px;
	padding-top:0;
	width:60%;
}

.home .entry-title, .category .entry-title, .archive .entry-title, .search .entry-title {
	font-size: 20px !important;
	padding: 10px 0 !important;
}

 .search .entry-title {
    text-align: initial;
    font-size: 1.2em;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: bold;
    padding: 0;
}

.home .theGrid-col1 .entry-title {
	font-size:25px !important;
	padding: 10px 0 !important;
}

.home .theGrid-col2 .entry-title {
	font-size:18px !important;
	padding: 10px 0 !important;
}

.common .post .entry-image {
	max-height:200px;
	margin: 10px 0;
} 

.the2ndGrid .post .entry-image {
	max-height: 190px;	
}

.category-posts {
	margin:50px 0;
}

h1.category-name {
	font-weight:bold;
	text-align:center;
	font-size:44px;
	color:#000;
}

/* SECCION EN HOME ESPECIAL */
body.category-fiesta-de-la-confluencia {
	background-image:url('../img/fondoazul.jpg');
}
.especial-confluencia {
    background-color: #2468D7;
	padding:10px;
	border-radius:10px;
}

.especial-confluencia h1.category-name, .especial-confluencia h1.category-name a, .category-fiesta-de-la-confluencia h1.category-name {
    font-weight: 900;
    color: #fff;    
    letter-spacing: -2px;
    font-size: 50px;
}

.especial-confluencia .logo-confluencia, .category-fiesta-de-la-confluencia .logo-confluencia {
	max-width:90%;
	width:400px;
}

.category-fiesta-de-la-confluencia .logo-confluencia { 	
	width:600px;	
}


.especial-confluencia .post, .category-fiesta-de-la-confluencia .post {	
	box-shadow: 4px 5px 5px #4c4a4a;
}

/*  */

/* SECCION MARTIN FIERRO DIGITAL */
body.category-martin-fierro-digital {	
	background-color:#000;
}
.especial-mfdigital {
    background-image:url('../img/martinfierrodigital/fondo.png');
	padding:10px;
	border-radius:10px;
}

.especial-mfdigital h1.category-name, .especial-mfdigital h1.category-name a, .category-martin-fierro-digital h1.category-name {
    font-weight: 900;
    color: #fff;    
    letter-spacing: -2px;
    font-size: 50px;
}

.especial-mfdigital .logo-mfdigital, .category-martin-fierro-digital .logo-mfdigital {
	max-width:90%;
	width:300px;
}

.category-martin-fierro-digital .logo-mfdigital { 	
	width:400px;	
}


.especial-mfdigital .post, .category-martin-fierro-digital .post {	
	box-shadow: 4px 5px 5px #4c4a4a;
}

/*  */

/* VIVO EN HOME */

.video-en-vivo .post .entry-header {
	display:flex;
	grid-gap:20px;
}

.video-en-vivo .post .entry-image, .video-en-vivo .post .data {
	width:50%;
}

.video-en-vivo .post {	
	color:#fff;
	box-shadow: 3px 3px 8px #7a7171;	
}

.video-en-vivo .entry-meta a {
	color: #E40056;
	font-weight:bold;
	text-transform: uppercase;
}

.video-en-vivo .logo-en-vivo {
	text-align:center;
	margin-top:25px;
}

.video-en-vivo .logo-en-vivo img {
	max-width:90%;
	max-height:150px;
	margin:auto;
}

.video-en-vivo .post-category::after, .video-en-vivo .post-date::after, .video-en-vivo .post-author::after {
	content:' ';
}

/**/

.category .theGrid, .archive .theGrid, .search .theGrid  {
    display: grid;
    grid-template-columns: repeat(3,minmax(300px,1fr));    
    grid-gap: 10px;
}

.single .post .entry-content {
	padding:0;
}

.single .post {
	box-shadow: none;
	border: none;
}

.single iframe {
	max-width:100%;
}


.share_sociales {
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding:5px;
}

.share_sociales i {
    font-size: 22px;
    margin: 0 10px;
    color: #888;
  	-webkit-transition: all 1s; 
  	-moz-transition: all 1s; 
  	-ms-transition: all 1s; 
  	-o-transition: all 1s; 
  	transition: all 1s;    
}

.share_sociales i:hover {
	color:#E40056;
  	-webkit-transition: all 1s; 
  	-moz-transition: all 1s; 
  	-ms-transition: all 1s; 
  	-o-transition: all 1s; 
  	transition: all 1s; 	
}

a.page-numbers {
    margin: 0 5px;
    color: #E40056;
}

span.page-numbers.current {
    color: #000;
}

.pagination {
    color: #E40056;
	text-align: center;
    display: block;
    font-size: 18px;    
}

.page .main-content {
	margin-bottom:20px;
}

@media screen and (max-width: 1024px) {

	.only-desktop {
		display:block;
	}

	.only-mobile {
		display:none;
	}

	nav .navbar-collapse.collapse {
    	display: block!important;
    }	

    .main-nav a {
    	margin-right:15px;
    }

    #site-footer .flex-footer {
    	padding-left: 15px;
    	padding-right:15px;
    }    

    #site-footer .menu-footer ul {
    	padding: 0 20px;
    }

	#site-footer .menu-footer ul {
	    max-width: 470px;
	}    

	#site-footer .menu-footer ul li {
	    width: 140px;
	}    

}

@media screen and (max-width: 768px) {

	nav .navbar-collapse.collapse {
    	display: none!important;
    }

    .navbar-header {
     	float: none 
	}

	.navbar-toggle {
    	display: block;
	}	

	.only-desktop {
		display:none;
	}

	.category-posts .post {
		max-width:initial;
	}

	.only-mobile {
		display:block;
	}

	.theGrid, .category-posts .theGrid.common { 
		display: block;
		padding: 0 40px;
	}

	.theGrid.common {
		display:flex;
	}

	.theGrid .posts {
		width:100%;
	}

	.theGrid-col1, .theGrid-col2 {
		width: 100%;
	}

	.theGrid-col2 .post .entry-image {
		width:30%;
	}

	.theGrid-col2 .post .data {
		width:70%;
	}

	.theGrid-col1 .post {
		height:initial;
	}

	#site-footer .menu-footer ul {
    	max-width: 220px;
	}

}

@media screen and (max-width: 425px) {
	.theGrid, .category-posts .theGrid.common {
		padding:0;
	}

	.flex-footer {
		display:block;
	}


	.logo-footer {
		margin:auto
	}

	.menu-footer {
		margin:20px auto;
		text-align:center
	}

	#site-footer .menu-footer ul li {
		display:block;
	}

	#site-footer .menu-footer ul, 
	#site-footer .menu-footer ul li {
		width:initial;
		max-width:initial;
		margin:auto;
	}

	.the2ndGrid {
    	display: block;	
    }

    .the2ndGrid .post {
    	margin-bottom:20px;
    	max-width:initial;
    	width:100%;
    }

    .theGrid.common {
    	display: block;
	}

	.theGrid-col2 .post .entry-header {
	    display: block;
	}	

	.theGrid-col2 .post .entry-image, .theGrid-col2 .post .data, .theGrid.top .post, .category-posts .post {
    	width: 100%;
    	max-width:initial;
    	margin-bottom:10px;
	}	

	#site-footer .sociales ul {
		display:flex;
		justify-content: center;
	}	

	.single iframe {
		height:auto;
	}

	.video-en-vivo .post .entry-header .entry-image, .video-en-vivo .post .entry-header .data {
		width:100%;
	}		
}

@media screen and (max-width: 320px) {}