@charset "UTF-8";
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333; }

.flickity-button:hover {
  background: white;
  cursor: pointer; }

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F; }

.flickity-button:active {
  opacity: 0.6; }

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none; }

.flickity-button-icon {
  fill: currentColor; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%); }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start; }

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit; }

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0; }

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch; }

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  visibility: visible;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none; }

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0; }

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table; }

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none; }

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0; }

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; }

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden; }

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none; }

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all; }

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px; }

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear; }

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear; }

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px; }

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px; }

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px; }

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px; }

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto; }

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0; }

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll; }

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none; }

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/roboto/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../fonts/roboto/Roboto-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../fonts/roboto/Roboto-LightItalicx.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Futura CTXT';
  src: url("../fonts/futura/FuturaBQ-Medium.woff2") format("woff2"), url("../fonts/futura/FuturaBQ-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Cheltenham CTXT';
  src: url("../fonts/cheltenham/CheltenhamLight.woff2") format("woff2"), url("../fonts/cheltenham/CheltenhamLight.woff") format("woff");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'Cheltenham CTXT';
  src: url("../fonts/cheltenham/CheltenhamBook.woff2") format("woff2"), url("../fonts/cheltenham/CheltenhamBook.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Cheltenham CTXT';
  src: url("../fonts/cheltenham/CheltenhamBold.woff2") format("woff2"), url("../fonts/cheltenham/CheltenhamBold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  box-sizing: inherit;
  /* 2 */ }

::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

html {
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  font-family: "Cheltenham CTXT", Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  color: #000;
  scroll-behavior: smooth; }

html {
  font-size: 100%;
  line-height: 1.4em; }

p, h1, h2, h3, h4, h5, h6,
ul, ol, dl,
article, aside, footer, header, nav, section,
figure, audio, video,
hr,
table, caption, figcaption,
fieldset,
details, details[open] summary,
pre {
  margin: 0 0 1.4rem 0; }

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
main {
  /* 1 */
  display: block; }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/*
Pre-formatted text

Applies selected monospace and `$base-font-size`

Markup:
<pre>Hey there! I am a pre-formatted text</pre>

Styleguide Typography.pre
*/
pre {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  /* 1 */
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  /* 2 */
  white-space: pre-wrap; }

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/*
 * Remove the text shadow on text selections (opinionated).
 * HUESOS: Use the same as <mark> elements
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #f01b4d;
  /* 1 */
  color: #fff;
  /* 1 */
  text-shadow: none; }

::selection {
  background-color: #f01b4d;
  /* 1 */
  color: #fff;
  /* 1 */
  text-shadow: none; }

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse; }

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */ }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation; }

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress; }

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer; }

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default; }

caption {
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

table {
  table-layout: fixed;
  min-width: 100%;
  margin-bottom: calc( 1.4rem - 1px); }

th, td {
  border-top-width: 1px;
  border-top-width: 0.0625rem;
  padding-top: 10px;
  padding-top: 0.6375rem;
  border-left-width: 1px;
  border-left-width: 0.0625rem;
  padding-left: 10px;
  padding-left: 0.6375rem;
  border-right-width: 1px;
  border-right-width: 0.0625rem;
  padding-right: 10px;
  padding-right: 0.6375rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid;
  border-style: solid;
  border-color: #CCCCCC; }

th {
  text-align: left; }

.table {
  overflow: auto; }
  .table th, .table td {
    min-width: 120px; }

a {
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: underline;
    background-color: transparent;
    border-bottom: none;
    padding-left: 0;
    padding-right: 0; }
    a:hover:after, a:focus:after {
      display: none; }

a, a:link {
  color: #f01b4d; }

a:visited {
  color: #f01b4d; }

a:focus, a:hover {
  color: #000; }

a:active {
  color: #000; }

a.link--inactive {
  text-decoration: none; }
  a.link--inactive:hover, a.link--inactive:focus {
    text-decoration: none; }

a.link--inactive, a.link--inactive:link {
  color: #000; }

a.link--inactive:visited {
  color: #000; }

a.link--inactive:focus, a.link--inactive:hover {
  color: #000; }

a.link--inactive:active {
  color: #000; }

a.link--inactive:focus, a.link--inactive:hover {
  text-decoration: none; }

a.disabled {
  text-decoration: none; }
  a.disabled:hover, a.disabled:focus {
    text-decoration: none; }

a.disabled, a.disabled:link {
  color: #a3a3a3; }

a.disabled:visited {
  color: #a3a3a3; }

a.disabled:focus, a.disabled:hover {
  color: #a3a3a3; }

a.disabled:active {
  color: #a3a3a3; }

a.disabled:focus, a.disabled:hover {
  text-decoration: none; }

a.link--inverted {
  text-decoration: underline;
  background-color: transparent;
  border-bottom: none;
  padding-left: 0;
  padding-right: 0; }
  a.link--inverted:after {
    display: none; }
  a.link--inverted:hover, a.link--inverted:focus {
    text-decoration: none; }

a.link--inverted, a.link--inverted:link {
  color: #cfdafb; }

a.link--inverted:visited {
  color: #cfdafb; }

a.link--inverted:focus, a.link--inverted:hover {
  color: #b2c4f9; }

a.link--inverted:active {
  color: #b2c4f9; }

summary {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer; }

ol,
ul {
  padding-left: 1em; }
  ol li,
  ul li {
    margin-bottom: 0.7rem; }
  ol ol,
  ol ul,
  ul ol,
  ul ul {
    padding-left: 1em; }
    ol ol li,
    ol ul li,
    ul ol li,
    ul ul li {
      margin-bottom: 0.35rem; }

ul {
  list-style-type: square; }

dt {
  font-weight: bold;
  margin: 0; }

dd {
  margin: 0 0 1.4rem 1.4rem; }

.list--inline {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .list--inline li {
    list-style-type: none;
    display: inline-block; }

hr {
  height: 0;
  overflow: visible;
  border: none;
  border-bottom: 1px solid #CCCCCC; }

iframe {
  border: none;
  display: block; }

.iframe-sizeless {
  width: 100%;
  height: 100%; }

img {
  display: inline-block;
  border-style: none;
  max-width: 100%;
  height: auto; }

figure {
  display: inline-block; }

figcaption {
  display: block;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 22px;
  line-height: 1.4rem;
  text-align: left; }

h1, .h1 {
  font-size: 39px;
  font-size: 2.44141rem;
  line-height: 39px;
  line-height: 2.45rem; }

h2, .h2 {
  font-size: 31px;
  font-size: 1.95312rem;
  line-height: 34px;
  line-height: 2.1rem; }

h3, .h3, .ficha-autor__title, .bloque__title, .comentarios__title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 28px;
  line-height: 1.75rem; }

h4, .h4, .subsection, .subcontenido__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem; }

h5, .h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem; }

h6, .h6, .section__patrocinador span, .pub__title {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem; }

h1, .h1,
h2, .h2 {
  letter-spacing: 0; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .ficha-autor__title, .bloque__title, .comentarios__title, .h4, .subsection, .subcontenido__title, .h5, .h6, .section__patrocinador span, .pub__title {
  color: #000;
  font-weight: normal; }
  h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
  .h1 small, .h2 small, .h3 small, .ficha-autor__title small, .bloque__title small, .comentarios__title small, .h4 small, .subsection small, .subcontenido__title small, .h5 small, .h6 small, .section__patrocinador span small, .pub__title small {
    color: inherit;
    vertical-align: 0; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
  .h1 a, .h2 a, .h3 a, .ficha-autor__title a, .bloque__title a, .comentarios__title a, .h4 a, .subsection a, .subcontenido__title a, .h5 a, .h6 a, .section__patrocinador span a, .pub__title a {
    text-decoration: none; }
    h1 a:hover, h1 a:focus, h2 a:hover, h2 a:focus, h3 a:hover, h3 a:focus, h4 a:hover, h4 a:focus, h5 a:hover, h5 a:focus, h6 a:hover, h6 a:focus,
    .h1 a:hover,
    .h1 a:focus, .h2 a:hover, .h2 a:focus, .h3 a:hover, .ficha-autor__title a:hover, .bloque__title a:hover, .comentarios__title a:hover, .h3 a:focus, .ficha-autor__title a:focus, .bloque__title a:focus, .comentarios__title a:focus, .h4 a:hover, .subsection a:hover, .subcontenido__title a:hover, .h4 a:focus, .subsection a:focus, .subcontenido__title a:focus, .h5 a:hover, .h5 a:focus, .h6 a:hover, .section__patrocinador span a:hover, .pub__title a:hover, .h6 a:focus, .section__patrocinador span a:focus, .pub__title a:focus {
      text-decoration: none; }
  h1 a, h1 a:link, h2 a, h2 a:link, h3 a, h3 a:link, h4 a, h4 a:link, h5 a, h5 a:link, h6 a, h6 a:link,
  .h1 a,
  .h1 a:link, .h2 a, .h2 a:link, .h3 a, .ficha-autor__title a, .bloque__title a, .comentarios__title a, .h3 a:link, .ficha-autor__title a:link, .bloque__title a:link, .comentarios__title a:link, .h4 a, .subsection a, .subcontenido__title a, .h4 a:link, .subsection a:link, .subcontenido__title a:link, .h5 a, .h5 a:link, .h6 a, .section__patrocinador span a, .pub__title a, .h6 a:link, .section__patrocinador span a:link, .pub__title a:link {
    color: #000; }
  h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited,
  .h1 a:visited, .h2 a:visited, .h3 a:visited, .ficha-autor__title a:visited, .bloque__title a:visited, .comentarios__title a:visited, .h4 a:visited, .subsection a:visited, .subcontenido__title a:visited, .h5 a:visited, .h6 a:visited, .section__patrocinador span a:visited, .pub__title a:visited {
    color: #000; }
  h1 a:focus, h1 a:hover, h2 a:focus, h2 a:hover, h3 a:focus, h3 a:hover, h4 a:focus, h4 a:hover, h5 a:focus, h5 a:hover, h6 a:focus, h6 a:hover,
  .h1 a:focus,
  .h1 a:hover, .h2 a:focus, .h2 a:hover, .h3 a:focus, .ficha-autor__title a:focus, .bloque__title a:focus, .comentarios__title a:focus, .h3 a:hover, .ficha-autor__title a:hover, .bloque__title a:hover, .comentarios__title a:hover, .h4 a:focus, .subsection a:focus, .subcontenido__title a:focus, .h4 a:hover, .subsection a:hover, .subcontenido__title a:hover, .h5 a:focus, .h5 a:hover, .h6 a:focus, .section__patrocinador span a:focus, .pub__title a:focus, .h6 a:hover, .section__patrocinador span a:hover, .pub__title a:hover {
    color: #000; }
  h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active,
  .h1 a:active, .h2 a:active, .h3 a:active, .ficha-autor__title a:active, .bloque__title a:active, .comentarios__title a:active, .h4 a:active, .subsection a:active, .subcontenido__title a:active, .h5 a:active, .h6 a:active, .section__patrocinador span a:active, .pub__title a:active {
    color: #000; }
  h1 a:focus, h1 a:hover, h2 a:focus, h2 a:hover, h3 a:focus, h3 a:hover, h4 a:focus, h4 a:hover, h5 a:focus, h5 a:hover, h6 a:focus, h6 a:hover,
  .h1 a:focus,
  .h1 a:hover, .h2 a:focus, .h2 a:hover, .h3 a:focus, .ficha-autor__title a:focus, .bloque__title a:focus, .comentarios__title a:focus, .h3 a:hover, .ficha-autor__title a:hover, .bloque__title a:hover, .comentarios__title a:hover, .h4 a:focus, .subsection a:focus, .subcontenido__title a:focus, .h4 a:hover, .subsection a:hover, .subcontenido__title a:hover, .h5 a:focus, .h5 a:hover, .h6 a:focus, .section__patrocinador span a:focus, .pub__title a:focus, .h6 a:hover, .section__patrocinador span a:hover, .pub__title a:hover {
    text-decoration: none; }

.font-secondary, .section__category, .vineta-header__category, .section__subtitle,
.section__suptitle, .subsection,
nav {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.minititle {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

code,
kbd,
samp,
var {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  font-size: 16px;
  font-size: 1rem;
  line-height: 17px;
  line-height: 1.05rem;
  display: inline;
  vertical-align: baseline;
  box-decoration-break: clone;
  white-space: nowrap;
  background-color: #1b50f0;
  color: #fff;
  padding: 0.175rem 0.35rem;
  border-radius: 10px; }

.code-block {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  padding: 1.4rem;
  background-color: #2e2e2e;
  color: #fff; }
  .code-block pre {
    margin: 0; }

pre code {
  white-space: inherit; }

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

b,
strong,
.strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background-color: #f01b4d;
  color: #fff;
  padding: 2px; }

small,
.small {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 22px;
  line-height: 1.4rem; }

h1 small {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 34px;
  line-height: 2.1rem; }

h2 small {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem; }

h3 small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem; }

sub,
sup {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 22px;
  line-height: 1.4rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

q {
  quotes: "«" "»" "“" "”"; }

input,
label,
select,
button,
textarea {
  display: inline-block;
  margin: 0;
  border: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  border-radius: 0;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit; }

button {
  cursor: pointer; }

label {
  margin-right: 0.7rem; }

input[type=checkbox].pseudo-checkbox {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }
  input[type=checkbox].pseudo-checkbox:checked + label {
    position: relative; }
    input[type=checkbox].pseudo-checkbox:checked + label:after {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      position: absolute;
      top: 50%;
      left: 4px;
      transform: translateY(-50%);
      background-color: #2e2e2e; }
  input[type=checkbox].pseudo-checkbox + label {
    cursor: pointer;
    display: flex;
    align-items: center; }
    input[type=checkbox].pseudo-checkbox + label:before {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      margin: 0 0.7rem 0 0;
      border: 1px solid #2e2e2e;
      cursor: pointer; }

fieldset {
  margin-right: 0;
  margin-left: 0;
  border-width: 1px;
  border-width: 0.0625rem;
  padding: 21px;
  padding: 1.3375rem;
  border-color: #a3a3a3;
  border-radius: 0; }
  fieldset legend {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em; }

fieldset.fieldset--disabled {
  margin-right: 0;
  margin-left: 0;
  border: none;
  padding: 0; }
  fieldset.fieldset--disabled legend {
    margin-bottom: 1.4rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em; }

.form-item {
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center; }
  .form-item label {
    flex: 0 1 auto;
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 22px;
    line-height: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em; }
  .form-item input[type="text"],
  .form-item input[type="email"],
  .form-item input[type="password"],
  .form-item input[type="url"],
  .form-item input[type="tel"],
  .form-item input[type="search"] {
    flex: 1 0 auto; }
  .form-item input[type="checkbox"],
  .form-item input[type="radio"] {
    align-self: center; }
  .form-item:last-child, .form-item:last-of-type {
    margin-bottom: 0; }

.form-item--col {
  display: block; }
  .form-item--col label,
  .form-item--col input,
  .form-item--col textarea {
    display: block;
    width: 100%; }
  .form-item--col input[type="checkbox"],
  .form-item--col input[type="radio"] {
    width: auto; }

.form-item--required label::after {
  content: "*";
  color: #d84818; }

.form-item--label-inside {
  border-radius: 0; }
  .form-item--label-inside input,
  .form-item--label-inside textarea {
    border: none;
    border-radius: 0;
    padding: 0; }

.form-item--label-top {
  align-items: flex-start; }

.form-item--label-bottom {
  align-items: flex-end; }

input {
  /* Make webkit render the search input like a normal text field */
  /* Turn off the recent search for webkit. It adds about 15px padding on the left */
  /* Fix IE7 display bug */ }
  input:focus {
    outline: 0; }
  input[type=checkbox], input[type=radio] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 0.7rem; }
  input[type=search] {
    -webkit-appearance: textfield; }
  ::-webkit-search-decoration {
    display: none; }
  input[type="reset"], input[type="button"], input[type="submit"] {
    overflow: visible; }

input[type=file] {
  border: none;
  padding: 0; }
  input[type=file] + label {
    margin-left: 0.7rem;
    margin-right: 0; }

input::-webkit-file-upload-button {
  margin-right: 0.35rem;
  padding-right: 0.35rem;
  border-right: 1px solid #a3a3a3; }

.file-input {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .file-input[data-file-input] {
    border: none;
    padding: 0; }
    .file-input[data-file-input] input[type=file] {
      position: absolute !important;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(1px 1px 1px 1px);
      /* IE6, IE7 */
      clip: rect(1px, 1px, 1px, 1px); }
    .file-input[data-file-input] label {
      margin: 0; }

input[type=radio].pseudo-radio {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }
  input[type=radio].pseudo-radio:checked + label {
    position: relative; }
    input[type=radio].pseudo-radio:checked + label:after {
      content: "";
      position: absolute;
      display: inline-block;
      top: 50%;
      left: 4px;
      width: 8px;
      height: 8px;
      transform: translateY(-50%);
      background-color: #2e2e2e;
      border-radius: 50%;
      cursor: pointer; }
  input[type=radio].pseudo-radio + label {
    cursor: pointer;
    display: flex;
    align-items: center; }
    input[type=radio].pseudo-radio + label:before {
      content: "";
      display: inline-block;
      margin: 0 0.7rem 0 0;
      width: 16px;
      height: 16px;
      border: 1px solid #2e2e2e;
      vertical-align: top;
      border-radius: 50%;
      cursor: pointer; }

select {
  display: inline-block;
  margin: 0;
  border: 0;
  width: auto;
  vertical-align: middle;
  white-space: normal;
  line-height: inherit;
  background: none;
  border-radius: 0;
  /* Browsers have different default form fonts */
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  width: 100%; }
  select[multiple] {
    vertical-align: top; }
  select option {
    min-height: 1em;
    padding: 0.175rem 0; }

.select-wrapper {
  position: relative; }
  .select-wrapper:before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-color: #6d6d6d transparent transparent transparent;
    margin-top: -0.125rem;
    border-width: 0.25rem;
    border-style: solid;
    pointer-events: none;
    top: 50%;
    right: 0.35rem;
    bottom: auto;
    left: auto; }

textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
  width: 100%;
  min-height: 2.8rem; }

#main-wrapper {
  max-width: 1175px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.4rem; }

.grid {
  *zoom: 1; }
  .grid:before, .grid:after {
    content: " ";
    display: table; }
  .grid:after {
    clear: both; }
  .grid .grid-item {
    float: left;
    margin-bottom: 1.4rem; }

.grid--2col .grid-item {
  width: 50%;
  width: calc( (100% / 2) -  ( ( 1.4rem * ( 2 - 1 ) / 2 ) + 0.001rem ));
  margin-right: 1.4rem; }
  .grid--2col .grid-item:nth-child(2n) {
    margin-right: 0; }

.grid--3col .grid-item {
  width: 33.33333%;
  width: calc( (100% / 3) -  ( ( 1.4rem * ( 3 - 1 ) / 3 ) + 0.001rem ));
  margin-right: 1.4rem; }
  .grid--3col .grid-item:nth-child(3n) {
    margin-right: 0; }

.grid--4col .grid-item {
  width: 25%;
  width: calc( (100% / 4) -  ( ( 1.4rem * ( 4 - 1 ) / 4 ) + 0.001rem ));
  margin-right: 1.4rem; }
  .grid--4col .grid-item:nth-child(4n) {
    margin-right: 0; }

.grid--5col .grid-item {
  width: 20%;
  width: calc( (100% / 5) -  ( ( 1.4rem * ( 5 - 1 ) / 5 ) + 0.001rem ));
  margin-right: 1.4rem; }
  .grid--5col .grid-item:nth-child(5n) {
    margin-right: 0; }

.grid--6col .grid-item {
  width: 16.66667%;
  width: calc( (100% / 6) -  ( ( 1.4rem * ( 6 - 1 ) / 6 ) + 0.001rem ));
  margin-right: 1.4rem; }
  .grid--6col .grid-item:nth-child(6n) {
    margin-right: 0; }

@media (min-width: 640px) {
  .grid--small--2col .grid-item {
    width: 50%;
    width: calc( (100% / 2) -  ( ( 1.4rem * ( 2 - 1 ) / 2 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--small--2col .grid-item:nth-child(2n) {
      margin-right: 0; } }

@media (min-width: 640px) {
  .grid--small--3col .grid-item {
    width: 33.33333%;
    width: calc( (100% / 3) -  ( ( 1.4rem * ( 3 - 1 ) / 3 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--small--3col .grid-item:nth-child(3n) {
      margin-right: 0; } }

@media (min-width: 640px) {
  .grid--small--4col .grid-item {
    width: 25%;
    width: calc( (100% / 4) -  ( ( 1.4rem * ( 4 - 1 ) / 4 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--small--4col .grid-item:nth-child(4n) {
      margin-right: 0; } }

@media (min-width: 640px) {
  .grid--small--5col .grid-item {
    width: 20%;
    width: calc( (100% / 5) -  ( ( 1.4rem * ( 5 - 1 ) / 5 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--small--5col .grid-item:nth-child(5n) {
      margin-right: 0; } }

@media (min-width: 640px) {
  .grid--small--6col .grid-item {
    width: 16.66667%;
    width: calc( (100% / 6) -  ( ( 1.4rem * ( 6 - 1 ) / 6 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--small--6col .grid-item:nth-child(6n) {
      margin-right: 0; } }

@media (min-width: 900px) {
  .grid--medium--2col .grid-item {
    width: 50%;
    width: calc( (100% / 2) -  ( ( 1.4rem * ( 2 - 1 ) / 2 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--medium--2col .grid-item:nth-child(2n) {
      margin-right: 0; } }

@media (min-width: 900px) {
  .grid--medium--3col .grid-item {
    width: 33.33333%;
    width: calc( (100% / 3) -  ( ( 1.4rem * ( 3 - 1 ) / 3 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--medium--3col .grid-item:nth-child(3n) {
      margin-right: 0; } }

@media (min-width: 900px) {
  .grid--medium--4col .grid-item {
    width: 25%;
    width: calc( (100% / 4) -  ( ( 1.4rem * ( 4 - 1 ) / 4 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--medium--4col .grid-item:nth-child(4n) {
      margin-right: 0; } }

@media (min-width: 900px) {
  .grid--medium--5col .grid-item {
    width: 20%;
    width: calc( (100% / 5) -  ( ( 1.4rem * ( 5 - 1 ) / 5 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--medium--5col .grid-item:nth-child(5n) {
      margin-right: 0; } }

@media (min-width: 900px) {
  .grid--medium--6col .grid-item {
    width: 16.66667%;
    width: calc( (100% / 6) -  ( ( 1.4rem * ( 6 - 1 ) / 6 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--medium--6col .grid-item:nth-child(6n) {
      margin-right: 0; } }

@media (min-width: 1120px) {
  .grid--large--2col .grid-item {
    width: 50%;
    width: calc( (100% / 2) -  ( ( 1.4rem * ( 2 - 1 ) / 2 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--large--2col .grid-item:nth-child(2n) {
      margin-right: 0; } }

@media (min-width: 1120px) {
  .grid--large--3col .grid-item {
    width: 33.33333%;
    width: calc( (100% / 3) -  ( ( 1.4rem * ( 3 - 1 ) / 3 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--large--3col .grid-item:nth-child(3n) {
      margin-right: 0; } }

@media (min-width: 1120px) {
  .grid--large--4col .grid-item {
    width: 25%;
    width: calc( (100% / 4) -  ( ( 1.4rem * ( 4 - 1 ) / 4 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--large--4col .grid-item:nth-child(4n) {
      margin-right: 0; } }

@media (min-width: 1120px) {
  .grid--large--5col .grid-item {
    width: 20%;
    width: calc( (100% / 5) -  ( ( 1.4rem * ( 5 - 1 ) / 5 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--large--5col .grid-item:nth-child(5n) {
      margin-right: 0; } }

@media (min-width: 1120px) {
  .grid--large--6col .grid-item {
    width: 16.66667%;
    width: calc( (100% / 6) -  ( ( 1.4rem * ( 6 - 1 ) / 6 ) + 0.001rem ));
    margin-right: 1.4rem; }
    .grid--large--6col .grid-item:nth-child(6n) {
      margin-right: 0; } }

@supports (display: grid) {
  .grid {
    display: grid;
    grid-gap: 1.4rem; }
    .grid:before, .grid:after {
      display: none; }
    .grid .grid-item {
      float: none;
      margin: 0;
      width: auto; }
  .grid--2col {
    grid-template-columns: repeat(2, 1fr); }
  .grid--3col {
    grid-template-columns: repeat(3, 1fr); }
  .grid--4col {
    grid-template-columns: repeat(4, 1fr); }
  .grid--5col {
    grid-template-columns: repeat(5, 1fr); }
  .grid--6col {
    grid-template-columns: repeat(6, 1fr); }
  @media (min-width: 640px) {
    .grid--small--2col {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 640px) {
    .grid--small--3col {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 640px) {
    .grid--small--4col {
      grid-template-columns: repeat(4, 1fr); } }
  @media (min-width: 640px) {
    .grid--small--5col {
      grid-template-columns: repeat(5, 1fr); } }
  @media (min-width: 640px) {
    .grid--small--6col {
      grid-template-columns: repeat(6, 1fr); } }
  @media (min-width: 900px) {
    .grid--medium--2col {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 900px) {
    .grid--medium--3col {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 900px) {
    .grid--medium--4col {
      grid-template-columns: repeat(4, 1fr); } }
  @media (min-width: 900px) {
    .grid--medium--5col {
      grid-template-columns: repeat(5, 1fr); } }
  @media (min-width: 900px) {
    .grid--medium--6col {
      grid-template-columns: repeat(6, 1fr); } }
  @media (min-width: 1120px) {
    .grid--large--2col {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1120px) {
    .grid--large--3col {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1120px) {
    .grid--large--4col {
      grid-template-columns: repeat(4, 1fr); } }
  @media (min-width: 1120px) {
    .grid--large--5col {
      grid-template-columns: repeat(5, 1fr); } }
  @media (min-width: 1120px) {
    .grid--large--6col {
      grid-template-columns: repeat(6, 1fr); } } }

.grid--gutterless {
  grid-gap: 0; }

.small-visible {
  display: none; }
  @media (min-width: 640px) {
    .small-visible {
      display: inherit; } }

.medium-visible {
  display: none; }
  @media (min-width: 900px) {
    .medium-visible {
      display: inherit; } }

.large-visible {
  display: none; }
  @media (min-width: 1120px) {
    .large-visible {
      display: inherit; } }

.nav a:focus, .nav a:hover {
  text-decoration: none; }

.nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none; }
  .nav ul li {
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.4rem;
    letter-spacing: 0.05em; }

.menu a:focus, .menu a:hover {
  text-decoration: none; }

.menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  background-color: #a3a3a3; }
  .menu ul li {
    list-style-type: none;
    display: inline-block; }

.menu a, .menu span {
  display: inline-block; }

.menu ul > li {
  margin: 0;
  position: relative;
  z-index: 1; }
  .menu ul > li > a {
    text-align: left;
    display: block;
    white-space: nowrap; }
    .menu ul > li > a {
      text-decoration: none; }
      .menu ul > li > a:hover, .menu ul > li > a:focus {
        text-decoration: none; }
    .menu ul > li > a, .menu ul > li > a:link {
      color: #000; }
    .menu ul > li > a:visited {
      color: #000; }
    .menu ul > li > a:focus, .menu ul > li > a:hover {
      color: #000; }
    .menu ul > li > a:active {
      color: #000; }
  .menu ul > li > a,
  .menu ul > li > span {
    padding: 0 0.7rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 34px;
    line-height: 2.1rem; }
  .menu ul > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    min-width: 120%; }
    .menu ul > li > ul > li {
      display: block;
      position: relative; }
      .menu ul > li > ul > li > a {
        display: block;
        padding: 0 0.7rem;
        white-space: nowrap; }
      .menu ul > li > ul > li > a,
      .menu ul > li > ul > li > span {
        font-size: 13px;
        font-size: 0.8rem;
        line-height: 22px;
        line-height: 1.4rem; }
  .menu ul > li > ul > li > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 100%;
    z-index: 3; }
    .menu ul > li > ul > li > ul li > a,
    .menu ul > li > ul > li > ul li > span {
      font-size: 11px;
      font-size: 0.7rem;
      line-height: 22px;
      line-height: 1.4rem; }
  .menu ul > li > ul > li:hover > ul {
    display: block; }
  .menu ul > li:hover > ul {
    display: block; }
    .menu ul > li:hover > ul > li {
      display: block; }

.menu-item--has-child:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #000;
  margin-top: -0.25em;
  margin-right: -0.25em;
  border-width: 0.25em;
  border-style: solid;
  pointer-events: none;
  top: 50%;
  right: 1em;
  bottom: auto;
  left: auto; }

.card {
  border-width: 1px;
  border-width: 0.0625rem;
  padding: 44px;
  padding: 2.7375rem;
  border-style: solid;
  border-color: #CCCCCC;
  border-radius: 0px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1); }
  .card .card {
    padding: 1.4rem; }

.card--image {
  padding: 0; }

.card__contents {
  padding: 1.4rem; }

a.button {
  text-decoration: none; }
  a.button:hover, a.button:focus {
    text-decoration: none; }

a.button, a.button:link {
  color: #000; }

a.button:visited {
  color: #000; }

a.button:focus, a.button:hover {
  color: #000; }

a.button:active {
  color: #000; }

a.button:focus, a.button:hover {
  text-decoration: none; }

.button, input[type=file] + label {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  /* IE8 and FF freak out if this rule is within another selector */
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 22px;
  line-height: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  vertical-align: bottom;
  font-weight: normal;
  font-family: "Avenir Next Condensed", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .button::-moz-focus-inner, input[type=file] + label::-moz-focus-inner {
    border: 0;
    padding: 0; }
  .button:hover, input[type=file] + label:hover, .button:active, input[type=file] + label:active, .button:focus, input[type=file] + label:focus {
    border: none;
    outline: 0; }
  ::-webkit-file-upload-button {
    padding: 0;
    border: 0;
    background: none; }
  .button .icon, input[type=file] + label .icon {
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 22px;
    line-height: 1.4rem;
    height: 0.8rem;
    line-height: 1; }
    .button .icon svg, input[type=file] + label .icon svg {
      fill: currentColor; }

.button + .button, input[type=file] + label + .button, input.button[type=file] + label {
  margin-left: 0.35rem; }

.button--default {
  border-radius: 2px;
  border-top-width: 1px;
  border-top-width: 0.0625rem;
  padding-top: 5px;
  padding-top: 0.2875rem;
  border-bottom-width: 1px;
  border-bottom-width: 0.0625rem;
  padding-bottom: 5px;
  padding-bottom: 0.2875rem;
  border-left-width: 1px;
  border-left-width: 0.0625rem;
  padding-left: 10px;
  padding-left: 0.6375rem;
  border-right-width: 1px;
  border-right-width: 0.0625rem;
  padding-right: 10px;
  padding-right: 0.6375rem;
  border-style: solid;
  border-color: #000;
  color: #000;
  background-color: transparent; }
  .button--default:hover, .button--default:focus {
    border-color: #000;
    background-color: #000;
    color: #fff;
    padding: 0.35rem 0.7rem; }

a.button--default, a.button--default:link, a.button--default:visited, a.button--default:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--default:focus, a.button--default:hover {
  text-decoration: none; }

a.button--default:link, a.button--default:active, a.button--default:visited {
  color: #000; }

a.button--default:hover:link, a.button--default:hover:active, a.button--default:hover:visited, a.button--default:focus:link, a.button--default:focus:active, a.button--default:focus:visited {
  color: #fff; }

.button--primary {
  border-radius: 2px;
  border-top-width: 1px;
  border-top-width: 0.0625rem;
  padding-top: 5px;
  padding-top: 0.2875rem;
  border-bottom-width: 1px;
  border-bottom-width: 0.0625rem;
  padding-bottom: 5px;
  padding-bottom: 0.2875rem;
  border-left-width: 1px;
  border-left-width: 0.0625rem;
  padding-left: 10px;
  padding-left: 0.6375rem;
  border-right-width: 1px;
  border-right-width: 0.0625rem;
  padding-right: 10px;
  padding-right: 0.6375rem;
  border-style: solid;
  border-color: #f01b4d;
  color: #f01b4d;
  background-color: transparent; }
  .button--primary:hover, .button--primary:focus {
    border-color: #f01b4d;
    background-color: #f01b4d;
    color: #fff;
    padding: 0.35rem 0.7rem; }

a.button--primary, a.button--primary:link, a.button--primary:visited, a.button--primary:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--primary:focus, a.button--primary:hover {
  text-decoration: none; }

a.button--primary:link, a.button--primary:active, a.button--primary:visited {
  color: #f01b4d; }

a.button--primary:hover:link, a.button--primary:hover:active, a.button--primary:hover:visited, a.button--primary:focus:link, a.button--primary:focus:active, a.button--primary:focus:visited {
  color: #fff; }

.button--secondary {
  border-radius: 2px;
  border-top-width: 1px;
  border-top-width: 0.0625rem;
  padding-top: 5px;
  padding-top: 0.2875rem;
  border-bottom-width: 1px;
  border-bottom-width: 0.0625rem;
  padding-bottom: 5px;
  padding-bottom: 0.2875rem;
  border-left-width: 1px;
  border-left-width: 0.0625rem;
  padding-left: 10px;
  padding-left: 0.6375rem;
  border-right-width: 1px;
  border-right-width: 0.0625rem;
  padding-right: 10px;
  padding-right: 0.6375rem;
  border-style: solid;
  border-color: #f01b4d;
  color: #f01b4d;
  background-color: transparent; }
  .button--secondary:hover, .button--secondary:focus {
    border-color: #f01b4d;
    background-color: #f01b4d;
    color: #fff;
    padding: 0.35rem 0.7rem; }

a.button--secondary, a.button--secondary:link, a.button--secondary:visited, a.button--secondary:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--secondary:focus, a.button--secondary:hover {
  text-decoration: none; }

a.button--secondary:link, a.button--secondary:active, a.button--secondary:visited {
  color: #f01b4d; }

a.button--secondary:hover:link, a.button--secondary:hover:active, a.button--secondary:hover:visited, a.button--secondary:focus:link, a.button--secondary:focus:active, a.button--secondary:focus:visited {
  color: #fff; }

.button--success, input[type=file] + label {
  border-radius: 2px;
  border-top-width: 1px;
  border-top-width: 0.0625rem;
  padding-top: 5px;
  padding-top: 0.2875rem;
  border-bottom-width: 1px;
  border-bottom-width: 0.0625rem;
  padding-bottom: 5px;
  padding-bottom: 0.2875rem;
  border-left-width: 1px;
  border-left-width: 0.0625rem;
  padding-left: 10px;
  padding-left: 0.6375rem;
  border-right-width: 1px;
  border-right-width: 0.0625rem;
  padding-right: 10px;
  padding-right: 0.6375rem;
  border-style: solid;
  border-color: #1bf0bb;
  color: #1bf0bb;
  background-color: transparent; }
  .button--success:hover, input[type=file] + label:hover, .button--success:focus, input[type=file] + label:focus {
    border-color: #1bf0bb;
    background-color: #1bf0bb;
    color: #fff;
    padding: 0.35rem 0.7rem; }

a.button--success, a.button--success:link, a.button--success:visited, a.button--success:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--success:focus, a.button--success:hover {
  text-decoration: none; }

a.button--success:link, a.button--success:active, a.button--success:visited {
  color: #1bf0bb; }

a.button--success:hover:link, a.button--success:hover:active, a.button--success:hover:visited, a.button--success:focus:link, a.button--success:focus:active, a.button--success:focus:visited {
  color: #fff; }

.button--default--bg {
  border-radius: 2px;
  border-color: #000;
  background-color: #000;
  color: #fff;
  padding: 0.35rem 0.7rem; }
  .button--default--bg:hover, .button--default--bg:focus {
    background-color: gray;
    color: black;
    border-color: gray;
    padding: 0.35rem 0.7rem; }

a.button--default--bg, a.button--default--bg:link, a.button--default--bg:visited, a.button--default--bg:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--default--bg:focus, a.button--default--bg:hover {
  text-decoration: none; }

a.button--default--bg:link, a.button--default--bg:active, a.button--default--bg:visited {
  color: #fff; }

a.button--default--bg:hover:link, a.button--default--bg:hover:active, a.button--default--bg:hover:visited, a.button--default--bg:focus:link, a.button--default--bg:focus:active, a.button--default--bg:focus:visited {
  color: black; }

.button--primary--bg {
  border-radius: 2px;
  border-color: #f01b4d;
  background-color: #f01b4d;
  color: #fff;
  padding: 0.35rem 0.7rem; }
  .button--primary--bg:hover, .button--primary--bg:focus {
    background-color: #f88da6;
    color: #780e27;
    border-color: #f88da6;
    padding: 0.35rem 0.7rem; }

a.button--primary--bg, a.button--primary--bg:link, a.button--primary--bg:visited, a.button--primary--bg:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--primary--bg:focus, a.button--primary--bg:hover {
  text-decoration: none; }

a.button--primary--bg:link, a.button--primary--bg:active, a.button--primary--bg:visited {
  color: #fff; }

a.button--primary--bg:hover:link, a.button--primary--bg:hover:active, a.button--primary--bg:hover:visited, a.button--primary--bg:focus:link, a.button--primary--bg:focus:active, a.button--primary--bg:focus:visited {
  color: #780e27; }

.button--secondary--bg {
  border-radius: 2px;
  border-color: #f01b4d;
  background-color: #f01b4d;
  color: #fff;
  padding: 0.35rem 0.7rem; }
  .button--secondary--bg:hover, .button--secondary--bg:focus {
    background-color: #f88da6;
    color: #780e27;
    border-color: #f88da6;
    padding: 0.35rem 0.7rem; }

a.button--secondary--bg, a.button--secondary--bg:link, a.button--secondary--bg:visited, a.button--secondary--bg:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--secondary--bg:focus, a.button--secondary--bg:hover {
  text-decoration: none; }

a.button--secondary--bg:link, a.button--secondary--bg:active, a.button--secondary--bg:visited {
  color: #fff; }

a.button--secondary--bg:hover:link, a.button--secondary--bg:hover:active, a.button--secondary--bg:hover:visited, a.button--secondary--bg:focus:link, a.button--secondary--bg:focus:active, a.button--secondary--bg:focus:visited {
  color: #780e27; }

.button--success--bg {
  border-radius: 2px;
  border-color: #1bf0bb;
  background-color: #1bf0bb;
  color: #fff;
  padding: 0.35rem 0.7rem; }
  .button--success--bg:hover, .button--success--bg:focus {
    background-color: #8df8dd;
    color: #0e785e;
    border-color: #8df8dd;
    padding: 0.35rem 0.7rem; }

a.button--success--bg, a.button--success--bg:link, a.button--success--bg:visited, a.button--success--bg:active {
  border-radius: 2px;
  text-decoration: none; }

a.button--success--bg:focus, a.button--success--bg:hover {
  text-decoration: none; }

a.button--success--bg:link, a.button--success--bg:active, a.button--success--bg:visited {
  color: #fff; }

a.button--success--bg:hover:link, a.button--success--bg:hover:active, a.button--success--bg:hover:visited, a.button--success--bg:focus:link, a.button--success--bg:focus:active, a.button--success--bg:focus:visited {
  color: #0e785e; }

.button.disabled, input[type=file] + label.disabled {
  opacity: 0.33;
  cursor: arrow;
  pointer-events: none; }
  .button.disabled:hover, input[type=file] + label.disabled:hover, .button.disabled:focus, input[type=file] + label.disabled:focus {
    cursor: arrow; }

.icon {
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  height: 1em;
  font-size: 1em;
  display: inline-block;
  margin-right: 0.35rem; }
  .icon svg {
    height: 100%;
    width: auto;
    vertical-align: bottom; }

.show-grid {
  background-size: 1.4rem 1.4rem, 0.7rem 0.7rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-repeat: repeat; }

.scrollbar-hidden {
  scrollbar-width: none;
  -ms-overflow-style: none; }
  .scrollbar-hidden::-webkit-scrollbar {
    width: 0 !important; }

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }


.disabled {
  opacity: 0.33; }

.kill-link a {
  text-decoration: none; }
  .kill-link a:hover, .kill-link a:focus {
    text-decoration: none; }

.kill-link a, .kill-link a:link {
  color: #000; }

.kill-link a:visited {
  color: #000; }

.kill-link a:focus, .kill-link a:hover {
  color: #000; }

.kill-link a:active {
  color: #000; }

.kill-link a:focus, .kill-link a:hover {
  text-decoration: none; }

.kill-link-decoration a:focus, .kill-link-decoration a:hover {
  text-decoration: none; }

.owl * + *, details * + * {
  margin-top: 1.4rem;
  margin-bottom: 0; }

.h0, .articulo .section .section__title, .section--especial .section__title {
  font-size: 49px;
  font-size: 3.05176rem;
  line-height: 45px;
  line-height: 2.8rem; }
  @media (max-width: 640px) {
    .h0, .articulo .section .section__title, .section--especial .section__title {
      font-size: 39px;
      font-size: 2.44141rem;
      line-height: 39px;
      line-height: 2.45rem; } }

@media (max-width: 640px) {
  h1, .h1 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 28px;
    line-height: 1.75rem; } }

@media (min-width: 640px) and (max-width: 900px) {
  h1, .h1 {
    font-size: 31px;
    font-size: 1.95312rem;
    line-height: 34px;
    line-height: 2.1rem; } }

@media (max-width: 640px) {
  h2, .h2 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.4rem; } }

@media (min-width: 640px) and (max-width: 900px) {
  h2, .h2 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 28px;
    line-height: 1.75rem; } }

@media (max-width: 900px) {
  h3, .h3, .ficha-autor__title, .bloque__title, .comentarios__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.4rem; } }

input {
  background-color: #fff;
  padding: 0.35rem; }

.autor, .subcontenido__autor, .articulo__fecha {
  font-weight: bold;
  margin: 0;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 22px;
  line-height: 1.4rem; }
  .autor.autor--big, .autor--big.subcontenido__autor, .autor--big.articulo__fecha {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.4rem; }

.fecha {
  font-style: italic;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem;
  color: #808080; }

.autor > .fecha, .subcontenido__autor > .fecha, .articulo__fecha > .fecha {
  margin-left: 0.7rem; }

.autor br + .fecha, .subcontenido__autor br + .fecha, .articulo__fecha br + .fecha {
  margin-left: 0; }

img {
  vertical-align: bottom; }

.ts {
  margin-bottom: 1.4rem; }
  @media (min-width: 900px) {
    .ts {
      margin-bottom: 2.8rem; } }
  @media (max-width: 640px) {
    .ts {
      text-align: center; } }
  .ts img {
    margin: 0 auto;
    display: block; }
  .ts .body, .ts .section__body {
    margin-bottom: 1.4rem; }

.ts--reducido h1,
.ts--reducido h2,
.ts--reducido h3,
.ts--reducido h4,
.ts--reducido h5,
.ts--reducido h6,
.ts--reducido .subtitle,
.ts--reducido .body,
.ts--reducido .section__body {
  margin-bottom: 0.7rem; }

@media (max-width: 640px) {
  .tl,
  .tc,
  .tr {
    text-align: center !important; } }

.tl .body, .tl .section__body, .tl.body, .tl.section__body,
.tc .body,
.tc .section__body,
.tc.body,
.tc.section__body,
.tr .body,
.tr .section__body,
.tr.body,
.tr.section__body {
  margin-left: auto;
  margin-right: auto; }

.body, .section__body {
  font-weight: lighter; }
  @media (min-width: 900px) {
    .body, .section__body {
      font-size: 20px;
      font-size: 1.25rem;
      line-height: 28px;
      line-height: 1.75rem; } }

.body--big {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem; }
  @media (min-width: 900px) {
    .body--big {
      font-size: 25px;
      font-size: 1.5625rem;
      line-height: 28px;
      line-height: 1.75rem; } }

.body--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem; }

.body--minimal {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem; }

.separator {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #CCCCCC; }
  @media (min-width: 900px) {
    .separator {
      margin-top: 2.8rem;
      margin-bottom: 2.8rem; } }

iframe {
  max-width: 100%;
  display: block;
  margin: 0 auto; }

#main-wrapper {
  padding: 0 1.4rem 1.4rem 1.4rem; }
  @media (max-width: 900px) {
    #main-wrapper {
      padding: 0 0.7rem 0.7rem 0.7rem; } }

.box.box--gris-oscuro h1, .box--gris-oscuro.bloque h1, .box.box--gris-oscuro .h1, .box--gris-oscuro.bloque .h1,
.box.box--gris-oscuro h2,
.box--gris-oscuro.bloque h2, .box.box--gris-oscuro .h2, .box--gris-oscuro.bloque .h2,
.box.box--gris-oscuro h3,
.box--gris-oscuro.bloque h3, .box.box--gris-oscuro .h3 h4, .box--gris-oscuro.bloque .h3 h4, .box.box--gris-oscuro .ficha-autor__title h4, .box--gris-oscuro.bloque .ficha-autor__title h4, .box.box--gris-oscuro .bloque__title h4, .box--gris-oscuro.bloque .bloque__title h4, .box.box--gris-oscuro .comentarios__title h4, .box--gris-oscuro.bloque .comentarios__title h4, .box.box--gris-oscuro .h4 h5, .box--gris-oscuro.bloque .h4 h5, .box.box--gris-oscuro .subsection h5, .box--gris-oscuro.bloque .subsection h5, .box.box--gris-oscuro .subcontenido__title h5, .box--gris-oscuro.bloque .subcontenido__title h5, .box.box--gris-oscuro .h5, .box--gris-oscuro.bloque .h5,
.box.box--gris-oscuro h6,
.box--gris-oscuro.bloque h6, .box.box--gris-oscuro .h6, .box--gris-oscuro.bloque .h6, .box.box--gris-oscuro .section__patrocinador span, .section__patrocinador .box.box--gris-oscuro span, .box--gris-oscuro.bloque .section__patrocinador span, .section__patrocinador .box--gris-oscuro.bloque span, .box.box--gris-oscuro .pub__title, .box--gris-oscuro.bloque .pub__title,
.box.box--gris-oscuro p:not(.subtitle),
.box--gris-oscuro.bloque p:not(.subtitle),
.box.box--gris-oscuro span:not(.fecha),
.box--gris-oscuro.bloque span:not(.fecha),
.box.box--gris-oscuro div,
.box--gris-oscuro.bloque div {
  color: #fff; }

.box.box--gris-oscuro a, .box--gris-oscuro.bloque a {
  text-decoration: none; }
  .box.box--gris-oscuro a:hover, .box--gris-oscuro.bloque a:hover, .box.box--gris-oscuro a:focus, .box--gris-oscuro.bloque a:focus {
    text-decoration: underline;
    background-color: transparent;
    border-bottom: none;
    padding-left: 0;
    padding-right: 0; }
    .box.box--gris-oscuro a:hover:after, .box--gris-oscuro.bloque a:hover:after, .box.box--gris-oscuro a:focus:after, .box--gris-oscuro.bloque a:focus:after {
      display: none; }

.box.box--gris-oscuro a, .box--gris-oscuro.bloque a, .box.box--gris-oscuro a:link, .box--gris-oscuro.bloque a:link {
  color: #fff; }

.box.box--gris-oscuro a:visited, .box--gris-oscuro.bloque a:visited {
  color: #fff; }

.box.box--gris-oscuro a:focus, .box--gris-oscuro.bloque a:focus, .box.box--gris-oscuro a:hover, .box--gris-oscuro.bloque a:hover {
  color: #a3a3a3; }

.box.box--gris-oscuro a:active, .box--gris-oscuro.bloque a:active {
  color: #a3a3a3; }

.font-tertiary, .autor, .subcontenido__autor, .articulo__fecha, .fecha, .vineta-header__fecha {
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.mw-20 {
  max-width: 20% !important; }

@media (max-width: 900px) {
  .ts .mw-20,
  .col2 .mw-20 {
    max-width: 100% !important; } }

.mw-25 {
  max-width: 25% !important; }

@media (max-width: 900px) {
  .ts .mw-25,
  .col2 .mw-25 {
    max-width: 100% !important; } }

.mw-30 {
  max-width: 30% !important; }

@media (max-width: 900px) {
  .ts .mw-30,
  .col2 .mw-30 {
    max-width: 100% !important; } }

.mw-33 {
  max-width: 33% !important; }

@media (max-width: 900px) {
  .ts .mw-33,
  .col2 .mw-33 {
    max-width: 100% !important; } }

.mw-40 {
  max-width: 40% !important; }

@media (max-width: 900px) {
  .ts .mw-40,
  .col2 .mw-40 {
    max-width: 100% !important; } }

.mw-50 {
  max-width: 50% !important; }

@media (max-width: 900px) {
  .ts .mw-50,
  .col2 .mw-50 {
    max-width: 100% !important; } }

.mw-60 {
  max-width: 60% !important; }

@media (max-width: 900px) {
  .ts .mw-60,
  .col2 .mw-60 {
    max-width: 100% !important; } }

.mw-66 {
  max-width: 66% !important; }

@media (max-width: 900px) {
  .ts .mw-66,
  .col2 .mw-66 {
    max-width: 100% !important; } }

.mw-70 {
  max-width: 70% !important; }

@media (max-width: 900px) {
  .ts .mw-70,
  .col2 .mw-70 {
    max-width: 100% !important; } }

.mw-75 {
  max-width: 75% !important; }

@media (max-width: 900px) {
  .ts .mw-75,
  .col2 .mw-75 {
    max-width: 100% !important; } }

.mw-80 {
  max-width: 80% !important; }

@media (max-width: 900px) {
  .ts .mw-80,
  .col2 .mw-80 {
    max-width: 100% !important; } }

.subtitle {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #808080;
  text-transform: uppercase; }

.h100 {
  height: 100%;
  margin-bottom: 0;
  margin-top: 0; }

.img-circle {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block; }

.link-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  z-index: 1; }

.header {
  margin-bottom: 1.4rem;
  text-align: center; }
  @media (min-width: 900px) {
    .header {
      position: sticky;
      top: 0;
      background-color: #fff;
      z-index: 999; } }
  .header .button, .header input[type=file] + label {
    line-height: 1;
    font-weight: bold; }
  @media (min-width: 900px) {
    .header.header--mini .header__patrocinado,
    .header.header--mini .header__tagline {
      display: none; }
    .header.header--mini .header__logo img {
      max-height: 2.8rem; }
    .header.header--mini .header__top {
      padding: 0.7rem 1.4rem; }
    .header.header--mini .header__links a {
      font-size: 13px;
      font-size: 0.8rem;
      line-height: 17px;
      line-height: 1.05rem; }
    .header.header--mini .header__links {
      margin: 0; } }

.header__tagline {
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  line-height: 1; }
  .header__tagline p {
    display: inline-block;
    padding: 0 1.4rem 0.7rem 1.4rem;
    margin: 0;
    position: relative;
    font-size: 10px;
    font-size: 0.64rem;
    line-height: 17px;
    line-height: 1.05rem;
    letter-spacing: 0.2em; }
  .header__tagline a {
    text-decoration: none; }
    .header__tagline a:hover, .header__tagline a:focus {
      text-decoration: none; }
  .header__tagline a, .header__tagline a:link {
    color: #474849; }
  .header__tagline a:visited {
    color: #474849; }
  .header__tagline a:focus, .header__tagline a:hover {
    color: #474849; }
  .header__tagline a:active {
    color: #474849; }
  .header__tagline a:focus, .header__tagline a:hover {
    text-decoration: none; }

.header__top {
  margin: 0 auto;
  padding: 1.4rem 1.4rem 0.7rem 1.4rem; }
  @media (min-width: 950px) {
    .header__top {
      display: flex;
      justify-content: center;
      flex-wrap: nowrap; } }

.header__issue {
  display: none; }
  @media (min-width: 950px) {
    .header__issue {
      display: block;
      text-align: left; } }

.header__issue__selector {
  margin-bottom: 0.35rem; }

@media (min-width: 950px) {
  .header__issue,
  .header__user {
    width: 50%; } }

.header__logo {
  text-align: center;
  margin: 0 0 1.4rem 0; }
  @media (min-width: 950px) {
    .header__logo {
      margin: 0; } }
  .header__logo img {
    max-width: 100%;
    max-height: 5.6rem;
    transition: max-height 0.25s linear; }

@media (min-width: 950px) {
  .header__issue,
  .header__logo,
  .header__user {
    width: 33%; } }

.header__nav {
  border-top: 1px solid #CCCCCC; }

.header__user {
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 950px) {
    .header__user {
      flex-direction: column;
      align-items: flex-end; } }

.header__links {
  margin-bottom: 0.35rem;
  white-space: nowrap; }
  .header__links a {
    font-family: "Avenir Next Condensed", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 17px;
    line-height: 1.05rem;
    margin-left: 0.7rem;
    margin-right: 0.7rem; }
    .header__links a {
      text-decoration: none; }
      .header__links a:hover, .header__links a:focus {
        text-decoration: underline;
        background-color: transparent;
        border-bottom: none;
        padding-left: 0;
        padding-right: 0; }
        .header__links a:hover:after, .header__links a:focus:after {
          display: none; }
    .header__links a, .header__links a:link {
      color: #000; }
    .header__links a:visited {
      color: #000; }
    .header__links a:focus, .header__links a:hover {
      color: #f01b4d; }
    .header__links a:active {
      color: #f01b4d; }
    @media (min-width: 950px) {
      .header__links a {
        margin-right: 0.35rem;
        padding-right: 0.35rem;
        margin-left: 0;
        position: relative;
        border-right: 1px solid #CCCCCC; }
        .header__links a:last-child {
          margin: 0;
          padding: 0;
          border: none; }
        .header__links a:hover:not(:last-child), .header__links a:focus:not(:last-child) {
          padding-right: 0.35rem; } }
    @media (min-width: 1120px) {
      .header__links a {
        font-size: 16px;
        font-size: 1rem;
        line-height: 22px;
        line-height: 1.4rem; } }

.button--header {
  background-color: #fff; }

.header__cart {
  white-space: nowrap; }
  .header__cart span, .header__cart .icon {
    vertical-align: baseline; }
  .header__cart .icon {
    height: 0.8rem;
    margin: 0; }
    @media (min-width: 1120px) {
      .header__cart .icon {
        height: 1rem; } }

.header__search {
  display: none;
  align-items: center;
  border-bottom: 1px solid #a3a3a3;
  max-width: 200px; }
  @media (min-width: 640px) {
    .header__search {
      display: flex; } }
  .header__search input {
    padding: 0;
    border: none; }

.issue {
  background-color: #fff;
  padding: 0 0.175rem;
  display: inline-block;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .issue div, .issue ol, .issue li, .issue p {
    display: inline-block;
    vertical-align: top;
    padding: 0; }

.issue__current {
  text-transform: uppercase;
  margin: 0; }
  .issue__current a {
    text-decoration: none; }
    .issue__current a:hover, .issue__current a:focus {
      text-decoration: none; }
  .issue__current a, .issue__current a:link {
    color: #000; }
  .issue__current a:visited {
    color: #000; }
  .issue__current a:focus, .issue__current a:hover {
    color: #f01b4d; }
  .issue__current a:active {
    color: #f01b4d; }

.issue__number {
  color: #f01b4d; }

.issue__next,
.issue__prev {
  font-weight: bold;
  font-size: 0.75em;
  display: inline-block;
  vertical-align: top; }

.issue__next {
  padding: 0 0 0 0.35rem; }

.issue__prev {
  padding: 0 0.35rem 0 0; }

.main-menu {
  margin: 0;
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 1175px;
  margin: 0 auto;
  padding: 0 1.4rem; }
  @media (max-width: 950px) {
    .main-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 100%;
      padding: 0;
      z-index: 99999;
      max-width: 100%; } }

.main-menu__wrapper {
  flex: 1; }
  @media (max-width: 950px) {
    .main-menu__wrapper {
      background-color: #fff; } }

.main-menu__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.35rem 2.8rem;
  margin-bottom: 0.7rem;
  display: none; }

.main-menu__search {
  display: flex;
  align-items: center;
  margin-top: 0.7rem;
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: -1px;
  order: 999; }
  .main-menu__search input {
    padding: 0;
    border: none; }
  @media (min-width: 950px) {
    .main-menu__search {
      margin-right: 1.4rem;
      margin-top: 0;
      order: -1; } }

.main-menu__list {
  margin-bottom: 0;
  flex: 1;
  margin-right: -1px;
  margin-left: -1px;
  display: none;
  padding: 0; }
  @media (min-width: 950px) {
    .main-menu__list {
      display: flex;
      margin-right: -1px; } }
  .main-menu__list > li {
    flex: 1;
    white-space: nowrap;
    margin: 0;
    text-align: center;
    position: relative;
    text-transform: uppercase; }
    .main-menu__list > li a {
      display: block;
      padding: 0.7rem 0.7rem; }
      .main-menu__list > li a {
        text-decoration: none; }
        .main-menu__list > li a:hover, .main-menu__list > li a:focus {
          text-decoration: none; }
      .main-menu__list > li a, .main-menu__list > li a:link {
        color: #000; }
      .main-menu__list > li a:visited {
        color: #000; }
      .main-menu__list > li a:focus, .main-menu__list > li a:hover {
        color: #f01b4d; }
      .main-menu__list > li a:active {
        color: #f01b4d; }
      @media (min-width: 950px) {
        .main-menu__list > li a {
          font-size: 10px;
          font-size: 0.64rem;
          line-height: 22px;
          line-height: 1.4rem; } }
      @media (min-width: 1150px) {
        .main-menu__list > li a {
          font-size: 13px;
          font-size: 0.8rem;
          line-height: 22px;
          line-height: 1.4rem; } }
    .main-menu__list > li a.button {
      padding: 0.7rem 0.7rem;
      margin: 0.46667rem 0 0.46667rem 0.46667rem;
      font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
      display: inline-block; }
      @media (min-width: 950px) {
        .main-menu__list > li a.button {
          padding: 0.23333rem 0.7rem; } }
      .main-menu__list > li a.button {
        text-decoration: none; }
        .main-menu__list > li a.button:hover, .main-menu__list > li a.button:focus {
          text-decoration: none; }
      .main-menu__list > li a.button, .main-menu__list > li a.button:link {
        color: #fff; }
      .main-menu__list > li a.button:visited {
        color: #fff; }
      .main-menu__list > li a.button:focus, .main-menu__list > li a.button:hover {
        color: #830925; }
      .main-menu__list > li a.button:active {
        color: #830925; }
      @media (min-width: 950px) {
        .main-menu__list > li a.button.inicio_sesion {
        	display: none;
    	}

	.main-menu__list > li a.button {
          font-size: 10px;
          font-size: 0.64rem;
          line-height: 22px;
          line-height: 1.4rem; } }
      @media (min-width: 1150px) {
        .main-menu__list > li a.button {
          font-size: 13px;
          font-size: 0.8rem;
          line-height: 22px;
          line-height: 1.4rem; } }

.main-menu--open {
  background-color: #fff; }
  @media (max-width: 950px) {
    .main-menu--open {
      overflow: auto;
      bottom: 0;
      padding: 1.4rem; } }
  .main-menu--open .main-menu__actions {
    display: flex; }
  .main-menu--open .main-menu__list {
    display: block;
    background-color: #fff;
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 0.7rem; }
    @media (min-width: 950px) {
      .main-menu--open .main-menu__list {
        display: flex; } }
    .main-menu--open .main-menu__list ul {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      display: block;
      border: 0;
      background-color: transparent; }
    .main-menu--open .main-menu__list > li:hover {
      border: none; }
    @media (min-width: 950px) {
      .main-menu--open .main-menu__list > li > a {
        text-align: left; } }

.menu-toggle {
  padding: 0.35rem 0.35rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  line-height: 0;
  background-color: #fff; }
  @media (min-width: 950px) {
    .menu-toggle {
      display: none; } }
  .menu-toggle .icon {
    margin: 0;
    height: 1.575rem;
    vertical-align: middle;
    display: block; }

.footer {
  border-top: 0.7rem solid #000;
  background-color: #2e2e2e;
  padding: 1.4rem 0.7rem;
  color: #a7a7a7;
  margin: 0;
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }
  @media (min-width: 640px) {
    .footer {
      padding: 1.4rem; } }
  @media (min-width: 900px) {
    .footer {
      padding: 2.8rem; } }
  .footer .body, .footer .section__body {
    color: #a7a7a7; }

.footer__secciones {
  column-count: 2;
  column-gap: 0.7rem; }
  @media (min-width: 640px) {
    .footer__secciones {
      column-count: 3;
      column-gap: 1.4rem; } }
  @media (min-width: 900px) {
    .footer__secciones {
      column-count: 4; } }
  @media (min-width: 1120px) {
    .footer__secciones {
      column-count: 5; } }

.footer__seccion {
  margin-bottom: 0.7rem;
  display: inline-block;
  width: 100%; }
  .footer__seccion h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 17px;
    line-height: 1.05rem;
    margin-bottom: 0.35rem; }
    .footer__seccion h1 a {
      text-decoration: none; }
      .footer__seccion h1 a:hover, .footer__seccion h1 a:focus {
        text-decoration: underline;
        background-color: transparent;
        border-bottom: none;
        padding-left: 0;
        padding-right: 0; }
        .footer__seccion h1 a:hover:after, .footer__seccion h1 a:focus:after {
          display: none; }
    .footer__seccion h1 a, .footer__seccion h1 a:link {
      color: #a3a3a3; }
    .footer__seccion h1 a:visited {
      color: #a3a3a3; }
    .footer__seccion h1 a:focus, .footer__seccion h1 a:hover {
      color: #fff; }
    .footer__seccion h1 a:active {
      color: #fff; }
  .footer__seccion ul {
    margin: 0;
    padding: 0; }
  .footer__seccion ul ul {
    padding-left: 0.7rem; }
  .footer__seccion li {
    margin: 0;
    list-style-type: none;
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 17px;
    line-height: 1.05rem; }
    .footer__seccion li a {
      text-decoration: none; }
      .footer__seccion li a:hover, .footer__seccion li a:focus {
        text-decoration: underline;
        background-color: transparent;
        border-bottom: none;
        padding-left: 0;
        padding-right: 0; }
        .footer__seccion li a:hover:after, .footer__seccion li a:focus:after {
          display: none; }
    .footer__seccion li a, .footer__seccion li a:link {
      color: #a7a7a7; }
    .footer__seccion li a:visited {
      color: #a7a7a7; }
    .footer__seccion li a:focus, .footer__seccion li a:hover {
      color: #fff; }
    .footer__seccion li a:active {
      color: #fff; }

.footer__info {
  margin-top: 1.4rem;
  padding: 0.7rem;
  border: 1px solid #808080; }
  @media (min-width: 640px) {
    .footer__info {
      padding: 1.4rem; } }
  .footer__info h1 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.4rem;
    /*text-transform: uppercase;*/
    color: #a3a3a3;
    margin-bottom: 0.7rem;
    font-weight: bold; }

.footer__menu {
  margin-bottom: 1.4rem; }
  .footer__menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; }
    .footer__menu ul li {
      list-style-type: none;
      display: inline-block; }
  .footer__menu li {
    margin: 0; }
  .footer__menu a {
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 17px;
    line-height: 1.05rem;
    margin-right: 1.4rem; }
    .footer__menu a {
      text-decoration: none; }
      .footer__menu a:hover, .footer__menu a:focus {
        text-decoration: underline;
        background-color: transparent;
        border-bottom: none;
        padding-left: 0;
        padding-right: 0; }
        .footer__menu a:hover:after, .footer__menu a:focus:after {
          display: none; }
    .footer__menu a, .footer__menu a:link {
      color: #a7a7a7; }
    .footer__menu a:visited {
      color: #a7a7a7; }
    .footer__menu a:focus, .footer__menu a:hover {
      color: #fff; }
    .footer__menu a:active {
      color: #fff; }

.footer__contacto {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem;
  margin: 0; }
  .footer__contacto p {
    margin: 0; }

.footer__medios__title {
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem;
  margin-bottom: 0.7rem; }

.footer__medios__row {
  display: flex;
  flex-wrap: wrap; }
  .footer__medios__row img {
    max-height: 50px;
    margin-right: 1.4rem;
    margin-bottom: 1.4rem; }

.section {
  margin-bottom: 1.4rem;
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 900px) {
    .section {
      margin-bottom: 2.8rem; } }
  @media (min-width: 900px) {
    .box--2col .section {
      height: 100%;
      padding-bottom: 0;
      margin-bottom: 0;
      padding-right: 2.8rem;
      border: none;
      border-right: 1px solid #CCCCCC;
      display: flex;
      flex-direction: column;
      justify-content: center; } }
  .articulo .section {
    border-top: 2px solid #CCCCCC;
    padding-top: 1.4rem;
    padding-bottom: 0; }
    .articulo .section .section__title {
      font-weight: normal; }
    .articulo .section .autor, .articulo .section .subcontenido__autor, .articulo .section .articulo__fecha {
      text-align: center;
      margin-top: 1.4rem;
      font-size: 16px;
      font-size: 1rem;
      line-height: 22px;
      line-height: 1.4rem; }
    .articulo .section .fecha {
      font-size: 16px;
      font-size: 1rem;
      line-height: 22px;
      line-height: 1.4rem; }

.section__category, .vineta-header__category {
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem;
  width: 100%; }
  .section__category:after, .vineta-header__category:after {
    content: ">"; }
  .section__category a, .vineta-header__category a {
    text-decoration: none; }
    .section__category a:hover, .vineta-header__category a:hover, .section__category a:focus, .vineta-header__category a:focus {
      text-decoration: underline;
      background-color: transparent;
      border-bottom: none;
      padding-left: 0;
      padding-right: 0; }
      .section__category a:hover:after, .vineta-header__category a:hover:after, .section__category a:focus:after, .vineta-header__category a:focus:after {
        display: none; }
  .section__category a, .vineta-header__category a, .section__category a:link, .vineta-header__category a:link {
    color: #000; }
  .section__category a:visited, .vineta-header__category a:visited {
    color: #000; }
  .section__category a:focus, .vineta-header__category a:focus, .section__category a:hover, .vineta-header__category a:hover {
    color: #f01b4d; }
  .section__category a:active, .vineta-header__category a:active {
    color: #f01b4d; }
  @media (min-width: 640px) {
    .section__category, .vineta-header__category {
      width: auto; } }
  @media (min-width: 900px) {
    .box--2col .section__category, .box--2col .vineta-header__category {
      position: absolute;
      top: 0;
      left: 0; } }

.section__title__wrapper {
  width: 100%;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #CCCCCC; }
  .section--border-none .section__title__wrapper, .articulo .section .section__title__wrapper, .box--seccion .section .section__title__wrapper {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0; }
  .section--border-top .section__title__wrapper {
    padding-top: 1.4rem;
    border-top: 1px solid #CCCCCC;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }
  .section--border-all .section__title__wrapper {
    padding-top: 1.4rem;
    border-top: 1px solid #CCCCCC; }

.section__title {
  text-align: center;
  font-weight: lighter;
  margin-bottom: 0; }
  .section__title + .section__subtitle {
    margin-top: 0.7rem; }

.section__subtitle,
.section__suptitle {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  text-align: center;
  margin: 0;
  color: #f01b4d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold; }
  @media (min-width: 640px) {
    .section__subtitle,
    .section__suptitle {
      font-size: 20px;
      font-size: 1.25rem;
      line-height: 22px;
      line-height: 1.4rem; } }
  .box--2col .section__subtitle, .box--2col
  .section__suptitle {
    margin-bottom: 0; }

.section__suptitle {
  margin-bottom: 1.4rem; }

.section__subtitle--small {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem; }
  @media (min-width: 900px) {
    .section__subtitle--small {
      font-size: 16px;
      font-size: 1rem;
      line-height: 22px;
      line-height: 1.4rem; } }

.section__subtitle--gris, .box--seccion .section__subtitle {
  color: #a3a3a3; }

.section__body {
  text-align: center;
  max-width: 760px;
  max-width: 75ch;
  margin: 1.4rem auto; }

.section__patrocinador {
  text-align: center;
  margin-bottom: 0.7rem; }
  @media (min-width: 640px) {
    .section__patrocinador {
      margin-left: auto; } }
  .section__patrocinador span {
    font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 0.7rem;
    display: block;
    font-weight: bold; }
  .section__patrocinador img {
    max-height: 2.8rem; }

.subsection {
  text-align: center;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #CCCCCC; }

.section--especial {
  margin-bottom: 2.8rem;
  margin-top: 2.8rem;
  border-bottom-width: 4px;
  border-bottom-width: 0.25rem;
  padding-bottom: 41px;
  padding-bottom: 2.55rem;
  border-bottom-style: solid;
  border-bottom-color: #CCCCCC;
  border-top-width: 4px;
  border-top-width: 0.25rem;
  padding-top: 41px;
  padding-top: 2.55rem;
  border-top-style: solid;
  border-top-color: #CCCCCC; }
  .section--especial .section__title {
    font-weight: lighter; }
  .section--especial .section__category, .section--especial .vineta-header__category {
    position: absolute;
    top: -2.8rem;
    left: 0; }

.carousel {
  max-width: 100%;
  position: relative; }
  .carousel.carousel--flechas .carousel__prev {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 2.1rem; }
  .carousel.carousel--flechas .carousel__next {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 2.1rem; }
  .carousel.carousel--flechas .carousel__slides {
    margin: 0 4.2rem 1.4rem 4.2rem; }

.carousel__slides {
  margin-bottom: 1.4rem; }

.carousel__controls {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #a3a3a3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center; }

.carousel__item {
  width: 100%;
  height: auto; }
  .carousel__item img {
    height: auto;
    max-width: 100%; }

.carousel__link {
  width: 100%; }
  .carousel__link a {
    display: inline-block;
    padding: 0 1.4rem;
    text-transform: uppercase;
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid #a3a3a3; }

.galeria {
  padding: 0 2.8rem;
  position: relative; }

.galeria__prev,
.galeria__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }
  .galeria__prev:before,
  .galeria__next:before {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #000;
    display: block; }

.galeria__slides {
  width: 100%; }

.galeria__item {
  height: auto;
  width: 100%; }
  @media (min-width: 640px) {
    .galeria__item {
      width: 50%;
      padding: 0 0.7rem; } }
  @media (min-width: 900px) {
    .galeria__item {
      width: 13%;
      padding: 0 0.7rem; } }
  .galeria__item img {
    max-width: 100%;
    height: auto; }

.galeria__prev {
  left: 0; }
  .galeria__prev:before {
    transform: rotate(-135deg); }

.galeria__next {
  right: 0; }
  .galeria__next:before {
    transform: rotate(45deg); }

.box, .bloque {
  border: 1px solid #CCCCCC;
  padding: 1.4rem;
  margin-bottom: 2.8rem; }
  @media (min-width: 900px) {
    .box, .bloque {
      margin-bottom: 2.8rem; } }
  @media (min-width: 1120px) {
    .box, .bloque {
      padding: 1.4rem; } }
  .box .ts:last-child, .bloque .ts:last-child,
  .box .col2:last-child,
  .bloque .col2:last-child,
  .box .col3:last-child,
  .bloque .col3:last-child,
  .box .flex:last-child,
  .bloque .flex:last-child,
  .box .box:last-child,
  .bloque .box:last-child,
  .box .bloque:last-child,
  .bloque .bloque:last-child {
    margin-bottom: 0; }
  .box.box--vacio, .box--vacio.bloque {
    border: none;
    padding: 0; }
  @media (min-width: 1120px) {
    .box.box--2xpadding, .box--2xpadding.bloque {
      padding: 2.8rem; } }
  .box.box--blanco, .box--blanco.bloque {
    border: 0;
    background-color: #fff; }
    .box.box--blanco .ts-tab__category:before, .box--blanco.bloque .ts-tab__category:before {
      background-color: #fff; }
    .box.box--blanco .ts-tab__triangle:before, .box--blanco.bloque .ts-tab__triangle:before {
      border-color: transparent transparent #fff #fff; }
  .box.box--hueso, .box--hueso.bloque {
    border: 0;
    background-color: #f4f1e5; }
    .box.box--hueso .ts-tab__category:before, .box--hueso.bloque .ts-tab__category:before {
      background-color: #f4f1e5; }
    .box.box--hueso .ts-tab__triangle:before, .box--hueso.bloque .ts-tab__triangle:before {
      border-color: transparent transparent #f4f1e5 #f4f1e5; }
  .box.box--gris-oscuro, .box--gris-oscuro.bloque {
    border: 0;
    background-color: #474849; }
    .box.box--gris-oscuro .ts-tab__category:before, .box--gris-oscuro.bloque .ts-tab__category:before {
      background-color: #474849; }
    .box.box--gris-oscuro .ts-tab__triangle:before, .box--gris-oscuro.bloque .ts-tab__triangle:before {
      border-color: transparent transparent #474849 #474849; }
  .box.box--gris-claro, .box--gris-claro.bloque {
    border: 0;
    background-color: #f2f2f2; }
    .box.box--gris-claro .ts-tab__category:before, .box--gris-claro.bloque .ts-tab__category:before {
      background-color: #f2f2f2; }
    .box.box--gris-claro .ts-tab__triangle:before, .box--gris-claro.bloque .ts-tab__triangle:before {
      border-color: transparent transparent #f2f2f2 #f2f2f2; }
  .box.box--menta, .box--menta.bloque {
    border: 0;
    background-color: #eef8f5; }
    .box.box--menta .ts-tab__category:before, .box--menta.bloque .ts-tab__category:before {
      background-color: #eef8f5; }
    .box.box--menta .ts-tab__triangle:before, .box--menta.bloque .ts-tab__triangle:before {
      border-color: transparent transparent #eef8f5 #eef8f5; }

@media (min-width: 900px) {
  .box--2col {
    display: flex;
    margin-top: 1.4rem;
    position: relative; } }

@media (min-width: 900px) {
  .box--2col__left {
    width: 33%; } }

@media (min-width: 900px) {
  .box--2col__right {
    width: 66%;
    padding-left: 2.8rem;
    margin-top: 1.4rem; } }

.box--tab {
  position: relative;
  border-top: 2.45rem solid #fff !important; }
  .box--tab.box--tab--blanco {
    background-color: #fff;
    border: 1px solid #fff; }
    .box--tab.box--tab--blanco .box--tab__category {
      border-color: #fff;
      background-color: #fff; }
      .box--tab.box--tab--blanco .box--tab__category:before {
        background-color: #fff; }
    .box--tab.box--tab--blanco .box--tab__triangle {
      border-color: transparent transparent #fff #fff; }
      .box--tab.box--tab--blanco .box--tab__triangle:before {
        border-color: transparent transparent #fff #fff; }
    .box--tab.box--tab--blanco:before {
      background-color: #fff; }
  .box--tab.box--tab--hueso {
    background-color: #f4f1e5;
    border: 1px solid #f4f1e5; }
    .box--tab.box--tab--hueso .box--tab__category {
      border-color: #f4f1e5;
      background-color: #f4f1e5; }
      .box--tab.box--tab--hueso .box--tab__category:before {
        background-color: #f4f1e5; }
    .box--tab.box--tab--hueso .box--tab__triangle {
      border-color: transparent transparent #f4f1e5 #f4f1e5; }
      .box--tab.box--tab--hueso .box--tab__triangle:before {
        border-color: transparent transparent #f4f1e5 #f4f1e5; }
    .box--tab.box--tab--hueso:before {
      background-color: #f4f1e5; }
  .box--tab.box--tab--gris-oscuro {
    background-color: #474849;
    border: 1px solid #474849; }
    .box--tab.box--tab--gris-oscuro .box--tab__category {
      border-color: #474849;
      background-color: #474849; }
      .box--tab.box--tab--gris-oscuro .box--tab__category:before {
        background-color: #474849; }
    .box--tab.box--tab--gris-oscuro .box--tab__triangle {
      border-color: transparent transparent #474849 #474849; }
      .box--tab.box--tab--gris-oscuro .box--tab__triangle:before {
        border-color: transparent transparent #474849 #474849; }
    .box--tab.box--tab--gris-oscuro:before {
      background-color: #474849; }
  .box--tab.box--tab--gris-claro {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2; }
    .box--tab.box--tab--gris-claro .box--tab__category {
      border-color: #f2f2f2;
      background-color: #f2f2f2; }
      .box--tab.box--tab--gris-claro .box--tab__category:before {
        background-color: #f2f2f2; }
    .box--tab.box--tab--gris-claro .box--tab__triangle {
      border-color: transparent transparent #f2f2f2 #f2f2f2; }
      .box--tab.box--tab--gris-claro .box--tab__triangle:before {
        border-color: transparent transparent #f2f2f2 #f2f2f2; }
    .box--tab.box--tab--gris-claro:before {
      background-color: #f2f2f2; }
  .box--tab.box--tab--menta {
    background-color: #eef8f5;
    border: 1px solid #eef8f5; }
    .box--tab.box--tab--menta .box--tab__category {
      border-color: #eef8f5;
      background-color: #eef8f5; }
      .box--tab.box--tab--menta .box--tab__category:before {
        background-color: #eef8f5; }
    .box--tab.box--tab--menta .box--tab__triangle {
      border-color: transparent transparent #eef8f5 #eef8f5; }
      .box--tab.box--tab--menta .box--tab__triangle:before {
        border-color: transparent transparent #eef8f5 #eef8f5; }
    .box--tab.box--tab--menta:before {
      background-color: #eef8f5; }

.box--tab__category {
  position: absolute;
  bottom: 100%;
  left: -1px;
  border: 1px solid #CCCCCC;
  border-bottom: none;
  padding: 1.4rem 0.7rem 0 1.4rem;
  margin: 0;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem; }
  .box--tab__category:before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0px;
    right: 0px; }

.box--tab__triangle {
  position: absolute;
  top: -1px;
  bottom: 1px;
  left: 100%;
  width: 0;
  height: 0;
  border-width: 1.225rem 0.35rem;
  border-color: transparent transparent #CCCCCC #CCCCCC;
  border-style: solid;
  transform: translateX(1px); }
  .box--tab__triangle:before {
    content: "";
    position: absolute;
    top: -0.875rem;
    left: -0.35rem;
    width: 0;
    height: 0;
    border-width: 0.875rem 0.35rem;
    border-color: transparent transparent #fff #fff;
    border-style: solid;
    transform: translate(-1px, 1px); }

.box.box--half, .box--half.bloque {
  border-left: none;
  padding-left: 0.7rem;
  border-right: 0;
  padding-right: 0.7rem; }

.tienda {
  margin-top: 4.2rem; }
  @media (min-width: 900px) {
    .tienda .ts-tab {
      margin-top: 0; } }

.icon-h1 {
  height: 2.44141rem;
  width: auto;
  display: inline-block; }
  .icon-h1 svg {
    height: 100%;
    width: auto; }

.icon-h2 {
  height: 1.95312rem;
  width: auto;
  display: inline-block; }
  .icon-h2 svg {
    height: 100%;
    width: auto; }

.icon-h3 {
  height: 1.5625rem;
  width: auto;
  display: inline-block; }
  .icon-h3 svg {
    height: 100%;
    width: auto; }

.icon-h4 {
  height: 1.25rem;
  width: auto;
  display: inline-block; }
  .icon-h4 svg {
    height: 100%;
    width: auto; }

.icon-h5 {
  height: 1rem;
  width: auto;
  display: inline-block; }
  .icon-h5 svg {
    height: 100%;
    width: auto; }

.imagen__caption {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem;
  padding: 0.7rem 0;
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0; }
  @media (min-width: 900px) {
    .imagen__caption {
      display: flex; }
      .articulo--vineta .imagen__caption {
        justify-content: flex-end; } }
  .articulo--vineta .imagen__caption {
    text-align: right; }
  .imagen__caption p {
    margin: 0;
    display: inline; }

.imagen__autor {
  text-transform: uppercase;
  font-weight: bold;
  float: right;
  font-size: 10px;
  font-size: 0.64rem;
  line-height: 17px;
  line-height: 1.05rem; }
  @media (min-width: 900px) {
    .imagen__autor {
      padding-left: 0.7rem;
      margin-left: auto; }
      .articulo--vineta .imagen__autor {
        margin-left: 0; } }

.cajita {
  background-color: #f4ecde;
  padding: 0.7rem 1.4rem;
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 1.4rem; }
  .cajita p:last-child {
    margin: 0; }

.pub {
  margin-bottom: 1.4rem; 
  padding-top:25px;
}

.pub__title {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.35rem; }

blockquote,
.quote {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem;
  padding: 0.7rem 2.8rem 0.7rem 2.8rem;
  margin: 0 0 1.4rem 0;
  position: relative; }
  @media (min-width: 640px) {
    blockquote,
    .quote {
      float: right;
      padding: 0.7rem 2.8rem 0.7rem 3.5rem;
      font-size: 25px;
      font-size: 1.5625rem;
      line-height: 28px;
      line-height: 1.75rem;
      width: 45%;
      border-left: 2px solid #CCCCCC;
      margin: 0 0 1.4rem 1.4rem; } }
  blockquote p,
  .quote p {
    margin: 0; }
  blockquote:before,
  .quote:before {
    content: "“";
    font-size: 6rem;
    line-height: 0.5;
    position: absolute;
    top: 0.93333rem;
    left: 0; }
    @media (min-width: 640px) {
      blockquote:before,
      .quote:before {
        top: 1.4rem;
        left: 0.93333rem; } }
  blockquote:after,
  .quote:after {
    content: "”";
    font-size: 6rem;
    line-height: 0.5;
    position: absolute;
    bottom: -2.1rem;
    right: 0; }
    @media (min-width: 640px) {
      blockquote:after,
      .quote:after {
        bottom: -1.4rem;
        right: 0.35rem; } }

.quote--full {
  float: none;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  border-left: none;
  margin: 1.4rem 0;
  padding: 1.4rem 2.8rem 1.4rem 4.2rem; }

.img-quote {
  padding: 1.4rem 0;
  margin: 1.4rem 0;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC; }
  @media (min-width: 640px) {
    .img-quote {
      display: flex; } }

.img-quote__img {
  margin-bottom: 1.4rem; }
  @media (min-width: 640px) {
    .img-quote__img {
      margin-bottom: 0;
      padding-right: 2.8rem; } }
  .img-quote__img .imagen {
    margin: 0; }
  .img-quote__img .imagen__caption {
    display: block;
    padding-bottom: 0; }
  .img-quote__img .imagen__autor {
    padding: 0; }

.img-quote__img,
.img-quote__quote {
  flex: 1 0 50%; }

.img-quote__quote {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem;
  padding: 0.7rem 2.8rem 0.7rem 3.15rem;
  position: relative; }
  @media (min-width: 640px) {
    .img-quote__quote {
      padding: 0.7rem 2.8rem 0.7rem 2.8rem;
      display: flex;
      align-items: center; } }
  @media (min-width: 900px) {
    .img-quote__quote {
      font-size: 25px;
      font-size: 1.5625rem;
      line-height: 22px;
      line-height: 1.4rem; } }
  @media (min-width: 1120px) {
    .img-quote__quote {
      font-size: 31px;
      font-size: 1.95312rem;
      line-height: 34px;
      line-height: 2.1rem; } }
  .img-quote__quote:before {
    content: "“";
    font-size: 8rem;
    line-height: 0.5;
    position: absolute;
    top: 1.4rem;
    left: -0.462rem; }
  .img-quote__quote:after {
    content: "”";
    font-size: 8rem;
    line-height: 0.5;
    position: absolute;
    bottom: -2.8rem;
    right: 0; }

.subcontenido {
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.subcontenido__title {
  font-weight: bold;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #CCCCCC;
  text-transform: uppercase; }

.subcontenido__body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  text-align: justify; }

.subcontenido__autor {
  text-align: center;
  margin: 0; }

.ficha-autor {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .ficha-autor .button, .ficha-autor input[type=file] + label {
    white-space: nowrap; }

.ficha-autor__category {
  text-transform: uppercase;
  margin-bottom: 0.7rem; }

.ficha-autor__ficha {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 1.4rem 0;
  text-align: center; }
  @media (min-width: 640px) {
    .ficha-autor__ficha {
      text-align: left;
      display: flex;
      align-items: center; } }

.ficha-autor__img {
  display: inline-block;
  margin-bottom: 1.4rem; }
  .ficha-autor__img img {
    border-radius: 50%; }
  @media (min-width: 640px) {
    .ficha-autor__img {
      margin-bottom: 0; } }
  .ts-flex__img .ficha-autor__img {
    margin-bottom: 0; }

@media (min-width: 640px) {
  .ficha-autor__content {
    margin-left: 2.8rem; } }

.ficha-autor__title {
  font-family: "Cheltenham CTXT", Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-weight: bold;
  margin-bottom: 0.7rem; }

.ficha-autor__body {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem; }

.ficha-autor__meta {
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem; }
  @media (min-width: 640px) {
    .ficha-autor__meta {
      display: flex;
      align-items: center; } }

.ficha-autor__redes {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-top: 1.4rem;
  justify-content: center; }
  .ficha-autor__redes li {
    list-style-type: none;
    display: inline-block; }
  @media (min-width: 640px) {
    .ficha-autor__redes {
      margin-top: 0; } }
  .ficha-autor__redes li {
    margin: 0 0.7rem;
    margin-bottom: 0; }
    @media (min-width: 640px) {
      .ficha-autor__redes li {
        margin: 0 0 0 0.7rem; } }
  .ficha-autor__redes a {
    display: block; }
    .ficha-autor__redes a {
      text-decoration: none; }
      .ficha-autor__redes a:hover, .ficha-autor__redes a:focus {
        text-decoration: underline;
        background-color: transparent;
        border-bottom: none;
        padding-left: 0;
        padding-right: 0; }
        .ficha-autor__redes a:hover:after, .ficha-autor__redes a:focus:after {
          display: none; }
    .ficha-autor__redes a, .ficha-autor__redes a:link {
      color: #000; }
    .ficha-autor__redes a:visited {
      color: #000; }
    .ficha-autor__redes a:focus, .ficha-autor__redes a:hover {
      color: #f01b4d; }
    .ficha-autor__redes a:active {
      color: #f01b4d; }
    .ficha-autor__redes a i {
      vertical-align: bottom; }
      .ficha-autor__redes a i svg {
        fill: #000; }

.suscribete {
  margin-top: 5.6rem;
  margin-bottom: 2.8rem;
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.suscribete__title {
  text-transform: uppercase;
  font-weight: bold;
  color: #f01b4d;
  display: inline;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 34px;
  line-height: 2.1rem; }

.suscribete__text {
  margin-top: 1.4rem; }

.ademas, .comentarios {
  padding: 1.4rem 0;
  border-top: 2px solid #CCCCCC;
  margin-bottom: 2.8rem; }
  .ademas .separator:first-child, .comentarios .separator:first-child {
    margin-top: 0; }

.ademas__title {
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

@media (min-width: 640px) {
  .bloques {
    display: grid;
    grid-gap: 1.4rem;
    grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 900px) {
  .bloques {
    grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1120px) {
  .bloques {
    grid-template-columns: repeat(5, 1fr); } }

.bloque {
  padding: 0.7rem; }

.bloque__title {
  border-bottom: 1px solid #000; }

.bloque__list {
  padding: 0;
  margin: 0; }
  .bloque__list li {
    display: block;
    list-style-type: none; }

.bloque__item {
  display: block;
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #CCCCCC; }

.bloque__autor {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #a3a3a3;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 11px;
  line-height: 0.7rem;
  margin-bottom: 0.35rem;
  font-weight: bold; }

.bloque__item__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 17px;
  line-height: 1.05rem;
  margin: 0; }

.mensaje {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  margin: 1.4rem 0;
  position: relative; }

.mensaje__promo {
  margin-top: 0.7rem; }
  @media (min-width: 900px) {
    .mensaje__promo {
      margin-top: 0;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%); } }

.ad {
  margin-bottom: 1.4rem;
  text-align: center; }
  @media (min-width: 900px) {
    .ad {
      margin-bottom: 0; } }

.comentarios__title {
  margin: 0; }

.comentario {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 1.4rem; }
  .comentario h1 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.7rem; }
  .comentario p {
    margin-bottom: 0.7rem; }
  .comentario .fecha {
    margin-bottom: 0; }

.sharer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; }
  @media (min-width: 900px) {
    .sharer {
      top: 50%;
      bottom: auto;
      right: auto;
      transform: translateY(-50%); } }
  .sharer ul {
    margin: 0;
    padding: 0;
    display: flex; }
    @media (min-width: 900px) {
      .sharer ul {
        display: block; } }
  .sharer li {
    list-style-type: none;
    background-color: #000;
    margin: 0;
    display: inline-block;
    flex: 1 0 auto; }
    @media (min-width: 900px) {
      .sharer li {
        display: block; } }
  .sharer a {
    display: block;
    padding: 0.7rem;
    text-align: center; }
    .sharer a:hover svg, .sharer a:focus svg {
      fill: #f01b4d; }
  .sharer svg {
    width: auto;
    height: 0.93333rem;
    fill: #fff; }
    @media (min-width: 640px) {
      .sharer svg {
        height: 1.4rem; } }

.ts-flotante {
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  @media (min-width: 900px) {
    .ts-flotante {
      border-top-width: 1px;
      border-top-width: 0.0625rem;
      padding-top: 21px;
      padding-top: 1.3375rem;
      border-bottom-width: 1px;
      border-bottom-width: 0.0625rem;
      padding-bottom: 21px;
      padding-bottom: 1.3375rem;
      border-top-color: #CCCCCC;
      border-bottom-color: #CCCCCC;
      border-top-style: solid;
      border-bottom-style: solid;
      flex-direction: row;
      margin-top: 5.6rem; } }
  @media (min-width: 1120px) {
    .ts-flotante {
      padding-left: 1.4rem;
      padding-right: 2.8rem; } }

.ts-flotante--inverse {
  margin-top: 0; }
  @media (min-width: 900px) {
    .ts-flotante--inverse {
      margin-bottom: 5.6rem !important; }
      .ts-flotante--inverse .ts-flotante__img img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        height: auto; } }

.ts-flotante__textos {
  margin-bottom: 1.4rem; }
  @media (min-width: 900px) {
    .ts-flotante__textos {
      margin-bottom: 0;
      width: 50%;
      padding-right: 1.4rem; } }

.ts-flotante__img {
  order: -999;
  margin-bottom: 1.4rem; }
  @media (min-width: 900px) {
    .ts-flotante__img {
      order: initial;
      width: 50%;
      position: relative;
      margin-bottom: 0; }
      .ts-flotante__img img {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: auto; } }

.ts-mitad {
  display: flex;
  flex-direction: column; }
  @media (max-width: 900px) {
    .ts-mitad {
      text-align: center; }
      .ts-mitad .body, .ts-mitad .section__body {
        margin-left: auto; } }
  @media (min-width: 900px) {
    .ts-mitad {
      flex-direction: row; } }

.ts-mitad__img {
  margin-bottom: 1.4rem;
  order: 1; }
  @media (min-width: 900px) {
    .ts-mitad__img {
      order: unset;
      margin-bottom: 0;
      flex: 0 0 50%; } }

.ts-mitad__textos {
  order: 2; }
  @media (max-width: 900px) {
    .ts-mitad__textos {
      text-align: center; } }
  @media (min-width: 900px) {
    .ts-mitad__textos {
      order: unset;
      display: flex;
      flex-direction: column;
      margin-left: 5%; } }

@media (min-width: 900px) {
  .ts-mitad--inverse .ts-mitad__textos {
    margin-right: 5%;
    margin-left: 0; } }

@media (min-width: 900px) {
  .ts-mitad--center .ts-mitad__textos {
    justify-content: center; }
  .ts-mitad--bottom .ts-mitad__textos {
    justify-content: flex-end; }
  .ts-mitad--expanded .ts-mitad__textos {
    justify-content: space-around; } }

.ts-flex {
  display: flex;
  flex-direction: column; }
  @media (max-width: 900px) {
    .ts-flex {
      text-align: center; }
      .ts-flex .body, .ts-flex .section__body {
        margin-left: auto; } }
  @media (min-width: 900px) {
    .ts-flex {
      flex-direction: row; } }

.ts-flex__textos {
  order: 2; }
  @media (min-width: 900px) {
    .ts-flex__textos {
      order: unset;
      flex: 1; } }

.ts-flex__img {
  margin-bottom: 1.4rem;
  order: 1; }
  @media (min-width: 900px) {
    .ts-flex__img {
      order: unset;
      margin-bottom: 0;
      max-width: 60%;
      padding-left: 0;
      padding-right: 2.8rem; }
      .ts--reducido .ts-flex__img {
        padding-right: 1.4rem; } }

@media (min-width: 900px) {
  .ts-flex--inverse .ts-flex__img {
    padding-left: 2.8rem;
    padding-right: 0; }
    .ts--reducido .ts-flex--inverse .ts-flex__img {
      padding-left: 1.4rem; } }

@media (min-width: 900px) {
  .ts-flex--center {
    align-items: center; }
  .ts-flex--bottom {
    align-items: flex-end; }
  .ts-flex--expanded .ts-flex__textos {
    display: flex;
    flex-direction: column;
    justify-content: space-around; } }

.ts-tab {
  border: 1px solid #CCCCCC;
  position: relative;
  margin-top: 4.2rem; }
  .ts-tab.ts--reducido .ts-tab__category {
    padding-right: 0.35rem;
    padding-left: 0.7rem;
    height: 1.75rem;
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 6px;
    line-height: 0.35rem; }
  .ts-tab.ts--reducido .ts-tab__left {
    padding: 1.4rem 0.7rem; }
  @media (min-width: 900px) {
    .ts-tab.ts--reducido .ts-tab__meta {
      padding-right: 1.4rem; } }
  .ts-tab.ts--reducido .ts-tab__title {
    margin: 0; }

.ts-tab--center .ts-tab__left {
  align-items: center; }

.ts-tab--bottom .ts-tab__left {
  align-items: flex-end; }

.ts-tab--expanded .ts-tab__meta,
.ts-tab--expanded .ts-tab__title {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.ts-tab__category {
  position: absolute;
  top: -1.75rem;
  left: -1px;
  border: 1px solid #CCCCCC;
  border-bottom: none;
  padding: 0.7rem 0.7rem 0 1.4rem;
  line-height: 1.05rem;
  height: 1.75rem;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase; }
  .ts-tab__category:before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0px;
    right: 0px; }

.ts-tab__triangle {
  position: absolute;
  top: -1px;
  bottom: 1px;
  left: 100%;
  width: 0;
  height: 0;
  border-width: 0.875rem 0.35rem;
  border-color: transparent transparent #CCCCCC #CCCCCC;
  border-style: solid;
  transform: translateX(1px); }
  .ts-tab__triangle:before {
    content: "";
    position: absolute;
    top: -0.875rem;
    left: -0.35rem;
    width: 0;
    height: 0;
    border-width: 0.875rem 0.35rem;
    border-color: transparent transparent #fff #fff;
    border-style: solid;
    transform: translate(-1px, 1px); }

@media (min-width: 900px) {
  .ts-tab__content {
    display: flex; } }

.ts-tab__left {
  padding: 1.4rem; }
  @media (min-width: 900px) {
    .ts-tab__left {
      display: flex;
      flex: 1;
      min-width: 66%; } }

.ts-tab__meta {
  margin-bottom: 1.4rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }
  @media (min-width: 900px) {
    .ts-tab__meta {
      padding-right: 2.8rem;
      margin-bottom: 0; } }

.ts-tab__title {
  margin: 0; }

.ts-tab__title {
  margin: 0; }

.ts-tab__right {
  flex: 1; }
  .ts-tab__right img {
    width: 100%; }

.ts-tab__info {
  text-transform: uppercase;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid #a3a3a3; }

.ts-tab__autor {
  color: #a3a3a3; }

.ts-tab--sepia {
  background-color: #f4ecde;
  border-color: #f4ecde; }
  .ts-tab--sepia .ts-tab__category {
    border-color: #f4ecde;
    background-color: #f4ecde; }
    .ts-tab--sepia .ts-tab__category:before, .ts-tab--sepia .ts-tab__category:after {
      border-color: #f4ecde;
      background-color: #f4ecde; }
    .ts-tab--sepia .ts-tab__category .ts-tab__triangle {
      border-color: transparent transparent #f4ecde #f4ecde; }
      .ts-tab--sepia .ts-tab__category .ts-tab__triangle:before {
        border-color: transparent transparent #f4ecde #f4ecde; }

@media (max-width: 900px) {
  .ts-vertical .body, .ts-vertical .section__body {
    margin-left: auto; } }

.ts-vertical .body, .ts-vertical .section__body {
  margin-bottom: 1.4rem; }

.ts-vertical__img {
  margin-bottom: 1.4rem; }
  .ts-vertical__img img {
    margin: 0 auto; }

.ts-especial {
  display: flex;
  flex-direction: column;
  position: relative; }
  @media (min-width: 900px) {
    .ts-especial {
      flex-direction: row; } }

.ts-especial__textos {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 1.4rem;
  background-color: #fff;
  display: flex;
  flex-direction: column; }
  @media (min-width: 900px) {
    .ts-especial__textos {
      flex: 0 0 57%;
      padding-right: 13%; } }

.ts-especial__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #000;
  text-transform: uppercase; }

.ts-especial__piezas {
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem;
  color: #808080;
  margin: auto 0 0 0; }

@media (min-width: 900px) {
  .col2 {
    margin-bottom: 2.8rem;
    display: flex;
    justify-content: space-between; } }

.col2 > .col {
  margin-bottom: 2.8rem; }
  .col2 > .col > div:last-child,
  .col2 > .col > section:last-child,
  .col2 > .col > article:last-child {
    margin-bottom: 0; }
  @media (min-width: 900px) {
    .col2 > .col {
      margin-bottom: 2.8rem;
      flex: 1;
      max-width: 50%;
      margin-bottom: 0; }
      .col2 > .col > .ts:last-child {
        margin-bottom: 0; } }

@media (min-width: 900px) {
  .col2.col2--gutter:not(.col2--separator) .col {
    max-width: calc(50% - 1.4rem); } }

@media (min-width: 1120px) {
  .col2.col2--gutter:not(.col2--separator) .col {
    max-width: calc(50% - 2.8rem); } }

@media (min-width: 900px) {
  .col2.col2--gutter-left .col:first-child {
    max-width: 50%; }
  .col2.col2--gutter-left .col:last-child {
    max-width: calc(50% - 1.4rem); } }

@media (min-width: 1120px) {
  .col2.col2--gutter-left .col:last-child {
    max-width: calc(50% - 2.8rem); } }

.col.col--expanded {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media (min-width: 900px) {
    .col.col--expanded .ts {
      margin-bottom: 0; } }

@media (min-width: 900px) {
  .col.col--gutter-l {
    margin-left: 2.8rem; } }

@media (min-width: 900px) {
  .col.col--gutter-r {
    margin-right: 2.8rem; } }

.col2--equal-heights > .col {
  display: flex;
  flex-direction: column; }
  .col2--equal-heights > .col > .box, .col2--equal-heights > .col > .bloque {
    flex: 1; }

@media (min-width: 900px) {
  .col2--separator .col {
    max-width: 50%; }
  .col2--separator .col:first-child {
    padding-right: 2.8rem;
    border-right: 1px solid #CCCCCC; }
  .col2--separator .col:last-child {
    padding-left: 2.8rem; } }

.col3 {
  margin-bottom: 2.8rem; }
  @media (min-width: 900px) {
    .col3 {
      display: flex;
      justify-content: space-between; } }
  .col3 > .col {
    margin-bottom: 2.8rem; }
    @media (min-width: 900px) {
      .col3 > .col {
        margin-bottom: 0;
        flex: 1;
        max-width: calc(33.33% - 2.8rem); }
        .col3 > .col > .ts {
          margin-bottom: 0; } }

.col3--equal-heights > .col {
  display: flex;
  flex-direction: column; }
  .col3--equal-heights > .col > .box, .col3--equal-heights > .col > .bloque {
    flex: 1; }

@media (max-width: 900px) {
  .col .ts-flex,
  .col .ts-mitad {
    flex-direction: column; }
  .col .ts-flex__img,
  .col .ts-mitad__img {
    order: -999;
    margin-bottom: 1.4rem;
    padding: 0;
    max-width: 100%;
    width: 100%; }
  .col .ts-flex__textos,
  .col .ts-mitad__textos {
    margin-left: 0;
    margin-right: 0; } }

.col2-old {
  column-count: 2;
  column-gap: 2.8rem; }
  .col2-old > div,
  .col2-old > section,
  .col2-old > article {
    display: inline-block;
    width: 100%; }

@media (max-width: 900px) {
  .flex .flex-25,
  .flex .flex-33,
  .flex .flex-40,
  .flex .flex-50,
  .flex .flex-60,
  .flex .flex-66,
  .flex .flex-75 {
    padding-left: 0;
    padding-right: 0; } }

@media (min-width: 900px) {
  .flex {
    margin-bottom: 2.8rem;
    display: flex;
    justify-content: space-between; }
    .flex.flex--center {
      align-items: center; }
    .flex.flex--bottom {
      align-items: flex-end; }
  .flex-20 {
    flex: 1 0 20%; }
  .flex-25 {
    flex: 1 0 25%; }
  .flex-30 {
    flex: 1 0 30%; }
  .flex-33 {
    flex: 1 0 33%; }
  .flex-40 {
    flex: 1 0 40%; }
  .flex-50 {
    flex: 1 0 50%; }
  .flex-60 {
    flex: 1 0 60%; }
  .flex-66 {
    flex: 1 0 66%; }
  .flex-70 {
    flex: 1 0 70%; }
  .flex-75 {
    flex: 1 0 75%; }
  .flex-80 {
    flex: 1 0 80%; }
  .flex--bl {
    padding-left: 1.4rem;
    border-left: 1px solid #CCCCCC; } }

.articulo__content {
  margin-bottom: 1.4rem;
  width: 100%; }
  @media (min-width: 900px) {
    .articulo__content {
      display: flex;
      overflow: hidden;
      margin-bottom: 2.8rem; } }

@media (min-width: 900px) {
  .articulo__main {
    padding-right: 1.4rem;
    border-right: 1px solid #CCCCCC; } }

@media (min-width: 1120px) {
  .articulo__main {
    padding-right: 2.8rem; } }

.articulo__body, .unsuscribers_articles_views {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
  display:none;
  font-weight: lighter; }
  @media (min-width: 640px) {
    .articulo__body, .unsuscribers_articles_views {
      font-size: 20px;
      font-size: 1.25rem;
      line-height: 28px;
      display:none;
      line-height: 1.75rem; } }
  @media (min-width: 900px) {
    .articulo__body, .unsuscribers_articles_views {
      font-size: 23px;
      font-size: 1.4375rem;
      line-height: 36px;
      display:none;
      line-height: 2.275rem; } }    

.articulo__body, .articulo__body_unsuscribers {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
  display:none;
  font-weight: lighter; }
  @media (min-width: 640px) {
    .articulo__body, .articulo__body_unsuscribers {
      font-size: 20px;
      font-size: 1.25rem;
      line-height: 28px;
      display:none;
      line-height: 1.75rem; } }
  @media (min-width: 900px) {
    .articulo__body, .articulo__body_unsuscribers {
      font-size: 23px;
      font-size: 1.4375rem;
      line-height: 36px;
      display:none;
      line-height: 2.275rem; } }

.articulo__sidebar {
  padding-top: 1.4rem; }
  .articulo__sidebar .pub {
    text-align: center; }
  @media (min-width: 900px) {
    .articulo__sidebar {
      width: 300px;
      flex: 1 0 300px;
      padding-left: 0;
      padding-top: 0;
      margin-left: 1.4rem; } }
  @media (min-width: 1120px) {
    .articulo__sidebar {
      margin-left: 2.8rem; } }

.articulo__destacado {
  margin-bottom: 1.4rem;
  text-align: center; }
  @media (min-width: 900px) {
    .articulo__destacado {
      margin-bottom: 2.8rem; } }
  .articulo__destacado .imagen {
    margin: 0 auto; }

.articulo__fecha {
  font-weight: bold; }

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef8f5; }
  @media (min-width: 640px) {
    .login-page {
      background-color: transparent; } }

.login {
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #474849;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 17px;
  line-height: 1.05rem;
  margin: 0;
  width: 100%; }
  .login h1 {
    color: #474849; }
  .login input {
    width: 100%; }
  .login p {
    margin-bottom: 0.7rem; }
  .login .button, .login input[type=file] + label {
    padding-left: 2.8rem;
    padding-right: 2.8rem; }
  .login a:not(.button) {
    text-decoration: underline;
    background-color: transparent;
    border-bottom: none;
    padding-left: 0;
    padding-right: 0; }
    .login a:not(.button):after {
      display: none; }
    .login a:not(.button):hover, .login a:not(.button):focus {
      text-decoration: none; }
  .login a:not(.button), .login a:not(.button):link {
    color: #474849; }
  .login a:not(.button):visited {
    color: #474849; }
  .login a:not(.button):focus, .login a:not(.button):hover {
    color: #f01b4d; }
  .login a:not(.button):active {
    color: #f01b4d; }
  @media (min-width: 640px) {
    .login {
      min-width: 480px;
      width: auto;
      height: auto; } }

.login__logo {
  display: block;
  text-align: center; }
  @media (min-width: 640px) {
    .login__logo {
      text-align: left; }
      .login__logo img {
        height: 2.8rem; } }
  .login__logo img {
    height: 4.2rem;
    display: inline-block; }

.login__form {
  text-align: center;
  max-width: 250px;
  margin: 1.4rem auto 0 auto; }
  .login__form input {
    margin-bottom: 1.4rem; }

.login__ventajas {
  margin-top: 2.8rem;
  text-align: left; }

.login__ventajas__title {
  text-align: center;
  font-weight: bold;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 3px dotted #808080; }

.box--seccion {
  position: relative;
  overflow: hidden; }
  .box--seccion .section__category, .box--seccion .vineta-header__category {
    color: #fff;
    background-color: #474849;
    padding: 0.7rem 1.4rem 0.7rem 1.4rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 17px;
    line-height: 1.05rem;
    position: relative;
    margin-right: 0.7rem;
    top: -1.4rem;
    left: -1.4rem; }
    @media (min-width: 640px) {
      .box--seccion .section__category, .box--seccion .vineta-header__category {
        margin-right: 0;
        left: -1.4rem;
        top: 0;
        max-width: 200px; } }
    .box--seccion .section__category a, .box--seccion .vineta-header__category a {
      text-decoration: none; }
      .box--seccion .section__category a:hover, .box--seccion .vineta-header__category a:hover, .box--seccion .section__category a:focus, .box--seccion .vineta-header__category a:focus {
        text-decoration: none; }
    .box--seccion .section__category a, .box--seccion .vineta-header__category a, .box--seccion .section__category a:link, .box--seccion .vineta-header__category a:link {
      color: #fff; }
    .box--seccion .section__category a:visited, .box--seccion .vineta-header__category a:visited {
      color: #fff; }
    .box--seccion .section__category a:focus, .box--seccion .vineta-header__category a:focus, .box--seccion .section__category a:hover, .box--seccion .vineta-header__category a:hover {
      color: #000; }
    .box--seccion .section__category a:active, .box--seccion .vineta-header__category a:active {
      color: #000; }
    .box--seccion .section__category:after, .box--seccion .vineta-header__category:after {
      display: none; }
    .box--seccion .section__category .section__decoration, .box--seccion .vineta-header__category .section__decoration {
      position: absolute;
      top: 0;
      left: 100%;
      width: 50%;
      height: 100%;
      overflow: hidden; }
      .box--seccion .section__category .section__decoration:before, .box--seccion .vineta-header__category .section__decoration:before {
        content: "";
        width: 200%;
        height: 100%;
        position: absolute;
        transform: rotate(-75deg);
        background-color: #474849;
        transform-origin: 0% 100%; }
  .box--seccion.box--gris-oscuro .section__category, .box--seccion.box--gris-oscuro .vineta-header__category {
    background-color: #CCCCCC;
    color: #000; }
    .box--seccion.box--gris-oscuro .section__category .section__decoration:before, .box--seccion.box--gris-oscuro .vineta-header__category .section__decoration:before {
      background-color: #CCCCCC; }

.nav-lateral {
  display: none;
  position: absolute;
  top: 1.4rem;
  right: 0;
  transform: translateX(calc(100% - (1.4rem * 2)));
  margin: 0;
  padding: 0.7rem 1.4rem 0.7rem 2.8rem;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  min-height: 140px;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease-in-out; }
  @media (min-width: 900px) {
    .nav-lateral {
      display: flex; } }
  .nav-lateral:hover {
    transform: translateX(0%); }
  .box--gris-oscuro .nav-lateral {
    background-color: #CCCCCC; }
    .box--gris-oscuro .nav-lateral h1, .box--gris-oscuro .nav-lateral p {
      color: #000; }
    .box--gris-oscuro .nav-lateral a {
      text-decoration: none; }
      .box--gris-oscuro .nav-lateral a:hover, .box--gris-oscuro .nav-lateral a:focus {
        text-decoration: underline;
        background-color: transparent;
        border-bottom: none;
        padding-left: 0;
        padding-right: 0; }
        .box--gris-oscuro .nav-lateral a:hover:after, .box--gris-oscuro .nav-lateral a:focus:after {
          display: none; }
    .box--gris-oscuro .nav-lateral a, .box--gris-oscuro .nav-lateral a:link {
      color: #000; }
    .box--gris-oscuro .nav-lateral a:visited {
      color: #000; }
    .box--gris-oscuro .nav-lateral a:focus, .box--gris-oscuro .nav-lateral a:hover {
      color: #f01b4d; }
    .box--gris-oscuro .nav-lateral a:active {
      color: #f01b4d; }
    .box--gris-oscuro .nav-lateral .nav-lateral__flecha:after, .box--gris-oscuro .nav-lateral .nav-lateral__flecha:before {
      background-color: #CCCCCC; }

.nav-lateral__flecha {
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: 100%;
  width: 2.8rem;
  overflow: hidden; }
  .nav-lateral__flecha:before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 53.25%;
    border-left: 1px solid #CCCCCC;
    transform-origin: 0 0;
    transform: rotate(20deg); }
  .nav-lateral__flecha:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 100%;
    height: 53.25%;
    border-left: 1px solid #CCCCCC;
    transform-origin: 0% 100%;
    transform: rotate(-20deg); }

.nav-lateral__title {
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  text-transform: uppercase;
  position: absolute;
  bottom: 50%;
  left: 0;
  margin: 0;
  transform: rotate(-90deg) translate(-50%, 150%);
  transform-origin: 0 100%;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.nav-lateral__menu {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .nav-lateral__menu li {
    margin: 0; }
  .nav-lateral__menu a {
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 17px;
    line-height: 1.05rem; }
    .nav-lateral__menu a {
      text-decoration: none; }
      .nav-lateral__menu a:hover, .nav-lateral__menu a:focus {
        text-decoration: none; }
    .nav-lateral__menu a, .nav-lateral__menu a:link {
      color: #000; }
    .nav-lateral__menu a:visited {
      color: #000; }
    .nav-lateral__menu a:focus, .nav-lateral__menu a:hover {
      color: #f01b4d; }
    .nav-lateral__menu a:active {
      color: #f01b4d; }

.scroll-list__wrapper {
  position: relative; }

.scroll-list__header {
  position: sticky;
  top: 0px;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 28px;
  line-height: 1.75rem;
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  z-index: 9;
  padding-bottom: 0.7rem;
  margin-bottom: 1.4rem; }
  .box .scroll-list__header, .bloque .scroll-list__header {
    background-color: #fff; }
  .box--blanco .scroll-list__header {
    background-color: #fff; }
  .box--hueso .scroll-list__header {
    background-color: #f4f1e5; }
  .box--gris-oscuro .scroll-list__header {
    background-color: #474849; }
  .box--gris-claro .scroll-list__header {
    background-color: #f2f2f2; }
  .box--menta .scroll-list__header {
    background-color: #eef8f5; }

@media (min-width: 900px) {
  .scroll-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-left: 1.4rem; } }

.scroll-list ul {
  padding: 0;
  margin: 0; }

.scroll-list li {
  display: block;
  list-style-type: none; }

.scroll-list__todos {
  text-align: center;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0.7rem 0.7rem 0 0.7rem;
  position: sticky;
  bottom: 0;
  z-index: 9;
  background-color: #fff; }
  .box--blanco .scroll-list__todos {
    background-color: #fff; }
  .box--hueso .scroll-list__todos {
    background-color: #f4f1e5; }
  .box--gris-oscuro .scroll-list__todos {
    background-color: #474849; }
  .box--gris-claro .scroll-list__todos {
    background-color: #f2f2f2; }
  .box--menta .scroll-list__todos {
    background-color: #eef8f5; }
  .scroll-list__todos a {
    text-decoration: underline;
    background-color: transparent;
    border-bottom: none;
    padding-left: 0;
    padding-right: 0; }
    .scroll-list__todos a:after {
      display: none; }
    .scroll-list__todos a:hover, .scroll-list__todos a:focus {
      text-decoration: none; }
  .scroll-list__todos a, .scroll-list__todos a:link {
    color: #000; }
  .scroll-list__todos a:visited {
    color: #000; }
  .scroll-list__todos a:focus, .scroll-list__todos a:hover {
    color: #f01b4d; }
  .scroll-list__todos a:active {
    color: #f01b4d; }

.scroll-list__item {
  margin-bottom: 1.05rem; }
  .scroll-list__item .autor, .scroll-list__item .subcontenido__autor, .scroll-list__item .articulo__fecha {
    color: #808080; }

.scroll-list__subtitulo {
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #a3a3a3;
  font-size: 13px;
  font-size: 0.8rem;
  line-height: 11px;
  line-height: 0.7rem;
  margin-bottom: 0.35rem;
  font-weight: bold; }

.scroll-list__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 17px;
  line-height: 1.05rem;
  margin: 0; }

.vineta-header {
  text-align: center; }

.vineta-header__category {
  text-align: left; }

.vineta-header__title {
  font-size: 31px;
  font-size: 1.95312rem;
  line-height: 34px;
  line-height: 2.1rem;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  display: inline-block;
  min-width: 30%;
  font-style: italic; }

.vineta-header__autor {
  font-family: "Roboto", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  margin-bottom: 0.35rem; }

.vineta-header__fecha {
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem;
  color: #808080; }

.page-autor .ficha-autor__ficha {
  border: 1px solid #CCCCCC;
  padding: 1.4rem; }

.page-autor .ficha-autor__body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem; }

.page-autor .ficha-autor__content {
  flex: 1; }

.page-autor .ademas, .page-autor .comentarios {
  border-top: none; }

.page-autor .ficha-autor__category {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem;
  margin: 2.8rem 0; }

.page-autores .ficha-autor__body {
  margin: 0; }

.page-autores .ficha-autor {
  margin: 0; }

.page-autores .ficha-autor__ficha {
  border-bottom: none; }

.page-autores__title, .page-listado__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.4rem;
  margin: 2.8rem 0;
  font-family: "Futura CTXT", "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.page-listado .ts {
  padding-top: 1.4rem;
  margin-bottom: 1.4rem;
  border-top: 1px solid #CCCCCC; }

.vineta {
  text-align: center; }

.vineta__caption {
  padding-top: 0.7rem; }
  @media (min-width: 640px) {
    .vineta__caption {
      display: flex; } }
  .vineta__caption .autor, .vineta__caption .subcontenido__autor, .vineta__caption .articulo__fecha,
  .vineta__caption .fecha {
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 17px;
    line-height: 1.05rem;
    display: block;
    margin: 0; }
    @media (min-width: 900px) {
      .vineta__caption .autor, .vineta__caption .subcontenido__autor, .vineta__caption .articulo__fecha,
      .vineta__caption .fecha {
        font-size: 16px;
        font-size: 1rem;
        line-height: 22px;
        line-height: 1.4rem; } }

.vineta__title {
  margin-left: auto;
  margin-bottom: 0;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.4rem; }
  @media (min-width: 900px) {
    .vineta__title {
      font-size: 20px;
      font-size: 1.25rem;
      line-height: 22px;
      line-height: 1.4rem; } }

.vineta--small {
  padding-top: 0.7rem; }
  .vineta--small .vineta__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.4rem; }
  .vineta--small .autor, .vineta--small .subcontenido__autor, .vineta--small .articulo__fecha,
  .vineta--small .fecha {
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 17px;
    line-height: 1.05rem;
    display: block;
    margin: 0; }

.brand-day {
  width: 100%;
  width: 100vw;
  overflow-x: hidden; }
  .brand-day #main-wrapper {
    position: relative;
    padding: 0; }
  .brand-day .brand-day__content {
    padding: 0 1.4rem 1.4rem 1.4rem; }
    @media (max-width: 900px) {
      .brand-day .brand-day__content {
        padding: 0 0.7rem 0.7rem 0.7rem; } }

.brand-day__left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transform: translateX(-100%); }
  .brand-day__left img {
    position: sticky;
    top: 0;
    min-height: 600px;
    max-height: 100vh;
    width: auto; }

.brand-day__right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%); }
  .brand-day__right img {
    position: sticky;
    top: 0;
    min-height: 600px;
    max-height: 100vh;
    width: auto; }

@media (min-width: 900px) {
  .m {
    margin: 1.4rem; }
  .mt {
    margin-top: 1.4rem; }
  .mr {
    margin-right: 1.4rem; }
  .mb {
    margin-bottom: 1.4rem; }
  .ml {
    margin-left: 1.4rem; }
  .m0 {
    margin: 0; }
  .p {
    padding: 1.4rem; }
  .pt {
    padding-top: 1.4rem; }
  .pr {
    padding-right: 1.4rem; }
  .pb {
    padding-bottom: 1.4rem; }
  .pl {
    padding-left: 1.4rem; }
  .p2 {
    padding: 2.8rem; }
  .pt2 {
    padding-top: 2.8rem; }
  .pr2 {
    padding-right: 2.8rem; }
  .pb2 {
    padding-bottom: 2.8rem; }
  .pl2 {
    padding-left: 2.8rem; }
  .p3 {
    padding: 4.2rem; }
  .pt3 {
    padding-top: 4.2rem; }
  .pr3 {
    padding-right: 4.2rem; }
  .pb3 {
    padding-bottom: 4.2rem; }
  .pl3 {
    padding-left: 4.2rem; }
  .p0 {
    padding: 0; }
  .b {
    border: 1px solid #CCCCCC; }
  .bt {
    border-top: 1px solid #CCCCCC; }
  .br {
    border-right: 1px solid #CCCCCC; }
  .bb {
    border-bottom: 1px solid #CCCCCC; }
  .bl {
    border-left: 1px solid #CCCCCC; }
  .b0 {
    border: none; }
  .m2 {
    margin: 2.8rem; }
  .mt2 {
    margin-top: 2.8rem; }
  .mr2 {
    margin-right: 2.8rem; }
  .mb2 {
    margin-bottom: 2.8rem; }
  .ml2 {
    margin-left: 2.8rem; }
  .mt3 {
    margin-top: 4.2rem; }
  .mr3 {
    margin-right: 4.2rem; }
  .mb3 {
    margin-bottom: 4.2rem; }
  .ml3 {
    margin-left: 4.2rem; }
  .half-gutter.m {
    margin: 0.7rem; }
  .half-gutter.mt {
    margin-top: 0.7rem; }
  .half-gutter.mr {
    margin-right: 0.7rem; }
  .half-gutter.mb {
    margin-bottom: 0.7rem; }
  .half-gutter.ml {
    margin-left: 0.7rem; }
  .half-gutter.p {
    padding: 0.7rem; }
  .half-gutter.pt {
    padding-top: 0.7rem; }
  .half-gutter.pr {
    padding-right: 0.7rem; }
  .half-gutter.pb {
    padding-bottom: 0.7rem; }
  .half-gutter.pl {
    padding-left: 0.7rem; }
  .quarter-gutter.m {
    margin: 0.35rem; }
  .quarter-gutter.mt {
    margin-top: 0.35rem; }
  .quarter-gutter.mr {
    margin-right: 0.35rem; }
  .quarter-gutter.mb {
    margin-bottom: 0.35rem; }
  .quarter-gutter.ml {
    margin-left: 0.35rem; }
  .quarter-gutter.p {
    padding: 0.35rem; }
  .quarter-gutter.pt {
    padding-top: 0.35rem; }
  .quarter-gutter.pr {
    padding-right: 0.35rem; }
  .quarter-gutter.pb {
    padding-bottom: 0.35rem; }
  .quarter-gutter.pl {
    padding-left: 0.35rem; } }

.tl {
  text-align: left; }

.tc {
  text-align: center; }

.tr {
  text-align: right; }

.up {
  text-transform: uppercase; }

.st {
  font-weight: bold; }

.em {
  font-style: italic; }

.ls {
  letter-spacing: 0.05em; }

.sh {
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1); }

.simplebar-track.simplebar-vertical {
  display: none;
  right: auto;
  left: 0; }
  @media (min-width: 900px) {
    .simplebar-track.simplebar-vertical {
      display: block; } }
  .simplebar-track.simplebar-vertical:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #CCCCCC; }

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 10px;
  bottom: 10px;
  opacity: 1;
  background: transparent;
  border: 1px solid #a7a7a7;
  background-color: #f2f2f2; }

.scroll-list:hover .simplebar-scrollbar:before {
  border-color: #a7a7a7;
  background-color: #a7a7a7; }

#numeros div {
  display: inline-block; }

#numeros ol {
  display: block;
  margin: 0;
  padding: 0; }

#numeros li {
  list-style-type: none;
  margin: 0; }

.cabecera_new .font-secondary, .cabecera_new .section__category, .cabecera_new .vineta-header__category, .cabecera_new .section__subtitle,
.cabecera_new .section__suptitle, .cabecera_new .subsection,
.cabecera_new h1,
.cabecera_new h2,
.cabecera_new h3,
.cabecera_new h4,
.cabecera_new dt,
.cabecera_new nav {
  font-family: "Futura", Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

html {
  -webkit-font-smoothing: antialiased; }
