:root {
  --bg-100: #ffffff;
  --bg-80: #efefef;
  --bg-60: #ddd;
  --bg-40: #ccc;
  --bg-20: #a0a0aa;
  --accent-dark: #411466;
  --accent-light: #8950b7;
  --accent: #692e99;
  --secondary-accent: #f6f605;
  --secondary-accent-light: #ffff6a;
  --text-secondary-accent: #000000;
  --link-accent: #c685fb;
  --text-50: #ccc;
  --text-80: #585858;
  --text-100: #000000;
  --text-accent: #ffffff;
  --fh-orange: #ff881f;
  --site-accent-color: #ff881f;
  --text-site-accent-color: #000;
  --margin-top: 60px;
}

[data-theme="dark"] {
  --font-color: #ffffff;
  --bg-100: #1a1b27;
  --bg-80: #23242f;
  --bg-60: #32333d;
  --bg-40: #555660;
  --bg-20: #9a9ba0;
  --text-50: #808080;
  --text-80: #ababab;
  --text-100: #eee;
  --link-accent: #f6f605;
  --text-accent: #000000;
}

[data-site="nf"] {
  --fh-orange: #18c741;
  --site-accent-color: #18c741;
  --text-site-accent-color: #000;
}

* {
  /* color: var(--text-100); */
  box-sizing: border-box;
}

picture {
  display: flex;
}

b {
  font-weight: bold;
}

.mode-switch-icon__sun {
  display: none;
}

[data-theme="dark"] .mode-switch-icon__moon {
  display: none;
}

[data-theme="dark"] .mode-switch-icon__sun {
  display: initial;
}

html {
  scrollbar-color: var(--bg-40) var(--bg-100);
  /* scrollbar-gutter: stable; */
}

body {
  color: var(--text-100);
  background-color: var(--bg-100);
  padding-top: var(--margin-top);
  font-family: "Inter", sans-serif;
}

body * {
  scrollbar-color: var(--bg-40) var(--bg-100);
}

i {
  font-style: italic;
}

input[type="text"],
textarea {
  width: 100%;
  font-size: 1em;
}

.content {
  padding-left: 250px;
}

.content-wrapper {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* button,
.button {
  background-color: var(--bg-100);
  border: 1px solid var(--bg-60);
  cursor: pointer;
  font-size: 100%;
} */

.post-feed-container:not(.first-child) {
  margin-top: 16px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 12px;
}

button {
  cursor: pointer;
  background: none;
  font-size: inherit;
}

.button {
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border-radius: 50px;
  padding: 4px 8px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #000000;
  color: var(--text-100);
  border-color: var(--text-100);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  padding: 8px 14px;
  line-height: 1.2;
}

.button.primary {
  background-color: var(--site-accent-color);
  color: var(--text-site-accent-color);
  border-color: transparent;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.button:not([disabled]):hover {
  background-color: var(--text-100);
  border-color: transparent;
  color: var(--bg-100);
}

.button:not([disabled]).primary:hover {
  background-color: var(--text-100);
  color: var(--bg-100);
}

.header {
  top: 0;
  height: 60px;
  width: 100%;
  position: fixed;
  z-index: 500;
  background-color: var(--bg-100);
  border-bottom: 1px solid var(--bg-60);
}

.header-inner {
  margin: 0 auto;
  /* width: 1476px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.header-inner > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logolink {
  display: flex;
  padding: 4px;
  gap: 4px;
}

.header-logolink > span {
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
}

[data-theme="light"] .header-logolink {
  background-color: #000000;
}

.header-logo {
  height: 24px;
}

.content .ad-container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.ad-container__cta {
  color: inherit;
  font-size: 15px;
  line-height: normal;
  border-bottom: 1px solid var(--text-80);
}

.ad-container__cta:hover {
  border-color: inherit;
}

.content-wrapper > .ad-container {
  margin-top: 24px;
  margin-bottom: 24px;
}

.post-feed {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}

.post-feed .ad-container {
  grid-column-start: 1;
  grid-column-end: 3;
}

.boot-calendar__block .ad-container {
  grid-column-start: 1;
  grid-column-end: 4;
}

.post-feed__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* background-color: var(--bg-100); */
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-80);
  border-radius: 8px;
  overflow: hidden;
}

.post-feed__item:hover {
  opacity: 0.7;
}

.post-feed__item-link {
  color: inherit;
  text-decoration: none;
}

.post-feed__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.post-feed__item-image {
  width: 100%;
  aspect-ratio: 80/41;
  object-fit: cover;
}

.post-feed__item-headline {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
}

.post-feed__item-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  font-size: 15px;
}

.post-status {
  display: inline-block;
  font-size: 13px;
  padding: 4px;
  border-radius: 4px;
  font-weight: bold;
}

.post-status.OFFICIAL,
.post-status.OFFIZIELL,
.post-status.OFICIAL,
.post-status.OFFICIEL,
.post-status.UFFICIALE {
  background-color: #2bd913;
  color: #000000;
}

.post-status.LEAK,
.post-status.FILTRACI\D3N,
.post-status.FUITE,
.post-status.FILTRAZIONE,
.post-status.VAZAMENTO {
  background-color: #b61313;
  color: #ffffff;
}

.post-status.PREDICTION,
.post-status.CONCEPT,
.post-status.VORHERSAGE,
.post-status.KONZEPT,
.post-status.PREDICCI\D3N,
.post-status.CONCEPTO,
.post-status.PR\C9 DICTION,
.post-status.PREVISIONE,
.post-status.CONCETTO,
.post-status.PREVIS\C3O,
.post-status.CONCEITO {
  background-color: #1638b2;
  color: #ffffff;
}

.post-feed__item-meta-el {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-feed__item-meta-el > svg {
  width: 16px;
  height: 16px;
}

.top-posts-container__2 {
  overflow: hidden;
}

.top-posts-container__2 .post-feed__item-headline {
  font-size: 16px;
}

.top-posts-container__2 .post-feed__item-content {
  padding: 12px;
  gap: 12px;
}

.top-posts-container__2 .post-feed__item-meta {
  font-size: 14px;
}

/* .top-posts-container__2 svg {
  width: 20px;
  height: 20px;
} */

.top-posts-container__2 .post-status {
  font-size: 12px;
}

.post-item-container {
  /* display: flex; */
  /* align-items: flex-start; */
  border-bottom: 1px solid var(--bg-60);
  /* width: 1500px; */
  /* margin: 0 auto; */
}

.post-item-container__inner {
  display: flex;
  align-items: flex-start;
  /* border-bottom: 1px solid var(--bg-60); */
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
}

.post-item {
  overflow: hidden;
  padding: 24px 0 0 0;
  border-left: 1px solid var(--bg-60);
  border-right: 1px solid var(--bg-60);
  flex-grow: 1;
}

[data-plus="1"] .post-item {
  border-right: none;
}

.post-item-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}

.post-item__content {
  margin-top: 24px;
  padding-bottom: 32px;
  font-size: 19px;
  line-height: 1.5;
}

.post-item__content h2 {
  font-size: 22px;
  font-weight: bold;
}

.post-item__content h3 {
  font-size: 21px;
  font-weight: bold;
}

.post-item__content h4 {
  font-size: 16px;
  font-weight: bold;
}

.post-item__content > blockquote {
  border-left: 12px solid var(--bg-60);
  padding: 16px 0 16px 16px;
}

.post-item__content > * {
  margin-top: 24px;
}

.post-item__content > *:first-child {
  margin-top: 0;
}

.post-item__content > h2 + p,
.post-item__content > h3 + p,
.post-item__content > h4 + p {
  margin-top: 12px;
}

.post-item__content ul {
  list-style: disc;
}

.post-item__content .image-set {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0;
}

.post-item__content img {
  max-width: 100%;
  max-height: 600px;
}

.post-item__content img:only-child {
  width: 100%;
  object-fit: contain;
}

.hiddenImg {
  display: none !important;
  margin: 0 !important;
  opacity: 0.5;
}

.post-item-meta {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
  width: 248px;
  flex-shrink: 0;
  position: sticky;
  top: var(--margin-top);
}

.post-item-meta a {
  color: inherit;
}

.post-item-side__section {
  margin: 20px 0;
}

.post-item-side__section__social-link > svg,
.post-item-side__section__social-link > img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.post-item-meta__labels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-item-meta__labels-item {
  display: flex;
  padding: 4px;
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-60);
  border-radius: 4px;
  color: inherit;
  align-items: center;
  line-height: 1;
}

.post-item-meta__labels-item:hover {
  opacity: 0.7;
}

.post-item-side__section__social-link {
  color: inherit;
  display: flex;
  align-items: center;
  /* color: var(--text-80); */
  /* transition: color 100ms ease-in-out; */
  margin: 12px 0;
  padding: 0;
  border: 0;
}

.post-item-ad {
  /* width: 280px; */
  position: sticky;
  top: var(--margin-top);
  padding: 24px;
  flex-shrink: 0;
}

.post-item__content > q {
  display: block;
  border-top: 8px solid var(--fh-orange);
  border-bottom: 8px solid var(--fh-orange);
  padding: 16px 0;
  font-size: 24px;
  color: var(--fh-orange);
  font-style: italic;
}

.post-item__content > q > a {
  color: inherit;
  border-bottom: 2px solid var(--fh-orange);
}

.twitter-container,
.ig-container,
.getty-container,
.gumroad-container {
  display: flex;
  justify-content: center;
}

.post-item-title,
.post-item__content > p,
.post-item__content > form,
.post-item__content > blockquote,
.post-item__content > q,
.post-item__content > ul,
.post-item__content > ol,
.post-item__content > h2,
.post-item__content > h3,
.post-item__content > h4,
.post-item__content > .inpost-link,
.post-item__content > .slideshow-wrapper,
.post-item__content > .post-content__slideshow,
.post-item__content > .inpost-ad,
.post-item__content > .ig-container,
.post-item__content > .getty-container,
.post-item__content > .video-container,
.post-item__content > .vote-embed-container,
.twitter-container,
.post-item-byline,
.gumroad-container,
.bullet-points {
  width: 680px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.content-container .post-item__content > p,
.content-container .post-item__content > form,
.content-container .post-item__content > blockquote,
.content-container .post-item__content > q,
.content-container .post-item__content > ul,
.content-container .post-item__content > h2,
.content-container .post-item__content > h3,
.content-container .post-item__content > h4,
.content-container .post-item__content > .inpost-link,
.content-container .post-item__content > .slideshow-wrapper,
.content-container .post-item__content > .post-content__slideshow,
.content-container .post-item__content > .inpost-ad,
.content-container .post-item__content > .ig-container,
.content-container .post-item__content > .video-container {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.video-container {
  position: relative;
  /* padding-bottom: 56.25%; */
  /* padding-top: 30px; */
  /* height: 0; */
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-item__content > ul,
.post-item__content > li {
  padding-left: 20px;
}

.post-item__content > p a:not(.button)[href],
.post-item__content > blockquote a[href],
.post-item__content > h2 > a[href],
.post-item__content table a[href],
.post-item__content .league-table a[href],
.post-item__content > h3 > a[href],
.post-item__content > h4 > a[href],
.post-item__content > ul > a[href],
.post-item__content > ol > a[href],
.post-item__content > ul > li > a[href],
.post-item__content > ol > li > a[href],
.underline-link {
  color: var(--text-100);
  border-bottom: 2px solid var(--fh-orange);
}

.post-item__content > p a:not(.button)[href]:hover,
.post-item__content > blockquote a[href]:hover,
.post-item__content > h2 > a[href]:hover,
.post-item__content table a[href]:hover,
.post-item__content .league-table a[href]:hover,
.post-item__content > h3 > a[href]:hover,
.post-item__content > h4 > a[href]:hover,
.post-item__content > ul > a[href]:hover,
.post-item__content > ol > a[href]:hover,
.post-item__content > ul > li > a[href]:hover,
.post-item__content > ol > li > a[href]:hover,
.underline-link:hover {
  border-color: var(--text-100);
}

.post-item__content b {
  font-weight: bold;
}

.inpost-link {
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  /* border: 1px solid var(--bg-60); */
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-80);
}

.inpost-link:hover {
  opacity: 0.7;
}

.inpost-link .inpost-link__image {
  width: 200px;
  aspect-ratio: 80/41;
  object-fit: cover;
  max-width: unset;
  max-height: unset;
  flex-shrink: 0;
}

.inpost-link-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
}

.inpost-link__title {
  font-size: 19px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.disqus-container {
  border-top: 1px solid var(--bg-60);
  padding: 32px;
}

.post-content__slideshow {
  overflow: hidden;
  position: relative;
  font-size: 0;
  overflow: hidden;
  /* overflow-x: auto; */
  /* scroll-snap-type: x mandatory; */
  max-width: 600px;
  max-width: 600px;
}

.post-content__slideshow img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-filter: url(#sharpBlur);
  filter: url(#sharpBlur);
}

.post-content__slideshow img {
  z-index: 1;
  position: relative;
  /* width: 100%; */
}

.post-content__slideshow ul {
  display: flex;
  padding: 0;
  margin: 0;
  /* gap: 20px; */
  /* width: 100%; */
  /* transition: transform 200ms ease-in-out; */
  width: auto;
  will-change: transform;
  cursor: grab;
  /* align-items: center; */
}

.post-content__slideshow ul li {
  /* scroll-snap-align: center; */
  flex-shrink: 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-content__slideshow-controls {
  font-size: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px !important;
}

.post-content__slideshow-controls > button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--text-100);
}

.post-content__slideshow-controls > button:not(.active) {
  visibility: hidden;
}

.post-content__slideshow-controls > button.active:hover {
  opacity: 0.7;
}

.post-content__slideshow-controls > button > svg {
  width: 20px;
  height: 20px;
}

.post-content__slideshow-controls > span {
  justify-self: center;
  font-variant-numeric: tabular-nums;
}

.boot-calendar h2 {
  margin-top: 24px;
  font-size: 22px;
  font-weight: bold;
}

.boot-calendar h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.boot-calendar__block {
  margin-top: 16px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
}

.store-list-container .boot-calendar__block {
  grid-template-columns: repeat(4, 1fr);
}

.voucher-list-container .boot-calendar__block {
  grid-template-columns: repeat(2, 1fr);
}

.boot-calendar__boot {
  display: flex;
  flex-direction: column;
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-80);
  border-radius: 8px;
  overflow: hidden;
}

.boot-calendar__boot-content-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.boot-calendar__boot-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.store-list-container .boot-calendar__boot-img {
  object-fit: contain;
  background-color: #fafafa;
  padding: 15%;
}

.store-list-container p {
  line-height: 1.6;
}

.template-list-container .boot-calendar__boot-img {
  aspect-ratio: 1;
}

span.store-list__disclaimer {
  font-size: 14px;
  color: var(--text-80);
}

.boot-calendar__boot-name {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-100);
}

.boot-calendar__collection-name {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text-100);
}

.boot-calendar__boot-release-date {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-100);
}

.boot-calendar__colorway {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.boot-calendar__collection-name,
.boot-calendar__boot-release-date {
  display: flex;
  gap: 8px;
  align-items: center;
}

.boot-calendar__colorway > svg,
.boot-calendar__collection-name > svg,
.boot-calendar__boot-release-date > svg {
  width: 20px;
  height: 20px;
}

.boot-calendar__boot-link:hover {
  opacity: 0.7;
}

.inpost-ad {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  background-color: var(--bg-80);
  border-radius: 8px;
}

.inpost-ad__inner {
  display: flex;
  gap: 16px;
  position: relative;
  padding-right: 60px;
}

.inpost-ad__inner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.inpost-ad__inner__image {
  max-width: 130px !important;
  max-height: 130px !important;
  border-radius: 8px;
}

.inpost-ad__inner__image:hover {
  opacity: 0.7;
}

.inpost-ad__inner__image-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.inpost-ad__inner_main-button {
  background-color: var(--text-100);
  color: var(--bg-100);
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 16px;
}

.inpost-ad__inner_main-button:hover {
  opacity: 0.7;
}

.inpost-ad__inner__name {
  font-weight: bold;
}

.inpost-add__inner__logo {
  margin: 0 !important;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 60px !important;
  background-color: #ffffff;
  padding: 8px;
}

.inpost-add__inner__logo:hover {
  opacity: 0.7;
}

.inpost-ad__inner__link-list {
  display: flex;
  gap: 16px;
}

.inpost-ad__inner__link-list > .button {
  padding: 4px 8px;
  border: 1px solid var(--text-100);
  font-weight: bold;
  font-size: 16px;
}

.inpost-ad__inner__link-list > .button:hover {
  border-color: transparent;
  background-color: var(--text-100);
  color: var(--bg-100);
  opacity: 1;
}

.tab-container__titles {
  display: flex;
  gap: 16px;
  overflow-x: auto;
}

.tab-container__title {
  color: inherit;
  font-size: 19px;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.tab-container__title > a {
  color: inherit;
}

.tab-container__title:only-child {
  cursor: initial;
}

.tab-container__title.active {
  font-weight: bold;
  border-color: var(--fh-orange);
}

.tab-container__title:not(.active) {
  color: var(--text-80);
}

.tab-container__title:not(.active):hover {
  opacity: 0.7;
}

.tab-container__content {
  margin-top: 16px;
}

.tab-container__content-tab {
  display: none;
}

.tab-container__content-tab.active {
  display: initial;
}

.main-title {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--bg-60);
  gap: 8px;
}

.main-title > svg {
  max-width: 32px;
  max-height: 32px;
}

.main-title__logo {
  max-width: 32px;
  max-height: 32px;
}

.boot-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  overflow-x: auto;
  gap: 24px;
  padding: 0 0 8px 0;
  align-items: flex-start;
}

.kit-container {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  gap: 16px;
  padding: 0 0 8px 0;
  align-items: flex-start;
}

.kit-container.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kit-container.grid .ad-container {
  grid-column-start: 1;
  grid-column-end: 5;
}

.kit-container > a {
  color: inherit;
}

.kit {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-80);
  border-radius: 8px;
  overflow: hidden;
}

.kit-container.grid .kit {
  width: auto;
}

.kit-teamname {
  font-weight: bold;
  font-size: 18px;
  /* display: inline-flex; */
  gap: 8px;
  align-items: center;
  padding: 16px;
  text-align: center;
}

.kit-teamname > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.kit-image-container {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  background-color: var(--bg-80);
}

.kit-image-container.landscape {
  aspect-ratio: initial;
}

.kit-image-container img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-35%) translateX(-50%);
  height: 145%;
  width: auto !important;
  object-fit: initial !important;
  max-width: initial !important;
  max-height: initial !important;
}

.kit-image-container.landscape img {
  position: relative;
  width: 100% !important;
  height: 100%;
  object-fit: contain !important;
  left: initial;
  top: initial;
  transform: initial;
}

.kit-image-container.landscape img.bg {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
  -webkit-filter: url(#sharpBlur);
  filter: url(#sharpBlur);
}

.kit-container > a:hover {
  opacity: 0.7;
}

.fka-cta {
  font-size: 22px;
  font-weight: bold;
  margin-top: 24px;
  display: block;
}

.fka-cta:hover {
  opacity: 0.7;
}

.breadcrumbs-container {
  /* margin-bottom: 32px; */
  border-bottom: 1px solid var(--bg-60);
  padding: 16px 0;
}

.breadcrumbs-container.no-margin {
  margin-bottom: 0;
}

.breadcrumbs-container > .content-container {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  /* margin-top: 0; */
  /* overflow-x: auto; */
  /* border fix */
  /* padding-bottom: 2px; */
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs svg {
  width: 20px;
  height: 20px;
  color: #707070;
  flex-shrink: 0;
}

.breadcrumb__home {
  display: flex;
  align-items: center;
}

.breadcrumb__home svg {
  width: 20px;
  height: 20px;
  color: var(--text-100);
  opacity: 0.5;
}

.breadcrumb__home svg:hover {
  opacity: 1;
}

.breadcrumbs a:not(.breadcrumb__home) {
  text-decoration: none;
  border-bottom: 1px solid var(--bg-60);
}

.breadcrumbs a:hover {
  border-color: var(--text-100);
}

.team-list {
  display: grid;
  gap: 20px;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  align-items: flex-start;
}

.team-list > a {
  color: inherit;
}

.team-list__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
  background-color: var(--bg-80);
  border-radius: 8px;
  padding: 8px;
  align-items: center;
}

.team-list__item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  align-self: center;
}

.team-list > a {
  text-decoration: none;
}

.team-list > a:hover {
  opacity: 0.7;
}

.team-list__item > div {
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  line-height: 1.2;
}

.league-table-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  /* gap: 64px; */
}

.league-table {
  width: 50%;
}

.league-table:nth-child(2n),
.league-table:nth-child(2n) td:first-child {
  border-left: none;
}

.league-table .team-name-container,
.league-table .team-name-container > a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.league-table .team-name-container .team-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-item__content .league-table .team-name-container > a[href] > div {
  overflow: hidden;
  text-overflow: ellipsis;
}

.league-table .team-name-container img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.league-table tr td {
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
}

.league-table {
  display: grid;
}

.league-table__team {
  display: flex;
  flex: 1 0 0;
}

.league-table__team > div {
  flex: 1 0 0;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  /* border: 1px solid var(--bg-60); */
}

.league-table__team > div:first-child {
  flex: 0 0 220px;
  overflow: hidden;
}

.league-table__team > div:not(:first-child) {
  justify-content: center;
}

.league-table__team > div {
  border-top: 2px solid var(--bg-60);
  border-left: 2px solid var(--bg-60);
}

.league-table__team > div:last-child {
  border-right: 2px solid var(--bg-60);
}

.league-table__team:last-child > div {
  border-bottom: 2px solid var(--bg-60);
}

.league-table:not(:first-child) .league-table__team > div:first-child {
  border-left: none;
}

.post-item__content .league-table .team-name-container > a[href] {
  border: none;
  overflow: hidden;
}

.post-item__content .league-table .team-name-container > a[href] span {
  border-bottom: 2px solid var(--fh-orange);
  display: inline;
}

.post-item__content .league-table .team-name-container > a[href]:hover img {
  opacity: 0.7;
}

.post-item__content .league-table .team-name-container > a[href]:hover span {
  border-color: var(--font-color);
}

.navigation {
  background-color: var(--bg-100);
  position: fixed;
  width: 250px;
  top: var(--margin-top);
  bottom: 0px;
  border-right: 1px solid var(--bg-60);
  z-index: 999999999;
  overflow: hidden;
}

.navigation-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.navigation-inner__container {
  max-height: 100%;
  overflow-y: auto;
}

.navigation-inner__container > h3 {
  margin-top: 16px;
  padding: 0 12px 4px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.navigation-inner__container > * {
  padding: 12px;
}

.navigation-inner__container > a {
  color: inherit;
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.navigation-inner__container > a:hover {
  background-color: var(--bg-80);
}

.navigation-inner__container > a > svg,
.navigation-inner__container > a img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.navigation-inner__container > a > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
}

.navigation__external-link > svg {
  width: 12px;
  height: 12px;
}

.navigation__close-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  padding: 8px;
}

.navigation__close-btn > svg {
  width: 32px;
  height: 32px;
}

.bottom-navigation {
  background-color: var(--bg-100);
  position: fixed;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  border-top: 1px solid var(--bg-60);
  z-index: 105;
  width: 100%;
  height: 70px;
}

.bottom-navigation > a {
  color: inherit;
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  overflow: hidden;
  /* flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  text-align: center;
  min-width: 0; */
}

.bottom-navigation > a.active {
  background-color: var(--text-100);
  color: var(--bg-100);
}

.bottom-navigation > a > svg {
  width: 24px;
  height: 24px;
}

.bottom-navigation > a > span {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  /* text-overflow: ellipsis; */
  text-align: center;
}

.header-text-button {
  border: none;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  padding: 0;
}

.header-text-button:hover {
  color: var(--fh-orange);
}

.header-icon-button {
  border: none;
  padding: 4px;
  display: flex;
  color: var(--text-80);
  align-items: center;
  gap: 2px;
}

.header-icon-button.active {
  color: var(--fh-orange);
}

.header-icon-button > svg {
  width: 24px;
  height: 24px;
}

.header-icon-button:hover {
  color: var(--text-100);
}

.sidebar-ad {
  flex-grow: 0;
  flex-shrink: 0;
  position: sticky;
  top: var(--margin-top);
  padding-top: 24px;
}

.two-column-layout {
  margin: 0 auto;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 32px;
}

.two-column-layout > div:only-child {
  margin-right: -32px;
}

.two-column-layout > div {
  overflow: hidden;
}

.top-posts-container {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 400px auto 300px;
  gap: 24px;
}

.post-feed__item.secondary > .post-feed__item-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.post-feed__item.secondary .post-feed__item-image {
  width: 160px;
  flex-shrink: 0;
}

.post-feed__item.secondary .post-feed__item-headline {
  font-weight: normal;
  font-size: 14px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-posts-container__3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-posts-container__2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-blocks {
  padding-bottom: 24px;
}

.content-blocks > *:not(:first-child) {
  margin-top: 24px;
}

.post-item-byline__section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-item-byline__section > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-item-byline__section svg {
  width: 20px;
  height: 20px;
}

.post-item-byline {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-item-byline__section a {
  color: inherit;
}

.post-item-byline__section .post-item-side__section__social-link {
  margin: 0;
}

.search-container {
  position: fixed;
  width: 100%;
  top: 60px;
  min-height: 400px;
  background-color: #ffffff;
  background-color: var(--bg-100);
  z-index: 800;
  display: flex;
  max-height: 800px;
  border-bottom: 1px solid var(--bg-60);
}

.search-container:not(.visible) {
  display: none;
}

.search-container:focus {
  outline: none;
}

.search-container__results {
  overflow-y: auto;
  padding: 1px 0;
  /* display: flex; */
  height: 100%;
}

.search-container-inner {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 24px;
}

.search-container__form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-60);
  position: sticky;
  top: 0;
  z-index: 5;
}

input.search-container__input {
  border: none;
  font-size: 18px;
  padding: 0;
  flex-grow: 1;
  margin: 0 8px;
  background: none;
  color: var(--text-100);
}

.flex {
  display: flex;
}

.center {
  align-items: center;
  justify-content: center;
}

input.search-container__input:focus {
  outline: none;
}

.search-container__form svg {
  width: 24px;
  height: 24px;
  color: #a0a0a0;
  color: var(--text-50);
}
.search-container__cancel:hover > svg {
  color: #252525;
  color: var(--text-100);
}
.search-container__cancel {
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
}

.adsbygoogle,
.adsense {
  /* width: 100%; */
  width: 900px;
  height: 250px;
  /* max-width: 100%; */
}

.adsbygoogle.sidebar,
.adsense.sidebar {
  width: 300px;
  height: 750px;
}

.follow-container__social {
  color: inherit;
}

.follow-container__social:hover {
  opacity: 0.7;
}

.follow-container__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.follow-container__social > svg {
  width: 24px;
  height: 24px;
}

.navigation-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid var(--bg-60);
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 12px;
}

.navigation-socials > a {
  color: inherit;
}

.navigation-socials > a:hover {
  opacity: 0.7;
}

.header-text-button-container {
  position: relative;
}

.header-text-button-content {
  display: flex;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-100);
  border: 1px solid var(--bg-60);
  padding: 16px;
  border-radius: 8px;
  flex-direction: column;
  gap: 16px;
  white-space: nowrap;
}

.header-text-button-content:not(.visible) {
  display: none;
}

.header-text-button-content > a {
  color: inherit;
}

.header-text-button-content > a:hover {
  opacity: 0.7;
}

#button-disqus > * {
  pointer-events: none;
}

.vote-embed {
  width: 500px;
  max-width: 100%;
  height: 10px;
  box-sizing: border-box;
  height: 156px;
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid var(--text-100);
}

.header-ad {
  background-color: #000000;
  position: fixed;
  top: 60px;
  width: 100%;
  height: 60px;
  color: #ffffff;
  z-index: 499;
  white-space: nowrap;
  /* border-bottom: 1px solid var(--bg-60); */
  /* background-color: #c5c5c5 !important; */
  /* color: #000 !important;
  background: rgb(232, 232, 232) !important;
  background: linear-gradient(
    315deg,
    rgba(232, 232, 232, 1) 0%,
    rgba(197, 197, 197, 1) 33%,
    rgba(236, 236, 236, 1) 67%,
    rgba(197, 197, 197, 1) 100%
  ) !important; */
}

.header-ad > a {
  color: inherit;
}

.header-ad__inner {
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 12px;
  justify-content: center;
  gap: 32px;
  font-weight: bold;
}

.header-ad__inner svg {
  height: 32px;
}

.header-ad__inner > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-ad__cta {
  background-color: #ffffff;
  color: #000000;
  padding: 8px;
  border-radius: 4px;
  background-color: #fd6d28 !important;
  color: #000 !important;
}

[data-theme="dark"] .header-ad {
  background: #ffffff;
  color: #000000;
}

[data-theme="dark"] .header-ad__cta {
  background-color: #000000;
  color: #ffffff;
}

.labels-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-80);
  border-radius: 8px;
  overflow: hidden;
  padding: 32px;
  font-weight: bold;
  color: var(--text-100);
}

.labels-list__item > svg,
.labels-list__item > img {
  width: 24px;
  height: 24px;
}

.labels-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.labels-list__link:hover {
  opacity: 0.7;
}

.filter-container {
  display: flex;
  gap: 16px;
}

.filter-container-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-container-filter__title {
  font-size: 20px;
  font-weight: bold;
}

.filter-container-filter__input > select {
  font-size: 16px;
  padding: 4px;
  background-color: var(--bg-100);
  color: var(--text-100);
  border: 1px solid var(--text-80);
}

.bullet-points {
  font-size: 18px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-80);
  padding: 16px;
}

.bullet-points > ul {
  padding-left: 18px;
  margin: 0;
}

.bullet-points > ul > li {
  padding: 0;
  margin: 0px;
}

.lang-note {
  background-color: var(--bg-100);
  position: relative;
  color: var(--text-100);
  border-bottom: 1px solid var(--bg-60);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.1;
}

.lang-note__button {
  border: none;
  padding: 4px;
  color: var(--text-100);
  justify-self: flex-end;
  right: 0;
  top: 0;
}

.lang-note__button > svg {
  width: 16px;
  height: 16px;
}

.lang-note__button:hover {
  opacity: 0.7;
}

.lang-note__content > a {
  color: inherit;
  padding: 8px;
  display: block;
}

.lang-note__content > a:hover {
  opacity: 0.7;
}

.lang-note__content {
  margin: 0 auto;
}

.header-icon-button.language-dropdown {
  position: relative;
  font-size: 13px;
}

#language-dropdown {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .navigation__close-btn {
    display: none;
  }

  .bottom-navigation {
    display: none;
  }

  #nav-toggle {
    display: none;
  }
}

@media (min-width: 1440px) {
  .post-item-byline {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-yes {
    display: none !important;
  }
}

@media (max-width: 1500px) {
  .post-item-title,
  .post-item__content > p,
  .post-item__content > form,
  .post-item__content > blockquote,
  .post-item__content > q,
  .post-item__content > ul,
  .post-item__content > ol,
  .post-item__content > h2,
  .post-item__content > h3,
  .post-item__content > h4,
  .post-item__content > .inpost-link,
  .post-item__content > .slideshow-wrapper,
  .post-item__content > .post-content__slideshow,
  .post-item__content > .inpost-ad,
  .post-item__content > .ig-container,
  .post-item__content > .getty-container,
  .post-item__content > .video-container,
  .post-item__content > .vote-embed-container,
  .twitter-container,
  .post-item-byline,
  .gumroad-container,
  .bullet-points {
    width: initial;
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 1439px) {
  .post-feed__item-headline {
    font-size: 19px;
  }

  .adsbygoogle,
  .adsense {
    width: 100%;
    height: auto;
  }

  .navigation {
    width: 210px;
  }

  .content {
    padding-left: 210px;
  }

  .two-column-layout {
    grid-template-columns: 1fr;
  }

  .two-column-layout > div:only-child {
    margin-right: 0;
  }

  .sidebar-ad {
    display: none;
  }

  .top-posts-container {
    grid-template-columns: 2fr 1fr;
  }

  .top-posts-container__3 {
    order: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .post-item-meta {
    display: none;
  }

  .post-item {
    border-left: none;
  }

  .league-table-container {
    flex-direction: column;
    padding-bottom: 16px;
    overflow-x: auto;
  }

  .league-table {
    width: 100%;
  }

  .league-table:not(:last-child) .league-table__team:last-child > div {
    border-bottom: none;
  }

  .league-table:not(:first-child) .league-table__team > div:first-child {
    border-left: 2px solid var(--bg-60);
  }
}

@media (max-width: 1023px) {
  #onesignal-bell-container {
    bottom: 70px !important;
  }

  .content {
    padding-left: 0;
    padding-bottom: 70px;
  }

  .navigation {
    width: 100%;
    border: none;
    top: 60px;
  }

  .navigation-inner > a {
    width: 80%;
  }

  .navigation:not(.visible) {
    display: none;
  }

  .top-posts-container {
    grid-template-columns: 1fr;
  }

  .top-posts-container__2 {
    flex-direction: row;
    align-items: flex-start;
  }

  .top-posts-container__2 > .post-feed__item {
    flex: 1 0 0;
  }

  .top-posts-container__3 {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .post-item-ad {
    display: none;
  }

  .post-item {
    border: none;
  }

  .header-inner {
    padding: 0 8px;
  }

  .header-inner > div {
    gap: 4px;
  }

  .tab-container__title {
    font-size: 16px;
  }

  .header-icon-button > svg {
    width: 20px;
    height: 20px;
  }

  .breadcrumbs-container > .content-container,
  .content-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .kit-container,
  .post-feed,
  .top-posts-container,
  .top-posts-container__2,
  .top-posts-container__3,
  .boot-calendar__block {
    gap: 12px;
  }

  .top-posts-container {
    margin-top: 12px;
  }

  .team-list {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }

  .inpost-link .inpost-link__image {
    width: 160px;
  }

  .inpost-link-inner {
    gap: 8px;
    padding: 12px;
  }

  .inpost-link__title {
    font-size: 16px;
  }

  .inpost-link {
    align-items: center;
  }

  .post-item {
    padding-top: 16px;
  }

  .lang-note {
    padding: 0 8px;
  }
}

@media (max-width: 767px) {
  .tab-container__titles {
    max-width: calc(100vw - 24px);
  }

  .snack-container,
  #snackMobile {
    min-height: 400px !important;
  }

  .kit-container.grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kit-container.grid .ad-container {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .vote-embed {
    height: 250px;
  }

  .mobile-no {
    display: none !important;
  }

  .post-feed {
    grid-template-columns: 1fr;
  }

  .post-feed .ad-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .top-posts-container__2 .post-feed__item-meta {
    display: none;
  }

  .boot-calendar__block,
  .store-list-container .boot-calendar__block {
    grid-template-columns: 1fr 1fr;
  }

  .voucher-list-container .boot-calendar__block {
    grid-template-columns: 1fr;
  }

  .boot-calendar__block .ad-container {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .bottom-navigation > a {
    font-size: 12px;
  }

  .boot-container {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding: 0 0 8px 0;
    align-items: flex-start;
  }

  .boot-container > * {
    flex: 1 0 320px;
  }

  .inpost-ad__inner {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .inpost-ad__inner__content {
    align-items: center;
  }

  .inpost-ad__inner__name {
    text-align: center;
  }

  .post-item-title,
  .post-item__content > p,
  .post-item__content > form,
  .post-item__content > blockquote,
  .post-item__content > q,
  .post-item__content > ul,
  .post-item__content > ol,
  .post-item__content > h2,
  .post-item__content > h3,
  .post-item__content > h4,
  .post-item__content > .inpost-link,
  .post-item__content > .inpost-ad,
  .post-item__content > .ig-container,
  .post-item__content > .video-container,
  .post-item__content > .vote-embed-container,
  .twitter-container,
  .post-item-byline,
  .gumroad-container,
  .bullet-points {
    margin-left: 12px;
    margin-right: 12px;
  }

  .post-item__content > .slideshow-wrapper,
  .post-item__content > .video-container,
  .post-item__content > .getty-container,
  .post-item__content > .post-content__slideshow {
    margin-left: 0;
    margin-right: 0;
  }

  .post-item__content {
    font-size: 18px;
    padding-bottom: 0px;
  }

  .post-item-title {
    font-size: 22px;
  }

  .post-item__content h2 {
    font-size: 20px;
  }

  .post-item__content h3 {
    font-size: 19px;
  }

  .disqus-container {
    padding: 12px;
    margin-top: 24px;
  }

  .post-item__content .image-set {
    gap: 4px;
  }

  .league-table__team > div:first-child {
    flex-basis: 150px;
  }

  .header-ad__inner svg {
    height: 26px;
  }

  .header-ad__bf {
    display: none !important;
  }

  .header-ad__inner {
    gap: 16px;
  }

  .header-ad__inner > div {
    font-size: 14px;
  }

  .post-item-byline {
    font-size: 15px;
  }

  .post-item-byline__section {
    gap: 12px;
  }

  #follow-btn {
    display: none;
  }

  .language-dropdown > span {
    display: none;
  }
}

@media (max-width: 424px) {
  .boot-calendar__block {
    grid-template-columns: 1fr;
  }

  .boot-calendar__block .ad-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .bottom-navigation > a {
    font-size: 10px;
  }

  .boot-container > * {
    flex-basis: 200px;
  }
}

@media (max-width: 374px) {
  .header-inner {
    padding: 0 4px;
  }

  .header-inner > div {
    gap: 2px;
  }

  .header-logo {
    height: 18px;
  }

  .header-icon-button > svg {
    width: 18px;
    height: 18px;
  }
}

@media only screen and (max-width: 42em) {
  .post-item,
  .two-column-layout > div {
    overflow: visible !important;
  }

  .post-item {
    width: 100%;
  }

  #snackMobile {
    min-height: 480px !important;
  }

  .snack-container > div,
  #snackMobile > div,
  #snack_mob_top,
  #snack_mex2,
  #snack_mex3,
  #snack_mex4,
  #snack_mex5,
  #snack_mex6,
  #snack_mex7,
  #snack_mex8,
  div[id^="snack_mex"] {
    position: sticky;
    top: 105px;
  }
}
