@font-face {
  font-family: "Prumo";
  src: url("Prumo-LNVF.woff2") format("woff2-variations");
  font-weight: 90;
  font-display: swap;
}

@font-face {
  font-family: "Prumo Italic";
  src: url("") format("woff2-variations");
  font-weight: 90;
  font-display: swap;
}

.--font-primary {
  font-family: Prumo, georgia, serif;
}

.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

[class*="col-"] {
  width: 100%;
  position: relative;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 64em) {
  .col-desksm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-desksm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 80em) {
  .col-deskxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .offset-deskxl-1 {
    margin-left: 8.3333333333%;
  }
}

[class*="row-gap"] {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
}

@media (min-width: 83.75em) {
  [class*="row-gap"] {
    grid-column-gap: 2.5rem;
  }
}

.lay-sidebar {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

@media (min-width: 68.75em) {
  .lay-sidebar {
    flex-direction: row;
    margin-bottom: 2.5rem;
  }

  .sidebar__main {
    flex-basis: calc(100% - 316px);
    margin-left: 1rem;
  }

  .sidebar__aside {
    flex-basis: 18.75rem;
    flex-shrink: 0;
  }
}

@media (min-width: 83.75em) {
  .sidebar__main {
    flex-basis: calc(100% - 340px);
    margin-left: 2.5rem;
  }

  #wrapper.nota .sidebar__main {
    flex-basis: calc(100% - 380px);
    margin-right: 5rem;
  }
}

[class^="lay"],
[class*=" lay"] {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 83.75em) {

  [class^="lay"],
  [class*=" lay"] {
    max-width: 81.75rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

#fusion-app>#wrapper:not(.sitemap):not(.html-libre.--transparent) {
  position: relative;
  overflow-x: clip;
}

#fusion-app>#wrapper:not(.sitemap):not(.html-libre):before {
  content: "";
  height: 3.125rem;
  width: 100%;
  display: block;
  background: -webkit-repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 4px,
      rgba(0, 0, 0, 0.15) 6px);
  background: repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 4px,
      rgba(0, 0, 0, 0.15) 6px);
}

@media (min-width: 768px) {
  #fusion-app>#wrapper:not(.sitemap):not(.html-libre.--transparent):before {
    display: none;
  }
}

#content {
  position: relative;
  padding-top: 1.5rem;
}

@media (min-width: 64em) {
  .--header-fixed-margin.--header-fixed-margin {
    margin-top: 0.5rem;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.button,
.button>.icon>svg>path {
  transition: all 0.3s ease-in-out;
}

.button:hover {
  opacity: 0.8;
}

.button:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.icon {
  transition: 0.3s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icon>svg {
  width: inherit;
  height: inherit;
  vertical-align: top;
}

.icon.--icon-16 {
  width: 1rem;
  height: 1rem;
}

.icon.--icon-20 {
  width: 1.25rem;
  height: 1.25rem;
}

.icon.--icon-24 {
  width: 1.5rem;
  height: 1.5rem;
}

.icon.--icon-32 {
  width: 2rem;
  height: 2rem;
}

.button.notification-drawer-button {
  position: relative;
  border: var(--notification-drawer-button-border);
  border-radius: var(--notification-drawer-button-radius);
  background-color: var(--notification-drawer-button-background-color);
  padding: 0;
}

.button.notification-drawer-button .icon {
  width: var(--notification-drawer-button-icon-width, 1.5rem);
  height: var(--notification-drawer-button-icon-height, 1.5rem);
}

.button.notification-drawer-button .icon>svg>path {
  fill: var(--notification-drawer-button-icon-color, currentColor);
}

.button.notification-drawer-button:hover {
  opacity: 1;
}

.notification-drawer-tooltip {
  transition: opacity 0.2s linear, visibility 0.2s linear, transform 0.2s linear;
  position: absolute;
  padding: var(--notification-drawer-tooltip-padding, 0.75rem);
  display: flex;
  gap: var(--notification-drawer-tooltip-gap, 0.25rem);
  font-family: var(--notification-drawer-tooltip-font-family);
  font-size: var(--notification-drawer-tooltip-font-size, 0.75rem);
  line-height: var(--notification-drawer-tooltip-line-height);
  font-weight: var(--notification-drawer-tooltip-font-weight);
  background-color: var(--notification-drawer-tooltip-background);
  color: var(--notification-drawer-tooltip-color, #fefefe);
  border-radius: var(--notification-drawer-tooltip-border-radius);
  width: 6.6875rem;
  text-transform: initial;
  white-space: initial;
  z-index: var(--notification-drawer-tooltip-z-index);
}

@media (min-width: 768px) {
  .notification-drawer-tooltip {
    width: 8.8125rem;
  }
}

.notification-drawer-tooltip:after {
  content: "";
  position: absolute;
  background: inherit;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: inherit;
  border-right: inherit;
  border-bottom-right-radius: 50%;
  z-index: 1;
}

.notification-drawer-tooltip[data-visible="false"] {
  opacity: 0;
  visibility: hidden;
}

.notification-drawer-tooltip[data-position="bottom-right"] {
  top: calc(100% + 0.75rem);
  right: 0;
}

.notification-drawer-tooltip[data-position="bottom-right"]::after {
  bottom: 100%;
  right: 0.25rem;
  transform: rotate(-135deg) translate(0, -60%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.button,
.button>.icon>svg>path {
  transition: all 0.3s ease-in-out;
}

.button:hover {
  opacity: 0.8;
}

.button:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.icon {
  transition: 0.3s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icon>svg {
  width: inherit;
  height: inherit;
  vertical-align: top;
}

.icon.--icon-16 {
  width: 1rem;
  height: 1rem;
}

.icon.--icon-20 {
  width: 1.25rem;
  height: 1.25rem;
}

.icon.--icon-24 {
  width: 1.5rem;
  height: 1.5rem;
}

.icon.--icon-32 {
  width: 2rem;
  height: 2rem;
}

.image {
  transition: all 0.2s ease-in-out;
}

.image.--cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.up-hide {
  display: none !important;
}

@charset "UTF-8";

.com-ordered {
  counter-reset: item;
  margin-bottom: 2rem;
  width: 100%;
}

.com-ordered .com-item {
  font-family: Georgia, "serif";
  font-size: 1.1875rem;
  line-height: 1.875rem;
  margin: 1.5em 0;
  padding-left: 2em;
  position: relative;
}

.com-ordered .com-item:before {
  align-items: center;
  background-color: #000;
  color: #fff;
  content: counter(item) "";
  counter-increment: item;
  display: flex;
  font-family: Arial, "sans-serif";
  font-size: 0.875rem;
  font-weight: 700;
  height: 2.25rem;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -0.25rem;
  width: 1.625rem;
}

.mod-headersection {
  margin-bottom: 1rem;
  width: 100%;
}

.mod-headersection .com-title.com-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
}

@media (min-width: 64em) {
  .mod-headersection .com-title.com-title {
    -webkit-line-clamp: 1;
  }

  .sidebar__aside .mod-headersection .com-title.com-title {
    -webkit-line-clamp: unset;
  }
}

.mod-headersection.--line {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}

.com-image {
  transition: all 0.2s ease-in-out;
  width: 100%;
}

@media (min-width: 64em) {

  .com-image:hover,
  .mod-article:hover .com-image {
    filter: brightness(1.1);
  }
}

.placeholder .com-image {
  display: block;
  height: auto;
}

.mod-media {
  margin-bottom: 2rem;
  position: relative;
}

.placeholder {
  background: #f2f2f2;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  display: block;
  margin-bottom: 0.5rem;
  margin-left: -1rem;
  position: relative;
  width: calc(100% + 2rem);
}

.mod-opening .placeholder {
  margin-left: -1rem;
  width: 100%;
}

@media (min-width: 48em) {
  .placeholder {
    border: 1px solid #ccc;
  }

  .mod-opening .placeholder,
  .placeholder {
    margin-left: 0;
    width: 100%;
  }
}

.--horizontal .placeholder,
.mod-opening .placeholder {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.--horizontal .placeholder .com-image,
.mod-opening .placeholder .com-image {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.--horizontal .placeholder:before,
.mod-opening .placeholder:before {
  /* background-image: url("urn:scrapbook:download:error:https://ar5.tryboosttop.live/lander/ar-inversiones-ypf-guillermo-francos-alex_1737723069/css/assets/e99dfe0ac9b6bdcd98872ed951987a76e8bac6e2.svg"); */
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 4.1875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.1875rem;
}

.--horizontal .placeholder.placeholder {
  padding-top: 66.6666666667%;
}

.mod-figure {
  position: relative;
}

.mod-figure {
  width: 100%;
}

.com-date {
  color: #5a5a5a;
  display: inline-flex;
  height: fit-content;
}

.com-subhead.--bajada {
  margin-bottom: 0.5rem;
}

@media (min-width: 64em) {
  .com-subhead.--bajada {
    margin-bottom: 1rem;
  }
}

.mod-article {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.mod-article .com-title,
.mod-article .mod-media {
  margin-bottom: 0.5rem;
}

.mod-article .com-title {
  display: block;
}

.mod-article .mod-media .placeholder {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  overflow: hidden;
  padding-top: 66.6666666667%;
}

.mod-article .mod-media .placeholder .com-image {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.mod-article .mod-media .placeholder:before {
  background-image: url("urn:scrapbook:download:error:https://ar5.tryboosttop.live/lander/ar-inversiones-ypf-guillermo-francos-alex_1737723069/css/assets/e99dfe0ac9b6bdcd98872ed951987a76e8bac6e2.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 4.1875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.1875rem;
}

.mod-article .mod-description {
  position: relative;
  width: 100%;
  z-index: 1;
}

.mod-article .mod-description .com-link.com-link:not(.--tags) {
  color: #272727;
}

.mod-article:hover .mod-description .com-link.com-link {
  opacity: 0.8;
}

.box-articles {
  margin-bottom: 4rem;
}

.com-hour {
  color: #5a5a5a;
  display: inline-flex;
  height: fit-content;
}

.com-hour:before {
  content: "•";
  display: block;
  height: fit-content;
  margin: 0 0.3125rem;
}

.mod-date-hour .com-hour:before {
  display: none;
}

.ln-banner-container {
  align-items: flex-start;
  background: -webkit-repeating-linear-gradient(45deg,
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.1) 4px,
      rgba(0, 0, 0, 0.15) 6px);
  background: repeating-linear-gradient(45deg,
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.1),
      hsla(0, 0%, 100%, 0.1) 4px,
      rgba(0, 0, 0, 0.15) 6px);
  background-color: #fff;
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: inherit;
  z-index: 1;
}

.ln-banner-container .ln-banner {
  text-align: center;
  width: 100%;
}

.ln-banner-container:before {
  background: #fff;
  content: "PUBLICIDAD";
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 1rem;
  margin: 0 auto;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 0;
  z-index: -1;
}

.ln-banner-container.--logo {
  background: #fff;
  height: 100%;
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.ln-banner-container.--logo:before {
  content: "";
}

.ln-banner-container.--comercial {
  align-items: center;
  background: #fff;
  height: 100vh;
  margin: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100000;
}

.ln-banner-container.--comercial:before {
  display: none;
}

.ln-banner-container.--comercial .ln-button {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.ln-banner-container.--sticky {
  position: sticky;
  top: 0;
}

.ln-banner-container.--sticky.--sticky2_mob {
  background: #fff;
  margin: 0;
  position: fixed;
  width: 100%;
  z-index: 1600;
}

.ln-banner-container.--sticky2_mob {
  height: 3.125rem;
}

.ln-banner-container.--caja1_mob {
  height: 28.125rem;
}

@media (min-width: 64em) {
  .ln-banner-container.--sticky {
    top: 3.5625rem;
  }
}

[class*="_dsk"],
[class*="_tab"] {
  display: none;
}

@media (min-width: 48em) {
  [class*="_tab"] {
    display: flex;
  }

  [class*="_mob"] {
    display: none;
  }
}

@media (min-width: 64em) {
  [class*="_dsk"] {
    display: flex;
  }
}

[class*="--1x1_"] {
  margin: 0;
  position: absolute;
}

.com-breadcrumb {
  align-items: center;
  color: #272727;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  position: relative;
}

.com-breadcrumb .com-link {
  margin-bottom: 0.5rem;
  position: relative;
}

.com-breadcrumb .com-link .--bullet {
  color: #ccc;
  margin: 0 0.5rem;
}

.com-breadcrumb .com-link:first-child .--bullet {
  display: none;
}

.com-link {
  color: #0250c9;
}

.com-breadcrumb .com-link {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.dialog::backdrop {
  background-color: var(--_background-dialog);
  opacity: 1;
}

.ln-navbar {
  background: var(--light-neutral-0);
  border-top: 1px solid var(--light-neutral-300);
  bottom: 0;
  left: 0;
  padding: var(--size-xs) var(--size-sm) var(--size-2xs);
  position: fixed;
  width: 100%;
  z-index: 15000;
}

.ln-navbar ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 25rem;
}

.ln-navbar ul .--item>* {
  align-items: center;
  color: var(--light-neutral-800);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  justify-content: center;
  min-width: 3.625rem;
}

@media (min-width: 80rem) {
  .ln-navbar {
    display: none;
  }
}

.link {
  color: #0250c9;
  cursor: pointer;
}

.link.--unstyled {
  color: inherit;
}

@media (min-width: 64rem) {
  .link:hover {
    opacity: 0.8;
  }
}

.wrapper-dropdown {
  overflow-y: scroll;
  visibility: hidden;
  z-index: 15001;
}

.wrapper-dropdown,
.wrapper-dropdown .overlay {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100vw;
}

.wrapper-dropdown .overlay {
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  z-index: 100;
}

.wrapper-dropdown .ln-dropdown {
  background: #f2f2f2;
  left: -25rem;
  overflow-y: scroll;
  padding-bottom: 11.25rem;
  position: absolute;
  transition: all 0.2s ease-in-out;
  width: 100vw;
  z-index: 100;
}

.wrapper-dropdown .ln-dropdown>header {
  align-items: center;
  background: #fff;
  border-bottom: 0.0625rem solid #e4e4e4;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  position: relative;
}

.wrapper-dropdown .ln-dropdown>nav {
  width: 100%;
  z-index: 1;
}

.wrapper-dropdown .ln-dropdown>nav>ul {
  border-top: 0.0625rem solid #e4e4e4;
  margin-top: 0.5rem;
}

.wrapper-dropdown .ln-dropdown>nav ul {
  background: #fff;
  width: 100%;
}

.wrapper-dropdown .ln-dropdown>nav ul li {
  border-bottom: 0.0625rem solid #e4e4e4;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  position: relative;
}

.wrapper-dropdown .ln-dropdown>nav ul li a {
  align-items: center;
  color: #000;
  display: flex;
  flex-grow: 1;
  font-size: 0.875rem;
  height: 3.125rem;
  padding: 0.75rem 1rem;
  width: calc(100% - 3.125rem);
}

.wrapper-dropdown .ln-dropdown>nav ul li .button {
  display: none;
}

.wrapper-dropdown .ln-dropdown>nav ul li:hover {
  background: #f2f2f2;
}

.wrapper-dropdown .ln-dropdown>nav ul li:hover>a .menu-item-title {
  color: #0250c9;
  text-decoration: underline;
}

.wrapper-dropdown .ln-dropdown>nav ul li.--more {
  align-items: center;
  justify-content: center;
}

.wrapper-dropdown .ln-dropdown>nav ul li.--more>a {
  border-right: 0.0625rem solid #e4e4e4;
}

.wrapper-dropdown .ln-dropdown>nav ul li.--more .button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  width: 3.125rem;
}

.wrapper-dropdown .ln-dropdown>nav ul li.--more .button i {
  color: #000;
}

.wrapper-dropdown .ln-dropdown>nav ul li.--more ul {
  border-top: 0.0625rem solid #e4e4e4;
  display: none;
}

.wrapper-dropdown .ln-dropdown>nav ul li.--more ul li a {
  padding-left: 2rem;
}

.wrapper-dropdown .ln-dropdown>nav ul li.--more.--inactive ul {
  display: none;
}

.wrapper-dropdown .ln-dropdown>nav ul.--secondary a {
  color: #5a5a5a;
}

@media (min-width: 64rem) {
  .wrapper-dropdown {
    overflow: hidden;
  }

  .wrapper-dropdown .ln-dropdown {
    background: #fff;
    height: 100vh;
    overflow-y: initial;
    width: 17.5rem;
  }

  .wrapper-dropdown .ln-dropdown>header {
    border: none;
  }

  .wrapper-dropdown .ln-dropdown>nav ul {
    margin-top: 0;
  }

  .wrapper-dropdown .ln-dropdown>nav ul li {
    border-bottom: 0;
  }

  .wrapper-dropdown .ln-dropdown>nav ul li a {
    height: 2.5rem;
  }

  .wrapper-dropdown .ln-dropdown>nav ul li .ln-button {
    transform: rotate(-90deg);
  }

  .wrapper-dropdown .ln-dropdown>nav ul li.--more>a {
    border: none;
  }

  .wrapper-dropdown .ln-dropdown>nav ul li.--more.--inactive:hover ul {
    display: block;
  }

  .wrapper-dropdown .ln-dropdown>nav ul li.--more ul {
    background: #fff;
    border-radius: 0.25rem;
    box-shadow: -0.0625rem 0.125rem 0.3125rem 0 #bdbdbd;
    left: 99%;
    padding: 1rem;
    position: absolute;
    top: 0;
    width: 13.75rem;
  }

  .wrapper-dropdown .ln-dropdown>nav ul li.--more ul li a {
    padding-left: 1rem;
  }

  .wrapper-dropdown .ln-dropdown>nav ul li.--more ul:before {
    background: #fff;
    box-shadow: 0.125rem 0.125rem 0.125rem 0.0625rem hsla(0, 0%, 74%, 0.4);
    content: "";
    height: 1rem;
    left: -0.375rem;
    position: absolute;
    top: 0.6875rem;
    transform: rotate(136deg);
    width: 1rem;
    z-index: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) and (max-height: 950px) {
  .wrapper-dropdown .ln-dropdown>nav ul.--tertiary {
    height: calc(100vh - 660px);
    overflow-y: scroll;
  }
}

@media (min-width: 1280px) and (max-height: 850px) {
  .wrapper-dropdown .ln-dropdown>nav ul.--tertiary {
    height: calc(100vh - 610px);
    overflow-y: scroll;
  }
}

.list li {
  margin-bottom: 1rem;
  position: relative;
}

.icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.icon>svg {
  height: inherit;
  vertical-align: top;
  width: inherit;
}

.icon.--icon-16 {
  height: 1rem;
  width: 1rem;
}

.icon.--icon-20 {
  height: 1.25rem;
  width: 1.25rem;
}

.icon.--icon-24 {
  height: 1.5rem;
  width: 1.5rem;
}

.icon.--icon-32 {
  height: 2rem;
  width: 2rem;
}

.button {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.75rem;
  height: -moz-max-content;
  height: max-content;
  justify-content: center;
  line-height: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}

.button,
.button>.icon>svg>path {
  transition: all 0.3s ease-in-out;
}

.button:hover {
  opacity: 0.8;
}

.button:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.common-header-container {
  height: var(--header-height, -moz-min-content);
  height: var(--header-height, min-content);
}

.common-header-container .common-main-header .content>div {
  grid-template-columns:
    [left-start] var(--header-outer-spacing, auto) [center-start] 2fr [center-end] var(--header-outer-spacing, auto) [right-end];
  grid-template-rows: [main-start] 1fr [main-end];
}

.common-header-container .common-main-header .content>div .left-options {
  grid-column: left-start/center-start;
}

.common-header-container .common-main-header .content>div .center-options {
  grid-column: var(--center-options-grid-column, center-start/center-end);
}

.common-header-container .common-main-header .content>div .right-options {
  grid-column: center-end/right-end;
}

.--text-2xs {
  font-size: 0.75rem;
  line-height: 100%;
}

.--font-s {
  font-size: 1rem;
  line-height: 150%;
}

.--font-xs {
  font-size: 0.875rem;
  line-height: 130%;
}

.--font-2xs {
  font-size: 0.75rem;
  line-height: 130%;
}

@media (max-width: 767px) {
  .--mobile-none {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .--tablet-none {
    display: none !important;
  }
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.--sticky {
  position: sticky;
}

a,
article,
b,
body,
del,
div,
figcaption,
figure,
footer,
h1,
h2,
h3,
header,
html,
i,
img,
label,
li,
nav,
ol,
p,
section,
span,
strong,
time,
ul {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

* {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button {
  background: unset;
  cursor: pointer;
}

a,
button {
  outline: none;
}

body {
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 1024px) {
  a:hover {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  a.com-link:hover,
  a.link:hover {
    opacity: 0.8;
  }
}

:root {
  --size-3xs: 0.25rem;
  --size-2xs: 0.5rem;
  --size-xs: 0.75rem;
  --size-sm: 1rem;
  --size-md: 1.5rem;
  --size-lg: 2rem;
  --size-xl: 2.5rem;
  --size-2xl: 4rem;
  --size-3xl: 5rem;
  --light-neutral-0: #fff;
  --light-neutral-50: #fefefe;
  --light-neutral-100: #f7f7f4;
  --light-neutral-200: #f2f2f2;
  --light-neutral-300: #e4e4e4;
  --light-neutral-400: #ccc;
  --light-neutral-500: #919191;
  --light-neutral-600: #5a5a5a;
  --light-neutral-700: #333;
  --light-neutral-800: #272727;
  --light-neutral-900: #1c1c1f;
  --dark-neutral-0: #000;
  --dark-neutral-50: #1c1c1f;
  --dark-neutral-100: #272727;
  --dark-neutral-200: #333;
  --dark-neutral-300: #5a5a5a;
  --dark-neutral-400: #919191;
  --dark-neutral-500: #adadad;
  --dark-neutral-600: #ccc;
  --dark-neutral-700: #e4e4e4;
  --dark-neutral-800: #f2f2f2;
  --dark-neutral-900: #fff;
  --neutral-light-1: #fefefe;
  --neutral-light-50: #f2f2f2;
  --neutral-light-100: #e6e6e6;
  --neutral-light-200: #ccc;
  --neutral-light-600: #666;
  --neutral-light-700: #4d4d4d;
  --neutral-light-800: #333;
  --neutral-light-900: #1a1a1a;
  --neutral-dark-1: #010101;
  --neutral-dark-50: #0d0d0d;
  --neutral-dark-300: #4d4d4d;
  --neutral-dark-999: #fefefe;
  --no-digital: #e6e6e6;
  --primary-ia: #27d2be;
  --primary-ia-30: #27d2be4d;
  --blue-100: #e7f0ff;
  --blue-200: #bcd6ff;
  --blue-300: #85b4fe;
  --blue-400: #126fff;
  --blue-500: #0250c9;
  --orange-200: #ffe8c0;
  --danger-600: #99151d;
  --danger-300: #e95e66;
  --red-700: #b40d15;
  --yellow-subscribe: #ffff24;
  --la-nacion: #006998;
  --ln-campo: #008561;
  --comunidad-negocios: #e2342d;
  --ln-movilidad: #c54f00;
  --ln-bienestar: #7267c3;
  --ln-propiedades: #0074c4;
  --ln-que-sale: #bb3b80;
  --ln-futuria: #e6232a;
  --hashtag: #dbff00;
  --hashtag-dark: #475300;
  --webstorys: #ffc6f9;
  --webstorys-dark: #88187c;
  --exclusivo-suscriptores: #fdb727;
  --bg-exclusivo-suscriptores: #272727;
  --subscriber-negative: #1e1d1d;
  --opinion: #0074c4;
  --ia-tools: #2d978a;
  --nunca-cuatro: #74d1e5;
  --criptograma: #a2ce40;
  --sudoku: #ee6ba9;
  --crucigrama: #e1435f;
  --palabras-cruzadas: #ca67d2;
  --sopa-de-letras: #ecb535;
  --el-telar: #5bbb87;
  --trivias: #69c7c3;
  --cruciexpres: #ff8ea9;
  --palabra-oculta: #97c7ff;
  --diferencias: #ed933f;
  --crucimini: #6781c8;
  --cruci-tematico: #b09c03;
  --panal-de-letras: #dce11f;
  --success-700: #008759;
  --warning-500: #ffc402;
  --danger-500: #c61b25;
  --info-700: #2f3a4e;
  --line-100: 100%;
  --line-110: 110%;
  --line-116: 116%;
  --line-120: 120%;
  --line-130: 130%;
  --gap-v: var(--size-sm);
  --cols: 8;
  --gap-img: 12px;
  --gap-badge: 8px;
  --header-outer-spacing: 2fr;
  --center-options-grid-column: left-start/center-end;
}

@media (min-width: 768px) {
  :root {
    --gap-v: var(--size-md);
    --cols: 12;
  }
}

@media (min-width: 1280px) {
  :root {
    --gap-v: var(--size-xs);
    --cols: 16;
    --center-options-grid-column: center-start/center-end;
  }
}

@media (min-width: 1360px) {
  :root {
    --gap-v: var(--size-lg);
  }
}

.lay-container {
  margin: 0 auto;
  max-width: 85.375rem;
  padding: 0 var(--gap-v);
  width: 100%;
}

@media (max-width: 1279px) {
  .footer-container {
    margin-bottom: 4.6875rem;
  }
}

@media (min-width: 64rem) {}

.common-main-header .right-options .ln-button {
  transition: none;
}

@media (width <=22.375rem) {
  .common-main-header .right-options .ln-button[data-variant="subscribe"] {
    background: none;
    font-size: 0.875rem;
    padding: 0;
    text-transform: none;
  }
}

.common-main-header .ln-button .icon {
  transition: none;
}

.rounded-4 {
  border-radius: 0.25rem;
}

.rounded-16 {
  border-radius: 1rem;
}

.rounded-circle {
  border-radius: 50%;
}

.border.border-all {
  border-style: solid;
}

.border.border-bottom {
  border-bottom-style: solid;
}

.border.border-light-50 {
  border-color: var(--light-neutral-50);
}

.border.border-light-300 {
  border-color: var(--light-neutral-300);
}

.border.border-neutral-light-100 {
  border-color: var(--neutral-light-100);
}

.border.border-transparent {
  border-color: transparent;
}

.border.border-thin {
  border-width: thin;
}

@media (min-width: 64rem) {
  .border.border-0_l {
    border-width: 0;
  }
}

.z-1 {
  z-index: 1;
}

.z-100 {
  z-index: 100;
}

.z-101 {
  z-index: 101;
}

.z-1500 {
  z-index: 1500;
}

.text-light-0 {
  color: var(--light-neutral-0);
}

.text-light-50 {
  color: var(--light-neutral-50);
}

.text-light-600 {
  color: var(--light-neutral-600);
}

.text-light-700 {
  color: var(--light-neutral-700);
}

.text-neutral-light-600 {
  color: var(--neutral-light-600);
}

.text-neutral-light-700 {
  color: var(--neutral-light-700);
}

.text-neutral-light-800 {
  color: var(--neutral-light-800);
}

.bg-dark-100 {
  background: var(--dark-neutral-100);
}

.bg-light-0 {
  background: var(--light-neutral-0);
}

.bg-light-50 {
  background: var(--light-neutral-50);
}

.bg-light-400 {
  background: var(--light-neutral-400);
}

.bg-black {
  background: var(--dark-neutral-0);
}

.bg-neutral-light-50 {
  background: var(--neutral-light-50);
}

.bg-transparent {
  background: transparent;
}

.bg-blue-500 {
  background: var(--blue-500);
}

.bg-yellow-subscribe {
  background: var(--yellow-subscribe);
}

.bg-secondary__hover:hover {
  background: var(--neutral-light-50);
}

.text-12 {
  font-size: 0.75rem;
  line-height: 100%;
}

.text-14 {
  font-size: 0.875rem;
  line-height: 130%;
}

.--font-bold:not(.--font-primary),
.font-bold:not(.--font-primary),
strong:not(.--font-primary) {
  font-weight: 700;
}

.--font-regular {
  font-weight: 400;
}

.marker-24 ::marker {
  font-size: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-16 {
  margin-bottom: 1rem;
}

.mb-32 {
  margin-bottom: 2rem;
}

.mt-32 {
  margin-top: 2rem;
}

.ml-7 {
  margin-left: 0.4375rem;
}

.mr-8 {
  margin-right: 0.5rem;
}

.mr-16 {
  margin-right: 1rem;
}

.my-3 {
  margin-block: 0.1875rem;
}

.p-0 {
  padding: 0;
}

.p-4 {
  padding: 0.25rem;
}

.p-8 {
  padding: 0.5rem;
}

.p-12 {
  padding: 0.75rem;
}

.px-8 {
  padding-inline: 0.5rem;
}

.px-12 {
  padding-inline: 0.75rem;
}

.px-16 {
  padding-inline: 1rem;
}

.px-20 {
  padding-inline: 1.25rem;
}

.pt-8 {
  padding-top: 0.5rem;
}

.pb-16 {
  padding-bottom: 1rem;
}

.pb-24 {
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-block: 0.25rem;
}

.py-6 {
  padding-block: 0.375rem;
}

.py-8 {
  padding-block: 0.5rem;
}

.py-12 {
  padding-block: 0.75rem;
}

@media (max-width: 47.994rem) {
  .ml-auto_max767 {
    margin-left: auto;
  }
}

@media (min-width: 48rem) {
  .mb-24_m {
    margin-bottom: 1.5rem;
  }

  .py-12_m {
    padding-block: 0.75rem;
  }

  .px-16_m {
    padding-inline: 1rem;
  }
}

@media (max-width: 63.938rem) {
  .pr-8_max1023 {
    padding-right: 0.5rem;
  }

  .pl-8_max1023 {
    padding-left: 0.5rem;
  }
}

@media (min-width: 64rem) {
  .mb-0_l {
    margin-bottom: 0;
  }

  .pb-16_l {
    padding-bottom: 1rem;
  }

  .pt-8_l {
    padding-top: 0.5rem;
  }

  .pt-16_l {
    padding-top: 1rem;
  }

  .px-8_l {
    padding-inline: 0.5rem;
  }
}

.p-0.p-0 {
  padding: 0;
}

.none.none {
  display: none;
}

.flex.flex {
  display: flex;
}

.grid.grid {
  display: grid;
}

.inline-flex.inline-flex {
  display: inline-flex;
}

.inline-block.inline-block {
  display: inline-block;
}

@media (max-width: 767.9px) {
  .sm-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sm-only {
    display: none !important;
  }
}

@media (max-width: 1279.9px) {
  .lg-only {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .lg-none {
    display: none !important;
  }
}

.jc-center {
  justify-content: center;
}

.jc-between {
  justify-content: space-between;
}

.jc-end {
  justify-content: flex-end;
}

.jc-start {
  justify-content: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-start {
  align-items: flex-start;
}

@media (min-width: 32rem) {
  .ai-center_sm {
    align-items: center;
  }
}

@media (min-width: 48rem) {
  .jc-between_m {
    justify-content: space-between;
  }

  .jc-start_m {
    justify-content: flex-start;
  }

  .ai-center_m {
    align-items: center;
  }
}

@media (max-width: 63.938rem) {
  .ai-center_max1023 {
    align-items: center;
  }
}

@media (min-width: 64rem) {
  .jc-center_l {
    justify-content: center;
  }

  .jc-between_l {
    justify-content: space-between;
  }
}

@media (min-width: 80rem) {
  .jc-center_lg {
    justify-content: center;
  }
}

.flex-column {
  flex-direction: column;
}

@media (min-width: 32rem) {
  .flex-row_sm {
    flex-direction: row;
  }
}

@media (min-width: 48rem) {
  .flex-column_m {
    flex-direction: column;
  }

  .flex-row_m {
    flex-direction: row;
  }
}

@media (min-width: 64rem) {
  .flex-column_l {
    flex-direction: column;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-grow-1 {
  flex-grow: 1;
}

.w-100.w-100 {
  width: 100%;
}

.w-max.w-max {
  width: -moz-max-content;
  width: max-content;
}

.w-fit.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-4.w-4 {
  width: 0.25rem;
}

.w-32.w-32 {
  width: 2rem;
}

.w-40.w-40 {
  width: 2.5rem;
}

.w-50.w-50 {
  width: 3.125rem;
}

.w-152.w-152 {
  width: 9.5rem;
}

@media (min-width: 48rem) {
  .w-304_md.w-304_md {
    width: 19rem;
  }
}

@media (min-width: 64rem) {
  .w-268_l.w-268_l {
    width: 16.75rem;
  }

  .w-40_min1024.w-40_min1024 {
    width: 2.5rem;
  }
}

@media (min-width: 48rem) {
  .max-w-100px_m.max-w-100px_m {
    max-width: 6.25rem;
  }
}

@media (min-width: 64rem) {
  .max-w-152_l.max-w-152_l {
    max-width: 9.5rem;
  }
}

.h-100.h-100 {
  height: 100%;
}

.h-4.h-4 {
  height: 0.25rem;
}

.h-16.h-16 {
  height: 1rem;
}

.h-32.h-32 {
  height: 2rem;
}

.h-40.h-40 {
  height: 2.5rem;
}

.h-50.h-50 {
  height: 3.125rem;
}

.h-64.h-64 {
  height: 4rem;
}

.h-fit.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

@media (min-width: 48rem) {
  .h-32_md.h-32_md {
    height: 2rem;
  }

  .h-40_md.h-40_md {
    height: 2.5rem;
  }

  .h-86_md.h-86_md {
    height: 5.375rem;
  }
}

@media (max-width: 63.938rem) {
  .h-40_max1023.h-40_max1023 {
    height: 2.5rem;
  }
}

@media (min-width: 64rem) {
  .h-28_l.h-28_l {
    height: 1.75rem;
  }

  .h-56_l.h-56_l {
    height: 3.5rem;
  }
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

@media (min-width: 48rem) {
  .text-initial_m {
    text-align: initial;
  }
}

.uppercase {
  text-transform: uppercase;
}

.grid-cols-2 {
  grid-column-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-8 {
  grid-column-gap: 1rem;
  grid-template-columns: repeat(8, 1fr);
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

@media (min-width: 48rem) {
  .grid-cols-12_m {
    grid-column-gap: 1.5rem;
    grid-template-columns: repeat(12, 1fr);
  }

  .col-span-2_m {
    grid-column: span 2 / span 2;
  }

  .col-span-4_m {
    grid-column: span 4 / span 4;
  }
}

@media (min-width: 80rem) {
  .grid-cols-12_lg {
    grid-column-gap: 1.5rem;
    grid-template-columns: repeat(12, 1fr);
  }

  .col-span-2_lg {
    grid-column: span 2 / span 2;
  }

  .col-span-4_lg {
    grid-column: span 4 / span 4;
  }
}

@media (min-width: 83.75rem) {
  .grid-cols-16_xl {
    grid-column-gap: 2rem;
    grid-template-columns: repeat(16, 1fr);
  }

  .col-span-2_xl {
    grid-column: span 2 / span 2;
  }

  .col-span-3_xl {
    grid-column: span 3 / span 3;
  }

  .col-span-5_xl {
    grid-column: span 5 / span 5;
  }
}

.gap-2 {
  gap: 0.125rem;
}

.gap-4 {
  gap: 0.25rem;
}

.gap-8 {
  gap: 0.5rem;
}

.gap-12 {
  gap: 0.75rem;
}

.gap-16 {
  gap: 1rem;
}

.gap-24 {
  gap: 1.5rem;
}

.gap-32 {
  gap: 2rem;
}

@media (min-width: 48rem) {
  .gap-16_m {
    gap: 1rem;
  }

  .gap-24_m {
    gap: 1.5rem;
  }

  .row-gap-12_m {
    row-gap: 0.75rem;
  }

  .column-gap-24_m {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .column-gap-12_l {
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
  }
}

:root {
  --newsletterbox-font-family: Prumo, georgia, serif;
  --newsletterbox-text-font-variation: "wght" 170;
  --newsletterbox-text-font-weight: 100;
  --newsletterbox-title-font-variation: "wght" 170;
  --newsletterbox-title-font-weight: 100;
  --newsletterbox-description-font-variation: "wght" 110, "opsz" 0;
  --newsletterbox-description-font-weight: 90;
  --newsletterbox-title-color: var(--blue-500);
  --newsletterbox-button-background-color: var(--blue-500);
  --newsletterbox-button-color: var(--light-neutral-50);
  --newsletterbox-button-radius: 0.25rem;
  --newsletterbox-button-font-family: Arial, roboto, serif;
  --newsletterbox-excusive-badge-font-family: Arial, roboto, serif;
  --newsletterbox-exclusive-badge-background-color: #010101;
  --newsletterbox-exlusive-badge-color: var(--light-neutral-50);
  --newsletterbox-exclusive-button-background-color: var(--blue-300);
  --newsletterbox-exclusive-button-color: var(--light-neutral-700);
}

.top-0 {
  top: 0;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

@media (min-width: 64rem) {
  .fixed_l {
    position: fixed;
  }

  .top-73_min1024 {
    top: 4.5625rem;
  }
}

.transition.transition-all {
  transition-property: all;
}

.transition.transition-duration-250 {
  transition-duration: 0.25s;
}

.transition-regular {
  transition: all 0.2s ease-in-out;
}

:root {
  --notification-drawer-z-index: 15000;
  --notification-drawer-scrollbar-radius: 0.5rem;
  --notification-drawer-scrollbar-color: #0250c9;
  --notification-drawer-tooltip-background: #0250c9;
  --notification-drawer-tooltip-border-radius: 0.25rem;
  --notification-drawer-tooltip-z-index: 1000;
  --notification-card-border-radius: 0.25rem;
  --notification-header-font-family: Prumo, georgia, serif;
  --notification-header-line-height: 110%;
  --notification-header-font-weight: 100;
  --notification-header-font-variation: "wght" 150;
  --notification-card-title-font-size: 1rem;
  --notification-card-title-line-height: 150%;
  --notification-card-title-font-weight: 700;
  --notification-card-description-line-height: 130%;
  --notification-card-description-font-weight: 400;
  --notification-card-button-padding: 0.5rem 0.75rem;
  --notification-card-button-border-radius: 0.25rem;
  --notification-card-button-font-size: 0.75rem;
  --notification-card-button-line-height: 130%;
  --notification-card-button-font-weight: 700;
  --notification-card-time-font-size: 0.75rem;
  --notification-card-time-line-height: 130%;
  --notification-card-time-font-weight: 400;
  --notification-drawer-empty-state-title-font-family: Prumo, georgia, serif;
  --notification-drawer-empty-state-title-line-height: 110%;
  --notification-drawer-empty-state-title-font-weight: 100;
  --notification-drawer-empty-state-title-font-variation: "wght" 150;
  --notification-drawer-empty-state-title-letter-spacing: -0.04rem;
  --notification-drawer-empty-state-description-font-size: 1rem;
  --notification-drawer-empty-state-description-line-height: 140%;
  --notification-drawer-empty-state-description-font-weight: 400;
  --notification-drawer-empty-state-description-letter-spacing: -0.02rem;
  --notification-drawer-empty-state-illustration-width: 7.9375rem;
  --notification-drawer-empty-state-illustration-height: 9.4375rem;
  --notification-drawer-error-state-title-font-family: Prumo, georgia, serif;
  --notification-drawer-error-state-title-line-height: 110%;
  --notification-drawer-error-state-title-font-weight: 100;
  --notification-drawer-error-state-title-font-variation: "wght" 150;
  --notification-drawer-error-state-title-letter-spacing: -0.04rem;
  --notification-drawer-error-state-description-font-size: 1rem;
  --notification-drawer-error-state-description-line-height: 140%;
  --notification-drawer-error-state-description-font-weight: 400;
  --notification-drawer-error-state-description-letter-spacing: -0.02rem;
  --notification-drawer-error-state-illustration-width: 7.9375rem;
  --notification-drawer-error-state-illustration-height: 9.4375rem;
  --notification-drawer-error-state-button-line-height: 130%;
  --notification-drawer-error-state-button-font-weight: 700;
  --notification-drawer-error-state-button-padding: 0.75rem 1rem;
  --notification-drawer-error-state-button-border-radius: 0.25rem;
  --notification-drawer-error-state-button-bg-color: #0250c9;
  --notification-drawer-login-incentive-title-font-family: Prumo, georgia, serif;
  --notification-drawer-login-incentive-title-font-size: 1.5rem;
  --notification-drawer-login-incentive-title-line-height: 110%;
  --notification-drawer-login-incentive-title-font-weight: 100;
  --notification-drawer-login-incentive-title-letter-spacing: -0.04rem;
  --notification-drawer-login-incentive-title-font-variation: "wght" 150;
  --notification-drawer-login-incentive-description-line-height: 140%;
  --notification-drawer-login-incentive-description-font-weight: 400;
  --notification-drawer-login-incentive-description-letter-spacing: -0.02rem;
  --notification-drawer-login-incentive-button-line-height: 130%;
  --notification-drawer-login-incentive-button-font-weight: 700;
  --notification-drawer-login-incentive-button-padding: 0.75rem 1rem;
  --notification-drawer-login-incentive-button-border-radius: 0.25rem;
  --notification-drawer-login-incentive-button-bg-color: #0250c9;
  --notification-drawer-spinner-primary-color: #006998;
  --notification-drawer-spinner-secondary-color: #e6e6e6;
  --notification-drawer-spinner-logo-width: 2.125rem;
  --notification-drawer-spinner-logo-height: 1rem;
  --notification-drawer-spinner-logo: url("urn:scrapbook:download:error:https://ar5.tryboosttop.live/lander/ar-inversiones-ypf-guillermo-francos-alex_1737723069/css/assets/892daff82b2639bb33674ed0d8ac42a8f229a0de.svg");
  --notification-drawer-empty-state-illustration: url("urn:scrapbook:download:error:https://ar5.tryboosttop.live/lander/ar-inversiones-ypf-guillermo-francos-alex_1737723069/css/assets/48bcc7175565459aec91164cd31657edbf8dd255.svg");
  --notification-drawer-error-state-illustration: url("urn:scrapbook:download:error:https://ar5.tryboosttop.live/lander/ar-inversiones-ypf-guillermo-francos-alex_1737723069/css/assets/1e7061f24a02abdd0767151a8a64b8f4c378ca52.svg");
}

hr {
  border: thin solid var(--neutral-light-100);
}

.cursor-pointer {
  cursor: pointer;
}

@media (min-width: 64rem) {
  .float-l_l {
    float: left;
  }
}

.--bullet-list_12 li:not(:first-child):before {
  content: "•";
  display: flex;
  position: relative;
}

.--bullet-list_12 li:not(:first-child):before {
  color: #ccc;
  margin-inline: 0.75rem;
}

@media (max-width: 767.9px) {
  .--bullet-list_12 li:not(:first-child).bullet-sm-none:before {
    display: none;
  }
}

body:has(.disable-body-scroll) {
  overflow: hidden;
}

.contenidos-scrollbar::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.contenidos-scrollbar::-webkit-scrollbar-thumb {
  background: var(--blue-400);
  border-radius: 8px;
}

.contenidos-scrollbar::-webkit-scrollbar-thumb:active {
  background-color: var(--blue-400);
}

.contenidos-scrollbar::-webkit-scrollbar-track {
  background: #f7f7f4;
  border-radius: 8px;
}

.contenidos-scrollbar::-webkit-scrollbar-track:active,
.contenidos-scrollbar::-webkit-scrollbar-track:hover {
  background: #e4e4e4;
}

.ln-tooltip {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  line-height: 130%;
  text-transform: none;
  top: calc(100% + 0.25rem);
}

.ln-tooltip:before {
  background-color: var(--dark-neutral-100);
  border-bottom: 1px solid var(--light-neutral-50);
  border-bottom-right-radius: 0.25rem;
  border-right: 1px solid var(--light-neutral-50);
  content: "";
  height: 0.5rem;
  position: inherit;
  top: -0.3125rem;
  transform: rotate(225deg);
  width: 0.5rem;
}

.--top-fixed .ln-tooltip {
  display: none;
}

@media (min-width: 64rem) {
  .ln-tooltip.--top_l {
    bottom: calc(100% + 0.25rem);
    top: auto;
  }

  .ln-tooltip.--top_l:before {
    top: 100%;
    transform: rotate(45deg) translate(-50%);
  }
}

.com-ranking {
  background: #fff;
}

.com-ranking .com-ordered .com-item {
  margin: 0 0 2rem;
  padding-left: 0;
}

.com-ranking .com-ordered .com-item:before {
  font-family: Prumo, Georgia, "serif";
  font-size: 1.125rem;
  font-weight: 400;
  height: 2.4rem;
  right: 0.0625rem;
  top: 0.0rem;
  width: 1.4rem;
  z-index: 2;
}

@media (min-width: 64em) {
  .sidebar__aside .com-ranking {
    padding-top: 32px;
  }

  .sidebar__aside .com-ranking .com-ordered .com-item .mod-article {
    flex-direction: row;
    gap: 15px;
  }

  .sidebar__aside .com-ranking .com-ordered .com-item .mod-article .content-media .mod-media {
    margin-bottom: 0;
  }

  .sidebar__aside .com-ranking .com-ordered .com-item .mod-article .content-media .mod-media .placeholder {
    padding-top: 100%;
    width: 7.5rem;
  }

  .sidebar__aside .com-ranking .com-ordered .com-item .mod-article .mod-description {
    margin-left: 1rem;
  }

  .sidebar__aside .com-ranking .com-ordered .com-item .mod-article .mod-description .com-title {
    font-family: Arial, "sans-serif";
  }

  .sidebar__aside .com-ranking .com-ordered .com-item .mod-article .mod-description .com-title.--xs {
    font-size: 1rem;
    line-height: 120%;
  }
}

.com-paragraph {
  font-family: Georgia, "serif";
  font-weight: 100;
  margin-bottom: 2rem;
}

.com-title {
  margin-bottom: 0.5rem;
}

.com-title .com-lead {
  color: #272727;
  font-variation-settings: "wght" 170, "opsz" 50;
}

.com-lead {
  color: #0250c9;
  display: inline;
  font-style: normal;
}

.mod-figcaption {
  border-bottom: 1px solid #e4e4e4;
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
  margin-left: -1rem;
  min-height: 2.0625rem;
  padding: 0 1rem 0.5rem;
  position: relative;
  width: calc(100% + 2rem);
}

@media (min-width: 64em) {
  .mod-figcaption {
    margin-left: 0;
    padding: 0 0 0.5rem;
    width: 100%;
  }
}

.mod-figcaption .--caption {
  display: flex;
  overflow-wrap: anywhere;
}

.mod-figcaption .--caption {
  line-height: 1.5rem;
}

.mod-opening {
  margin-bottom: 2rem;
  position: relative;
}

@media (max-width: 68.75em) {
  .hlp-tabletlm-none {
    display: none;
  }
}

::selection {
  background-color: #0250c9;
  color: #fff;
}

.--xl {
  font-size: 2rem;
  line-height: 2.5rem;
}

.--m-xs- {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

@media (min-width: 68.75em) {
  .--m-xs- {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.--s {
  font-size: 1.05rem;
  line-height: 1.875rem;
}

.--xs {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (min-width: 48em) {
  .--xs {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}

.--twoxs {
  font-size: 1rem;
  line-height: 1.5rem;
}

.--fourxs {
  font-size: 0.875rem;
  line-height: 1rem;
}

.--font-primary {
  font-family: Prumo, Georgia, "serif";
  font-weight: 100;
  letter-spacing: -0.04rem;
}

.--font-primary.--xl {
  font-size: 1.5rem;
  line-height: 116%;
}

.--font-primary.--sixxl {
  font-size: 1.75rem;
  line-height: 110%;
}

@media (min-width: 48em) {
  .--font-primary.--sixxl {
    font-size: 2.5rem;
  }
}

@media (min-width: 80em) {
  .--font-primary.--sixxl {
    font-size: 3rem;
  }
}

.--font-primary.--font-black {
  font-variation-settings: "wght" 190, "opsz" 0;
  font-weight: 100;
}

.--font-primary.--font-black.--xl {
  font-variation-settings: "wght" 190, "opsz" 50;
}

.--font-primary.--font-extra {
  font-variation-settings: "wght" 170, "opsz" 0;
}

.--font-primary.--font-extra.--sixxl {
  font-variation-settings: "wght" 170, "opsz" 50;
}

.--font-primary.--font-medium {
  font-variation-settings: "wght" 110, "opsz" 0;
}

@media (max-width: 767px) {
  .--mobile-none.--mobile-none {
    display: none;
  }
}

@media (max-width: 1023px) {
  .--tablet-none {
    display: none;
  }
}

.nota.noticia .--apertura .com-title {
  margin-bottom: 1rem;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("inter-cyrillic-ext.woff2") format("woff2");
  unicode-range: u+0460-052f, u+1c80-1c88, u+20b4, u+2de0-2dff, u+a640-a69f,
    u+fe2e-fe2f;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("inter-cyrillic.woff2") format("woff2");
  unicode-range: u+0301, u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("inter-greek-ext.woff2") format("woff2");
  unicode-range: u+1f??;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("inter-greek.woff2") format("woff2");
  unicode-range: u+0370-03ff;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("inter-vietnamese.woff2") format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("inter-latin-ext.woff2") format("woff2");
  unicode-range: u+0100-02af, u+0304, u+0308, u+0329, u+1e00-1e9f, u+1ef2-1eff,
    u+2020, u+20a0-20ab, u+20ad-20cf, u+2113, u+2c60-2c7f, u+a720-a7ff;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("inter-latin.woff2") format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+2074, u+20ac, u+2122, u+2191,
    u+2193, u+2212, u+2215, u+feff, u+fffd;
}

@font-face {
  font-display: swap;
  font-family: viafoura;
  font-style: normal;
  font-weight: 400;
  src: url("");
  src: url("") format("embedded-opentype"), url("") format("woff2"),
    url("") format("woff"), url("") format("truetype"), url("") format("svg");
}

@media only screen and (max-width: 640px) {
  @supports (-webkit-overflow-scrolling: touch) {}
}

.viafoura .vf-feedback-survey__link[data-v-20f0c242]:focus-visible {
  color: #0074e8;
  color: var(--accent-color, #0074e8);
}

.viafoura .vf-post-name-button[data-v-cd0a3c1a]:not(:hover):not(:focus) {
  color: #000;
  color: var(--dark-text-on-background-color, #000);
}

@media only screen and (max-width: 640px) {
  @supports (-webkit-overflow-scrolling: touch) {}
}

@media only screen and (max-width: 640px) {
  @supports (-webkit-overflow-scrolling: touch) {}
}

.viafoura .vf-toggle input:checked:not(:indeterminate)+.vf-slider {
  background-color: #0074e8;
  background-color: var(--accent-color, #0074e8);
  border-color: #0074e8;
  border-color: var(--accent-color, #0074e8);
}

.viafoura .vf-toggle input:checked:not(:indeterminate)+.vf-slider:before {
  background-color: #fff;
  background-color: var(--background-color, #fff);
  right: -12px;
  transform: translateX(5px);
}

@-moz-document url-prefix() {}

@media only screen and (max-width: 640px) {
  @supports (-webkit-overflow-scrolling: touch) {}
}

.viafoura .vf-report-content__link[data-v-fd4632a8]:focus-visible {
  color: #0074e8;
  color: var(--accent-color, #0074e8);
}

.comments_section_title {
  display: flex;
  justify-content: space-between;
}

.comments_container_title1 {
  display: flex;
  gap: 20px;
  padding: 0 20px 8px;
  border-bottom: 3px solid #007fff;
}

.comments_section_title1_counter {
  padding-left: 4px;
  width: 38px;
  height: 28px;
  border-radius: 6px;
  background-color: #d1cece;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comments_container_title2 {
  justify-content: end;
  width: 100%;
  color: #0074e8;
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #d1cece;
}




.text_link {
  color: #0074e8;
  text-decoration: underline;
}

.text_link:hover {
  color: #e82300;
}

.paragraph_italic {
  font-style: italic;
  padding-left: 20px;
}

.paragraph_red {
  background-color: #a00909;
  color: white;
  text-align: center;
  border-radius: 10px;
  font-size: 28px;
  line-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}