.SubscribeButton {
  background-color: #ffcb3d;
  font-weight: 700;
  font-size: 10px;
  padding: 4px;
}

.SubscribeButton__large {
  font-weight: 900;
  font-size: 12px;
  padding: 4px 8px;
}

@media (min-width: 960px) {
  .SubscribeButton__large {
    padding: 2px 12px;
    transform: translateY(4px);
  }
}

.SubscribeButton__buttonWithText {
  display: inline-block;
  padding: 2px 8px;
  text-align: center;
  font-size: 10px;
  font-weight: normal;
}

@media (min-width: 570px) {
  .SubscribeButton__buttonWithText {
    font-size: 12px;
  }
}

@media (min-width: 960px) {
  .SubscribeButton__buttonWithText {
    padding: 2px 12px;
  }
}

.SubscribeButton__buttonWithText > span {
  font-weight: 700;
}

.UserMenu {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  flex: 1;
  transition: height 0.25s;
  border-bottom: 2px solid;
  overflow: hidden;
  height: 174px;
  box-sizing: border-box;
}

.UserMenu > *:last-child {
  border-bottom: 0;
}

.UserMenu__collapsed {
  height: 0;
  border-bottom: 0;
}

@media (min-width: 960px) {
  .UserMenu {
    width: 258px;
    right: 0;
    top: 100%;
    margin-top: 6px;
    border-right: 1px solid #a6aaab;
    border-left: 1px solid #a6aaab;
    position: absolute;
  }
}

.UserMenu > * {
  border-bottom: 1px solid #d2d5d7;
  justify-content: space-between;
  font-size: 14px;
  position: relative;
}

.LoginOrUserInfo__login {
  font-size: 12px;
  font-weight: 900;
  margin-left: 12px;
}

.LoginOrUserInfo__userIcon {
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  cursor: pointer;
  position: relative;
}

.LoginOrUserInfo__userIcon::before {
  content: "";
  width: 13px;
  height: 14px;
  margin-left: 8px;
  margin-bottom: 2px;
  vertical-align: middle;
  display: inline-block;
}

.LoginOrUserInfo__chevron::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  align-items: center;
  margin-left: 8px;
  transition: transform 150ms linear;
  transform: rotate(180deg);
}

.LoginOrUserInfo__chevron__down::after {
  transform: rotate(0);
}

.MenuItem {
  display: flex;
  align-items: center;
  background-color: #fff;
  font-weight: 700;
  padding: 20px 16px 20px;
}

.MenuItem__section {
  text-transform: uppercase;
  font-weight: 900;
}

.MenuItem__section__nieuws:hover {
  color: #27509a;
}

.MenuItem__section__live:hover {
  color: #27509a;
}

.MenuItem__section__sport:hover {
  color: #0ab2ef;
}

.MenuItem__section__financieel:hover {
  color: #576a97;
}

.MenuItem__section__entertainment:hover {
  color: #e6007e;
}

.MenuItem__section__vrouw:hover {
  color: #dc0000;
}

.MenuItem__section__lifestyle:hover {
  color: #0ea3bb;
}

.MenuItem__section__watuzegt:hover {
  color: #9ca24c;
}

@media (min-width: 960px) {
  .MenuItem__section {
    display: inline-block;
    padding: 8px;
  }
}

.MenuItem__active {
  border-right-width: 4px;
  border-right-style: solid;
}

.theme__financieel .MenuItem__active {
  border-color: #576a97;
}

@media (min-width: 960px) {
  .MenuItem__active {
    border: none;
    color: #fff;
  }

  .theme__financieel .MenuItem__active {
    background-color: #576a97;
  }

  .MenuItem__active:hover {
    color: #fff;
  }
}

.MenuItem__leftIcon {
  padding-left: 48px;
  font-weight: normal;
}

.MenuItem__leftIcon::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
}

.MenuItem__rightIcon::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}

.MenuItem__rightIcon__info::after {
  top: 22px;
  right: 24px;
  width: 12px;
  height: 12px;
}

.MenuItem__rightIcon__search::after {
  top: 12px;
  right: 16px;
  width: 32px;
  height: 32px;
}

@media (min-width: 960px) {
  .MenuItem__rightIcon__search::after {
    top: 4px;
    right: 4px;
  }
}

@media (min-width: 960px) {
  .MenuItem__search {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: flex-end;
    margin-left: 20px !important;
  }
}

.MenuItem__search a {
  background-color: rgba(0, 0, 0, 0);
  position: relative;
}

@media (min-width: 960px) {
  .MenuItem__search a {
    padding: 20px;
    margin: 0 4px;
    background: none;
    font-size: 0;
  }
}

.Menu {
  display: grid;
  grid-template: 1fr/90px 1fr 90px;
  border-bottom: 2px solid #202223;
  max-width: 1440px;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

@media (min-width: 570px) {
  .Menu {
    grid-template-columns: 120px 1fr 120px;
  }
}

@media (min-width: 960px) {
  .Menu {
    padding: 4px 0;
    position: relative;
    grid-row: 2;
    grid-column: 2;
    height: auto;
    grid-template: 1fr / minmax(auto, 210px) minmax(max-content, 1fr);
    grid-column-gap: 4px;
  }
}

.Menu > [data-name="UserSubscribeLink"] {
  justify-self: flex-end;
}

@media (min-width: 960px) {
  .Menu > [data-name="UserSubscribeLink"] {
    display: none;
  }
}

.Menu__toggleInput {
  display: none;
}

.Menu__toggleLabel {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #202223;
}

.Menu__toggleLabel:hover {
  filter: opacity(50%);
}

@media (min-width: 960px) {
  .Menu__toggleLabel {
    display: none;
  }
}

.Menu__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Menu__logo img {
  width: 130px;
  height: 40px;
}

@media (min-width: 960px) {
  .Menu__logo img {
    width: 100%;
    height: 50px;
    max-width: 210px;
  }
}

.Menu__skip {
  font-weight: 700;
  color: #27509a;
  background-color: #fff;
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  top: auto;
  padding: 8px 12px;
}

.Menu__skip:focus {
  height: auto;
  width: auto;
  position: absolute;
  margin: auto;
  left: 0;
  bottom: -44px;
}

.Menu__drawer {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 4;
  top: 0;
  left: -300px;
  height: 100vh;
  width: 300px;
  overflow: hidden scroll;
  background-color: #f0f2f3;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0);
  transition: 0.25s ease-in-out;
}

@media (min-width: 960px) {
  .Menu__drawer {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-self: end;
    position: relative;
    width: 100%;
    height: auto;
    background: none;
    left: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    grid-column: 2;
    grid-row: 1;
  }
}

.Menu__mobileWrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.Menu__toggleInput:checked ~ .Menu__mobileWrapper {
  display: block;
}

@media (min-width: 960px) {
  .Menu__toggleInput:checked ~ .Menu__mobileWrapper {
    display: none;
  }
}

.Menu__toggleInput:checked ~ .Menu__drawer {
  left: 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 960px) {
  .Menu__toggleInput:checked ~ .Menu__drawer {
    box-shadow: none;
  }
}

.Menu__drawerTop {
  border-bottom: 2px solid #202223;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: #fff;
  height: 40px;
}

@media (min-width: 960px) {
  .Menu__drawerTop {
    border-bottom: none;
    border-left: 1px solid #d2d5d7;
    padding: 0 0 0 8px;
    margin-bottom: 5px;
  }
}

.Menu__closeDrawer {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.Menu__closeDrawer:hover {
  filter: opacity(50%);
}

@media (min-width: 960px) {
  .Menu__closeDrawer {
    display: none;
  }
}

.Menu__drawerList {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  padding-bottom: 72px;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .Menu__drawerList {
    flex-direction: row;
    padding-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    flex-grow: 1;
    align-items: flex-end;
    white-space: nowrap;
    margin-bottom: 1px;
  }

  .Menu__drawerList > *:nth-child(2),
  .Menu__drawerList > *:nth-last-child(-n + 6) {
    display: none;
  }
}

.Menu__drawerList > *:not(:first-child) {
  border-bottom: 1px solid #d2d5d7;
  justify-content: space-between;
  font-size: 14px;
  position: relative;
}

@media (min-width: 960px) {
  .Menu__drawerList > *:not(:first-child) {
    font-size: 12px;
    border-bottom: 0;
    margin-left: 4px;
  }
}

@media (min-width: 960px) {
  .Menu__drawerList > .MenuItem__search {
    justify-content: flex-end;
  }
}

.Header {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .Header {
    grid-column-gap: 4px;
    grid-template-columns: 12px 1fr 12px;
  }
}

@media (min-width: 1070px) {
  .Header {
    grid-template-columns: 16px 1fr 16px;
  }
}

@media (min-width: 1488px) {
  .Header {
    grid-template-columns: 1fr 1440px 1fr;
  }
}

.Header + * {
  padding-top: 62px;
}

@media (min-width: 960px) {
  .Header + * {
    padding-top: 89px;
  }
}

.Header {
  top: 0;
  width: 100%;
  position: fixed;
  background-color: #fff;
  border-top: 4px solid #27509a;
  grid-template-rows: 1fr;
  z-index: 9998;
}

.theme__financieel .Header {
  border-color: #576a97;
}

@media (min-width: 960px) {
  .Header {
    border-top-width: 6px;
    grid-template-rows: max-content max-content;
  }
}

@media (min-width: calc(1440px + 48px)) {
  .Header {
    grid-template-rows: max-content max-content;
  }
}

.Header__widgets {
  display: none;
}

@media (min-width: 960px) {
  .Header__widgets {
    grid-column: 2;
    justify-content: flex-end;
    align-items: center;
    display: grid;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    gap: 16px;
  }
}

.Header__widgetWrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.Header__widgetWrapper::before {
  content: "";
  position: absolute;
  border-left: 1px solid #d2d5d7;
  top: 4px;
  left: -8px;
  height: 14px;
}

.Header__link {
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
}

.Header__service {
  margin: 0;
}

.Header__service::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  top: 2px;
}

.Header__service:hover {
  text-decoration: underline;
}

.TrafficWidget::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center -1px;
  height: 23px;
  width: 23px;
  background-size: 23px;
}

.WeatherWidget__icon {
  vertical-align: middle;
}

.Submenu {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .Submenu {
    grid-column-gap: 4px;
    grid-template-columns: 12px 1fr 12px;
  }
}

@media (min-width: 1070px) {
  .Submenu {
    grid-template-columns: 16px 1fr 16px;
  }
}

@media (min-width: 1488px) {
  .Submenu {
    grid-template-columns: 1fr 1440px 1fr;
  }
}

.Submenu__wrapper {
  background-color: #f0f2f3;
  height: 32px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  overflow-x: auto;
}

@media (min-width: 960px) {
  .Submenu__wrapper {
    grid-column: 2;
  }
}

@media (min-width: 820px) {
  .Submenu__wrapper {
    height: 50px;
    padding: 0 16px;
  }
}

.Submenu__tab {
  font-size: 12px;
  padding: 0 8px;
  white-space: nowrap;
  color: #202223;
  position: relative;
}

@media (min-width: 820px) {
  .Submenu__tab {
    font-size: 14px;
    padding: 16px 12px;
  }
}

@media (min-width: 820px) {
  .Submenu__tab::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1px;
    bottom: -1px;
    height: 2px;
    transition: width 0.3s ease-out;
  }
}

.theme__financieel .Submenu__tab:hover::before {
  background-color: #576a97;
}

.theme__financieel .Submenu__tab:focus::before {
  background-color: #576a97;
}

.theme__financieel .Submenu__tab:active::before {
  background-color: #576a97;
}

.Submenu__tab:hover::before,
.Submenu__tab:focus::before,
.Submenu__tab:active::before {
  width: 100%;
  background-color: #202223;
}

.NewsletterForm {
  background-color: #f0f2f3;
  padding: 16px 16px 24px 16px;
}

@media (min-width: 820px) {
  .NewsletterForm {
    width: 70%;
  }
}

.NewsletterForm__themed {
  padding: 16px 12px 0;
  border-top: 4px solid;
  width: auto;
}

.theme__financieel .NewsletterForm__themed {
  border-color: #576a97;
}

.theme__financieel .NewsletterForm__themed button {
  background-color: #576a97;
}

.theme__financieel .NewsletterForm__themed a {
  color: #576a97;
}

.NewsletterForm__title {
  font-size: 18px;
  font-weight: 900;
}

.NewsletterForm__text {
  font-size: 14px;
  margin: 16px 0;
}

.NewsletterForm__form {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}

.NewsletterForm__inputAccessory {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 22px;
  width: 22px;
}

.NewsletterForm__input {
  font-size: 14px;
  max-height: 42px;
  border: 1px solid #d2d5d7;
  flex-grow: 1;
  margin: 0;
  padding-left: 40px;
  max-width: calc(100% - 114px);
  box-sizing: border-box;
}

.NewsletterForm__input:focus-visible {
  outline: none;
}

.NewsletterForm button {
  font-size: 12px;
  font-weight: 700;
  border: 0;
  width: 98px;
  height: 26px;
  display: inline-block;
  color: #fff;
  background-color: #27509a;
  text-decoration: none;
  text-align: center;
  padding: 8px;
  box-sizing: content-box;
}

.NewsletterForm__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: 12px 0;
}

.NewsletterForm__errorMessage {
  display: none;
  font-size: 12px;
  flex: 1;
  text-align: left;
  width: 100%;
  color: #d00910;
}

.NewsletterForm__privacy {
  font-size: 12px;
  flex: 1;
  display: inline-block;
  text-align: right;
  width: 100%;
  color: #74797a;
}

.NewsletterForm__privacy > a {
  color: #27509a;
}

.NewsletterForm__privacy > a:hover {
  text-decoration: underline;
}

.FooterLink {
  display: block;
}

.FooterLink__nieuws {
  color: #27509a;
}

.FooterLink__sport {
  color: #0ab2ef;
}

.FooterLink__financieel {
  color: #576a97;
}

.FooterLink__entertainment {
  color: #e6007e;
}

.FooterLink__vrouw {
  color: #dc0000;
}

.FooterLink__lifestyle {
  color: #0ea3bb;
}

.FooterLink__watuzegt {
  color: #9ca24c;
}

.FooterLink__icon {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.FooterLink__subsection {
  font-size: 14px;
  width: fit-content;
  line-height: 1.6;
}

.Krant {
  flex: 1;
}

@media (min-width: 820px) {
  .Krant {
    margin-left: 14px;
  }
}

.Krant > p {
  font-size: 14px;
  font-weight: 700;
  padding: 16px 0;
}

@media (min-width: 820px) {
  .Krant > p {
    padding: 0 0 12px 0;
  }
}

.SharedLinks {
  grid-column: 1/3;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(2, min-content);
  margin: 0 8px;
  padding: 0 8px 16px;
  border-bottom: 1px solid #d2d5d7;
  font-size: 14px;
}

@media (min-width: 570px) {
  .SharedLinks {
    margin: 0 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 820px) {
  .SharedLinks {
    grid-column: 2/3;
    grid-row: 2/4;
    margin: 24px 16px 28px;
    padding: 0;
    border-bottom: none;
  }
}

@media (min-width: 1070px) {
  .SharedLinks {
    grid-template-columns: repeat(3, 33.3%);
    grid-template-rows: min-content;
    margin-bottom: 16px;
  }
}

.SharedLinks__title {
  font-weight: 700;
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}

.SharedLinks > div > a {
  color: #74797a;
  margin-bottom: 12px;
}

.SharedLinks > div > a:last-child {
  margin-bottom: 0px;
}

.SharedLinks__secondBlock {
  grid-column: 1;
  grid-row: 2;
  margin-top: 24px;
}

.SharedLinks__secondBlock > p::after {
  display: inline-block;

  background-repeat: no-repeat;
  margin-left: 8px;
  width: 15px;
  height: 14px;
}

@media (min-width: 820px) {
  .SharedLinks__secondBlock {
    padding-right: 8px;
  }
}

@media (min-width: 1070px) {
  .SharedLinks__secondBlock {
    margin-top: 0;
    grid-column: 2;
    grid-row: 1;
    padding-left: 12px;
    border-left: 1px solid #d2d5d7;
  }
}

.SharedLinks__thirdBlock {
  padding-left: 12px;
  border-left: 1px solid #d2d5d7;
}

.SharedLinks__thirdBlock > *:nth-last-child(-n + 2) {
  display: none;
}

@media (min-width: 820px) {
  .SharedLinks__thirdBlock > *:nth-last-child(-n + 2) {
    display: block;
  }
}

.SharedLinks__thirdBlock > *:nth-last-child(-n + 3) {
  margin-bottom: 0px;
}

@media (min-width: 820px) {
  .SharedLinks__thirdBlock > *:nth-last-child(-n + 3) {
    margin-bottom: 12px;
  }
}

.SharedLinks > div:last-of-type {
  display: none;
  margin-top: 24px;
}

@media (min-width: 820px) and (max-width: 1069px) {
  .SharedLinks > div:last-of-type {
    display: block;
  }
}

@media (min-width: 820px) {
  .FooterNavigation {
    margin-bottom: 16px;
    border-right: 1px solid #d2d5d7;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1070px) {
  .FooterNavigation {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1670px) {
  .FooterNavigation {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.FooterNavigation:nth-child(even) {
  padding-left: 16px;
}

@media (min-width: 820px) {
  .FooterNavigation:nth-child(even) {
    padding-left: 20px;
  }
}

@media (min-width: 1070px) {
  .FooterNavigation:nth-child(even) {
    padding-left: 48px;
  }
}

@media (min-width: 1670px) {
  .FooterNavigation:nth-child(even) {
    padding-left: 16px;
  }
}

.FooterNavigation:nth-child(odd) {
  border-right: 1px solid #d2d5d7;
}

@media (min-width: 820px) {
  .FooterNavigation:nth-child(4n) {
    border-right: none;
  }
}

@media (min-width: 1670px) {
  .FooterNavigation:nth-child(4n) {
    border-right: 1px solid #d2d5d7;
  }
}

.FooterNavigation > a {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  white-space: nowrap;
  align-items: center;
}

@media (min-width: 570px) {
  .FooterNavigation > a {
    font-size: 18px;
  }
}

@media (min-width: 820px) {
  .FooterNavigation > a {
    margin-bottom: 0;
  }
}

@media (min-width: 820px) {
  .FooterNavigation > a::after {
    content: "";

    margin-left: 8px;
    transform: rotate(270deg);
    width: 10px;
    height: 10px;
  }
}

.FooterNavigation__subsectionListContainer {
  display: none;
}

@media (min-width: 820px) {
  .FooterNavigation__subsectionListContainer {
    display: flex;
    flex-direction: column;
    margin: 16px 0;
  }
}

.FooterNavigation__subsectionList {
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.FooterNavigation__listToggle {
  font-size: 14px;
  border-bottom: 1px solid #202223;
  width: fit-content;
  line-height: 1.6;
}

.FooterNavigation__listToggle::after {
  content: "";
  margin-left: 4px;

  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

.FooterNavigation__listToggleCheckbox:not(:checked) ~ label::before {
  content: "Meer";
}

.FooterNavigation__listToggleCheckbox:not(:checked) ~ div {
  max-height: 44px;
}

.FooterNavigation__listToggleCheckbox:checked ~ label::before {
  content: "Minder";
}

.FooterNavigation__listToggleCheckbox:checked ~ label::after {
  transform: rotate(180deg);
}

.FooterNavigation__listToggleCheckbox:checked ~ div {
  max-height: 230px;
}

.UnsectionedLinks {
  padding-left: 16px;
}

@media (min-width: 820px) {
  .UnsectionedLinks {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1070px) {
  .UnsectionedLinks {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1670px) {
  .UnsectionedLinks {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.UnsectionedLinks > a {
  font-weight: 700;
  display: none;
}

@media (min-width: 820px) {
  .UnsectionedLinks > a {
    display: block;
  }
}

.UnsectionedLinks > a:first-of-type {
  display: block;
  line-height: unset;
}

@media (min-width: 570px) {
  .UnsectionedLinks > a:first-of-type {
    font-size: 18px;
  }
}

@media (min-width: 820px) {
  .UnsectionedLinks > a:first-of-type {
    font-size: 14px;
    line-height: 1.6;
  }
}

.UnsectionedLinks__title {
  font-size: 18px;
  font-weight: 700;
  display: none;
  margin: 0;
}

@media (min-width: 820px) {
  .UnsectionedLinks__title {
    display: block;
    margin-bottom: 16px;
  }
}

.PrintAndDigitalIcons {
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  justify-content: space-between;
  padding: 16px 8px;
  margin: 0 8px;
}

@media (min-width: 570px) {
  .PrintAndDigitalIcons {
    margin: 0 12px;
    padding: 16px;
  }
}

@media (min-width: 820px) {
  .PrintAndDigitalIcons {
    grid-column: 2/3;
    grid-row: 4/5;
    flex-direction: row-reverse;
    padding: 0 0 28px;
  }
}

.PrintAndDigitalIcons__title {
  font-size: 14px;
  font-weight: 700;
  padding: 16px 0;
}

@media (min-width: 820px) {
  .PrintAndDigitalIcons__title {
    margin-top: 0;
    margin-bottom: 12px;
    padding: 0;
  }
}

.PrintAndDigitalIcons__rightBlock {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
}

@media (min-width: 1070px) {
  .PrintAndDigitalIcons__rightBlock {
    flex-basis: 66.67%;
  }
}

@media (min-width: 820px) {
  .PrintAndDigitalIcons__rightBlock > .PrintAndDigitalIcons__title {
    display: none;
  }
}

.PrintAndDigitalIcons__linksWrapper {
  display: flex;
  flex-direction: column;
}

.PrintAndDigitalIcons__linksWrapper img {
  width: 120px;
}

@media (min-width: 570px) {
  .PrintAndDigitalIcons__linksWrapper {
    flex-direction: row;
  }

  .PrintAndDigitalIcons__linksWrapper img {
    width: auto;
    height: 40px;
  }
}

@media (min-width: 820px) {
  .PrintAndDigitalIcons__linksWrapper {
    display: none;
  }
}

.PrintAndDigitalIcons__linksWrapper > a {
  margin-bottom: 16px;
  margin-right: 16px;
}

.FooterSocialMedia {
  grid-column: 1/3;
  grid-row: 3/4;
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px solid #d2d5d7;
  margin: 0 8px;
}

@media (min-width: 570px) {
  .FooterSocialMedia {
    margin: 0 12px;
  }
}

@media (min-width: 820px) {
  .FooterSocialMedia {
    grid-column: 2/3;
    grid-row: 1/2;
    border-bottom: 1px solid #d2d5d7;
    margin: 0;
    border-top: none;
    justify-content: unset;
  }
}

.FooterSocialMedia__iconsList {
  width: 400px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.FooterSocialMedia__text {
  font-size: 12px;
  line-height: 1.3;
  display: none;
  color: #a6aaab;
}

@media (min-width: 1070px) {
  .FooterSocialMedia__text {
    display: block;
  }
}

.Legal__legalWrapper {
  grid-column: 1/3;
  grid-row: 5/6;
  color: #fff;
  padding: 32px 16px 64px;
  background-color: #3a3e3f;
}

@media (min-width: 820px) {
  .Legal__legalWrapper {
    grid-column: 1/2;
    grid-row: 3/4;
    color: #74797a;
    background-color: #f0f2f3;
    padding-bottom: 28px;
  }
}

@media (min-width: 1070px) {
  .Legal__legalWrapper {
    grid-row: 3/5;
  }
}

.Legal__legalWrapper > p {
  text-decoration: none;
}

.Legal__logo {
  width: 214px;
  height: 45px;
  background-size: 214px 45px;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-bottom: 12px;
}

@media (min-width: 820px) {
  .Legal__logo {
    background-image: url("/img/telegraaf.svg");
  }
}

.Legal__legalWrapper > a,
.Legal__text {
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  display: block;
  margin-bottom: 16px;
  text-decoration: underline;
}

@media (min-width: 820px) {
  .Legal__legalWrapper > a,
  .Legal__text {
    color: #74797a;
  }
}

.Footer__topBlock {
  padding: 16px 8px;
  max-width: 1320px;
  border-top: 4px solid;
}

@media (min-width: 570px) {
  .Footer__topBlock {
    margin: 0 12px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 820px) {
  .Footer__topBlock {
    padding-bottom: 0;
  }
}

@media (min-width: 1070px) {
  .Footer__topBlock {
    margin: 0 auto;
  }
}

.Footer__sections {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  padding: 0 8px 16px 8px;
  border-bottom: 1px solid #d2d5d7;
}

@media (min-width: 570px) {
  .Footer__sections {
    padding: 0 16px 16px 16px;
  }
}

@media (min-width: 820px) {
  .Footer__sections {
    grid-template-columns: repeat(4, 25%);
    padding: 0 24px 16px 24px;
    border-bottom: none;
  }
}

@media (min-width: 1670px) {
  .Footer__sections {
    grid-template-columns: repeat(8, 1fr);
    padding: 0;
    margin-bottom: 8px;
  }
}

.Footer__bottomBlock {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(5, min-content);
}

@media (min-width: 820px) {
  .Footer__bottomBlock {
    grid-template-columns: 52% 48%;
    grid-template-rows: repeat(3, min-content);
    background-color: #f0f2f3;
    border-top: 1px solid #d2d5d7;
    padding-top: 16px;
    padding-left: calc((100% - 1320px) / 2);
    padding-right: calc((100% - 1320px) / 2);
  }
}

@media (min-width: 1070px) {
  .Footer__bottomBlock {
    grid-template-columns: 46% 54%;
    grid-template-rows: repeat(4, min-content);
  }
}

@media (min-width: 820px) and (max-width: 1069px) {
  .Footer__bottomBlock > *:nth-child(2) {
    display: none;
  }
}

.Footer__bottomBlock > *:nth-child(4) {
  grid-column: 1/3;
  grid-row: 4/5;
}

@media (min-width: 820px) {
  .Footer__bottomBlock > *:nth-child(4) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}

.FluidImage {
  color: #d2d5d7;
  width: 100%;
  position: absolute;
  top: 0;
}

.TeaserImage__placeholder {
  background-image: url("/img/teaser-image-placeholder.svg");
  background-repeat: no-repeat;
  background-color: #ebebeb;
  background-position: center;
  background-size: contain;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.TeaserImage__playIcon {
  position: absolute;
  display: inline-block;
  width: min(22.5%, 52px);
  height: min(40%, 52px);
  left: calc(50% - min(22.5%, 52px) / 2);
  top: calc(50% - min(40%, 52px) / 2);
  align-self: center;
}

.TeaserMetadata {
  font-size: 11px;
  font-weight: 700;
  color: #74797a;
  display: flex;
  align-items: center;
  white-space: nowrap;
  line-height: normal;
  min-height: 15px;
  margin-bottom: 4px;
}

.TeaserMetadata > * {
  margin-right: 4px;
}

.TeaserMetadata > *:last-child {
  margin-right: 0;
}

.TeaserMetadata label {
  background-color: #ffcb3d;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.TeaserMetadata label::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
}

.TeaserMetadata time + img,
.TeaserMetadata time + span {
  padding-left: 4px;
  border-left: 1px solid;
}

.TeaserMetadata img {
  align-self: end;
}

.TeaserMetadata img + span {
  padding-left: 4px;
  border-left: 1px solid;
}

.TeaserMetadata span {
  text-overflow: ellipsis;
  overflow-x: hidden;
}

.BasicTeaser a {
  display: grid;
  height: 100%;
  align-content: flex-start;
}

.BasicTeaser__wrapper {
  overflow: hidden;
}

.BasicTeaser .TeaserImage__placeholder {
  margin-bottom: 8px;
}

.BasicTeaser h3 {
  font-size: 16px;
  font-weight: 900;
  word-break: break-word;
}

@media (min-width: 570px) {
  .BasicTeaser h3 {
    font-size: 18px;
  }
}

.BasicTeaser__list {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #d2d5d7;
}

.BasicTeaser__list a {
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 8px;
  align-items: center;
}

@media (min-width: 570px) {
  .BasicTeaser__list a {
    grid-column-gap: 12px;
    grid-template-columns: 1fr 3fr;
  }
}

.BasicTeaser__list a > div:first-child {
  margin-bottom: 0;
}

@media (min-width: 570px) {
  .BasicTeaser__list h3 {
    font-size: 20px;
  }
}

@media (min-width: 1070px) {
  .BasicTeaser__list h3 {
    font-size: 18px;
  }
}

.LatestNewsTeaser a {
  display: grid;
  grid-template-columns: 37px 1fr 67px;
  grid-column-gap: 8px;
  align-items: center;
}

.LatestNewsTeaser a div:first-of-type {
  margin-bottom: 0;
}

.LatestNewsTeaser a h3 {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.LatestNewsTeaser a h3 > span {
  background-color: #ffcb3d;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.LatestNewsTeaser a h3 > span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
}

.MostReadTeaser {
  padding: 12px 0;
  border-bottom: 1px solid #d2d5d7;
}

.MostReadTeaser a {
  display: grid;
  grid-template-columns: max-content 1fr 28%;
  grid-gap: 8px;
  align-items: center;
}

.MostReadTeaser__number {
  font-size: 24px;
  font-weight: 700;
  margin-right: 8px;
}

.MostReadTeaser__wrapper {
  overflow: hidden;
}

.MostReadTeaser h3 {
  font-size: 16px;
}

@media (min-width: 570px) {
  .MostReadTeaser h3 {
    font-size: 18px;
  }
}

@media (min-width: 820px) {
  .MostReadTeaser h3 {
    font-size: 16px;
  }
}

.PageWrapper {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .PageWrapper {
    grid-column-gap: 4px;
    grid-template-columns: 12px 1fr 12px;
  }
}

@media (min-width: 1070px) {
  .PageWrapper {
    grid-template-columns: 16px 1fr 16px;
  }
}

@media (min-width: 1488px) {
  .PageWrapper {
    grid-template-columns: 1fr 1440px 1fr;
  }
}

@media (min-width: 570px) {
  .PageWrapper {
    grid-template-rows: max-content max-content max-content 1fr max-content;
  }
}

.PageWrapper__breadcrumbs {
  grid-row: 2;
  grid-column: 1;
  font-size: 14px;
  font-weight: 900;
  width: fit-content;
  color: #202223;
  text-transform: uppercase;
  padding-bottom: 4px;
  margin: 8px 12px 0;
  display: flex;
}

@media (min-width: 820px) {
  .PageWrapper__breadcrumbs {
    margin-top: 20px;
  }
}

@media (min-width: 960px) {
  .PageWrapper__breadcrumbs {
    grid-column: 2;
    margin-left: 0;
    margin-right: 0;
  }
}

.PageWrapper__breadcrumbs a {
  border-bottom: 1px solid;
}

.PageWrapper__breadcrumbs a:not(:first-child) {
  margin-left: 16px;
  position: relative;
}

.PageWrapper__breadcrumbs a:not(:first-child)::before {
  content: "/";
  position: absolute;
  top: 0;
  left: -0.75em;
}

.PageWrapper__content {
  box-sizing: border-box;
  margin: 20px auto;
  padding: 0 8px;
  grid-column: 1;
  grid-row: 4;
}

@media (min-width: 570px) {
  .PageWrapper__content {
    padding: 0 12px;
  }
}

@media (min-width: 960px) {
  .PageWrapper__content {
    width: 100%;
    max-width: 1344px;
    padding: 0;
    grid-column: 2;
  }
}

.PageWrapper__content--twoColumns {
  margin-bottom: 4px;
}

@media (min-width: 820px) {
  .PageWrapper__content--twoColumns {
    margin-bottom: 20px;
  }
}

@media (min-width: 1366px) {
  .PageWrapper__content--twoColumns {
    margin-left: 136px;
    margin-right: 136px;
    width: auto;
    padding: 0 12px;
  }
}

@media (min-width: 1664px) {
  .PageWrapper__content--twoColumns {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (min-width: 820px) {
  .PageWrapper__content--twoColumns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(316px, 33.3%);
  }
}

html.scroll {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, sans-serif;
  font-weight: normal;
  font-display: swap;
  background-color: #fff;
  color: #3a3e3f;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.2;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

input,
button {
  font: inherit;
  color: inherit;
}

.TwoColumns__MainContent {
  margin-bottom: 16px;
}

@media (min-width: 820px) {
  .TwoColumns__MainContent {
    margin-bottom: 0;
    overflow-x: hidden;
    grid-column: 1;
  }
}

@media (min-width: 820px) {
  .TwoColumns__SideContent {
    grid-column: 2;
    margin-left: 16px;
  }
}

@media (min-width: 1070px) {
  .TwoColumns__SideContent {
    margin-left: 20px;
  }
}

.TwoColumns__SideContent > * {
  margin-bottom: 16px;
}

@media (min-width: 820px) {
  .TwoColumns__SideContent > * {
    margin-bottom: 20px;
  }
}

.BlockHeader {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 4px solid;
  padding: 8px 0;
  border-bottom: 1px solid #d2d5d7;
}

.SocialButtons {
  display: flex;
  padding: 12px 0;
}

.SocialButtons__link {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.SocialButtons__link__whatsapp {
  background-color: #25d366;
  background-image: url("/img/whatsapp-white.svg");
  background-size: 16px 16px;
}

@media (min-width: 570px) {
  .SocialButtons__link__whatsapp {
    display: none;
  }
}

.SocialButtons__link__facebook {
  background-color: #3b5998;
  background-size: 15px 18px;
  background-image: url("/img/facebook-white.svg");
}

.SocialButtons__link__twitter {
  background-color: #3a3e3f;
  background-size: 16px 16px;
  background-image: url("/img/x.svg");
}

.SocialButtons__link__mail {
  background-color: #3a3e3f;
  background-size: 16px 13px;
  background-image: url("/img/email-white.svg");
}

.SocialButtons__link__copy {
  background-color: #d2d5d7;
  background-size: 16px 16px;
  background-image: url("/img/copy.svg");
  position: relative;
  border: 0;
  cursor: pointer;
}

.LatestNews .BlockHeader {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.theme__financieel .LatestNews .BlockHeader span {
  width: 67px;
  height: 22px;
}

.LatestNews .BlockHeader span::after {
  content: none;
}

.LatestNews__articlesWrapper article {
  display: grid;
  padding: 8px 0;
  border-bottom: 1px solid #d2d5d7;
}

@media (min-width: 570px) and (max-width: 819px) {
  .LatestNews__articlesWrapper {
    display: grid;
    grid-template-columns: repeat(2, 50%);
  }

  .LatestNews__articlesWrapper article:nth-child(2n) {
    padding-left: 8px;
  }

  .LatestNews__articlesWrapper article:nth-child(2n-1) {
    border-right: 1px solid #d2d5d7;
    padding-right: 8px;
  }
}

.Webshop {
  font-size: 12px;
}

.Webshop__header {
  display: flex;
  height: 25px;
  background-color: #27509a;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 10px;
}

.Webshop__header p::before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  height: 14px;
}

.Webshop__header p:first-child::before {
  width: 19px;
}

.Webshop__header p:last-child {
  display: none;
}

@media (min-width: 960px) {
  .Webshop__header {
    justify-content: space-between;
    padding: 0 20px;
  }

  .Webshop__header p:last-child {
    display: inline-block;
  }
}

.Webshop__footer {
  display: flex;
  height: 42px;
  font-weight: 900;
  padding-left: 12px;
  background-color: #f0f2f3;
  align-items: center;
}

.Webshop__footer::after {
  display: inline-block;

  background-repeat: no-repeat;
  margin-left: 8px;
  width: 15px;
  height: 12px;
}

.Webshop__wrapper {
  padding: 0 12px;
}

.Webshop__wrapper h2 {
  font-size: 0;
  padding: 8px 0;
}

.Webshop__wrapper h2 a::after {
  display: inline-block;
  width: 230px;
}

.Webshop__product {
  display: none;
  grid-template-columns: 1fr auto;
  grid-column-gap: 12px;
  align-items: center;
  border-top: 1px solid #d2d5d7;
  padding: 12px 0;
}

.Webshop__product h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.Webshop__product p:first-of-type span {
  display: inline-block;
  vertical-align: middle;
}

.Webshop__product p:first-of-type span:first-of-type {
  font-size: 14px;
  font-weight: 700;
}

.Webshop__product p:first-of-type span:last-of-type {
  font-size: 10px;
  text-decoration: line-through;
  color: #a6aaab;
  margin-left: 4px;
}

.Webshop__product div:last-of-type {
  position: relative;
  align-self: flex-start;
}

.Webshop__product img {
  border: solid 1px #f0f2f3;
  display: block;
}

@media (min-width: 820px) {
  .Webshop__product {
    display: grid;
  }
}

.Webshop__bigProduct {
  display: grid;
  grid-template-rows: 1fr 30px;
  grid-row-gap: 8px;
  align-items: unset;
}

.Webshop__bigProduct div:first-of-type {
  grid-row: 1/3;
  display: grid;
  grid-template-rows: min-content 1fr 30px;
  grid-row-gap: 8px;
}

.Webshop__bigProduct h3 {
  margin-bottom: 0;
  word-break: break-word;
}

@media (min-width: 820px) {
  .Webshop__bigProduct h3 {
    font-size: 18px;
  }
}

.Webshop__bigProduct p:first-of-type {
  grid-row: 3;
  align-self: center;
}

.Webshop__bigProduct p:first-of-type span:first-of-type {
  font-size: 20px;
}

.Webshop__bigProduct ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.Webshop__bigProduct ul li {
  padding-bottom: 4px;
}

.Webshop__bigProduct ul li::before {
  width: 12px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.Webshop__bigProduct button {
  grid-column: 2;
  font-weight: 700;
  background-color: #ffcb3d;
  text-align: center;
  border: 0;
  cursor: pointer;
}

.Webshop__discount {
  font-weight: 700;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 34px;
  height: 18px;
  box-sizing: border-box;
  color: #fff;
  background-color: #d00910;
  text-align: center;
  padding: 2px 0;
}

.UserRecommendationsArticleDetail article:first-of-type {
  margin-top: 12px;
}

.UserRecommendationsArticleDetail article:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 570px) {
  .SectionHighlights > div:last-of-type article h3 {
    font-size: 16px;
  }
}

@media (min-width: 570px) and (min-width: 1070px) {
  .SectionHighlights > div:last-of-type article h3 {
    font-size: 20px;
  }
}

.DetailBylineBlock {
  border-top: 1px solid #d2d5d7;
  border-bottom: 1px solid #d2d5d7;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #74797a;
  margin-bottom: 16px;
}

@media (min-width: 570px) {
  .DetailBylineBlock {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.DetailBylineBlock > div:first-of-type {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

@media (min-width: 570px) {
  .DetailBylineBlock > div:first-of-type {
    padding-bottom: 0;
  }
}

.DetailBylineBlock__timestamp {
  color: #74797a;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.DetailBylineBlock__timestamp > span {
  margin-left: 4px;
}

.DetailBylineBlock__timestamp > span > span {
  text-transform: uppercase;
}

.DetailBylineBlock__timestampUpdate {
  display: inline-block;
  background-color: #f0f2f3;
  padding: 4px;
  margin-right: 4px;
}

.DetailBylineBlock .SocialButtons {
  padding: 0;
}

.DetailArticleImage {
  margin: 0 auto 24px;
}

.DetailBodyBlocks > div:first-child {
  color: #202223;
}

.DetailBodyBlocks > div:first-child > * {
  margin-bottom: 16px;
}

.DetailRelatedArticles {
  margin-top: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d2d5d7;
}

@media (min-width: 570px) {
  .DetailRelatedArticles {
    margin-top: 20px;
  }
}

.DetailRelatedArticles > h2 {
  font-size: 12px;
  font-weight: 900;
  color: #202223;
  margin-bottom: 12px;
}

.DetailRelatedArticles > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.DetailRelatedArticles > div > article:nth-of-type(2n + 1) a {
  border-right: 1px solid #d2d5d7;
  padding-right: 8px;
}

@media (min-width: 570px) {
  .DetailRelatedArticles > div > article:nth-of-type(2n + 1) a {
    padding-right: 12px;
  }
}

.DetailRelatedArticles > div > article:nth-of-type(2n) a {
  padding-left: 8px;
}

@media (min-width: 570px) {
  .DetailRelatedArticles > div > article:nth-of-type(2n) a {
    padding-left: 12px;
  }
}

.DetailRelatedArticles__blockOfFour > article:nth-of-type(-n + 2) {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #d2d5d7;
}

.DetailOutbrain {
  margin: 16px -8px 0;
  background-color: #f0f2f3;
  padding: 12px;
}

@media (min-width: 570px) {
  .DetailOutbrain {
    margin-left: -12px;
    margin-right: -12px;
  }
}

@media (min-width: 820px) {
  .DetailOutbrain {
    margin-top: 20px;
  }
}

.DetailReadSpeaker > button {
  display: grid;
  grid-auto-flow: column;
  background-color: #27509a;
  color: #fff;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  height: 36px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  position: relative;
}

.DetailReadSpeaker > button:disabled {
  opacity: 0.65;
}

.DetailReadSpeaker > button::before {
  content: "";
  z-index: 1;
  position: absolute;
  width: 1px;
  height: 100%;
  left: 110px;
  top: 0;
  background-color: #fff;
}

.DetailReadSpeaker > button span {
  content: "";
  display: inline-block;
  background: url("/img/volume.svg") no-repeat;
  width: 19px;
  height: 19px;
  margin-right: 8px;
}

.DetailReadSpeaker > button p {
  padding-right: 12px;
  line-height: 1;
}

.DetailReadSpeaker__play::after {
  content: "";
  display: inline-block;
  border-top: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid rgba(0, 0, 0, 0);
  border-left: 12px solid #fff;
  border-radius: 2px;
  margin-left: 12px;
}

.DetailStocksWidget {
  display: inline-grid;
  grid-auto-flow: column;
  font-size: 14px;
  height: 36px;
  background-color: #d2e7f1;
  color: #005274;
  margin-right: 8px;
  margin-bottom: 12px;
  border-radius: 4px;
  font-weight: 700;
  padding: 0 8px;
  align-items: center;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.DetailStocksWidget > p {
  display: inline-flex;
  align-items: center;
  max-width: 100px;
  height: 36px;
  border-right: 1px solid #fff;
  margin-right: 8px;
}

.DetailStocksWidget > p > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 8px;
}

.DetailStocksWidget:hover {
  background-color: #005274;
  color: #fff;
}

.DetailStocksWidget:hover > span {
  color: #fff !important;
}

.DetailStocksWidget > span:last-of-type {
  margin-left: 10px;
  font-size: 12px;
  font-weight: normal;
}

.DetailStocksWidget__down > span {
  color: #d00910;
}

.Article__titleWrapper {
  padding-bottom: 16px;
}

.Article__titleWrapper > h1 {
  font-family: "Playfair Display", serif;
  font-display: swap;
  font-size: 32px;
  line-height: 1.1;
  color: #202223;
  word-break: break-word;
}

@media (min-width: 820px) {
  .Article__titleWrapper > h1 {
    font-size: 44px;
    line-height: 1;
  }
}

@media (min-width: 1070px) {
  .Article__titleWrapper > h1 {
    font-size: 50px;
  }
}

.Article__premiumAndReadSpeakerWrapper {
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: end;
  border-bottom: 1px solid #d2d5d7;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.Article__premiumAndReadSpeakerWrapper [data-name="DetailReadSpeaker"] {
  grid-column: 2;
}

.Article section {
  margin: auto;
}

.Article section > .SocialButtons {
  padding: 8px 0;
  border-bottom: 1px solid #d2d5d7;
}

@media (min-width: 820px) {
  .Article section {
    max-width: 700px;
  }
}

.Article .LatestNews,
.Article .MostRead {
  display: none;
}

@media (min-width: 820px) {
  .Article .LatestNews,
  .Article .MostRead {
    display: block;
  }
}

.Article .LatestNews h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
}

.Familieberichten ._mnslq-wr ._mnslq-card ._mnslq-card-image:has(img) {
  border-width: 2px;
  border-color: #fff;
}

#content {
  overflow-x: hidden;
}

.ob-smartfeed-wrapper
  .OUTBRAIN:not(:first-child):not(.ob-parent-feed)
  .ob_what {
  display: none;
}

.ob-grid-layout,
.ob-grid-layout * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.ob-grid-layout .ob-widget-items-container {
  display: -ms-grid;
  display: grid;
  clear: both;
}

.ob-grid-layout .ob-dynamic-rec-container {
  position: relative;
}

.ob-grid-layout .ob-dynamic-rec-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
}

.ob-grid-layout .ob-unit {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.ob-grid-layout .ob-unit.ob-rec-image-container {
  position: relative;
  width: 100%;
  height: auto;
}

.ob-grid-layout .ob-rec-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  max-height: 100%;
}

.ob-grid-layout .ob-rec-rtb-image {
  background-color: #fff;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ob-grid-layout .ob-rec-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 3px;
  color: #fff;
  font-size: 10px;
  line-height: 15px;
}

.ob-grid-layout .ob-rec-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.ob-grid-layout .ob-rec-text-wrapper .ob-rec-label {
  position: static;
  -ms-flex-item-align: baseline;
  align-self: baseline;
  border-radius: 2px;
  padding: 2px 6px;
}

.ob-grid-layout .ob-widget-footer {
  position: relative;
}

.ob-grid-layout .ob-widget-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ob-grid-layout .ob-rec-source {
  word-break: break-all;
}

.AR_2.ob-widget .ob-sub-units {
  word-break: normal;
}

.AR_2.ob-grid-layout .ob-unit.ob-rec-image-container .ob-image-ratio {
  padding-top: 66.66666666666666%;
}

.AR_2.ob-widget .ob-rec-image-container .ob-rec-image {
  opacity: 0;
  transition: all 750ms;
}

.AR_2.ob-widget .ob-rec-image-container .ob-rec-image.ob-show {
  opacity: 1;
}

/* interaction layer */

.ob-intr-report {
  display: none;
  position: absolute;
  padding: 0;
  top: 0;
  right: -4px;
  margin-right: 0;
  width: 25px;
  height: 25px;
}

.ob-intr-report .obr-intr-icon-x {
  display: none;
  color: #000;
  text-align: center;
  right: 6px;
  top: 2px;
  position: absolute;
  line-height: normal;
  margin: 4px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  z-index: 1;
}

.obr-intr-icon-x:after {
  content: "✕";
  display: block;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  font-size: 10px;
  color: #151e41;
  font-family: Arial, sans-serif;
  background-color: #f2f1f3;
  padding: 2px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ob-intr-report-menu,
.obr-intr-icon-x:after {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
}

.ob-intr-report-menu {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  position: absolute;
  left: 176px;
  top: 167px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 4px 5px 8px 0 rgba(0, 0, 0, 0.25);
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  z-index: 10;
  list-style: none;
  cursor: default;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  direction: ltr;
  width: 275px;
  height: auto;
  color: #000;
  margin: 2px 0 0;
  -ms-flex: 0 0 calc(100% - 20px);
  -webkit-box-flex: 0;
  flex: 0 0 calc(100% - 20px);
  display: none;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px 12px 0 24px;
  background: #fff;
  -webkit-box-shadow: 8px 12px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 12px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.ob-intr-report-menu_close {
  color: #717075;
  font-size: 16px;
  position: absolute;
  cursor: pointer;
  z-index: 12;
  width: 16px;
  height: 16px;
  right: 5%;
  top: 5.04%;
}

.ob-intr-report-menu li {
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #151e41;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ob-intr-report-title {
  cursor: default;
  text-align: center;
  font-weight: 700;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 20px);
  flex: 0 0 calc(100% - 20px);
  height: 26px;
  top: 4px;
  font-family:
    Open Sans,
    sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #151e41;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 4px 0;
}

.ob-intr-report-subtitle,
.ob-intr-report-title {
  position: static;
  width: 85%;
  text-align: left;
  left: 0;
}

.ob-intr-report-subtitle {
  height: 18px;
  top: 0;
  font-family:
    Open Sans,
    sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #717075;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.ob-intr-report-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  -webkit-box-flex: 0;
  -ms-flex: none;
  -ms-flex-positive: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0;
  width: 292px;
  height: 52px;
  left: 24px;
  top: 16px;
  flex: none;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  flex-grow: 0;
  margin: 12px 0;
}

.ob-intr-report-menu-options {
  display: -ms-grid;
  display: grid;
  margin: 0 0 20px;
  padding: 8px 4px 4px 0;
}

.ob-intr-report-menu-options li[data-report-type] {
  display: inline;
  -webkit-box-flex: 0;
  margin: 6px;
  line-height: 22px;
  width: 100%;
  font-size: 12px;
  font-family:
    Open Sans,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ob-intr-report-menu
  li:not(.ob-intr-report-title):not(.ob-intr-report-subtitle):hover {
  background-color: #000;
  color: #fff;
}

.ob-intr-report-ArrowIcon {
  position: static;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 0 4px;
  height: 9.5px;
  width: 11.5px;
  left: 87px;
  top: 17.75px;
  padding-right: 8px;
  border-radius: 0;
}

.ob-intr-report-menu_close_x {
  width: 14.67px;
  height: 14.67px;
  position: absolute;
  left: 26.04%;
  right: 26.04%;
  top: 26.04%;
  bottom: 29.04%;
  color: #717075;
}

@media only screen and (min-width: 700px) {
  .AR_2.ob-widget .ob-dynamic-rec-link:hover .obr-intr-icon-x {
    display: block;
  }
}

/* end interaction layer */
.AR_2.ob-widget .ob-widget-header {
  font-weight: bold;
}

.AR_2.ob-widget .ob-dynamic-rec-container .ob-rec-text,
.AR_2.ob-widget .ob-dynamic-rec-container .ob-rec-source,
.AR_2.ob-widget .ob-dynamic-rec-container .ob-rec-customText {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: initial;
}

.AR_2.ob-widget .ob-dynamic-rec-container .ob-rec-text {
  -webkit-line-clamp: 2;
}

.AR_2.ob-widget .ob-dynamic-rec-container .ob-rec-source {
  -webkit-line-clamp: 1;
}

.AR_2.ob-widget .ob-dynamic-rec-container .ob-rec-customText {
  -webkit-line-clamp: 1;
}

.AR_2.ob-widget .ob-rec-customText {
  font-weight: bold;
}

.AR_2.ob-widget .ob-rec-text {
  font-weight: bold;
}

.AR_2.ob-widget .ob-rec-source {
  font-weight: bold;
}

.AR_2.ob-grid-layout .ob-rec-image-container .ob-rec-label {
  bottom: 0;
  left: 0;
}

.AR_2.ob-grid-layout .ob-rec-image-container .ob-rec-label {
  font-size: 10px;
  font-weight: normal;
}

.AR_2.ob-widget .ob-rec-text-wrapper .ob-rec-label {
  margin-left: 10px;
}

.AR_2.ob-grid-layout .ob-widget-header {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 10px;
  color: #74797a;
  margin: 5px 0px 16px 0px;
}

.AR_2.ob-grid-layout .ob-sub-units {
  margin: 5px 0px 0px 0px;
}

.AR_2.ob-grid-layout .ob-rec-text {
  font-family: "Roboto", "Arial", sans-serif;
  color: #3a3e3f;
  margin: 10px 0px 0px 0px;
  text-align: left;
  line-height: 1.25;
  font-size: 16px;
}

.AR_2.ob-grid-layout .ob-rec-text:hover {
  color: #3a3e3f;
}

.AR_2.ob-grid-layout .ob-rec-source {
  font-family: "Roboto", "Arial", sans-serif;
  color: #757575;
  margin: 2px 0px 0px 0px;
  text-align: left;
  font-size: 11px;
  line-height: 1.25;
}

.AR_2.ob-grid-layout .ob-rec-customText {
  font-family: Roboto, Arial, sans-serif;
  color: #3a3e3f;
  font-size: 11px;
  background-color: #ffcb3d;
}

.AR_2.ob-grid-layout .ob-unit.ob-rec-image-container span.ob-rec-label {
  color: #8f8f8f;
  font-family: "Roboto", "Arial", sans-serif;
}

.AR_2.ob-grid-layout .ob-rec-text-wrapper span.ob-rec-label {
  color: #8f8f8f;
  font-family: "Roboto", "Arial", sans-serif;
}

.AR_2.ob-grid-layout .ob-widget-items-container {
  grid-row-gap: 15px;
  grid-column-gap: 15px;
}

.AR_2.ob-grid-layout .ob-widget-items-container .ob-dynamic-rec-container {
  padding: 0px;
  border: none;
}

[data-ob-custom-text="customText_1"] {
  font-size: 0 !important;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.ob-dynamic-rec-container .ob-rec-customText {
  padding-top: 2px;
}

[data-ob-custom-text="customText_1"]::before {
  content: "";
  display: inline-block;

  width: 10px;
  height: 10px;
  margin-left: 2px;
}

[ob-data-fid="ar_2"] {
  background-color: #f0f2f2;
  margin-top: 0px;
  padding: 25px 12px 25px 12px;
}

[ob-data-fid="ar_2"] .OUTBRAIN:last-child .ob_what {
  display: block !important;
  float: none !important;
}

[ob-data-fid="ar_2"] .ob-rec-image-container .ob-rec-label {
  display: none;
}

[ob-data-fid="ar_2"] [data-ob-custom-text="customText_1"],
[ob-data-fid="ar_2"] [data-ob-custom-text="customText_2"] {
  float: left;
}

[ob-data-fid="ar_2"] [data-ob-custom-text="customText_1"] {
  margin-right: 3px;
  padding: 0px 4px;
  text-transform: uppercase;
}

[ob-data-fid="ar_2"] [data-ob-custom-text="customText_2"] {
  background-color: transparent !important;
  color: #757575 !important;
}

[ob-data-fid="ar_2"] [data-ob-custom-text="customText_2"]::after {
  content: " |\00a0";
}

/*to not flow to next line and kick in line clamping, the only solution seem to not float and work-break. Alt is overflow-wrap: anywhere; which should also work everywhere, excpt safari :(*/

[ob-data-fid="ar_2"] .ob-rec-text-wrapper {
  clear: both;
}

[ob-data-fid="ar_2"] .ob-rec-text-wrapper .ob-rec-label {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.68;
  letter-spacing: 0.7px;
}

.SFD_STP_24 .ob-dynamic-rec-link {
  flex-direction: row !important;
}

.SFD_STP_24 .ob-rec-image-container {
  flex: 0 0 40% !important;
}

[data-ob-custom-text="customText_4"] {
  background-color: transparent !important;
}

.ob-grid-layout,
.ob-grid-layout * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.ob-grid-layout .ob-widget-items-container {
  display: -ms-grid;
  display: grid;
  clear: both;
}

.ob-grid-layout .ob-dynamic-rec-container {
  position: relative;
}

.ob-grid-layout .ob-dynamic-rec-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
}

.ob-grid-layout .ob-unit {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.ob-grid-layout .ob-unit.ob-rec-image-container {
  position: relative;
  width: 100%;
  height: auto;
}

.ob-grid-layout .ob-rec-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  max-height: 100%;
}

.ob-grid-layout .ob-rec-rtb-image {
  background-color: #fff;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ob-grid-layout .ob-rec-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 3px;
  color: #fff;
  font-size: 10px;
  line-height: 15px;
}

.ob-grid-layout .ob-rec-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.ob-grid-layout .ob-rec-text-wrapper .ob-rec-label {
  position: static;
  -ms-flex-item-align: baseline;
  align-self: baseline;
  border-radius: 2px;
  padding: 2px 6px;
}

.ob-grid-layout .ob-widget-footer {
  position: relative;
}

.ob-grid-layout .ob-widget-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ob-grid-layout .ob-rec-source {
  word-break: break-all;
}

.SFD_STP_24.ob-widget .ob-sub-units {
  word-break: normal;
}

.SFD_STP_24.ob-grid-layout .ob-unit.ob-rec-image-container .ob-image-ratio {
  padding-top: 66.66666666666666%;
}

.SFD_STP_24.ob-widget .ob-rec-image-container .ob-rec-image {
  opacity: 0;
  transition: all 750ms;
}

.SFD_STP_24.ob-widget .ob-rec-image-container .ob-rec-image.ob-show {
  opacity: 1;
}

/* interaction layer */

.ob-intr-report {
  display: none;
  position: absolute;
  padding: 0;
  top: 0;
  right: -4px;
  margin-right: 0;
  width: 25px;
  height: 25px;
}

.ob-intr-report .obr-intr-icon-x {
  display: none;
  color: #000;
  text-align: center;
  right: 6px;
  top: 2px;
  position: absolute;
  line-height: normal;
  margin: 4px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  z-index: 1;
}

.obr-intr-icon-x:after {
  content: "✕";
  display: block;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  font-size: 10px;
  color: #151e41;
  font-family: Arial, sans-serif;
  background-color: #f2f1f3;
  padding: 2px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ob-intr-report-menu,
.obr-intr-icon-x:after {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
}

.ob-intr-report-menu {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  position: absolute;
  left: 176px;
  top: 167px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 4px 5px 8px 0 rgba(0, 0, 0, 0.25);
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  z-index: 10;
  list-style: none;
  cursor: default;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  direction: ltr;
  width: 275px;
  height: auto;
  color: #000;
  margin: 2px 0 0;
  -ms-flex: 0 0 calc(100% - 20px);
  -webkit-box-flex: 0;
  flex: 0 0 calc(100% - 20px);
  display: none;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px 12px 0 24px;
  background: #fff;
  -webkit-box-shadow: 8px 12px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 12px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.ob-intr-report-menu_close {
  color: #717075;
  font-size: 16px;
  position: absolute;
  cursor: pointer;
  z-index: 12;
  width: 16px;
  height: 16px;
  right: 5%;
  top: 5.04%;
}

.ob-intr-report-menu li {
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #151e41;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ob-intr-report-title {
  cursor: default;
  text-align: center;
  font-weight: 700;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 20px);
  flex: 0 0 calc(100% - 20px);
  height: 26px;
  top: 4px;
  font-family:
    Open Sans,
    sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #151e41;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 4px 0;
}

.ob-intr-report-subtitle,
.ob-intr-report-title {
  position: static;
  width: 85%;
  text-align: left;
  left: 0;
}

.ob-intr-report-subtitle {
  height: 18px;
  top: 0;
  font-family:
    Open Sans,
    sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #717075;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.ob-intr-report-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  -webkit-box-flex: 0;
  -ms-flex: none;
  -ms-flex-positive: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0;
  width: 292px;
  height: 52px;
  left: 24px;
  top: 16px;
  flex: none;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  flex-grow: 0;
  margin: 12px 0;
}

.ob-intr-report-menu-options {
  display: -ms-grid;
  display: grid;
  margin: 0 0 20px;
  padding: 8px 4px 4px 0;
}

.ob-intr-report-menu-options li[data-report-type] {
  display: inline;
  -webkit-box-flex: 0;
  margin: 6px;
  line-height: 22px;
  width: 100%;
  font-size: 12px;
  font-family:
    Open Sans,
    sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ob-intr-report-menu
  li:not(.ob-intr-report-title):not(.ob-intr-report-subtitle):hover {
  background-color: #000;
  color: #fff;
}

.ob-intr-report-ArrowIcon {
  position: static;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 0 4px;
  height: 9.5px;
  width: 11.5px;
  left: 87px;
  top: 17.75px;
  padding-right: 8px;
  border-radius: 0;
}

.ob-intr-report-menu_close_x {
  width: 14.67px;
  height: 14.67px;
  position: absolute;
  left: 26.04%;
  right: 26.04%;
  top: 26.04%;
  bottom: 29.04%;
  color: #717075;
}

@media only screen and (min-width: 700px) {
  .SFD_STP_24.ob-widget .ob-dynamic-rec-link:hover .obr-intr-icon-x {
    display: block;
  }

  .SFD_STP_24.ob-widget .ob-interaction-rec:hover .ob-ad-choices {
    transform: translateX(-25px);
  }
}

/* end interaction layer */

.SFD_STP_24.ob-widget .ob-dynamic-rec-container .ob-rec-text,
.SFD_STP_24.ob-widget .ob-dynamic-rec-container .ob-rec-source,
.SFD_STP_24.ob-widget .ob-dynamic-rec-container .ob-rec-customText {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: initial;
}

.SFD_STP_24.ob-widget .ob-dynamic-rec-container .ob-rec-text {
  -webkit-line-clamp: 2;
}

.SFD_STP_24.ob-widget .ob-dynamic-rec-container .ob-rec-source {
  -webkit-line-clamp: 1;
}

.SFD_STP_24.ob-widget .ob-dynamic-rec-container .ob-rec-customText {
  -webkit-line-clamp: 1;
}

.SFD_STP_24.ob-widget .ob-rec-customText {
  font-weight: bold;
}

.SFD_STP_24.ob-widget .ob-rec-text {
  font-weight: bold;
}

.SFD_STP_24.ob-widget .ob-rec-source {
  font-weight: bold;
}

.SFD_STP_24 .ob_what a:after {
  content: "";
  background-size: 100% 100%;
  width: 12px;
  height: 12px;
  padding-left: 4px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right center;
}

.SFD_STP_24.ob-widget .ob_what {
  direction: ltr;
  clear: both;
  padding: 5px 10px 0px;
}

.SFD_STP_24.ob-widget .ob_what a {
  color: #757575;
  font-size: 11px;
  font-family: arial;
  text-decoration: none;
}

.SFD_STP_24.ob-widget .ob_what {
  text-align: right;
}

.SFD_STP_24.ob-widget .ob_what.ob_what_resp {
  position: static;
  float: right;
  padding: 0px;
  font-weight: normal;
  flex: none;
}

.SFD_STP_24.ob-widget .ob_what.ob_what_resp {
  padding: 5px 0;
}

.SFD_STP_24.ob-grid-layout .ob-rec-image-container .ob-rec-label {
  bottom: 0;
  left: 0;
}

.SFD_STP_24.ob-grid-layout .ob-rec-image-container .ob-rec-label {
  font-size: 10px;
  font-weight: normal;
}

.SFD_STP_24.ob-widget .ob-rec-text-wrapper .ob-rec-label {
  margin-left: 10px;
}

.SFD_STP_24.ob-grid-layout .ob-sub-units {
  margin: 0px 0px 0px 10px;
}

.SFD_STP_24.ob-grid-layout .ob-rec-text {
  font-family: "Roboto", "Arial", sans-serif;
  color: #3a3e3f;
  margin: 5px 0px 0px 0px;
  text-align: left;
  line-height: 1.25;
  font-size: 16px;
}

.SFD_STP_24.ob-grid-layout .ob-rec-text:hover {
  color: #3a3e3f;
}

.SFD_STP_24.ob-grid-layout .ob-rec-source {
  font-family: "Roboto", "Arial", sans-serif;
  color: #74797a;
  margin: 0px 0 0 0;
  text-align: left;
  font-size: 11px;
  line-height: 1.5;
}

.SFD_STP_24.ob-grid-layout .ob-rec-customText {
  font-family: Roboto, Arial, sans-serif;
  color: #3a3e3f;
  font-size: 11px;
  background-color: #ffcb3d;
}

.SFD_STP_24.ob-grid-layout .ob-unit.ob-rec-image-container span.ob-rec-label {
  color: #8f8f8f;
  font-family: "Roboto", "Arial", sans-serif;
}

.SFD_STP_24.ob-grid-layout .ob-rec-text-wrapper span.ob-rec-label {
  color: #8f8f8f;
  font-family: "Roboto", "Arial", sans-serif;
}

.SFD_STP_24.ob-grid-layout .ob-widget-items-container {
  grid-row-gap: 15px;
  grid-column-gap: 20px;
}

.SFD_STP_24.ob-grid-layout
  .ob-widget-items-container
  .ob-dynamic-rec-container {
  padding: 0px;
  border: none;
  background-color: initial;
}

a {
  cursor: pointer;
}

a:hover {
  opacity: 0.75;
}

.article-content a {
  color: #27509a;
  font-weight: 900;
}

.article-content blockquote {
  margin: 0;
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 3px solid #27509a;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spots-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(59, 89, 152, 0.08);
  color: #3b5998;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.live-dot {
  display: inline-block;
  margin-right: 8px;
  width: 8px;
  height: 8px;
  background: #3b5998;
  border-radius: 50%;
  box-shadow: 0 0 0 0px rgba(59, 89, 152, 0.15);
  animation: dot 1s ease-in-out 0.5s infinite;
}

@keyframes dot {
  0% {
    box-shadow: 0 0 0 0px rgba(59, 89, 152, 0.15);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(59, 89, 152, 0.15);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(59, 89, 152, 0);
  }
}

.spots-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
}

.spots-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  align-items: center;
  background: #3b5998;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.btn-primary:hover {
  color: white;
  opacity: 0.75;
  box-shadow: 0 0 5px 5px rgb(59, 89, 152, 0.2);
}

.spots-note {
  font-size: 14px;
  color: #6b7280;
}

.footer--sticky {
  box-sizing: border-box;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 10px;
  z-index: 9999;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 -5px 15px 5px rgb(59, 89, 152, 0.05);
}

.footer--sticky .btn-primary {
  width: 100%;
  text-align: center;
}

.spots-actions {
  display: flex !important;
  justify-content: space-between;
}

.comments__container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.comments__title {
  margin-bottom: 2rem;
  margin-left: 1rem;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.comments__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.5rem auto 0;
  background-color: #2c2c2c;
}

.comments__list {
  display: flex;
  flex-direction: column;
}

.comments__item {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0.5rem 0;
}

/* .comments__item--has-answer {
	position: relative;
	z-index: 2;
} */

.comments__item--has-answer::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 15px;
  width: 2px;
  height: calc(100% - var(--line-height) - 40px);
  background: #ddd;
  z-index: 1;
}

.review__avatar {
  flex-shrink: 0;
  margin-right: 6px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.review__avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.review__avatar--with-status {
  position: relative;
  height: 100%;
  max-height: fit-content;
}

.review__avatar--with-status img:not(:last-child) {
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.review__avatar-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  background-color: rgb(225, 228, 232);
  border-radius: 50%;
}

.review__avatar-badge img {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  text-align: center;
}

.review__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.review__body img:not(:first-child) {
  border-radius: 18px;
}

.review__body input {
  padding: 0.5rem 1rem 4rem 0.5rem;
  border: none;
  border-radius: 18px;
  background-color: rgb(240, 242, 245);
}

.review__body input:focus {
  border: none;
  outline: none;
}

.review__body--form {
  position: relative;
}

.review__body--form a {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 32px;
  height: 32px;
}

.review__body--form a img {
  width: 32px;
  height: 32px;
}

.review__text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  max-width: fit-content;
  padding: 8px 12px;
  border-radius: 18px;
  background-color: rgb(240, 242, 245);
  color: rgb(5, 5, 5);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    ".SFNSText-Regular",
    sans-serif;
  font-size: 15px;
}

.review__author {
  font-size: 13px;
  font-weight: 600;
}

.review__meta,
.review__reply-body {
  display: flex;
  flex-direction: column;
}

.review__meta {
  font-size: 14px;
}

.review__actions,
.review__actions a {
  display: flex;
  color: #595959;
}

.review__actions {
  align-items: center;
}

.review__action {
  margin-right: 1rem;
  font-size: 12px !important;
  list-style: none;
}

.review__action a {
  text-decoration: none;
}

.review__action--reactions,
.review__reactions {
  display: flex;
  align-items: center;
}

.review__action--reactions {
  gap: 5px;
}

.review__reply {
  position: relative;
  display: flex;
  margin-top: 1.5rem;
}

.review__reply::before {
  content: "";
  position: absolute;
  top: 0;
  left: -23px;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.review__reply::after {
  content: "";
  position: absolute;
  top: 0;
  left: -23px;
  width: 20px;
  height: 18px;
  border-bottom: 2px solid #ddd;
  border-left: 2px solid #ddd;
  border-bottom-left-radius: 10px;
}

.review__reply:last-child::before {
  height: 10px;
}

.review__reply:last-child::after {
  box-shadow: -40px 0 0 0 #fff;
}

.review__reply-body {
  gap: 5px;
}

.review__reaction-icon--like {
  z-index: 3;
}

.review__reaction-icon--react {
  z-index: 2;
}

.review__reaction-icon--heart {
  z-index: 1;
}

.review__reaction-icon--react,
.review__reaction-icon--heart {
  margin-left: -5px;
}

.list-reset {
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  list-style: none;
}

button {
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  -webkit-appearance: none;
}

a:hover {
  color: red;
}

@media (max-width: 420px) {
  .review__actions {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }
}

.modal {
  position: fixed;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 9999;
  background-color: #00000066;
  inset: 0;
  width: 100%;
  height: 100vh;
  padding: 10px;
  overflow: auto;
}

.modal-inner {
  max-width: 450px;
  width: 100%;
  position: relative;
}

#close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  color: #000;
}

@media (max-width: 450px) {
  .modal-inner {
    max-height: 90%;
  }
}
