/*
	Theme Name:          ABN Framework
	Theme URI:           http://www.actualidadblog.com/
	Description:         Theme Framework para la red de blogs ActualidadBlog
	Author:              Dario BF
	Author URI:          https://www.actualidadblog.com/
	Version:             6.3.8
	GitHub Theme URI:    https://github.com/ABInternet/abn/
	GitHub Branch:       master
*/

/* ==========================================================================
   Base styles: opinionated defaults
========================================================================== */

html {
   color: #222;
   font-size: 1em;
   line-height: 1.4;
}

/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.
*/

::-moz-selection {
   background: #b3d4fc;
   text-shadow: none;
}

::selection {
   background: #b3d4fc;
   text-shadow: none;
}

/*
* A better looking default horizontal rule
*/

hr {
   display: block;
   height: 1px;
   border: 0;
   border-top: 1px solid #ccc;
   margin: 1em 0;
   padding: 0;
}

/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/

audio,
canvas,
iframe,
img,
svg,
video {
   vertical-align: middle;
}

/*
* Remove default fieldset styles.
*/

fieldset {
   border: 0;
   margin: 0;
   padding: 0;
}

/*
* Allow only vertical resizing of textareas.
*/

textarea {
   resize: vertical;
}


/* ==========================================================================
   WordPress Core Styles
========================================================================== */

.alignnone {
   margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
   display: block;
   margin: 5px auto 5px auto;
}

.aligncenter img {
   margin: 0 auto;
}

.alignright {
   float:right;
   margin: 5px 0 20px 20px;
}

.alignleft {
   float: left;
   margin: 5px 20px 20px 0;
}

a img.alignright {
   float: right;
   margin: 5px 0 20px 20px;
}

a img.alignnone {
   margin: 5px 20px 20px 0;
}

a img.alignleft {
   float: left;
   margin: 5px 20px 20px 0;
}

a img.aligncenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
}

.wp-caption {
   background: #fff;
   border: 1px solid #f0f0f0;
   max-width: 96%; /* Image does not overflow the content area */
   padding: 5px 7px 10px;
   box-sizing: border-box;
   text-align: center;
}

.wp-caption.alignnone {
   margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
   margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
   margin: 5px 0 20px 20px;
}

.wp-caption img {
   border: 0 none;
   height: auto;
   margin: 0 auto;
   max-width: 98.5%;
   padding: 0;
   width: auto;
}

.wp-caption p.wp-caption-text {
   font-size: 11px;
   line-height: 17px;
   margin: 0;
   padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: var(--soft-gray);
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}


/* ==========================================================================
   Layout Styles
========================================================================== */

body {
   padding-top: 100px;
   font-family: var(--font-secondary);
   font-weight: 200;
   transition: all .3s;
}
   body.menu-active {
      position: relative;
      overflow: hidden;
   }
   body.menu-active:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, .6);
      z-index: 90;
   }

p,
ul,
ol {
   font-size: var(--normal-font);
   line-height: 2rem;
}
strong {
   font-weight: bold;
}

body.admin-bar {
   padding-top: 154px;
}

.wrapper {
   max-width: var(--wrapper-width);
   margin: 0 auto;

   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}

.main {
   padding: 0 1rem;
   box-sizing: border-box;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   flex-wrap: wrap;
   margin-top: 2rem;
}

.content {
   max-width: 100%;
}

.sticky {
	position: sticky;
	top: 7.5rem;
}

/* Minimal layout */

.site-header {
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background-color: white;
   border-bottom: .3125rem solid var(--main-color);
}
   .admin-bar .site-header {
      top: 32px;
   }

.site-header .wrapper {
   height: 100px;
   padding: 0 .5rem;
   box-sizing: border-box;
}

.logo-content {
   display: flex;
   justify-content: flex-start;
   align-items: center;
}
   .sitename-description {
      margin: .2rem 0 0 0;
      position: relative;
   }
   .sitename-description a,
   .sitename-description--link {
      text-decoration: none;
      text-transform: uppercase;
      font-family: var(--font-secondary);
      font-weight: lighter;
      color: var(--main-color);
      font-size: var(--big-font);
      line-height: var(--normal-font);
   }
   .sitename-description::after {
      content: '#QuédateEnCasa';
      font-size: var(--small-font);
      display: block;
      position: absolute;
      bottom: -1.4rem;
      left: 0;
      text-transform: none;
      font-weight: bold;
      color: #000;
   }
   .sitename-description a span.sitename-accent { font-weight: bold; }
   .sitename-break {
      display: block;
   }

.shortcut-icons a {
   color: var(--main-color);
   text-decoration: none;
   font-size: var(--normal-font);
}
   .burger-toggle {
      /* display: flex; */
      justify-content: center;
      align-items: center;
   }
   .burger-toggle::after {
      content: '\f0c9';
      display: inline-block;
      width: 24px;
      height: 24px;
      font-family: var(--font-awesome);
      font-weight: bold;
	  margin-left: .3rem;
	  text-align: center;
   }
   .burger-toggle.clicked {
      position: absolute;
      top: 1rem;
      right: 3rem;
      z-index: 100;
      width: 80px;
	  color: var(--main-color);
	  background: var(--enlightment-color);
   }
   .burger-toggle.clicked::after {
      content: '\f00d';
   }

.main-navigation {
	display: flex;
	background-color: var(--main-color);
	width: 100%;
	position: absolute;
	z-index: 99;
	top: 0px;
	left: -100%;
	font-family: var(--font-primary);
	transition: left .3s linear;
	will-change: contents;
}
   /* Mobile styles */
   .main-navigation {
      max-width: 90%;
      max-height: 100%;
      position: fixed;
      overflow-y: scroll;
      z-index: 99;
      left: -100%;
      top: 0;
      bottom: 0;
      padding: 1rem 0;
      box-sizing: border-box;
   }
      .main-navigation.active {
         left: 0;
      }
   .main-navigation .menu {
      display: flex;
      flex-wrap: wrap;
      flex: 0 0 100%;
      list-style: none;
      padding-left: 1rem;
   }
   .main-navigation .menu .menu-item {
      flex: 0 0 100%;
   }
      .main-navigation .sub-menu {
         display: block;
         list-style: none;
         padding-left: 1rem;
         border-left: 1px solid var(--enlightment-color);
         margin-left: 1rem;
      }

   .admin-bar .main-navigation {
      top: 132px;
   }
   .main-navigation nav {
      max-width: var(--wrapper-width);
      margin: 0 auto;
   }
   .main-navigation a {
      display: block;
      color: var(--enlightment-color);
      text-decoration: none;
      font-size: var(--small-font);
      line-height: 2.5rem;
   }
   
.page-footer {
   width: 100%;
}

/* Trendy navigation */
.trendy-navigation {
	background: #000;
	padding: 0 .5rem;
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 99;
}
	.trendy-navigation ul {
		width: 100%;
		list-style: none;
		padding: 0 24px;
		box-sizing: border-box;
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		position: relative;
		margin: .5rem 0;
	}
		.trendy-navigation ul::before {
			content: 'Tendencias: ';
			color: #fff;
		}
		.trendy-navigation ul::after {
			content: '\f06d';
			font-family: var(--font-awesome);
			font-weight: bold;
			color: #fff;
			position: absolute;
			left: .1rem;
		}
	.trendy-navigation li {
		display: block;
		width: auto;
	}
	.trendy-navigation a {
		background: #545454;
		color: #fff;
		text-decoration: none;
		white-space: nowrap;
		padding: .2rem .5rem;
		margin: 0 .2rem;
		border-radius: 5px;
	}

/* Page navigation */
.page-navigation {
   display: flex;
   width: 100%;
   justify-content: space-between;
   align-items: center;
   margin: 3rem 0;
}  
   .nav-previous,
   .nav-next {
      background-color: var(--soft-gray);
      transition: all .2s;
   }
   .nav-previous:hover,
   .nav-next:hover {
      background-color: var(--dark-gray);
   }
   .nav-previous a:before, .nav-next a:after { color: #888; font-size: 1.5em; font-weight: lighter; line-height: 2em; }
   .nav-previous a:before { content: '‹'; margin-right: .4em; }
   .nav-next a:after { content: '›'; margin-left: .4em; }

   .nav-previous a,
   .nav-next a {
      display: block;
      color: var(--dark-gray);
      text-decoration: none;
      padding: 0 2rem;
      line-height: 3rem;
      text-transform: uppercase;
   }
   .nav-previous a:hover,
   .nav-next a:hover {
      color: var(--soft-gray);
   }

   #single-nav {
      width: 100%;
      overflow: hidden;
      margin-bottom: 3em;
   }
   #single-nav .nav-previous,
   #single-nav .nav-next {
      display: block;
      width: 100%;
   }
   #single-nav .nav-previous a,
   #single-nav .nav-next a {
      text-transform: none;
      align-items: center;
      display: block;
   }
   #single-nav .nav-next a {
      text-align: right;
   }

/* Home specific styles */
.home .post,
.blog .post {
   position: relative;
   margin-bottom: 3rem;
}

.home .post *,
.blog .post * {
   position: relative;
   z-index: 1;
}
.home .post-title,
.blog .post-title {
   margin: 0;
}
.home .post-title a,
.blog .post-title a,
.category .post-title a,
.category-grid .post-title a {
   text-decoration: none;
   color: var(--main-color);
   font-weight: var(--text-bold);
   font-family: var(--font-primary);
   font-weight: normal;
   font-size: var(--big-font);
}
.home .post:not(:nth-child(1)) .post-content p:not(.miniby),
.blog .post:not(:nth-child(1)) .post-content p:not(.miniby) {
   font-size: var(--small-font);
}

/* General post styles */
.post h1,
.post h2,
.post h3,
.page h1,
.page h2,
.page h3 {
   color: var(--main-color);
   font-family: var(--font-primary);
   font-weight: normal;
}

.post h1,
.page h1 {
   line-height: var(--bigger-font);
   font-size: var(--big-font);
}
.post h2,
.page h2 {
   font-size: var(--bigger-font);
}
.post h3,
.page h3 {
   font-size: var(--big-font);
}
.post a,
.specials a {
   color: var(--main-color);
}
.specials a {
   margin: 0 .3rem;
}
.post blockquote {
   position: relative;
   padding: 1rem;
   border-top: 2px solid var(--soft-gray);
   border-bottom: 2px solid var(--soft-gray);
   margin: 0;
}
   .post blockquote::before {
      content: '\f10d';
      font-family: var(--font-awesome);
      font-weight: bold;
      display: block;
      position: absolute;
      top: 1rem;
      left: 1rem;
      color: var(--main-color);
      font-size: var(--biggest-font);
   }
   .post blockquote p {
      padding-left: 65px;
   }

.crosspost {
   background-color: var(--main-color);
   color: var(--enlightment-color) !important;
   padding: .3rem .7rem;
   text-decoration: none;
}
a.post-readmore {
   border: 2px solid var(--main-color);
   text-decoration: none;
   color: var(--main-color);
   padding: .5rem 1rem;
   transition: .3s all;
}
a.post-readmore:hover {
   color: var(--enlightment-color);
   background-color: var(--main-color);
}
.single .post,
.page .type-page {
   padding: 0 1rem;
   box-sizing: border-box;
   max-width: 100%;
}
.post-header .post-meta {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.post-title {
   margin: 0;
   font-size: var(--bigger-font);
   line-height: var(--bigger-font);
   font-weight: normal;
}
.post-title a {
	text-decoration: none;
}

.miniby,
.post-meta-comments {
   font-size: var(--smaller-font);
}
.miniby a,
.post-meta-comments a {
   text-decoration: none;
   color: var(--main-color);
}
.single .miniby,
.single .post-meta-comments {
   font-size: var(--small-font);
}

.post-content a:not(.post-readmore) {
   color: var(--main-color);
}

.post-content pre {
   overflow-x: auto;
   background-color: var(--soft-gray);
   color: black;
   padding: .7rem 1rem;
}

.post-content table { background: #f8f8f8; }
.post-content table tr th, .post-content table tr td { padding: 1em; box-sizing: border-box;}
.post-content table thead { background: var(--main-color); color: var(--enlightment-color); }

/* Category loop styles */
.category-grid {
   display: flex;
   flex-wrap: wrap;
   max-width: 100%;
}

.category-grid .page-header {
   margin: 3rem auto;
   padding: 1rem;
   box-sizing: border-box;
   flex: 0 0 100%;
   max-width: 100%;
   background-color: var(--soft-gray);
}
.category-grid .category-archive-meta {
   max-width: 100%;
}
.category-grid .page-header h2 {
   color: var(--main-color);
}
.category-grid .page-header a {
   color: var(--main-color);
}
.tax-pagination {
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
   align-items: flex-end;
   list-style: none;
   padding-left: 0;
}
   .tax-pagination li {
      margin: 0 .2rem;
   }
   .tax-pagination li a {
      color: var(--main-color);
      text-decoration: none;
   }
.page-archive {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: stretch;
   padding: 0 1rem;
   box-sizing: border-box;
}
   .page-archive article {
      flex: 0 0 100%;
      margin: 0 0 2.5rem 0;
   }

.category-minimal .post {
   flex: 0 0 100%;

   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
   align-items: center;
}
   .category-minimal .post-title {
      font-size: var(--big-font);
   }
   .category-minimal .post-thumbnail {
      flex: 0 0 100%;
      margin-right: 1rem;
   }
   .category-minimal .post-content--excerpt p {
      font-size: var(--small-font);
      margin-top: .5rem;
   }

/* Home Featured posts */
.home-featured-grid {
   display: none;
   position: relative;
}
   .home-featured-grid::before {
      content: "Destacados";
      position: absolute;
      top: 1rem;
      left: 0;
      z-index: 10;
      background-color: var(--main-color);
      color: var(--enlightment-color);
      font-size: var(--big-font);
      text-transform: uppercase;
      padding: .1rem .5rem;
   }
.home-featured-item {
   position: relative;
}
.featured-link {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   z-index: 80;
   top: 0;
   left: 0;
}

/* Comments styles */
.post-comments {
   width: 100%;
}
.comments-area { border-left: 1px solid var(--soft-gray); border-right: 1px solid var(--soft-gray);}
.comment-respond { background: var(--soft-gray); padding: 1em; box-sizing: border-box; position: relative; margin-bottom: 3.75em; }
.comment-form label { font-size: .8em; text-transform: uppercase; }
.comment-form input, .comment-form textarea { width: 100%; box-sizing: border-box; border: none; padding: .7em; margin-top: .3em; }
.comment-form input[type="checkbox"] { width: auto; }
.comment-form .submit { background: var(--main-color); color: var(--enlightment-color); text-transform: uppercase; font-weight: var(--text-bold); font-size: var(--small-font); margin-top: 1em; }
.logged-in-as, .comment-notes { margin-top: 2em; font-size: var(--small-font); }
.logged-in-as a { color: #000; }
.comment-respond h3 { font-size: 1.5em; font-weight: var(--text-normal); text-align: left; margin: 0; }
#comments { margin: 5em 0; }
#comments a { text-decoration: none; }
.comments-title { cursor: pointer; text-align: center; font-size: 1.5em; font-weight: var(--text-normal); padding: .4rem .7rem; margin: .5em 0; background-color: var(--main-color); color: var(--enlightment-color) !important; }
.comments-title:before {
   content:'\f086';
   font-family: var(--font-awesome);
   font-weight: bold;
   margin-right: .3rem;
}
.comments-title span { padding: 0; }
ol.comment-list { margin: 0; margin-bottom: 4em; list-style: none; padding-left: 0; background-color: #fff; }
ol.comment-list li { position: relative; padding: 25px 0 0; margin-left: 25px; background: #fff; }
ol.comment-list li.depth-1 { margin-left: 0; }
ol.comment-list li .comment-body > a { color: #fff !important; text-decoration: underline; }
ol.comment-list li .comment-body p { padding: 9px 10px 10px; background: var(--soft-gray); margin: 0; padding-left: 110px; font-size: var(--small-font); }
ol.comment-list li .comment-body p:first-child { margin: 10px 0 0; }
ol.comment-list li .comment-body .reply { position: absolute; top: 20px; right: 30px; text-align: right; font-size: 0.8em; }
ol.comment-list li .comment-author { position: relative; padding-left: 30px; }
ol.comment-list li .comment-author .url { font-weight: var(--text-bold); font-size: 1.2em; font-style: normal; }
ol.comment-list li .comment-author img.avatar { float: left; width: 60px; margin: -7px 15px 15px 0; border-radius: 100%; padding: 5px; background: #fff; border: 3px solid #fff; }
ol.comment-list li a { color: var(--main-color); }
ol.comment-list li p {overflow-x: auto;}
ol.comment-list .children { list-style: none; padding: 0; }
li span.triangle { position: absolute; top: 55px; left: 90px; width: 0; height: 0; border-style: solid; border-width: 0 0 15px 15px; }
li span.triangle.up { position: absolute; top: -5px; left: 20px; border-width: 15px 15px 0 0; }
li > div > div > span.triangle { border-color: transparent transparent #fff transparent; }
li > div > div > span.triangle.up { border-color: var(--soft-gray) transparent transparent transparent; }
li.bypostauthor > div > div > span.triangle { border-color: transparent transparent #fff transparent; }
li.bypostauthor > div > div > span.triangle.up { border-color: var(--soft-gray) transparent transparent transparent; }
ol.comment-list li.bypostauthor .comment-author .url { color: #000 !important; text-decoration: none !important; }
ol.comment-list li.bypostauthor a { text-decoration: underline !important; }
li.byuser > div > div > span.triangle { border-color: transparent transparent #fff transparent; }
li.byuser > div > div > span.triangle.up { border-color: var(--soft-gray) transparent transparent transparent; }
.comment-meta.commentmetadata { margin-top: -5px; }
.comment-reply-title { position: relative; color: var(--main-color); }
.comment-reply-title small { position: absolute; bottom: -120px; right: 10px; font-size: 0.4em; }
.comment-form { clear: both; }
.comment-respond { background: var(--soft-gray); padding: 25px; }

/* Hiding all items inside comments-area (shown through JavaScript, see js/scripts.js */
.comment-list,
#commentsRespond {
   display: none;
   transition: 1s all ease;
}
.comment-list.active,
#commentsRespond.active {
   display: block;
}

/* Category styles */
.category-top-posts {
   flex: 0 0 100%;
   background: var(--soft-gray);
   padding: 1rem;
   box-sizing: border-box;
}
   .category-top-posts h3 {
      font-size: var(--normal-font);
   }
   .category-top-posts-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      list-style: none;
   }
      .category-top-posts-list li {
         flex: 0 0 100%;
         line-height: 1.7rem;
      }
      .category-top-posts-list a {
         color: var(--main-color);
         text-decoration: none;
      }


/* Footer styles */
#social,
#network,
#foot-menu { flex: 0 0 100%; }

.footer-column-full {
   flex: 0 0 100%;
   color: var(--enlightment-color);
}
.footer-column {
   color: var(--enlightment-color);
}

.site-footer .menu {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   list-style: none;
}
   .site-footer .menu li {
      margin: 0 .5rem;
   }
   .site-footer .menu li:not(:last-child):after {
      content: '-';
      color: var(--enlightment-color);
      margin-left: 1rem;
   }

   .site-footer .menu li a {
      font-size: var(--smaller-font);
      text-transform: uppercase;
      text-decoration: none;
      color: var(--enlightment-color);
   }

/* ==========================================================================
   Other Styles
========================================================================== */
.home .wp-caption { display: none; }

.gallery img {
    margin: 0 auto;
}

.related li { display: inline-block; width: 30%; height: auto; margin: 0 1%; text-align: center; vertical-align: top; }
.related li img { display: block; margin: 0 auto; margin-bottom: .5em; }
#suggested { list-style: none; text-align: center; }
#suggested li { display: inline-block; width: 42%; vertical-align: top; height: 150px; background: #e2e2e2; margin: .5em; padding: 1em; }
#suggested li a { text-decoration: none; }
#suggested li a img { display: block; margin: 0 auto; margin-bottom: -.7em; }
#page-404 h3 { font-size: 1.5em; }

.ad-rectangle { display: block; height: 300px }
@media screen and ( max-width: 991px ) {
	.ad-rectangle{ display: inline-block; width: 300px; height: 600px;}
}

/* Quancast styles */
.qc-cmp-button {
	background-color: #000000 !important;
	border-color: #000000 !important;
}
.qc-cmp-button:hover {
	background-color: transparent !important;
	border-color: #000000 !important;
}
.qc-cmp-alt-action,
.qc-cmp-link {
	color: #000000 !important;
}
.qc-cmp-button {
	color: #ffffff !important;
}
.qc-cmp-ui,
.qc-cmp-ui .qc-cmp-main-messaging,
.qc-cmp-ui .qc-cmp-messaging,
.qc-cmp-ui .qc-cmp-beta-messaging,
.qc-cmp-ui .qc-cmp-title,
.qc-cmp-ui .qc-cmp-sub-title,
.qc-cmp-ui .qc-cmp-purpose-info,
.qc-cmp-ui .qc-cmp-table,
.qc-cmp-ui .qc-cmp-table-header,
.qc-cmp-ui .qc-cmp-vendor-list,
.qc-cmp-ui .qc-cmp-vendor-list-title {
	color: #000000 !important;
}
.qc-cmp-ui {
	background-color: #E1E1E1 !important;
}
.qc-cmp-publisher-purposes-table .qc-cmp-table-header {
	background-color: #fafafa !important;
}
.qc-cmp-publisher-purposes-table .qc-cmp-table-row {
	background-color: #ffffff !important;
}
.qc-cmp-link-text {
   font-size: 10px !important;
   line-height: initial !important;
}

/* Fix for Native YouTube responsive videos */
.video-container {
   position: relative;
   padding-bottom: 56.25%; /* 16:9 aspect radio*/
   /*padding-top: 25px;*/
   height: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.home .video-container {
   position: relative;
   padding-bottom: 0;
   padding-top: 0;
   height: 0;
   overflow: hidden;
}

.home .video-container iframe,
.home .video-container object,
.home .video-container embed {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.edd-add-to-cart-label {
   color: #fff !important;
}

.search-bar {
   display: none;
}
   .search-bar.active {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 99;
      background: var(--soft-gray);
   }
   .search-bar form {
      display: flex;
      height: 100%;
      justify-content: center;
      align-items: center;
   }
   .search-bar input {
      flex: 0 1 70%;
      line-height: var(--biggest-font);
      padding: .5rem 1rem;
      font-size: var(--normal-font);
      border:none;
   }
   .search-bar input[type="submit"] {
      flex: 0 1 20%;
      cursor: pointer;
      background-color: var(--main-color);
      color: var(--enlightment-color);
      font-weight: bold;
   }
   .search-bar input[type="submit"]:hover {
      filter: brightness(50%);
   }

   .search-bar .close-button {
      position: absolute;
      top: 2rem;
      right: 2rem;
      cursor: pointer;
      color: #000;
      font-size: var(--normal-font);
   }
   .search-bar .close-button:before {
      content: '\f00d';
      font-family: var(--font-awesome);
      font-weight: bold;
      margin-right: .3rem;
   }

#social-sidebar { text-align: center; padding: 0; margin: 0; margin-bottom: 1.875em; list-style: none;}
#social-sidebar li { display: inline-block; position: relative; width: 2em; height: 2em; }
#social-sidebar li a {
   text-indent: -9999px;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
#social-sidebar li:after { display: none; }
#social-sidebar li:before { font-size: 1.2em; position: absolute; margin: auto; left: 0; right: 0; line-height: 1.5em; color: #fff; }
#social-sidebar li.fa-twitter:before,
#social-sidebar li.fa-google-plus:before,
#social-sidebar li.fa-facebook:before,
#social-sidebar li.fa-pinterest:before,
#social-sidebar li.fa-youtube:before,
#social-sidebar li.fa-instagram:before {
   font-family: var(--font-awesome-brands);
}

#Contras {
   color: #C82020 !important;
}
#Pros {
   color: #88C820 !important;
}


/* Equipo Editorial */
#authors-list ul {
   display: block;
   padding: 0;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   flex-wrap: wrap;
   list-style: none;
}
#authors-list .author-meta {
   flex: 0 0 100%;
   display: grid;
   grid-template-columns: auto 1fr;
   grid-template-rows: auto auto;
   grid-column-gap: 1rem;
   grid-row-gap: 0px;
}
#authors-list .author-avatar { grid-area: 1 / 1 / 3 / 2; display: block; width:100px; height: 100px; }
   #authors-list .author-avatar img { border-radius: 50%; border: 10px solid var(--soft-gray); box-sizing: border-box; }
#authors-list .author-meta--info { grid-area: 1 / 2 / 2 / 3; }
#authors-list .author-bio { grid-area: 2 / 2 / 3 / 3; }

#authors-list .author-meta--social { justify-content: flex-start; }
   #authors-list .author-meta--social li { margin-right: 1rem; }
#authors-list a { text-decoration: none; }
#authors-list ul li h3 { margin: .5em 0 0 0; }

.go-top {
   display: block;
   flex: 0 0 32px;
   line-height: 32px;
   margin: 2rem auto;
   text-decoration: none;
   background: var(--enlightment-color);
   border-radius: 50%;
   text-align: center;
   color: var(--main-color);
}

/* Author page */
.author-page-info {
   background-color: var(--soft-gray);
   display: flex;
   padding: 1rem;
   box-sizing: border-box;
   justify-content: space-between;
   align-self: flex-start;
}
.author-page-info--avatar {
   margin-right: 1rem;
}
.author-page-info--description {
   flex: 0 1 100%;
}
.author-page-info .author-meta--social {
   list-style: none;
   display: flex;
   justify-content: flex-start;
   align-items: center;
   padding: 0;
}
.author-page-info .author-meta--social li:not(:last-child) {
   margin-right: .5rem;
}
.author-page-info .author-meta--social a {
   text-decoration: none;
   color: var(--main-color);
}


/* AB Bottom Post styles */

div.bottom-post {
   background-color: var(--main-color); /* Color principal del theme */
   padding: 5px;
   margin: 2rem 0;
   }

div.bottom-post-title{

   background-color: var(--main-color); /* Color secundario del theme */
   color: #ffffff;
   text-align: center;
   font-weight: var(--text-bold);
   font-size: 1.4em;
   margin-bottom: 10px;
   }

div.bottom-post-description{

   color: #ffffff; 
   margin-bottom: 10px;
   padding-left: 30px;
   padding-right: 30px;
   }

div.bottom-post-buttons{
   text-align: center;
   margin-bottom: 3px;
   }

.myButton {
   background-color: var(--alt-color);
   -moz-border-radius:3px;
   -webkit-border-radius:3px;
   border-radius:3px;
   display:inline-block;
   cursor:pointer;
   font-size:16px;
   font-weight:bold;
   padding:7px 10px;
   margin:5px 15px;
   text-decoration:none;
}

/* Relacionado shotcode styles */
.post-relacionado {
   max-width: 600px;
   background: #e5e6e4;
   margin: 2rem auto;
   display: flex;
   align-items: center;
   text-decoration: none;
}
   .post-relacionado-image {
      display: block;
      margin-right: 1.5rem;
      width: 200px;
   }
   .post-relacionado div:first-child {
      color: #999;
      text-transform: uppercase;
      font-size: .8rem;
   }
   .post-relacionado-title {
      display: block;
      font-size: 1rem;
      font-weight: var(--text-bold);
      text-decoration: none;
   }

/* RGPD box */
#toggleDatos {
   cursor: pointer;
}
#contentDatos {
  display: none;
}
#contentDatos.active{
  display: block;
  background: #f0f0f0;
  font-size: 12px;
  padding: 1rem;
}
.comment-respond #contentDatos.active{
   background: #ccc;
}

/* ABN-SHARES styles */

#abn-shares-buttons { background: transparent; z-index: 0; position: relative !important; margin: 2rem 0; }
#abn-shares-buttons sub { font-size: 1.5rem; }
#abn-shares-buttons span.abn-shares-global { float: right; padding: 5px 0 0; /*background:#eee;*/ }
#abn-shares-buttons span.abn-shares-global span.txt { float: left; font-size: 1rem; font-weight: 700; }
#abn-shares-buttons span.abn-shares-global span.num { font-size: 2rem; line-height: 1.1rem; margin: 0 5px; border: 0; }
#abn-shares-buttons span.abn-shares-global.mobile span.num { font-size: 1.2rem; line-height: 1.5rem; margin: 0; }
#abn-shares-buttons a.abns-button { display: inline-block; font-size: 1rem; font-weight: normal; color: #666; width: auto; text-decoration: none !important; }
#abn-shares-buttons a.abns-button .abns-button-inner { overflow: hidden; clear: both; }
#abn-shares-buttons a.abns-button span.abns-share-text { float: left; white-space: nowrap; color: white; padding: 5px 10px 4px 5px; }
#abn-shares-buttons p.abn-shares-title {font-size: 1.17rem; font-weight: bold;}

a.abns-button i { float: left; display: block; height: 21px; width: 21px; background-repeat: no-repeat; background-size: 21px; margin: .35em 0 0 .65em; }
a.abns-button i:before { color: #fff; font-size: 1.3em; margin-top: 2px;}
a.abns-button--facebook .abns-button-inner { background-color: #3b5999; }
a.abns-button--twitter .abns-button-inner { background-color: #59adeb; }
a.abns-button--gplus .abns-button-inner { background-color: #d75139; }
a.abns-button--pinterest .abns-button-inner { background-color: #c13d33; }
a.abns-button--whats .abns-button-inner { background-color: #4caf50; }
a.abns-button--instagram .abns-button-inner { background-color: #9e7144; }
a.abns-button--youtube .abns-button-inner { background-color: #cd332d; }
a.abns-button--email .abns-button-inner, a.abns-button--print .abns-button-inner { background-color: #666; }
a.abns-button--gplus .abns-button-inner, a.abns-button--pinterest .abns-button-inner, a.abns-button--email .abns-button-inner, a.abns-button--print .abns-button-inner, a.abns-button--youtube .abns-button-inner, a.abns-button--instagram .abns-button-inner, a.abns-button.mobile .abns-button-inner { width: 41px; height: 32px; }
a.abns-button--gplus .abns-button-inner span, a.abns-button--pinterest .abns-button-inner span, a.abns-button--email .abns-button-inner span, a.abns-button--print .abns-button-inner span { display: none; }
a.abns-button--whats .abns-button-inner { width: auto !important; }

a.abns-button i.fa-facebook:before,
a.abns-button i.fa-facebook-f:before,
a.abns-button i.fa-twitter:before,
a.abns-button i.fa-google-plus:before,
a.abns-button i.fa-pinterest:before,
a.abns-button i.fa-pinterest-p:before,
a.abns-button i.fa-instagram:before,
a.abns-button i.fa-youtube:before,
a.abns-button i.fa-whats:before {font-family: var(--font-awesome) !important; font-weight: 300; }

@media all and (max-width: 48rem) {
	.abns-button-inner span { display: none; }
	#abn-shares-buttons a.abns-button .abns-button-inner {
		overflow: hidden;
		clear: both;
	}
	a.abns-button--facebook .abns-button-inner, a.abns-button--twitter .abns-button-inner, a.abns-button--whats .abns-button-inner {
		width: 41px !important;
		height: 32px;
	}
}

.fa-twitter:before,
.fa-facebook-f:before,
.fa-facebook:before {font-family: var(--font-awesome) !important; font-weight: 300; }

/* Contact form 7 integration */
.wpcf7-form label {
   width: 100%;
}
.wpcf7-form input, .wpcf7-form textarea {
   width: 100%;
   padding: .3rem;
   box-sizing: border-box;
}

.wpcf7-form input[type="checkbox"] {
   width: auto !important;
}

.texto-resaltado {
   background: var(--soft-gray);
   padding: 1rem;
   display:block;
   border: 1px solid #959595;
}

/* Hides Contact Form reCaptcha badge */
.grecaptcha-badge[style] {
   display: none !important;
}

/* Ad styles
 * ABN-Admanager fixes
 */
#abn_skyscraper {
   margin-top: 0;
   margin-bottom: 0;
   text-align: center;
}
.publi.below-breadcrumb {
   margin-top: 2rem !important;
}
.publi.home {
   display: block;
   width: 100%;
}

/* TOC+ styles */
.toc_widget_list {
   padding: 0;
}
   .widget .toc_widget_list a {
      text-decoration: none;
      line-height: 1.5rem;
      color: #000;
   }
.toc_widget_list ul {
   padding-left: 1.5rem;
}
.toc_number::after {
   content: '-';
   margin-left: .3rem;
}

/* Hiding parts of sidebar in mobile: */
   .widget.abn-shares-widget-fans-class, .widget.widget_polls-widget, .widget.widget_abn_secciones, .widget.widget_top-posts, .widget.widget_wprs, .widget.dpe-flexible-posts, .widget_abn_posts_destacados_widget, .widget_abn_admanager_sidestealer .publi, .widget.widget_abn_admanager_quad_ads { display: none; }
   .category-grid .widget.widget_abn_admanager_sidestealer,
   .widget.widget_abn_admanager_sidestealer .publi.mobile-yes { display: block; }
   
   .movil-no {
      display: none !important;
   }

/* Popup maker styles */
.pum-container {
   padding: 10px;
   border-radius: 0px;
   border: 1px none #000000;
   box-shadow: 1px 1px 3px 0px rgba( 2, 2, 2, 0.23 )
}
.pum-title {
   color: #ffffff;
   text-align: left;
   text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 );
   font-family: inherit;
   font-size: 32px;
   line-height: 36px
}
.pum-content {
   color: #ffffff;
   font-family: inherit
}
.pum-content,
.pum-content + .pum-close,
.popmake-close,
.pum-content+.pum-close:focus,
.pum-content+.pum-close:hover {
   height: auto;
   width: auto;
   left: auto;
   right: 0px;
   bottom: auto;
   top: 0px;
   padding: 8px;
   color: #ffffff;
   font-family: inherit;
   font-size: medium;
   border: 1px none #ffffff;
   border-radius: 0px;
   box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 );
   text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
}
.pum-content,
.pum-content + .pum-close,
.popmake-close,
.pum-content+.pum-close:focus,
.pum-content+.pum-close:hover {
   height: auto;
   width: auto;
   left: auto;
   right: 0px !important;
   bottom: auto;
   top: 0px !important;
   padding: 8px;
   color: #ffffff;
   font-family: inherit;
   font-size: medium;
   border: 1px none #ffffff;
   border-radius: 0px;
   box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 );
   text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 )
}
html.pum-open.pum-open-overlay.pum-open-fixed .pum-container{
   position:fixed;
}
html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden]{
   padding-right:15px
}
html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active{
   overflow-y:scroll
}
html.pum-open.pum-open-overlay-disabled.pum-open-scrollable .pum-overlay.pum-active{
   position:static;
   height:auto;
   width:auto
}
.pum-container iframe.formidable{
   width:100%;
   overflow:visible;
}
.pika-single,
body div#ui-datepicker-div[style]{
   z-index:9999999999 !important
}
.powered-by-popmake{
   bottom:-28px;
   display:block;
   left:0;
   margin:0 auto;
   position:absolute;
   text-align:center;
   width:100%
}
.powered-by-popmake>a{
   display:inline-block;
   max-width:205px
}
.powered-by-popmake img{
   max-width:100%;
   width:100%
}
.powered-by-popmake.small{
   bottom:-22px
}
.powered-by-popmake.small>a{
   max-width:125px
}
.powered-by-popmake.large{
   bottom:-30px
}
.powered-by-popmake.large>a{
   max-width:285px
}
.popmake-close{
   cursor:pointer
}
.pum-overlay,
.pum-overlay.pum-active {
   background-color: rgba( 229, 229, 229, 0.7 )
}
@media only screen and (min-width:1024px){
   .pum-container.pum-responsive.pum-responsive-nano{
      margin-left:-5%;
      width:10%
   }
   .pum-container.pum-responsive.pum-responsive-micro{
      margin-left:-10%;
      width:20%
   }
   .pum-container.pum-responsive.pum-responsive-tiny{
      margin-left:-15%;
      width:30%
   }
   .pum-container.pum-responsive.pum-responsive-small{
      margin-left:-20%;
      width:50% !important;
   }
   .pum-container.pum-responsive.pum-responsive-medium{
      margin-left:-30%;
      width:60%
   }
   .pum-container.pum-responsive.pum-responsive-normal{
      margin-left:-30%;
      width:70%
   }
   .pum-container.pum-responsive.pum-responsive-large{
      margin-left:-35%;
      width:80%
   }.pum-container.pum-responsive.pum-responsive-xlarge{
      margin-left:-47.5%;
      width:95%
   }
   .pum-container.pum-responsive.pum-position-fixed{
      position:fixed
   }
}
@media only screen and (max-width:1024px){
   .pum-container.pum-responsive.pum-position-fixed{
      position:absolute
   }
}


/* ==========================================================================
   Media Queries: 1280, 1024, 768, 480
   more-1024   - desktop
   1024-768    - tablet landscape
   768-480     - tablet
   480-less    - phone landscape & smaller (Default one, mobile first)
   ========================================================================== */

/* Tablet - 1024-768px / 64-48em */
@media screen and (min-width: 48em) {
   .sitename-description a,
   .sitename-description--link {
      font-size: var(--bigger-font);
   }
   .sitename-break {
      display: inline-block;
      margin-left: -.5rem;
   }
   .sitename-normal {
      margin-left: -.5rem;
   }
   .home-featured-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-rows: 25vh 25vh;
      grid-template-areas: "first-featured first-featured second-featured second-featured" "first-featured first-featured third-featured fourth-featured";
      row-gap: 2px;
      column-gap: 2px;
   }
      .home-featured-item:nth-child(1) { grid-area: first-featured; }
      .home-featured-item:nth-child(2) { grid-area: second-featured; }
      .home-featured-item:nth-child(3) { grid-area: third-featured; }
      .home-featured-item:nth-child(4) { grid-area: fourth-featured; }

      .home-featured-item {
         display: flex;
         justify-content: stretch;
         align-items: flex-end;
      }
         .home-featured-item h2 {
            position: relative;
            width: 100%;
            z-index: 2;
            margin: 0;
            padding: .5rem 1rem;
            color: var(--enlightment-color);
            font-family: var(--font-primary);
            font-weight: normal;
            font-size: var(--normal-font);
         }
         .home-featured-item h2:before {
            content: '';
            display: block;
            position: absolute;
            opacity: .75;
            z-index: -1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--main-color);
            color: #fff;
            font-size: var(--normal-font);
            font-weight: var(--text-normal);
            align-self: end;
         }
         .home-featured-item:nth-child(n+2) h2 {
            font-size: var(--small-font);
         }
   .main {
      align-items: stretch;
   }
   .content {
      flex: 0 1 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
   }
   .content .widget {
		flex: 0 0 100%;
		margin-bottom: 4rem;
   }
   *:not(img).aligncenter {
      padding-left: 20%;
   }
   .single p .alignwide,
   .single p .size-full,
   .single p .size-responsive-content {
      width: 125%;
      max-width: 125%;
      margin-left: -25%;
   }
   .single .alignwide,
   .single .size-full,
   .single .size-responsive-content  {
      width: 100%;
      max-width: 100%;
      margin-left: 0;
   }
   .single .post-content > p:not(.wp-caption-text):not(.miniby):not(.logged-in-as):not(.comment-form-comment):not(.form-submit),
   .twitter-tweet  {
      margin-left: 20%;
      box-sizing: border-box;
   }
   .single .post ul,
   .single .post ol:not(.comment-list) {
      padding-left: 25% !important;
      box-sizing: border-box;
   }
   .single .post ul ul,
   .single .post ul ol,
   .single .post ol ol,
   .single .post ol ul {
      padding-left: 3rem;
   }

   .single .post-meta p {
      padding-left: 0;
   }
   .post blockquote {
      position: relative;
   }
   .post blockquote p {
      padding-left: 5rem !important;
   }
   .home .post:nth-child(1),
   .blog .post:nth-child(1) {
      margin-top: 2rem;
   }
   
   .home:not(.paged) .post:nth-child(1),
   .blog:not(.paged) .post:nth-child(1) {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: flex-end;
      width: 120%;
      margin-left: -20%;
      padding-left: 20%;
      box-sizing: border-box;
   }
   .home:not(.paged) .post:nth-child(1) .post-content,
   .blog:not(.paged) .post:nth-child(1) .post-content {
      background-color: #fff;
      max-width: 100%;
      margin-top: -5rem;
      box-sizing: border-box;
   }
   .home:not(.paged) .post .post-header {
      margin-bottom: 0;
      padding: 1rem 1.5rem;
      border-left: 4px solid var(--main-color);
   }
   .home:not(.paged) .post:nth-child(1) .post-header {
      padding: 1rem 2rem;
      border-left: 8px solid var(--main-color);
   }
      .home:not(.paged) .post:nth-child(1) .post-title,
      .blog:not(.paged) .post:nth-child(1) .post-title {
         margin: 0;
         font-size: var(--bigger-font);
         line-height: var(--bigger-font);
      }
      .home:not(.paged) .post:nth-child(1) .post-title a,
      .blog:not(.paged) .post:nth-child(1) .post-title a {
         text-decoration: none;
         color: var(--main-color);
         font-weight: var(--text-normal);
         font-family: var(--font-primary);
         font-weight: normal;
      }
   .home .post .post-excerpt,
   .home .post .post-footer,
   .blog .post .post-excerpt,
   .blog .post .post-footer {
      padding: 0 1.5rem;
   }
      .home:not(.paged) .post:nth-child(1) .post-excerpt,
      .home:not(.paged) .post:nth-child(1) .post-footer,
      .home:not(.paged) .post:nth-child(1) .post-excerpt,
      .home:not(.paged) .post:nth-child(1) .post-footer {
         padding: 0 2.5rem;
      }
   .home:not(.paged) .post:nth-child(1) .post-img,
   .blog:not(.paged) .post:nth-child(1) .post-img {
      flex: 0 0 100%;
      height: auto;
      margin-left: -150px;
      z-index: 0;
   }
   .home:not(.paged) .post:nth-child(1) .post-img img,
   .blog:not(.paged) .post:nth-child(1) .post-img img {
      max-width: 120%;
      width: 120%;
      margin-left: -20%;
   }
      .home:not(.paged) .post:nth-child(1) .post-header,
      .blog:not(.paged) .post:nth-child(1) .post-header {
         background-color: #fff;
      }
   .home .post:not(:nth-child(1)),
   .blog .post:not(:nth-child(1)) {
      flex: 0 0 45%;
      margin: 2.5rem 0;
      max-width: 45%;
   }
   .page-archive article {
      flex: 0 0 30%;
   }
   .category-top-posts-list li {
      flex: 0 0 48%;
   }
   .category-minimal .post {
      flex-wrap: nowrap;
   }
   .category-minimal .post-thumbnail {
      flex: 0 0 100px;
   }

   #authors-list .author-meta {
      flex: 0 0 45%;
   }

   /* Displays sidebar sections again. */
	.widget.abn-shares-widget-fans-class, .widget.widget_polls-widget, .widget.widget_abn_secciones, .widget.widget_abn_admanager_sidestealer .publi, .widget.widget_top-posts, .widget.widget_abn_admanager_quad_ads, .widget.widget_wprs, .widget.dpe-flexible-posts, .widget_abn_posts_destacados_widget { display: block; }
	.addoor-widget ul li { width: 30%; }

   .movil-no {
      display: block !important;
   }
   .tablet-no {
      display: none !important;
   }
}

/* Desktop - 1280-1024px / 80-64em */
@media screen and (min-width:64em) {
   body {
      padding-top: 153px;
   }
   .burger-toggle {
      display: none;
   }
   .site-logo.scroll-fixed {
      position: fixed;
      top: 0;
      z-index: 100;
      max-width: 30px;
      height: 49px;
      background-color: #fff;
      padding: 0 .7em 0 .7em !important;
      box-shadow: 0 0 7px #888;
      display: flex;
      justify-content: center;
      align-items: center;
   }
      .admin-bar .site-logo.scroll-fixed {
         top: 32px;
	  }
	  .trendy-active .site-logo.scroll-fixed {
		  top: 40px;
	  }
	  .admin-bar.trendy-active .site-logo.scroll-fixed {
		  top: 72px;
	  }

	.trendy-active .site-header {
		top: 40px;
	}
		.admin-bar.trendy-active .site-header {
			top: 72px;
		}
	.trendy-active .trendy-navigation {
		top: 0;
		bottom: auto;
	}
		.admin-bar.trendy-active .trendy-navigation {
			top: 32px;
		}
	.trendy-active .trendy-navigation ul {
		font-size: 14px;
		margin: .2rem 0;
	}
	.trendy-active .main-navigation {
		top: 140px;
	}
	.admin-bar.trendy-active .main-navigation {
		top: 172px;
	}
		.trendy-active .main-navigation.fixed {
			top: 38px;
		}
		.admin-bar.trendy-active .main-navigation.fixed {
			top: 70px;
		}

	.main-navigation {
		position: absolute;
		display: block;
		width: 100%;
		max-width: 100%;
		height: auto;
		top: 100px;
		left: 0;
		bottom: auto;
		padding: 0;
		overflow-y: visible;
		transition: none;
	}
		.main-navigation.fixed {
			position: fixed;
			top: 0;
		}
		.admin-bar .main-navigation.fixed {
			top: 32px;
		}
		.main-navigation.fixed nav .menu > li:first-child {
			margin-left: 50px;
		}

	.main-navigation a {
		font-size: 14px;
		line-height: 3rem;
		text-align: center;
	}
		.main-navigation .menu > li > a:hover {
			background: rgba(0, 0, 0, .4);
		}
		.main-navigation .menu {
			padding: 0;
			margin: 0;
		}
		.main-navigation .menu .menu-item {
			flex: 1 1 auto;
			position: relative;
		}
		.main-navigation .sub-menu {
			display: none;
			width: 260px;
			position: absolute;
			z-index: 99;
			top: 3rem;
			margin: 0;
			padding: 0;
			left: 0;
			background-color: var(--main-color);
			border-left: none;
		}
			.main-navigation .sub-menu a {
			line-height: 2rem;
			text-align: left;
			padding: 0 1rem;
			line-height: 2.5rem;
			}
			.main-navigation .sub-menu a:hover {
			background-color: var(--alt-color);
			}
		.main-navigation .menu .menu-item:hover > .sub-menu {
			display: block;
		}
		.main-navigation .sub-menu .sub-menu {
			width: 200px;
			position: absolute;
			z-index: 99;
			top: 0;
			margin: 0;
			padding: 0;
			left: 260px;
			background-color: var(--main-color);
			border-left: none;
		}
		/* this adds an arrow to every link */
		.main-navigation li > a:after { content: '▼'; margin-left: 5px; font-size: .8em; }
		.main-navigation ul ul li > a:after { content: '▶'; margin-left: 5px; font-size: .8em; }

		/* this removes the arrow when the link is the only child */
		.main-navigation li > a:only-child:after { content: ''; }

		.main {
			flex-wrap: nowrap;
		}
		.content {
			flex: 0 1 100%;
			max-width: calc(100% - 355px);

			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-content: stretch;
		}

		.sidebar {
			flex: 0 0 330px !important;
			margin-left: 1.25rem;
		}
			.sidebar .widget {
			padding: 1rem;
			}
			.sidebar .widget h3 {
			font-size: var(--normal-font);
			color: var(--main-color);
			font-weight: bold;
			}
			.widget_abn_posts_destacados_widget ul {
			display: flex;
			flex-wrap: wrap;

			list-style: none;
			padding: 0;
			}
			.widget_abn_posts_destacados_widget ul li {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
				align-items: center;
				margin: .7rem 0;
			}
			.widget_abn_posts_destacados_widget ul li img {
				flex: 0 0 80px;
				height: auto;
			}
			.widget_abn_posts_destacados_widget ul li a {
				flex: 1 0 100px;
				margin-left: .7rem;
				text-decoration: none;
				color:  #000;
			}
			.sidebar .widget .textwidget p {
			font-size: var(--small-font);
			}
			.sidebar .widget a {
			color: var(--main-color);
			}
		.post h1,
		.page h1 {
			line-height: var(--biggest-font);
			font-size: var(--biggest-font);
		}
		.single .post,
		.page .type-page {
			margin-top: 3rem;
			padding: 0;
		}
		.post blockquote {
			margin-left: 5rem;
		}
	#abn-shares-buttons a.abns-button--whats {
		display: none;
	}
}