/*NC Live Center Extension CSS*/
/*Begin extension CSS 87, Image gallery*/
.ig__highlight-image {
    text-align: center;
    background-color: #fbfbfb;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ncpost-image-gallery {
    user-select: none;
}

    .ncpost-image-gallery .ncpost-image-byline {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }

    .ncpost-image-gallery .ncpost-image-byline-description {
        text-align: center;
    }

.arrow-nav {
    position: absolute;
    top: 200px;
    width: 100%;
}

    .arrow-nav div {
        padding: 8px;
        cursor: pointer;
    }

    .arrow-nav svg {
        width: 12px;
    }

.ig__highlight-image img {
    max-width: 80%;
    max-height: 300px;
}

.ig__image-descr {
    text-align: center;
    margin-top: 5px;
}

.ig__all-images-preview {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    background-color: #fbfbfb;
    position: relative;
    max-width: 1000px;
    user-select: none;
}

.ig__highlight-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

    .ig__highlight-image img {
        max-width: 100%;
        max-height: 400px;
    }

.ig__image-preview-element {
    display: flex;
    align-items: center;
    padding: 0 3px;
    cursor: pointer;
}

.ig__image-wrapper {
    width: 170px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ededed;
}

.ig__all-images-preview {
    padding-bottom: 15px;
}

    .ig__all-images-preview img {
        max-width: 100%;
        max-height: 120px;
    }

        .ig__all-images-preview img:hover {
            opacity: .6;
        }

    .ig__all-images-preview::-webkit-scrollbar {
        height: 8px;
        background-color: #ececec;
    }

    .ig__all-images-preview::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,.14);
        border-radius: 3px;
        cursor: pointer;
    }

.ig__buttons-container {
    position: relative;
}

.ig__arrow-element {
    width: 18px;
    height: 20px;
    background: #fbfbfb;
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
    cursor: pointer;
}

    .ig__arrow-element i {
        margin-bottom: 1px;
    }

.ig__right {
    right: 27px;
}

.ig__left {
    left: 27px;
}
/*End extension CSS 87, Image gallery*/

/*Begin extension CSS 89, Football scoreboard*/
.nc-football-scoreboard {
  margin: 30px 0;
  border-radius: 3px;
  border: 1px solid var(--gray-stroke);
  background: var(--white);
}
.nc-football-scoreboard svg {
  width: 20px;
}
.nc-football-scoreboard-team-info {
  display: grid;
  grid-template-columns: 1fr 15px 1fr;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 25px 12px 0px 12px;
}
.nc-football-scoreboard-team {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.nc-football-scoreboard-team.team1 {
  justify-content: flex-end;
}
.nc-football-scoreboard-team.team2 {
  justify-content: flex-start;
}
.nc-football-scoreboard-team-detail {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 8px;
}
.nc-football-scoreboard-team-image img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.nc-football-scoreboard-team-name {
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  font-variation-settings: "wght" 700;
  line-height: normal;
}
.nc-football-scoreboard-team-info span,
.nc-football-scoreboard-score {
  color: var(--black);
  font-size: 22px;
  font-style: normal;
  font-variation-settings: "wght" 700;
  line-height: normal;
  display: flex;
  justify-content: center;
}
.nc-football-scoreboard-quarter {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  font-variation-settings: "wght" 400;
  line-height: 12px;
  margin-top: 0px;
  padding-bottom: 20px;
}
.nc-football-scoreboard-goals-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 25px;
  border-top: 1px solid var(--gray-stroke);
}
.nc-football-scoreboard-goals-match-details {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-variation-settings: "wght" 700;
  line-height: 18px;
  margin-top: 10px;
}
.nc-football-scoreboard-goals-box {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 18px;
}
.nc-football-scoreboard-separation {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.nc-football-scoreboard-goals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nc-football-scoreboard-goal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nc-football-scoreboard-goal.team1 {
  align-items: flex-end;
}
.nc-football-scoreboard-goal.team2 {
  align-items: flex-start;
}
.nc-football-scoreboard-goal-name {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-variation-settings: "wght" 400;
  line-height: 18px;
}
.nc-football-scoreboard-goal-time {
  color: var(--gray-text);
  font-size: 12px;
  font-style: normal;
  font-variation-settings: "wght" 700;
  line-height: 18px;
}
/* timeline */
.nc-football-scoreboard .game-event-timeline {
  display: flex;
  position: relative;
  margin: 25px 12px;
}
.nc-football-scoreboard .game-event-timeline .timeline-team-info {
  padding-right: 7px;
}
.nc-football-scoreboard .game-event-timeline .timeline-team-info .team {
  display: flex;
  align-items: center;
  padding: 6px 0 5px 0;
}
.nc-football-scoreboard .game-event-timeline .timeline-team-info .team-code {
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
  font-size: 12px;
}
.nc-football-scoreboard .game-event-timeline .timeline-team-info .team-image {
  margin-right: 7px;
  width: 25px;
  height: 25px;
}
.nc-football-scoreboard
  .game-event-timeline
  .timeline-team-info
  .team-image
  img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.nc-football-scoreboard .game-event-timeline .timeline-group {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  width: 100%;
}
.nc-football-scoreboard .game-event-timeline .timeline-group .hovered-info {
  visibility: hidden;
  position: absolute;
  white-space: nowrap;
  left: -24px;
  padding: 10px 15px;
  background-color: #f3f3f3;
  font-variation-settings: "wght" 700;
  border-radius: 5px !important;
  align-items: center;
  opacity: 0;
  display: flex;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: ease 0.5s;
}
.nc-football-scoreboard
  .game-event-timeline
  .timeline-group
  .hovered-info
  span {
  margin-right: 5px;
  display: flex;
  align-items: center;
}
.nc-football-scoreboard .game-event-timeline .timeline-group .event-mark {
  position: absolute;
  font-size: 12px;
  font-variation-settings: "wght" 700;
  background-color: #fff;
  cursor: pointer;
}
.nc-football-scoreboard
  .game-event-timeline
  .timeline-group
  .event-mark:hover
  .hovered-info {
  opacity: 1;
  visibility: visible;
}
.nc-football-scoreboard .game-event-timeline .timeline-group svg {
  width: 15px;
  margin-left: -1px;
}
.nc-football-scoreboard .game-event-timeline .timeline-group .icon-above {
  position: absolute;
  top: -18px;
}
.nc-football-scoreboard
  .game-event-timeline
  .timeline-group
  .icon-above
  .hovered-info {
  top: -44px;
}
.nc-football-scoreboard
  .game-event-timeline
  .timeline-group
  .icon-above
  .hovered-info.sub {
  top: -65px;
}
.nc-football-scoreboard .game-event-timeline .timeline-group .icon-below {
  position: absolute;
  top: 20px;
}
.nc-football-scoreboard
  .game-event-timeline
  .timeline-group
  .icon-below
  .hovered-info {
  bottom: -39px;
}
.nc-football-scoreboard
  .game-event-timeline
  .timeline-group
  .icon-below
  .hovered-info.sub {
  bottom: -60px;
}
.nc-football-scoreboard .game-event-timeline .line {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #ccc;
  bottom: 35px;
}
.nc-football-scoreboard.dark-theme {
  background-color: #222;
  color: #fff;
  padding-top: 10px;
}
.nc-football-scoreboard.dark-theme .event-mark {
  background-color: #222 !important;
}
.nc-football-scoreboard.dark-theme .line {
  border-bottom: 1px solid #434343 !important;
}
.nc-football-scoreboard.dark-theme .hovered-info {
  background-color: #000 !important;
}
.nc-football-scoreboard.dark-theme .nc-football-scoreboard-separation {
  background-color: #434343 !important;
}
.nc-football-scoreboard.dark-theme .goal {
  stroke: #eee;
}

@media (min-width: 414px) {
  .nc-football-scoreboard-team {
    gap: 35px;
  }
}

@media (min-width: 576px) {
  .nc-football-scoreboard-team-info {
    gap: 10px;
    padding: 25px 25px 0px 25px;
  }
  .nc-football-scoreboard-team {
    gap: 55px;
  }
  .nc-football-scoreboard-team-detail {
    grid-template-columns: 1fr 62px;
    gap: 12px;
  }
  .nc-football-scoreboard-team-name,
  .nc-football-scoreboard-goal-name,
  .nc-football-scoreboard-goals-match-details {
    font-size: 17px;
  }
  .nc-football-scoreboard-team-image img {
    width: 62px;
    height: 62px;
  }
  .nc-football-scoreboard-team-info span,
  .nc-football-scoreboard-score {
    font-size: 32px;
  }
  .nc-football-scoreboard-quarter {
    font-size: 14px;
    line-height: 18px;
    margin-top: -15px;
    padding-bottom: 22px;
  }
  .nc-football-scoreboard .game-event-timeline {
    margin: 25px;
  }
}
/*End extension CSS 89, Football scoreboard*/

/*Begin extension CSS 110, Key Events*/
.ncpost-channelcontent-container{margin-bottom:30px;}.ncpost-channelcontent-container .key-events-container .key-event{display:flex;padding:5px 0;}.ncpost-channelcontent-container .key-events-container .key-event-time{white-space:nowrap;text-align:right;margin-right:10px;color:#a5a5a5;display:flex;align-items:center;}.ncpost-channelcontent-container .key-events-container .key-event-time::after{display:flex;width:5px;height:5px;flex-shrink:0;border-radius:10px;background-color:#1b1b1b;content:"";margin-left:10px;}.ncpost-channelcontent-container .key-events-container .key-event-title{display:flex;justify-content:space-between;position:relative;align-items:center;}.ncpost-channelcontent-container .key-events-container .key-event-title a{margin-left:4px;}.ncpost-channelcontent-container .key-events-container .key-event #delete-event{display:none !important;}.posts-view .ncpost-channelcontent-container .key-events-container .key-event-title{width:100%;}.posts-view .ncpost-channelcontent-container .key-events-container .key-event-title div:first-child{width:100%;}.posts-view .ncpost-channelcontent-container .key-events-container .key-event-title a{pointer-events:none;}.posts-view .ncpost-channelcontent-container .key-events-container .key-event #delete-event{display:flex !important;align-items:center;justify-content:center;padding:2px;cursor:pointer;}.ncpost-linked{padding-right:35px;position:relative;margin-bottom:30px;}.ncpost-linked .ncpost-container{margin-bottom:0;}.ncpost-linked .ncpost-linked-close{width:30px;height:30px;position:absolute;right:0;top:0;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;}
/*End extension CSS 110, Key Events*/

/*Begin extension CSS 156, Sharing*/
.posts-view .share-icons-container {
  pointer-events: none;
}
.share-icons-top .ncpost-container share:first-of-type {
  display: flex;
}
.share-icons-bottom .ncpost-container share:last-of-type {
  display: flex;
}
.share-icons-container {
  display: none;
  align-items: center;
  margin: 0 0 10px 0;
}
.share-icons-container .share-icons {
  display: flex;
}
.share-icons-container .share-icon {
  display: inline-flex;
  margin-right: 5px;
  padding: 3px;
}
.share-icons-container .share-icon svg {
  fill: #000;
  width: 14px;
}
.share-icons-container .share-icon-link-success {
  position: absolute;
  top: -25px;
  background-color: #fff;
  padding: 6px 8px;
  font-size: 12px;
  color: #000;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
/*End extension CSS 156, Sharing*/

/*Begin extension CSS 158, Post Sorting - End users*/
/*
    v2
    19.08.22
*/
.ncposts-sorter {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0;
}
.ncposts-sorter .ncpost-toggle-group {
  display: flex;
  position: relative;
  transition: transform 5s ease;
}
.ncposts-sorter .ncpost-toggle-group .toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 35px;
  transition: transform 5s ease;
  cursor: pointer;
}
.ncposts-sorter .ncpost-toggle-group .toggle-label.active {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  cursor: pointer;
}
/*End extension CSS 158, Post Sorting - End users*/

/*Begin extension CSS 159, Link card*/
.ncpost-link-card {
  margin: 15px 0;
  border: 1px solid #e1e1e1;
  display: flex;
  text-decoration: unset;
  padding: 20px;
}
.ncpost-link-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
}
.ncpost-link-card img {
  width: 180px;
  height: 100%;
  object-fit: cover;
}
.ncpost-link-card-info-title {
  font-weight: 700;
  font-size: 18px;
  text-decoration: underline;
  margin-bottom: 3px;
  color: #222;
}
.ncpost-link-card-info-site {
  color: #1e1e1e;
  font-size: 14px;
  margin-bottom: 10px;
}
.ncpost-link-card-info-description {
  color: #7c7c7c;
  font-weight: 400;
  font-size: 13px;
  text-decoration: unset;
}
/*End extension CSS 159, Link card*/

/*Begin extension CSS 161, Theme*/
* {
  --black: #000;
  --white: #fff;
  --nz-dark: #313c3d;
  --nz-blue: #38a3d7;
  --off-white: #edebe8;
  --gray-text: #727579;
  --gray-bg: #f8f9fa;
  --gray-stroke: #dde2e3;
}
.breaking-theme {
  --accent: #ed213f;
  --accent-dark: #af1d01;
}
.sports-theme {
  --accent: #50ac47;
  --accent-dark: #0c6803;
}
.national-theme {
  --accent: #222222;
  --accent-dark: #151515;
}
.posts-view .lc-default-theme {
  background-color: transparent !important;
}
.lc-default-theme {
  background-color: #fff !important;
}
.lc-feed-container,
.post-container {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .lc-feed-container,
  .post-container {
    font-size: 16px;
  }
}
.lc-feed-container a,
.post-container a {
  color: var(--nz-blue) !important;
}
.lc-feed-container .ncpost-channelcontent-container .ncpost-top-text-container,
.post-container .ncpost-channelcontent-container .ncpost-top-text-container {
  background-color: var(--white);
  padding: 30px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 16px;
}
.lc-feed-container
  .ncpost-channelcontent-container
  .ncpost-top-text-container
  p,
.post-container .ncpost-channelcontent-container .ncpost-top-text-container p {
  font-weight: 400 !important;
  font-size: 16px !important;
}
.lc-feed-container
  .ncpost-channelcontent-container
  .ncpost-top-text-container
  h5,
.post-container .ncpost-channelcontent-container .ncpost-top-text-container h5 {
  font-weight: 700;
  font-size: 20px;
}
.lc-feed-container
  .ncpost-channelcontent-container
  .ncpost-top-text-container
  h5:first-child,
.post-container
  .ncpost-channelcontent-container
  .ncpost-top-text-container
  h5:first-child {
  font-size: 26px;
}
.lc-feed-container
  .ncpost-channelcontent-container
  .ncpost-top-text-container
  li,
.post-container .ncpost-channelcontent-container .ncpost-top-text-container li {
  margin-bottom: 12px;
}
.lc-feed-container
  .ncpost-channelcontent-container
  .ncpost-top-text-container
  li:last-child,
.post-container
  .ncpost-channelcontent-container
  .ncpost-top-text-container
  li:last-child {
  margin: 0 !important;
}
.lc-feed-container .ncpost-channelcontent-container .key-event,
.post-container .ncpost-channelcontent-container .key-event {
  padding: 0;
}
.lc-feed-container .ncpost-channelcontent-container .key-event-time,
.post-container .ncpost-channelcontent-container .key-event-time {
  font-size: 12px;
  font-weight: 400;
  color: var(--accent-dark);
  width: 70px;
  justify-content: space-between;
  position: relative;
  flex-shrink: 0;
  height: initial;
  padding-top: 10px;
  align-items: start;
}
.lc-feed-container .ncpost-channelcontent-container .key-event-time::after,
.post-container .ncpost-channelcontent-container .key-event-time::after {
  width: 7px;
  height: 7px;
  border: 1px solid var(--white);
  background-color: var(--accent-dark);
  position: absolute;
  right: 0;
  top: 12px;
}
.lc-feed-container .ncpost-channelcontent-container .key-event-time::before,
.post-container .ncpost-channelcontent-container .key-event-time::before {
  content: "";
  width: 1px;
  background-color: var(--accent-dark);
  position: absolute;
  right: 4px;
  top: 12px;
  bottom: -19px;
}
.lc-feed-container
  .ncpost-channelcontent-container
  .key-event:last-child
  .key-event-time::before,
.post-container
  .ncpost-channelcontent-container
  .key-event:last-child
  .key-event-time::before {
  display: none;
}
.lc-feed-container .ncpost-channelcontent-container .key-event-title,
.post-container .ncpost-channelcontent-container .key-event-title {
  font-size: 15px;
  padding: 8px 0px 10px 0px;
}
.lc-feed-container .ncpost-channelcontent-container .key-event-title a,
.post-container .ncpost-channelcontent-container .key-event-title a {
  color: var(--black) !important;
}
.lc-feed-container .ncpost-pinned .ncpost-container,
.post-container .ncpost-pinned .ncpost-container {
  background-color: var(--gray-bg);
  border: 1px solid var(--accent) !important;
  border-top: 6px solid var(--accent) !important;
}
.lc-feed-container .ncpost-pinned .ncpost-container .ncpost-pinned-indicator,
.post-container .ncpost-pinned .ncpost-container .ncpost-pinned-indicator {
  display: flex;
}
.lc-feed-container
  .ncpost-pinned
  .ncpost-container
  .ncpost-pinned-indicator
  svg,
.post-container .ncpost-pinned .ncpost-container .ncpost-pinned-indicator svg {
  fill: var(--accent-dark);
}
.lc-feed-container .ncpost-pinned .ncpost-container .ncpost-link-card,
.post-container .ncpost-pinned .ncpost-container .ncpost-link-card {
  background-color: var(--white);
}
.lc-feed-container .ncpost-header,
.post-container .ncpost-header {
  margin-bottom: 20px;
}
.lc-feed-container .ncpost-header .ncpost-timestamp-section,
.post-container .ncpost-header .ncpost-timestamp-section {
  display: flex;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}
.lc-feed-container
  .ncpost-header
  .ncpost-timestamp-section
  .ncpost-pinned-indicator,
.post-container
  .ncpost-header
  .ncpost-timestamp-section
  .ncpost-pinned-indicator {
  align-items: center;
  border-right: 1px solid var(--gray-stroke);
  padding-right: 12px;
  margin-right: 12px;
}
.lc-feed-container
  .ncpost-header
  .ncpost-timestamp-section
  .ncpost-pinned-indicator
  svg,
.post-container
  .ncpost-header
  .ncpost-timestamp-section
  .ncpost-pinned-indicator
  svg {
  margin-right: 7px;
}
.lc-feed-container .ncpost-header .ncpost-timestamp-section .ncpost-timestamp,
.post-container .ncpost-header .ncpost-timestamp-section .ncpost-timestamp {
  color: var(--accent-dark);
}
.lc-feed-container .ncpost-header .ncpost-author-information,
.post-container .ncpost-header .ncpost-author-information {
  display: flex;
  align-items: center;
}
.lc-feed-container
  .ncpost-header
  .ncpost-author-information
  .ncpost-avatar-container,
.post-container
  .ncpost-header
  .ncpost-author-information
  .ncpost-avatar-container {
  width: 24px;
  height: 24px;
  margin-right: 7px;
  flex-shrink: 0;
  border-radius: 50px;
  overflow: hidden;
}
.lc-feed-container
  .ncpost-header
  .ncpost-author-information
  .ncpost-avatar-container
  .ncpost-avatar-image,
.post-container
  .ncpost-header
  .ncpost-author-information
  .ncpost-avatar-container
  .ncpost-avatar-image {
  height: 100%;
  background-size: cover;
}
.lc-feed-container .ncpost-header .ncpost-author-information .ncpost-byline,
.post-container .ncpost-header .ncpost-author-information .ncpost-byline {
  font-size: 13px;
  color: var(--gray-text);
}
.lc-feed-container .ncpost-title,
.post-container .ncpost-title {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}
.lc-feed-container .ncpost-title.ncpost-breaking,
.post-container .ncpost-title.ncpost-breaking {
  background-color: var(--nz-dark);
  color: var(--white);
  padding: 10px 8px;
  border-radius: 4px;
}

.lc-feed-container blockquote,
.post-container blockquote {
  font-family: "Inter", system-ui, sans-serif;
  border-left: 1px solid var(--gray3);
  font-size: 16px !important;
  margin: 15px 0;
  padding: 0 0 0 16px;
  font-weight: 700;
  border-left: 5px solid var(--accent);
}

.lc-feed-container blockquote p,
.post-container blockquote p {
  margin: 0;
}
.lc-feed-container .ncpost-container,
.post-container .ncpost-container {
  padding: 16px 24px;
  border-radius: 3px;
  border: 1px solid #dde2e3 !important;
  position: relative;
}
.lc-feed-container .ncpost-container h5,
.post-container .ncpost-container h5 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 700;
}
.lc-feed-container .ncpost-container b,
.post-container .ncpost-container b {
  font-weight: 700;
}
.lc-feed-container .ncpost-container li,
.post-container .ncpost-container li {
  margin: 10px 0;
}
.lc-feed-container .ncpost-container .ncpost-pinned-indicator,
.post-container .ncpost-container .ncpost-pinned-indicator {
  display: none;
}
.lc-feed-container .ncpost-container .ncpost-image-byline,
.post-container .ncpost-container .ncpost-image-byline {
  display: flex;
  flex-direction: column-reverse;
  text-align: left;
  margin-top: 5px;
}
.lc-feed-container
  .ncpost-container
  .ncpost-image-byline
  .ncpost-image-byline-source,
.post-container
  .ncpost-container
  .ncpost-image-byline
  .ncpost-image-byline-source {
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gray2);
  padding: 0;
}
.lc-feed-container
  .ncpost-container
  .ncpost-image-byline
  .ncpost-image-byline-description,
.post-container
  .ncpost-container
  .ncpost-image-byline
  .ncpost-image-byline-description {
  font-weight: 400;
  font-size: 16px;
  color: var(--base-text);
}
.lc-feed-container .ncpost-container .ncpost-content,
.post-container .ncpost-container .ncpost-content {
  margin-bottom: 20px;
}

.lc-feed-container .ncpost-container .ncpost-content p,
.post-container .ncpost-container .ncpost-content p,
.lc-feed-container .ncpost-container .ncpost-content p i,
.post-container .ncpost-container .ncpost-content p i {
  font-size: 16px !important;
  font-weight: 400;
  font-weight: 400 !important;
}

.lc-feed-container .ncpost-container.ncpost-importance-3,
.post-container .ncpost-container.ncpost-importance-3 {
  border-bottom: 0;
  border-top: 6px solid var(--accent) !important;
}
.lc-feed-container .ncpost-youtube-embed,
.post-container .ncpost-youtube-embed {
  margin: 20px 0;
}
.lc-feed-container .share-icons-container,
.post-container .share-icons-container {
  float: right;
  margin: 0;
}
.lc-feed-container .share-icons-container:first-of-type,
.post-container .share-icons-container:first-of-type {
  float: unset;
  position: absolute;
  top: 15px;
  right: 20px;
}
.lc-feed-container .share-icons-container .share-icon,
.post-container .share-icons-container .share-icon {
  margin: 0 0 0 12px;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: background-color ease-in-out 0.3s;
}
.lc-feed-container .share-icons-container .share-icon svg,
.post-container .share-icons-container .share-icon svg {
  fill: var(--accent);
}
.lc-feed-container .share-icons-container .share-icon:hover,
.post-container .share-icons-container .share-icon:hover {
  background-color: var(--accent);
}
.lc-feed-container .share-icons-container .share-icon:hover svg,
.post-container .share-icons-container .share-icon:hover svg {
  fill: var(--white);
}
.lc-feed-container .ncpost-link-card,
.post-container .ncpost-link-card {
  margin: 15px 0;
  border: 0;
  padding: 0;
  display: flex;
  text-decoration: unset;
  background-color: var(--gray-bg);
  border-radius: 3px;
  overflow: hidden;
  border-top: 2px solid var(--accent);
}
.lc-feed-container .ncpost-link-card-image,
.post-container .ncpost-link-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0;
}
.lc-feed-container .ncpost-link-card-image img,
.post-container .ncpost-link-card-image img {
  flex-shrink: 0;
  width: 165px;
  height: 165px;
  margin: 0;
  object-fit: cover;
  object-position: left top;
}
.lc-feed-container .ncpost-link-card-info,
.post-container .ncpost-link-card-info {
  padding: 15px;
}
.lc-feed-container .ncpost-link-card-info-title,
.post-container .ncpost-link-card-info-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
  text-decoration: none;
}
.lc-feed-container .ncpost-link-card-info-site,
.post-container .ncpost-link-card-info-site {
  display: none;
}
.lc-feed-container .ncpost-link-card-info-description,
.post-container .ncpost-link-card-info-description {
  font-weight: 400;
  color: var(--nz-dark);
  font-size: 17px;
  text-decoration: unset;
}
@media (max-width: 600px) {
  .lc-feed-container .ncpost-link-card,
  .post-container .ncpost-link-card {
    flex-direction: column;
  }
  .lc-feed-container .ncpost-link-card img,
  .post-container .ncpost-link-card img {
    margin: 0 0 30px 0;
    width: 100%;
  }
}
.lc-feed-container .ncposts-sorter,
.post-container .ncposts-sorter {
  display: flex;
  justify-content: end;
  font-size: 14px;
  font-weight: 400;
  margin: 30px 0;
  border-bottom: 1px solid var(--gray-stroke);
}
.lc-feed-container .ncposts-sorter div:first-child,
.post-container .ncposts-sorter div:first-child {
  display: none;
}
.lc-feed-container .ncposts-sorter .ncpost-toggle-group,
.post-container .ncposts-sorter .ncpost-toggle-group {
  display: flex;
}
.lc-feed-container .ncposts-sorter .ncpost-toggle-group div,
.post-container .ncposts-sorter .ncpost-toggle-group div {
  display: block;
}
.lc-feed-container .ncposts-sorter .ncpost-toggle-group .toggle-label,
.post-container .ncposts-sorter .ncpost-toggle-group .toggle-label {
  margin-left: 20px;
  cursor: pointer;
  height: unset;
  font-weight: 700;
  padding: 5px 0;
  width: unset;
  border-bottom: 3px solid transparent;
  color: var(--gray-text);
}
.lc-feed-container .ncposts-sorter .ncpost-toggle-group .toggle-label.active,
.post-container .ncposts-sorter .ncpost-toggle-group .toggle-label.active {
  color: var(--black);
  background-color: transparent;
  border-radius: 0;
  border-bottom: 3px solid var(--accent);
}
.lc-feed-container .ncpost-new-comment-toggle,
.post-container .ncpost-new-comment-toggle {
  color: var(--nz-blue);
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
}
.lc-feed-container .ncpost-new-comment-toggle svg,
.post-container .ncpost-new-comment-toggle svg {
  transform: scale(1.3) !important;
  fill: var(--nz-blue);
  margin-top: -3px;
}
.lc-feed-container .ncpost-new-comment-panel,
.post-container .ncpost-new-comment-panel {
  margin-top: 20px;
}
.lc-feed-container .ncpost-new-comment-panel input,
.post-container .ncpost-new-comment-panel input,
.lc-feed-container .ncpost-new-comment-panel textarea,
.post-container .ncpost-new-comment-panel textarea {
  box-shadow: 0px 0px 10px 1px rgba(0, 35, 90, 0.08);
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid #f4f7f7;
  margin-bottom: 20px;
}
.lc-feed-container .ncpost-new-comment-panel .ncpost-submit,
.post-container .ncpost-new-comment-panel .ncpost-submit {
  margin-top: 20px;
}
.lc-feed-container .lc-load-more,
.post-container .lc-load-more,
.lc-feed-container .ncpost-submit,
.post-container .ncpost-submit {
  background-color: var(--nz-blue);
  font-weight: 400;
  font-size: 16px;
  padding: 15px 20px;
  transition: all ease-in-out 0.3s;
  margin-top: 40px;
  border-radius: 3px;
}
.lc-feed-container .lc-load-more b,
.post-container .lc-load-more b,
.lc-feed-container .ncpost-submit b,
.post-container .ncpost-submit b {
  font-weight: 400;
}
.lc-feed-container .lc-load-more:hover,
.post-container .lc-load-more:hover,
.lc-feed-container .ncpost-submit:hover,
.post-container .ncpost-submit:hover {
  opacity: 0.8;
}

.ncpost-channelcontent-container .key-events-container .key-event-title a {
  font-size: 15px !important;
  text-decoration: underline;
}
/*End extension CSS 161, Theme*/

/*Begin extension CSS 163, GAM Integration*/

/*End extension CSS 163, GAM Integration*/

/*Begin extension CSS 175, Rugby scoreboard*/
.feed-rugby {
  font-variation-settings: "wght" 700;
  padding: 25px;
  font-size: 30px;
  background-color: var(--base--surface);
  border-radius: 10px;
  color: var(--base--on-surface1);
  box-shadow: var(--box-shadow-4-10);
}
.feed-rugby-information {
  display: flex;
  color: var(--base--on-surface2);
}
.feed-rugby-information span {
  display: inline-flex;
  margin: 0 3px;
}
.feed-rugby-state {
  text-transform: uppercase;
  text-align: center;
}
.feed-rugby-teams {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.feed-rugby-team {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-grow: 1;
  min-width: 140px;
}
.feed-rugby-team-score {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 6px 0;
}
.feed-rugby-team-info {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.feed-rugby-team-info.rhs-team {
  flex-direction: row-reverse;
}
.feed-rugby-team-info-logo {
  width: 70px;
  height: 70px;
}
.feed-rugby-team-info-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 100%;
  border: 0.68px solid #0000001a;
}
.feed-rugby-team-info-name {
  font-size: 15px;
  white-space: nowrap;
  text-align: center;
}
.feed-rugby-boxscore {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray--300);
  font-size: 30px;
  display: flex;
  justify-content: center;
  color: var(--base--on-surface2);
}
.feed-rugby-boxscore span {
  width: 1px;
  background-color: var(--gray--300);
  margin: 0 20px;
}
.feed-rugby-boxscore-column {
  width: 40%;
}
.feed-rugby-boxscore-column-item {
  display: flex;
  justify-content: end;
  margin-bottom: 3px;
}
.feed-rugby-boxscore-column-item:last-child {
  margin-bottom: 0;
}
.feed-rugby-boxscore-column-item.team2 {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.feed-rugby-boxscore-column-item-icon {
  width: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 3px;
}
.feed-rugby-boxscore-column-item-scorer {
  display: flex;
}
.feed-rugby-boxscore-column-item-scorer div {
  margin: 0 4px;
}
/*End extension CSS 175, Rugby scoreboard*/

/*Begin extension CSS 183, lc-injectAds*/
.ncpost-container-ad { display: flex; border: none !important; padding: 16px 24px; margin-bottom: 20px; background-color: #fff; width: 100%; min-height: 40px; overflow: hidden; } .ncpost-ad { font-size: 30px;  margin: 0 auto; }
/*End extension CSS 183, lc-injectAds*/

/*Begin extension CSS 272, Support Package*/
/* cyrillic-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2)
    format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2)
    format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*End extension CSS 272, Support Package*/

/*Begin extension CSS 280, Gifs*/

/*End extension CSS 280, Gifs*/

/*Begin extension CSS 381, Link card 2.0*/
.ncpost-link-card {
    margin: 15px 0;
    border: 1px solid #E1E1E1;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    text-decoration: unset;
    padding: 20px;
}

.ncpost-link-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.ncpost-link-card img {
    width: 180px;
    height: 100%;
    object-fit: cover;
}

.ncpost-link-card-info-title {
    font-weight: 700;
    font-size: 18px;
    text-decoration: underline;
    margin-bottom: 3px;
    color: #222;
}

.ncpost-link-card-info-site {
    color: #1E1E1E;
    font-size: 14px;
    margin-bottom: 10px;
}

.ncpost-link-card-info-description {
    color: #7C7C7C;
    font-weight: 400;
    font-size: 13px;
    text-decoration: unset;
}

/*End extension CSS 381, Link card 2.0*/


.nc-lc-extensions-css{ display: block }