@font-face {
  font-display: swap;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/roboto-v30-latin-300.woff2) format('woff2');
}

@font-face {
  font-display: swap;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/roboto-v30-latin-regular.woff2) format('woff2');
}

@font-face {
  font-display: swap;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  src: url(/fonts/roboto-v30-latin-500.woff2) format('woff2');
}

@font-face {
  font-display: swap;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  src: url(/fonts/roboto-v30-latin-700.woff2) format('woff2');
}

@font-face {
  font-display: swap;
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  src: url(/fonts/roboto-v30-latin-700italic.woff2) format('woff2');
}

form.form-container button[type='submit']:not(:disabled):hover {
  background-color: #f00;
  color: #fff !important;
  text-align: center;
}

.name {
  font-weight: bold;
}

.text-art p {
  margin-bottom: 1rem;
}

.blue-text {
  color: #2b6cb0;
  font-weight: 600;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  max-width: 640px;
  width: 100%;

  padding: 18px 20px;
  margin: 20px auto;

  background: #151617;
  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;
}

.warning-box__dot {
  flex: 0 0 auto;

  width: 14px;
  height: 14px;
  margin-top: 8px;

  background: #8b241f;
  border-radius: 50%;
}

.warning-box__text {
  margin: 0;

  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .warning-box {
    gap: 14px;
    padding: 16px;
  }

  .warning-box__text {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .warning-box__dot {
    width: 12px;
    height: 12px;
    margin-top: 5px;
  }
}

body div.income-simulator {
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
  padding: 36px;

  background: linear-gradient(135deg, #073764 0%, #062948 100%);
  border: 1px solid rgba(76, 121, 170, 0.35);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);

  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

body div.income-simulator :where(.income-simulator__title) {
  margin: 0 0 28px;
  padding-bottom: 22px;

  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #f5f8ff;

  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

body div.income-simulator :where(.income-simulator__range-block) {
  margin-bottom: 36px;
}

body div.income-simulator :where(.income-simulator__top) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 18px;
}

body div.income-simulator :where(.income-simulator__label) {
  font-size: 16px;
  font-weight: 600;
  color: #f1f5f9;
}

body div.income-simulator :where(.income-simulator__value) {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 230px;
  padding: 13px 18px;

  background: #061d35;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 4px;

  font-family: 'Courier New', monospace;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff200;
}

body div.income-simulator :where(.income-simulator__range) {
  width: 100%;
  height: 5px;
  margin: 0;

  appearance: none;
  -webkit-appearance: none;

  background: #07599a;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

body
  div.income-simulator
  :where(.income-simulator__range::-webkit-slider-thumb) {
  appearance: none;
  -webkit-appearance: none;

  width: 26px;
  height: 26px;

  background: #0d5fa5;
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

body div.income-simulator :where(.income-simulator__range::-moz-range-thumb) {
  width: 22px;
  height: 22px;

  background: #0d5fa5;
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

body div.income-simulator :where(.income-simulator__limits) {
  display: flex;
  justify-content: space-between;
  gap: 16px;

  margin-top: 10px;

  font-size: 14px;
  font-weight: 500;
  color: rgba(203, 213, 225, 0.65);
}

body div.income-simulator :where(.income-simulator__cards) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  margin-bottom: 28px;
}

body div.income-simulator :where(.income-simulator__card) {
  padding: 19px 18px 20px;

  background: #041b31;
  border: 1px solid rgba(15, 23, 42, 0.8);
  border-radius: 10px;
}

body div.income-simulator :where(.income-simulator__card-label) {
  margin: 0 0 8px;

  font-size: 14px;
  font-weight: 500;
  color: #f8fafc;
}

body div.income-simulator :where(.income-simulator__card-value) {
  margin: 0;

  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

body div.income-simulator :where(.income-simulator__card-value--green) {
  color: #00c853;
}

body div.income-simulator :where(.income-simulator__subtitle) {
  margin: 0 auto 18px;

  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.2px;
  color: #f8fafc;
}

body div.income-simulator :where(.income-simulator__button) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  width: 100%;
  min-height: 58px;
  padding: 14px 24px;

  background: #fff200;
  color: #000000;

  border: none;
  border-radius: 6px;

  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

body div.income-simulator :where(.income-simulator__button:hover) {
  background: #ffea00;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 242, 0, 0.25);
}

body div.income-simulator :where(.income-simulator__button span) {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 640px) {
  body div.income-simulator {
    padding: 24px 18px;
    border-radius: 18px;
  }

  body div.income-simulator :where(.income-simulator__title) {
    font-size: 24px;
  }

  body div.income-simulator :where(.income-simulator__top) {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  body div.income-simulator :where(.income-simulator__value) {
    width: 100%;
    min-width: 0;
    font-size: 22px;
  }

  body div.income-simulator :where(.income-simulator__limits) {
    font-size: 12px;
  }

  body div.income-simulator :where(.income-simulator__cards) {
    grid-template-columns: 1fr;
  }

  body div.income-simulator :where(.income-simulator__subtitle) {
    font-size: 21px;
  }

  body div.income-simulator :where(.income-simulator__button) {
    font-size: 16px;
  }
}

body {
  background-color: var(--bg);
  color: var(--gray-100);
  font-family: Roboto, sans-serif;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

.fusion-app {
  overflow-x: hidden;
}

.fusion-app:has(.full-screen) {
  overflow: hidden;
}

body,
p {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

a,
a:hover,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

* {
  box-sizing: border-box;
}

.align_items_center {
  align-items: center;
}

.justify_space_between {
  justify-content: space-between;
}

.justify_center {
  justify-content: center;
}

.display_flex {
  display: flex;
}

.display_grid {
  display: grid;
}

.display-inline-block {
  display: inline-block;
}

.flex_column {
  flex-direction: column;
}

.flex_row {
  flex-direction: row;
}

.display-block {
  display: block;
}

h1,
h2,
h3 {
  color: var(--headlines);
  display: inline-block;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.3;
  margin: 0 0 10px;
  padding: 0;
}

h1 {
  text-align: left;
  font-size: 38px;
  line-height: 42px;
}

h2 {
  font-size: 17px;
}

h3 {
  color: var(--gray-100);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 12px;
}

.text_align_left {
  text-align: left;
}

:root {
  --swiper-theme-color: #007aff;
}

:root {
  --swiper-navigation-size: 44px;
}

:host(.swiper-horizontal.swiper-rtl)
  .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    transform 0.2s,
    right 0.2s;
}

.ad-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.ad-desktop {
  display: none;
}

.ad-header-masthead-left {
  left: 0;
  margin-left: 30px;
  margin-top: 15px;
  position: absolute;
  top: 0;
}

.ad-header-masthead-right {
  margin-right: 30px;
  margin-top: 15px;
  position: absolute;
  right: 0;
  top: 0;
}

.ad-mobile-size:has(iframe) {
  margin-bottom: 24px;
}

.Ad_1 .dfpAd:has(iframe),
.Ad_2 .dfpAd:has(iframe),
.Ad_3 .dfpAd:has(iframe),
.Ad_4 .dfpAd:has(iframe),
.Ad_5 .dfpAd:has(iframe),
.Ad_6 .dfpAd:has(iframe) {
  align-items: center;
  background-color: var(--gray-0);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  padding: 30px 0 10px;
  width: 100%;
}

.Ad_1 .ad-text-body-article:has(iframe):before,
.Ad_2 .ad-text-body-article:has(iframe):before,
.Ad_3 .ad-text-body-article:has(iframe):before,
.Ad_4 .ad-text-body-article:has(iframe):before,
.Ad_5 .ad-text-body-article:has(iframe):before,
.Ad_6 .ad-text-body-article:has(iframe):before {
  color: var(--gray-90);
  content: 'PUBLICIDAD';
  font-size: 10px;
  position: absolute;
  top: 10px;
}

.Ad_1 .ad-text-body-article:has(iframe).amp:before,
.Ad_2 .ad-text-body-article:has(iframe).amp:before,
.Ad_3 .ad-text-body-article:has(iframe).amp:before,
.Ad_4 .ad-text-body-article:has(iframe).amp:before,
.Ad_5 .ad-text-body-article:has(iframe).amp:before,
.Ad_6 .ad-text-body-article:has(iframe).amp:before {
  content: '';
}

.body-article {
  color: var(--sub-headlines);
  font-size: 18px;
  letter-spacing: normal;
  line-height: 1.7;
}

.body-article .visual__image:not(:has(figcaption)),
.body-article .visual__video:not(:has(figcaption)) {
  margin-bottom: 16px;
}

.article-tags-container {
  border-bottom: 1px solid var(--gray-40);
  margin: 20px 0;
  padding: 15px 0 0;
}

.article-tags-headline {
  flex-flow: row wrap;
}

.related-themes-icon {
  margin: 0 6px 0 0;
  width: 12px;
}

.related-themes-icon svg {
  margin-bottom: 0;
}

.related-themes-icon svg path {
  fill: var(--gray-90);
}

.related-themes {
  color: var(--headlines);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
}

.article-tags {
  flex-flow: row wrap;
  padding: 16px 0 10px;
}

.article-tag {
  background-color: var(--gray-10);
  border: 1px solid transparent;
  border-radius: 100px;
  color: vrar(--gray-90);
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  margin: 0 16px 12px 0;
  padding: 6px 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.article-tag:hover {
  border: 1px solid #e2e2e2;
}

.article-tags-container {
  margin-top: 0;
  padding-top: 0;
}

.article-header {
  border-bottom: 1px solid var(--gray-40);
  margin: 12px 0;
  width: 100%;
}

.arrow {
  fill: var(--gray-90);
  height: 8px;
  width: 5px;
}

.article-section-ctn {
  align-items: baseline;
  color: var(--gray-90);
  margin: 0 0 8px;
}

.article-section-tag {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 6px 0 0;
  text-decoration: none;
  text-transform: uppercase;
}

.article-headline {
  color: var(--headlines);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 23px 0px 12px;
}

.author-image-header {
  border-radius: 100%;
  height: 32px;
  margin-left: -4px;
  margin-right: 0;
  width: 32px;
}

.byline {
  color: var(--gray-90);
  font-size: 14px;
  padding-bottom: 10px;
  width: 100%;
  min-height: 42px;
}

.byline-image-ctn {
  margin-right: 12px;
}

.authors-name-txt-ctn {
  flex-flow: wrap;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: var(--sub-headlines);
}

.authors-name-txt-ctn a,
.authors-name-txt-ctn span {
  font-size: 14px;
  line-height: 18px;
}

.authors-name-txt-ctn > span:first-child {
  margin: 0 5px 0 0;
}

.author-name {
  font-weight: 500;
}

.footer-ctn {
  background-color: #3b3b3b;
  color: #e8eaed;
  padding: 26px 24px 64px;
  position: relative;
  width: 100vw;
}

.footer-menu {
  border-bottom: 1px solid #d5d5d5;
  grid-template-columns: 100%;
  width: 100%;
}

.footer-section {
  flex-wrap: wrap;
  gap: 0;
  margin-top: 8px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.footer-link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  min-width: 48px;
  padding: 16px 8px;
}

.footer-logo {
  height: 27.93px;
  width: 120px;
}

.copyright-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
}

.social-copy {
  font-size: 14px;
  padding: 0;
  width: 100%;
}

.logo-wrapper {
  flex-direction: row;
  gap: calc(100% - 258px);
  justify-content: center;
  margin-bottom: 28px;
  max-width: 351px;
  width: 100%;
}

.social-media-buttons {
  display: inline-flex;
  gap: 12px;
  margin-top: 16px;
}

.copyright {
  margin-top: 24px;
}

.footer-column {
  margin-bottom: 40px;
  text-align: center;
}

.social-logo {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
}

.social-logo .svg-icon {
  height: 32px;
  width: 32px;
}

.social-logo .svg-icon path {
  fill: #e2e2e2;
}

.social-logo .svg-icon .svg-icon-border {
  stroke: #e2e2e2;
}

.social-logo:hover .svg-icon path {
  fill: var(--gray-10);
}

.social-logo:hover .svg-icon .svg-icon-bg {
  fill: var(--gray-60);
}

.social-logo:hover .svg-icon .svg-icon-border {
  stroke: var(--gray-10);
}

.login-form-input:hover:not(:focus):not(:active) {
  background-color: var(--gray-0);
}

.field-input:hover:not(:focus):not(:active) {
  background-color: var(--gray-0);
  border: 1px solid var(--gray-50);
}

.identity-button-confirm-disabled:has(.identity-saved),
.identity-button-confirm:has(.identity-saved) {
  background-color: var(--orange-40);
  border-color: var(--orange-40);
  color: var(--gray-90);
}

.field-select-input:hover:not(:focus):not(:active) {
  background-color: var(--gray-0);
  border: 1px solid var(--gray-50);
}

.article-right-rail {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
}

.homepage-centered-layout:has(.slide-open) .homepage-centered-left-span,
.homepage-centered-layout:has(.slide-open) .homepage-centered-right-span {
  z-index: 3000;
}

.content-section {
  grid-column: span 12;
}

.span-body {
  grid-column: span 12;
}

.top {
  width: 100%;
}

.page-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.article {
  flex: 1;
  grid-area: article;
  padding: 0;
  width: 100%;
  z-index: auto;
  height: -moz-fit-content;
  height: fit-content;
}

.article-section {
  display: flex;
  flex-direction: column;
}

.article-header-wrapper {
  grid-area: header;
  width: 100%;
}

.article-right-rail-centered:has(.sport-live-events) .top {
  margin-top: 0;
}

.article-right-rail-centered:has(.sport-live-events)
  .header-layout-content-child {
  padding: 0;
}

.mhh-site-logo {
  min-height: 102px;
  padding: 18.5px 0;
  margin: 0;
  width: 100%;
}

.mhh-site-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.masthead-header {
  position: relative;
}

.masthead-header .mhh-new {
  display: none;
  font-family: Roboto;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  width: 100%;
}

.masthead-header .mhh-new .mhh-site-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
}

.masthead-header .ctn-quicklinks {
  padding: 8px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  min-height: 33px;
}

.masthead-header .ctn-quicklinks .trend {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-80);
  display: flex;
  align-items: center;
  gap: 4px;
}

.masthead-header .ctn-quicklinks .quicklink {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-80);
}

.article-right-rail .masthead-header {
  max-width: calc(100vw - 32px);
}

.masthead-navbar {
  background-color: var(--white-100);
  display: flex;
  flex-direction: column;
  font-family: Roboto, sans-serif;
  height: auto;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3001;
}

.width_full {
  height: 110px;
}

.login-register-container {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  justify-self: flex-end;
  width: auto;
}

.content-button {
  display: none;
}

.identity-button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-family: Roboto, sans-serif;
}

.primary,
.secondary {
  border: 1px solid var(--orange-50);
  border-radius: 100px;
  color: var(--button-alert-text);
  font-size: 14px;
  font-weight: 400;
  height: 32px;
  padding: 0;
  text-transform: uppercase;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}

.secondary {
  background-color: var(--white-100);
  border: 1px solid var(--gray-50);
}

.secondary:active,
.secondary:hover {
  background: var(--orange-10);
}

.secondary:active {
  border: 1px solid var(--orange-50);
}

.primary {
  background: var(--orange-20);
  border: 1px solid var(--orange-20);
}

.primary:hover {
  background: var(--orange-10);
  border-color: var(--orange-50);
}

.primary:active {
  background: var(--orange-40);
}

.user-default-avatar {
  border-radius: 100px;
  height: 32px;
  width: 32px;
  background-color: var(--background-icon-avatar);
}

.user-default-avatar path {
  fill: var(--color-icon-avatar);
}

.account-button {
  border: none;
  cursor: pointer;
  flex-direction: row-reverse;
  outline: none;
  width: auto;
}

.account-button {
  align-items: center;
  background-color: var(--white-100);
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 0;
}

.account-button--mobile {
  padding: 0;
}

.site-header {
  box-shadow: var(--shadow-nav);
  overflow: hidden;
  width: 100%;
  z-index: 1999;
}

.sectionnav-container {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--gray-40);
  border-left: none;
  border-right: none;
}

.sectionnav-container {
  align-items: center;
  height: 56px;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
}

.hamburger {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  align-items: center;
  cursor: pointer;
  display: flex;
  grid-column: 1/2;
  height: 19px;
  justify-content: center;
  justify-self: flex-start;
  outline: none;
  position: static;
  transition: 0.2s;
  width: 28px;
  z-index: 10;
}

.hamburger svg {
  height: 19px;
  width: 28px;
}

.date-info {
  color: var(--headlines);
  display: none;
  font-size: 16px;
  padding-top: 2px;
}

.date-info,
.section-menu {
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: width 0.5s;
}

.section-menu {
  display: flex;
  gap: 32px;
}

.menu-item {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  align-items: center;
  color: var(--gray-100);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0;
  white-space: nowrap;
}

.menu-item:hover {
  color: var(--gray-80);
}

.logo-image {
  height: 36px;
  width: 154px;
}

.user-default-avatar-ctn {
  position: relative;
}

.newsletter-chain-view-button:is(.is-subscribed) {
  background: rgba(246, 142, 1, 0.1);
  border: 1px solid rgba(246, 142, 1, 0.4);
  border-radius: 100px;
  color: var(--gray-80);
  gap: 6px;
  padding: 6px 12px;
}

.newsletter-chain-view-button:is(.is-subscribed)
  .newsletter-card-page-view-checkmark {
  height: 12px;
  margin-right: 0;
  max-width: 12px;
  width: 12px;
}

.newsletter-chain-view-button:is(.is-subscribed)
  .newsletter-card-page-view-checkmark
  path {
  fill: var(--gray-80);
}

.notifications-menu-active:has(.notifications-menu-not-configured)
  .notifications-menu-ctn-interests {
  height: calc(100vh - 555px);
}

:root {
  --background-button: var(--white-100);
  --color-button: var(--black-100);
}

.raffle:has(.raffle__success) {
  background-color: var(--orange-10);
}

:root {
  --background-card: #fff9f2;
  --background-card-hover: #fef4e6;
  --border-color: #fabb67;
  --show-more-color: var(--border-color-hover);
  --secondary-card-border-color: var(--border-color-hover);
}

.sharebar-container {
  align-items: center;
  flex-flow: column wrap;
  font-size: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
  opacity: 0;
  row-gap: 12px;
  width: 100%;
}

.sharebar-buttons-container {
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  min-width: 72px;
  padding: 0 5px;
}

.sharemenu-buttons svg rect {
  fill: var(--white-100);
  stroke: var(--gray-50);
}

.sharemenu-buttons svg path {
  fill: var(--background-shared-btn);
}

.sharemenu-buttons {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  align-items: center;
  background: none;
  border-radius: 100px;
  border: none;
  color: var(--gray-90);
  cursor: pointer;
  flex-direction: row;
  gap: 12px;
  height: 48px;
  outline: none;
  padding: 0;
}

.svg-icon {
  height: 28px;
  width: 28px;
}

.svg-icon path {
  fill: var(--gray-60);
}

.svg-icon .svg-icon-bg {
  fill: transparent;
}

.svg-icon .svg-icon-border {
  stroke: var(--gray-60);
}

.sharemenu-buttons:hover svg rect {
  fill: var(--gray-10);
}

.body-share-note {
  align-items: center;
  border-bottom: 1px solid var(--gray-40);
  border-top: 1px solid var(--gray-40);
  color: var(--background-shared-btn);
  display: grid;
  font-size: 14px;
  font-weight: 400;
  grid-template-columns: auto auto;
  justify-content: center;
  margin-bottom: 20px;
  padding: 16px 0 0;
  text-align: center;
}

.share-note-txt {
  padding-right: 11px;
}

.icon-dropdown:focus-visible {
  box-shadow: none;
  outline: none;
}

.title-bar:has(.newsletter-chain-view-button, .title-bar-anchor-button) {
  gap: 16px;
}

.article .second-saved-buttons .sharebar-container {
  margin-bottom: 16px;
}

.identity-preferences-button:not(:disabled):active {
  background-color: var(--orange-30);
}

.switch:has(.switch-circle-enable) {
  background: rgba(246, 142, 1, 0.6);
}

.register-preferences-button.finish:not(:disabled):active {
  background-color: var(--orange-30);
}

.raffle-register-event:has(.register-verification) {
  grid-template-rows: repeat(2, auto);
}

.raffle-register-event:has(.register-verification) .login-default-card {
  background-color: var(--orange-0);
}

.dynamic-chain-main-anchor-img:has(iframe) {
  padding-bottom: 0;
  width: 100%;
}

.dynamic-chain-main-info-promo:not(:has(img)) {
  color: var(--gray-90);
  font-size: 14px;
  font-weight: 500;
  line-height: 132%;
}

.pos-tbl-inf:has(.pos-tbl-inf-obs) {
  gap: 16px;
}

.sport-calendar-error:has(.not-found-league),
.sport-calendar:has(.not-found-league) {
  row-gap: 32px;
}

.sport-calendar-swiper .sport-calendar-date:focus-visible {
  border-radius: 6px;
}

.sport-calendar-date:focus-visible {
  background: rgba(2, 132, 12, 0.1);
  border-radius: 100px;
}

.sport-calendar-matches-all:has(.not-found-league),
.sport-calendar-matches:has(.not-found-league) {
  border: none;
}

.league-overview-tab:focus-visible {
  background: var(--gray-10);
  border: 1px solid var(--gray-50);
  color: var(--gray-100);
}

.league-overview-tab-active:focus-visible {
  background: rgba(2, 132, 12, 0.1);
  border: 1px solid var(--green-100);
  color: var(--gray-100);
}

.league-overview-tab-disabled:focus-visible {
  background: var(--white-100);
  border: 1px solid var(--gray-30);
  color: var(--gray-30);
}

.sports-live-event-team-card:is(.sports-live-event-team-loser) {
  opacity: 0.5;
}

.tabs-component-button:focus-visible {
  background: var(--gray-10);
  border: 1px solid var(--gray-50);
  color: var(--gray-100);
}

.tabs-component-button-active:focus-visible {
  background: rgba(2, 132, 12, 0.1);
  border: 1px solid var(--green-100);
  color: var(--gray-100);
}

.tabs-component-button-disabled:focus-visible {
  background: var(--white-100);
  border: 1px solid var(--gray-30);
  color: var(--gray-30);
}

:root {
  --bg: 'transparent';
  --bg-color: #fff;
  --black-100: #000;
  --gray-0: #fafafa;
  --gray-10: #f5f5f5;
  --gray-20: #eaeaea;
  --gray-30: #e2e2e2;
  --gray-40: #d5d5d5;
  --gray-50: #c2c2c2;
  --gray-60: #9b9b9b;
  --gray-70: #777;
  --gray-80: #555;
  --gray-sport-80: #555;
  --gray-85: #5f5f5f;
  --gray-90: #3b3b3b;
  --gray-100: #1f1f1f;
  --gray-110: #fafafa;
  --gray-115: rgba(28, 27, 31, 0.7019607843137254);
  --gray-204: #ccc;
  --gray-especial-deck: #c4c7c5;
  --gray-especial-hl: #e8eaed;
  --green-100: #02840c;
  --headlines: #1f1f1f;
  --orange-0: #fff9f2;
  --orange-10: #fef4e6;
  --orange-20: #fde8cc;
  --orange-30: #fcddb3;
  --orange-40: #fbd299;
  --orange-50: #fac680;
  --orange-60: #fabb67;
  --orange-70: #f9b04d;
  --orange-80: #f8a534;
  --orange-90: #f7991a;
  --orange-100: #f68e01;
  --orange-100-sport: #f68e01;
  --orange-110: #f96700;
  --orange-120: #f58e1f;
  --orange-130: #ad6400;
  --orange-140: #ffb959;
  --red-100: #b10000;
  --white-100: #fff;
  --yellow-50: #fbe094;
  --border-web-history: #f68e24;
  --background-shared-btn: #555;
  --sub-headlines: #3b3b3b;
  --border-newsletter: #e2e2e2;
  --background-preview-modal: #fff;
  --newsletter-btn-color: #707070;
  --newsletter-btn-icon-path: #3c3c3b;
  --background-podcast: #1c1b1f;
  --minute-marker-border: #b10000;
  --new-btn-text: #f68e01;
  --background-btn-game-card: #fef4e6;
  --border-btn-game-card: #fabb67;
  --color-btn-game-card: #555;
  --background-btn-game-card-hover: #fabb67;
  --border-btn-game-card-hover: #fabb67;
  --masthead-navbar-shadow: rgba(0, 0, 0, 0.14901960784313725);
  --shared-icon-date: #c5c5c5;
  --button-alert-background: #fff;
  --button-alert-text: #3b3b3b;
  --button-alert-border: #c2c2c2;
  --button-alert-hover-bg: #fef4e6;
  --button-alert-hover-bor: #c2c2c2;
  --border-titlebar: #d5d5d5;
  --msg-text-color: #e8eaed;
  --switch-background: #fafafa;
  --circle-background-enable: #f68e01;
  --circle-background-disable: #9b9b9b;
  --bg-menu: #fafafa;
  --border-input: #c2c2c2;
  --color-text-input: #3b3b3b;
  --border-btn-identity: #dadce0;
  --border-hover-identity: #d2e3fc;
  --background-color-identity: #2d2f31;
  --text-color-disabled: #e8eaed;
  --text-color-continue: #9aa0a6;
  --mhh-nav-item: #555;
  --shadow-nav: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  --border-tooltip: #ffb959;
  --text-tooltip: #c4c7c5;
  --color-text-perfil: #000;
  --color-icon-avatar: #d5d5d5;
  --background-icon-avatar: inherit;
  --head-story-title: #f5f5f5;
  --fill-icon-show-minus: #3b3b3b;
  --border-bottom-color: #c2c2c2;
  --skeleton-bg-1: #eaeaea;
  --skeleton-bg-2: #f5f5f5;
  --bg-color-bajalibros: #f5f5f5;
  --bg-exclusive: #fdf1e0;
  --progess-back-color: #4a506e;
  --progess-up-color: #ad6400;
  --volume-back-color: #747474;
  --volume-up-color: #fff;
  --bg-background-face: rgba(66, 133, 244, 0.04);
  --border-btn-face: #d2e3fc;
  --color-txt-face: #3b3b3b;
  --bg-tooltip-password: rgba(85, 85, 85, 0.9);
  --shadow-tooltip-password: rgba(0, 0, 0, 0.58);
  --background-queryly-input: #fff;
  --recipes-card-tag: #004405;
  --recipes-card-tag-color: #fff;
  --recipes-no-results-border: #b10000;
}

:root {
  --blue-100: #0b57d0;
  --blue-50: #79adff;
  --cyan-100: #32dcdc;
  --dark-60: #747474;
  --dark-70: #4a506e;
  --dark-80: #121212;
  --dark-85: #5f6368;
  --dark-90: #2d2f31;
  --dark-blue-100: #202124;
  --election-gray-10: #f5f5f5;
  --election-gray-40: #d5d5d5;
  --election-gray-90: #3b3b3b;
  --green-10: #f2f9f3;
  --green-50: #00ff86;
  --red-10: #fbf2f2;
  --red-20: #d88080;
  --red-50: #ff8b96;
  --red-90: #d91023;
  --white-105: hsla(0, 0%, 100%, 0.7019607843137254);
  --yellow-100: #fffc41;
  --red-permanent: #b10000;
  --chain-with-border: #c2c2c2;
  --nav-podcast-border: #444746;
}

.otf-chain-third-col-noimage .story-card-ctn .story-card-info:not(:has(img)) {
  font-size: 18px;
}

.otf-chain-third-col-noimage .story-card-ctn .story-card-info:has(img) {
  display: none;
}

.otf-chain-third-col .story-card-info:last-child:has(img) {
  max-width: 80px;
}

.otf-chain-title-bar:has(
  .newsletter-chain-view-button,
  .title-bar-anchor-button
) {
  gap: 16px;
}

.basic-nav:not(:has(.sticky-navbar-ad-container)) {
  margin-top: 56px;
}

@media only screen and (min-width: 480px) {
  .article .sharebar-buttons-container {
    min-width: 202px;
  }
}

@media only screen and (min-width: 577px) {
  .body-article {
    font-size: 22px;
  }

  .article-tags-container {
    border-bottom: none;
  }

  .article-tag {
    font-size: 16px;
  }

  .related-themes {
    font-size: 18px;
  }

  .related-themes-icon svg {
    margin-bottom: 0;
  }

  .article-section-ctn {
    align-items: center;
    margin: 0 0 12px;
  }

  .article-section-tag {
    font-size: 16px;
  }

  .article-headline {
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 16px;
  }

  .author-image-header {
    height: 40px;
    width: 40px;
  }

  .author-image-header {
    align-items: center;
    display: flex;
    margin: 8px 0;
  }

  .byline {
    padding-bottom: 0;
  }

  .authors-name-txt-ctn,
  .authors-name-txt-ctn a,
  .authors-name-txt-ctn span {
    font-size: 16px;
    line-height: 20.8px;
  }

  .footer-ctn {
    display: block;
    padding: 32px 40px 104px;
    z-index: 2990;
  }

  .footer-menu {
    grid-template-columns: repeat(4, 25%);
    max-width: 928px;
  }

  .logo-wrapper {
    align-items: inherit;
    flex-direction: column;
    gap: inherit;
    margin-bottom: 40px;
    margin-top: 0;
  }

  .footer-column {
    font-size: 14px;
    grid-template-columns: 100%;
    padding-left: 0;
    row-gap: 4px;
    text-align: center;
  }

  .social-media-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-section {
    flex-direction: column;
    margin-top: 8px;
  }

  .copyright-text {
    text-align: center;
  }

  .footer-link {
    padding: 8px;
  }

  .footer-logo {
    height: 40px;
    width: 171.84px;
  }

  .masthead-header .ctn-quicklinks {
    margin: 0 -16px 12px;
  }

  .notifications-menu-active:has(.notifications-menu-not-configured)
    .notifications-menu-ctn-interests {
    height: calc(100vh - 575px);
  }

  .sharebar-container {
    flex-flow: row wrap;
  }

  .sharemenu-buttons {
    font-size: 10px;
    gap: 6px;
    height: auto;
    padding: 0;
  }

  .sharemenu-buttons:active {
    background: none;
  }

  .share-note-txt {
    padding-right: 17px;
    margin-bottom: 16px;
  }

  .svg-icon {
    height: 22px;
    width: 22px;
  }

  .sharebar-container {
    margin-bottom: 16px;
    position: relative;
  }

  .background-feature-cards-right:has(.background-feature-card-full-width-img)
    .background-feature-card {
    max-width: 227px;
    width: 227px;
  }

  .background-feature-cards-right:has(.background-feature-card-full-width-img)
    .background-feature-card-full-width-img {
    max-height: 210px;
    max-width: 373.33px;
    width: 373.33px;
  }

  .pos-tbl-inf:has(.pos-tbl-inf-obs) {
    flex-direction: row;
    gap: auto;
    justify-content: space-between;
  }

  .default-chain-2:has(.ad-wrapper) {
    display: flex;
  }
}

@media only screen and (min-width: 615px) and (max-width: 735px) {
  .article .sharebar-buttons-container {
    min-width: 88px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 884px) {
  .article .sharebar-buttons-container {
    min-width: 88px;
  }
}

@media only screen and (min-width: 769px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2,
  h3 {
    font-size: 18px;
  }

  .ad-desktop {
    display: flex;
  }

  .exclusive-article .visual__image:not(:has(figcaption)) {
    margin-bottom: 24px;
  }

  .article-header {
    margin: 0 0 16px;
  }

  .byline {
    min-height: 56px;
  }

  .page-container {
    max-width: 1236px;
  }

  .article-section {
    display: grid;
    grid-template-areas: 'header header' 'article right-rail';
    grid-template-columns: minmax(328px, 1fr) 328px;
    max-width: 1236px;
  }

  .article-section {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }

  .width_full {
    height: 144px;
  }

  .raffle:has(.raffle__success) {
    border: 1px solid var(--orange-70);
  }
}

@media only screen and (min-width: 769px) and (width: 820px) {
  .article-section {
    margin-top: 16px;
  }
}

@media only screen and (min-width: 992px) {
  .footer-ctn {
    flex-direction: column;
    padding: 32px 32px 104px;
    z-index: 2990;
  }

  .social-media-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .logo-wrapper {
    align-items: inherit;
    flex-direction: column;
    margin-bottom: 40px;
    margin-top: 0;
  }

  .footer-logo {
    height: 40px;
    width: 171.84px;
  }

  .footer-menu {
    grid-template-columns: repeat(4, 25%);
    margin: 0 auto;
    max-width: 1204px;
  }

  .user-default-avatar {
    margin-right: 12px;
  }

  .dynamic-chain-main-anchor-img:has(iframe) {
    width: 60%;
    padding-bottom: 0;
    height: auto;
  }

  .RI .register-preferences-button.finish:not(:disabled):hover {
    background-color: var(--orange-20);
    border: 1px solid transparent;
  }

  .default-chain-2:has(.ad-wrapper) {
    display: grid;
  }

  .basic-nav:not(:has(.sticky-navbar-ad-container)) {
    margin-top: 48px;
  }
}

@media screen and (min-width: 992px) {
  .notifications-menu-active:has(.notifications-menu-not-configured)
    .notifications-menu-ctn-interests {
    height: calc(100vh - 600px);
  }

  .notifications-menu-active:has(.notifications-menu-not-configured)
    .notifications-menu-ctn-interests.navbar-contracted-48 {
    height: calc(100vh - 520px);
  }
}

@media only screen and (min-width: 993px) {
  h1 {
    font-size: 45px;
    line-height: 50px;
  }

  h2 {
    font-size: 20px;
  }

  .article-right-rail .content-section:not(.isAdmin) {
    grid-column: span 12;
  }

  .content-section:not(.isAdmin) {
    grid-column: span 10;
  }

  .article-section {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .article-right-rail-centered:has(.sport-live-events) .header-layout-wrapper {
    padding: 0;
  }

  .article-right-rail-centered:has(.sport-live-events) .header-layout-content {
    grid-column: span 12;
    width: 100%;
  }

  .article-right-rail-centered:has(.sport-live-events)
    .header-layout-content-child {
    margin: 0;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 0;
  }

  .article-right-rail-centered:has(.sport-live-events)
    .header-layout-content-child
    .leagues-swiper-divider {
    margin: auto 0;
  }

  .article-right-rail-centered:has(.sport-live-events)
    .header-layout-content-child
    .sport-live-events-league
    .leagues-swiper-divider {
    margin: auto;
  }

  .masthead-header .mhh-new {
    display: flex;
  }

  .masthead-header .ctn-quicklinks {
    margin: 0 0 20px;
  }

  .sectionnav-container {
    height: 48px;
  }

  .hamburger {
    grid-column: 1/2;
  }

  .logo-image {
    height: 24px;
    width: 100px;
  }

  .date-info {
    display: inline-block;
    grid-column: 3/4;
    margin-left: 24px;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .section-menu {
    flex-wrap: wrap;
    grid-column: 4/5;
    height: 100%;
    margin-left: 40px;
    overflow: hidden;
  }

  .login-register-container {
    margin-left: 16px;
  }

  .login-register-container > .content-button {
    -moz-column-gap: 12px;
    column-gap: 12px;
    display: flex;
  }

  .site-logo {
    height: 100%;
    margin: 0;
  }

  .account-button,
  .site-logo {
    align-items: center;
    display: flex;
  }

  .account-button {
    height: 32px;
  }

  .identity-preferences-button:not(:disabled):hover {
    background-color: var(--orange-10);
    border: 1px solid var(--orange-60);
  }

  .register-preferences-button.finish:not(:disabled):hover {
    background-color: var(--orange-10);
    border: 1px solid var(--orange-60);
  }
}

@media only screen and (min-width: 1130px) and (max-width: 1150px) {
  .article .sharebar-buttons-container {
    min-width: 88px;
  }
}

@media (min-width: 1168px) {
  .masthead-header .mhh-new {
    max-width: 1204px;
  }
}

@media screen and (min-width: 1366px) {
  .span-body:not(.isAdmin) {
    grid-column: span 10;
  }

  .article-right-rail-centered:has(.sport-live-events) .header-layout-wrapper {
    padding: 0;
  }

  .article-right-rail-centered:has(.sport-live-events) .header-layout-content {
    grid-column: span 12;
    width: 100%;
  }

  .article-right-rail-centered:has(.sport-live-events)
    .header-layout-content-child {
    margin: 0;
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .article-right-rail-centered:has(.sport-live-events)
    .header-layout-content-child
    .leagues-swiper-divider {
    margin: auto 0;
  }

  .article-right-rail-centered:has(.sport-live-events)
    .header-layout-content-child
    .sport-live-events-league
    .leagues-swiper-divider {
    margin: auto;
  }
}

@media screen and (min-width: 1648px) {
  .article-right-rail-centered
    .header-layout-wrapper:has(.sport-live-events)
    .header-layout-content {
    grid-column: span 12;
    width: 100%;
  }

  .article-right-rail-centered
    .header-layout-wrapper:has(.sport-live-events)
    .header-layout-content-child {
    margin: inherit;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 0;
  }
}

@media only screen and (max-width: 992px) {
  .width_full {
    height: 54px !important;
  }

  .site-logo {
    opacity: 1;
    visibility: visible;
  }

  .section-menu {
    display: none;
  }

  .logo-image {
    margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 17px;
    line-height: 24px;
  }

  .article-right-rail .masthead-header .ctn-quicklinks {
    margin: 0 -16px 12px;
  }
}

@media screen and (max-width: 410px) {
  .body-share-note {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .content-section:not(.isAdmin),
  .span-body:not(.isAdmin) {
    grid-column: span 12;
  }
}

@media print {
  .ad-wrapper,
  .article-tags-container,
  .second-saved-buttons {
    display: none;
  }

  .masthead-navbar {
    border-bottom: 1px solid var(--gray-40);
    position: static;
    z-index: 1;
  }

  .hamburger {
    display: none;
  }

  .sectionnav-container {
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    padding: 16px;
  }

  .section-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    grid-column: 2/3;
    height: 100%;
    justify-content: flex-start;
    margin-left: 40px;
    overflow: hidden;
  }

  .menu-item {
    color: var(--gray-100);
    display: flex;
    font-size: 16px;
    font-weight: 500;
  }

  .date-info {
    color: var(--headlines);
    display: inline-block;
    font-size: 16px;
    grid-column: 3/4;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }

  .login-register-container {
    justify-content: flex-end;
    margin-left: 16px;
  }

  .content-button {
    display: flex;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .account-button {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 32px;
  }

  .user-default-avatar {
    margin-right: 12px;
  }

  .width_full {
    display: none;
  }

  .site-header {
    box-shadow: none;
  }
}

#Send-Us-Message h3 {
  color: #858585;
}

:root {
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  --mainColor: #6cbdde;
  --text: #ffffff;
  --input-color: #ffffff;
  --valid-input-color: #ffffff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.fb--container ._8o,
.fb--container ._8o .img,
article,
blockquote,
section {
  display: block;
}
.fb--container .UFICommentActorName,
.fb--container ._50f7,
strong {
  font-weight: 700;
}
blockquote {
  quotes: none;
  border-left: 4px solid #007bff;
  padding-left: 15px;
  margin-left: 0;
  width: 100%;
  padding-top: 0 !important;
  margin-block-end: 1em;
  margin-inline-end: 20px;
  unicode-bidi: isolate;
}
blockquote:after,
blockquote:before {
  content: none;
}
a {
  color: inherit;
  text-decoration: none;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
  background-color: rgba(63, 71, 85, 0.2);
}
.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}
.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
.mapboxgl-ctrl-geocoder--powered-by a:not(:hover) {
  text-decoration: none;
}
.fb--container a:hover,
.fb--container._5lm5 ._42ef:hover {
  text-decoration: underline;
}
button {
  cursor: pointer;
}
.NewsletterPolitics_newsletterHtml__wrapperText__xm5t_ ol li::marker,
.NewsletterPolitics_newsletterHtml__wrapperText__xm5t_ ul li::marker {
  color: #00283b;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
}
@media (min-width: 834px) {
  .NewsletterPolitics_newsletterHtml__wrapperText__xm5t_ ol li::marker,
  .NewsletterPolitics_newsletterHtml__wrapperText__xm5t_ ul li::marker {
    font-size: 16px;
    line-height: 20px;
  }
}
.NewsletterPolitics_newsletterHtml__wrapperText__xm5t_ ul li::marker {
  font-size: 14px;
}
.NewsletterPolitics_newsletterHtml__wrapperText__xm5t_ ol li::marker {
  color: #ff3640;
  word-spacing: 12px;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL {
  display: flex;
  gap: 20px;
  flex-direction: column;
  line-height: 1.5;
  overflow: hidden;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL em {
  font-style: italic;
  font-weight: bold;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL
  .wrapperTable
  ::-webkit-scrollbar:vertical {
  width: 0;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL
  .wrapperTable
  ::-webkit-scrollbar-button:increment {
  display: none;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL
  .wrapperTable
  ::-webkit-scrollbar:horizontal {
  height: 11px;
  background-color: #bfc0c0;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL img {
  display: block;
  width: 100%;
  height: auto;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL div {
  max-width: 100%;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL strong {
  color: #001621;
  font-weight: 700;
  margin-bottom: 0;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL a {
  margin-bottom: 0;
  padding-bottom: 5px;
  text-underline-position: under;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL h2 {
  color: #001621;
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -0.02em;
  margin: 0 0 10px 0;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL ol li::marker,
.StoryPageBody_spBody__HTMLBodyText__FEUdL ul li::marker {
  color: #001621;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
}
@media (min-width: 834px) {
  .StoryPageBody_spBody__HTMLBodyText__FEUdL {
    font-size: 16px;
    gap: 16px;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL a {
    line-height: 24px;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL h2 {
    font-size: 22px;
    line-height: 36px;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL ol li::marker,
  .StoryPageBody_spBody__HTMLBodyText__FEUdL ul li::marker {
    font-size: 16px;
    line-height: 20px;
  }
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL ul li::marker {
  font-size: 14px;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL ol li::marker {
  color: #a42a30;
  word-spacing: 12px;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote {
  margin: 0 auto;
  margin-bottom: 1.5rem !important;
  background-color: #fff;
  display: grid;
  grid-column-gap: 0;
  column-gap: 0;
  grid-template-columns: 28px auto;
  grid-row-gap: 0;
  row-gap: 0;
  padding: 1rem;
  width: 90%;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote p {
  color: #00283b;
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 0;
  margin-top: 0;
  grid-column: 2;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote p:first-child {
  padding-top: 0;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote p:first-child:after {
  content: url('/img/quoteRight.svg');
  margin-left: 8px;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote:before {
  content: url('/img/quoteLeft.svg');
  grid-column: 1;
  max-width: 32px;
  padding-top: 4px;
}
@media (min-width: 834px) {
  .StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote {
    gap: 12px;
    width: 70%;
    margin: 0 auto;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote:before {
    padding-top: 1px;
  }
}
.BannerWhatsApp_banner__Text__xApUY :globalspan :first-child {
  margin-right: 8px;
}
.CardStoryPage_cardStoryPage__wrapper__HrNKt {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-sizing: border-box;
  gap: 16px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 0px) {
  .StoryPageBody_spBody__HTMLBodyText__FEUdL {
    font-size: 16px;
    font-weight: 400;
  }
  .CardStoryPage_cardStoryPage__wrapper__HrNKt {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 1024px) {
  .CardStoryPage_cardStoryPage__wrapper__HrNKt {
    max-width: 100%;
    width: 100% !important;
    padding: 0 10px;
  }
}
@media (min-width: 1200px) {
  .StoryPageBody_spBody__HTMLBodyText__FEUdL {
    font-size: 18px;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote p:first-child {
    padding-left: 0;
    padding-top: 0;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote p:first-child:after {
    margin-left: 12px;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote:before {
    padding-top: 0;
  }
  .CardStoryPage_cardStoryPage__wrapper__HrNKt {
    max-width: 1185px;
    margin-right: 15px;
  }
}
@media (min-width: 834px) {
  .CardStoryPage_cardStoryPage__wrapper__HrNKt {
    margin-right: 15px;
  }
}
.BloqueVideoVertical_videoVertical__wrapperCard__9EuIx:focus-visible {
  outline: 0;
}
.BlockDetailVideo_video__cell_list__card_list__tTM6s:focus-visible {
  outline: 0;
}
@media (max-width: 1024px) {
  .BlockDetailVideo_video__cell_list__card_list__tTM6s
    ::-webkit-scrollbar:vertical {
    width: 5px;
  }
  .BlockDetailVideo_video__cell_list__card_list__tTM6s
    ::-webkit-scrollbar-button:increment {
    display: none;
  }
  .BlockDetailVideo_video__cell_list__card_list__tTM6s
    ::-webkit-scrollbar:horizontal {
    height: 10px;
  }
}
.Grid_colum_programs__eXNgT:focus-visible {
  outline: 0;
}
button {
  background: 0 0;
  border: none;
}
.BloqueTextoHtml_textoHtml__wrapperText__kh6IA ol li::marker,
.BloqueTextoHtml_textoHtml__wrapperText__kh6IA ul li::marker {
  color: #00283b;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
}
@media (min-width: 834px) {
  .BloqueTextoHtml_textoHtml__wrapperText__kh6IA ol li::marker,
  .BloqueTextoHtml_textoHtml__wrapperText__kh6IA ul li::marker {
    font-size: 16px;
    line-height: 20px;
  }
  .StoryPageBody_spBody__HTMLBodyText__FEUdL blockquote {
    gap: 12px;
    width: 80%;
    margin: 0 auto;
  }
}
.BloqueTextoHtml_textoHtml__wrapperText__kh6IA ul li::marker {
  font-size: 14px;
}
.BloqueTextoHtml_textoHtml__wrapperText__kh6IA ol li::marker {
  color: #ff3640;
  word-spacing: 12px;
}
#Send-Us-Message {
  border: none;
  border-radius: 5px;
  max-width: 560px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  background: #2f3032;
}
.StoryPageBody_spBody__HTMLBodyText__FEUdL a {
  font-weight: 700;
  text-decoration: none;
  color: #3498db;
}
.red-box {
  box-sizing: border-box;
  background-color: red;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}
.important-text {
  font-size: 24px;
  font-weight: 700;
}
.fb--container .fwn {
  font-weight: 400;
}
.fb--container input {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.fb--container a {
  color: #365899;
  cursor: pointer;
  text-decoration: none;
}
.fb--container img {
  border: 0;
}
.fb--container abbr {
  border-bottom: none;
  text-decoration: none;
}
.fb--container .clearfix::after {
  clear: both;
  content: '.';
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.fb--container .clearfix {
  zoom: 1;
}
.fb--container ::-webkit-input-placeholder {
  color: #90949c;
}
.fb--container :focus::-webkit-input-placeholder {
  color: #bec2c9;
}
.fb--container ._2vq9 .livetimestamp,
.fb--container ._2vq9 .uiLinkSubtle,
.fb--container .fcg,
.fb--container a.uiLinkSubtle {
  color: #90949c;
}
.fb--container ._42ft {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}
.fb--container ._42ft:hover {
  text-decoration: none;
}
.fb--container ._ohe {
  float: left;
}
.fb--container ._ohf,
.fb--container .rfloat {
  float: right;
}
.fb--container .fsm {
  font-size: 12px;
}
.fb--container ._2vq9 a {
  color: #4267b2;
}
.fb--container ._517h {
  background-color: #f6f7f9;
  border-color: #ced0d4;
  color: #4b4f56;
}
.fb--container ._517h:hover {
  background-color: #e9ebee;
}
.fb--container ._517h:active {
  background-color: #dddfe2;
  border-color: #bec2c9;
}
.fb--container ._42ef {
  overflow: hidden;
}
.fb--container ._8s {
  margin-right: 8px;
}
.fb--container ._6b {
  vertical-align: middle;
  display: inline-block;
  word-wrap: normal;
  border: 1px solid;
  border-radius: 2px;
  box-sizing: content-box;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  padding: 0 8px;
  position: relative;
  text-align: center;
  text-shadow: none;
  line-height: 22px;
}
.fb--container ._5mdd,
.fb--container._2pi8 {
  word-wrap: break-word;
}
.fb--container ._6b::before {
  content: '';
  display: inline-block;
  height: 20px;
  vertical-align: middle;
}
.fb--container ._4qba {
  font-style: normal;
}
.fb--container ._3-8m {
  margin-bottom: 4px;
  margin-top: 4px;
}
.fb--container ._3-8y {
  margin-top: 12px;
}
.fb--container ._3-8_ {
  margin-right: 4px;
}
.fb--container._2pi8 {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
  line-height: 1.358;
  word-break: break-word;
}
.fb--container ._2pis {
  padding-left: 8px;
  margin-left: 56px;
}
.fb--container ._55pe {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
}
.fb--container._5lm5 {
  margin-top: 12px;
  border-top: 1px solid #e9ebee;
}
.fb--container._5lm5 ._42ef {
  font-size: 11px;
  color: #365899;
  cursor: pointer;
  padding-bottom: 8px;
  padding-top: 8px;
  font-weight: 700;
}
.fb--container ._44ri {
  border-left: 1px dotted #d3d6db;
}
.fb--container ._2vq9 {
  font-size: 12px;
  line-height: 1.358;
  padding-top: 2px;
}
.fb--container ._491z {
  border-bottom: 1px solid #e9ebee;
  line-height: 25px;
  margin-bottom: 24px;
  padding: 8px 0;
}
.fb--container ._pup {
  color: #4b4f56;
}
.fb--container ._1ci {
  height: 48px;
  width: 48px;
}
#comments_form.mycomment {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  margin: 20px 0 0;
  font-size: 16px;
}
#comments_form .mycomment-img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}
#comments_form .mycomment-info {
  width: 100%;
  max-width: 100%;
}
#comments_form .textbox {
  color: #1d2129;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  border: none;
  margin-bottom: 10px;
  outline: 0;
}
#comments_form .mycomment-info__inner {
  background-color: #f2f3f5;
  border-radius: 18px;
  line-height: 16px;
  margin-top: 0;
  padding: 0.75rem 12px 1rem;
  position: relative;
}
#comments_form .error {
  position: relative;
  margin-top: -10px;
  color: red;
  font-size: 13px;
  padding-left: 5px;
  display: none;
}
#Send-Us-Message {
  border: none;
  border-radius: 5px;
  max-width: 560px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  background: #2f3032;
}
.marquee {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: auto;
}
.marquee-slide {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 10px;
}
.marquee::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.marquee {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
@media screen and (max-width: 1024px) {
  .marquee {
    justify-content: flex-start;
    padding: 0 5px;
  }
}

.intgrtn-form-signup {
  position: relative;
}

.intgrtn-form-signup,
.intgrtn-form-signup * {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  text-indent: 0;
  text-align: left;
}

.formwrap-outer .intgrtn-form-signup {
  padding: 20px;
}
@media screen and (min-width: 280px) {
  .formwrap-outer .intgrtn-form-signup {
    padding: 0;
  }
}

.animated-funnel {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(90deg, #4facfe, #00f2fe, #4facfe);
  background-size: 200% auto;
  color: white;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Анимации */
  animation:
    gradient-slide 3s linear infinite,
    fade-in 1s ease forwards,
    pulse 2s ease-in-out infinite;
  opacity: 0;
  /* для fade-in */
}

/* Скользящий градиент */
@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Плавное появление */
@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* Пульсирующее увеличение/уменьшение */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  /* увеличиваем на 10% */
}

/* Стили формы */
.registration-form {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.registration-form input,
.registration-form button {
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
}

.registration-form button {
  background: #4facfe;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.registration-form button:hover {
  background: #00f2fe;
}
