@charset "UTF-8";
.switch-message {
  display: inline-block;
  position: relative;
  bottom: 13px;
  left: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 35px;
  margin: 0 auto;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: solid var(--lb-border) 1px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 9px;
  bottom: 8px;
  background-color: #f00;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: white;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(55px);
  -ms-transform: translateX(55px);
  transform: translateX(55px);
  background-color: #2ab934;
}

.on {
  display: none;
}

.on, .off {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 10px;
  font-family: Verdana, sans-serif;
}

input:checked + .slider .on {
  display: block;
  color: #2ab934;
}

input:checked + .slider .off {
  display: none;
  color: red;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#liveblog-posts .img-thumbnail {
  width: 50px;
  height: auto;
  padding: 0px;
  border-radius: 13px;
}
#liveblog-posts .adtext {
  margin-top: 10px;
  margin-bottom: 3px;
}

.btn-copylink {
  position: relative;
  display: none;
  cursor: pointer;
}
.btn-copylink i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  padding: 3px;
  border: 1px solid grey;
  border-radius: 50%;
}
.btn-copylink i > svg {
  width: 17px;
  height: 17px;
  fill: #000;
}

@media (max-width: 768px) {
  .btn-copylink {
    display: inline-block;
  }
}
.tooltiptext {
  visibility: hidden;
  width: 95px;
  background-color: #555 !important;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  top: -3px;
  right: 37px;
  opacity: 0;
  transition: opacity 0.3s;
}

.show {
  visibility: visible;
  opacity: 1;
}

.lb-bookmarked {
  border: solid var(--primary-color) 1px;
  border-radius: 6px;
}

.lb-timestamp {
  font-size: 14px;
  font-weight: 600;
}

.lb-author {
  font-size: var(--lb-fs-author, 17px);
  font-family: var(--font-header);
  color: var(--text-color);
  font-weight: bold;
}

.lb-hero-ad {
  margin: 30px auto;
  display: table;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.lb-hero-ad iframe {
  min-height: 90px;
}

.lb-container {
  background-color: #333;
}

.lb-hero {
  color: #000;
  display: block;
  background-color: #eaeaea;
  padding: 20px 0;
}
.lb-hero a {
  color: #fff;
}
.lb-hero a i {
  vertical-align: middle;
}
.lb-hero p {
  margin: 10px auto;
}
.lb-hero .breadcrumb a {
  color: #000;
}
.lb-hero__share {
  font-size: 24px;
  margin-bottom: 0;
}
.lb-hero__timestamp {
  font-size: 13px;
  display: inline-block;
}
.lb-hero__button {
  display: inline-block;
  color: white;
  background: var(--primary-color);
  padding: 6px 10px;
  letter-spacing: 1.5px;
  border-radius: 10px;
  font-weight: bold;
  margin-right: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.lb-hero h1 {
  color: #000;
  margin-top: 5px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .lb-hero h1 {
    font-size: 28px;
  }
}

.lb-quote {
  padding-right: 0;
  margin: 0;
  display: flex;
  flex: 1;
  border-left: solid 5px var(--primary-color);
  margin-left: 10px;
  padding-left: 0;
}
.lb-quote .lb-post {
  border: solid transparent 1px;
  box-shadow: none !important;
}
.lb-quote .lb-post__body p:last-of-type {
  margin-bottom: 0;
}

.lb-post:hover .btn-copylink,
.emoji-hover {
  display: inline-block;
}

.lb-post:hover .emoji-hover {
  display: inline-block;
}

.lb-post {
  display: inline-block;
  position: relative;
  border: solid var(--lb-border) 1px;
  background: #ffffff;
  border-radius: 6px;
}
.lb-post a {
  color: var(--primary-color);
}
.lb-post__ul {
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.lb-post__ul li > i {
  vertical-align: middle;
}
.lb-post h2 {
  margin: 10px 0;
}
.lb-post__body {
  color: #000000;
  font-size: var(--lb-fs-body, 22px);
  line-height: var(--post-body-lh);
}
.lb-post__body figure {
  margin: 10px auto;
}
.lb-post__body a {
  color: var(--primary-color);
  text-decoration: underline;
  overflow-wrap: break-word;
}
.lb-post__body a:hover {
  text-decoration: none !important;
}
.lb-post__body img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  margin: 10px 0;
}
.lb-post__body iframe {
  display: block;
  width: 100%;
  vertical-align: middle;
}
.lb-post__body .embed-responsive,
.lb-post__body .fr-video {
  margin: 30px auto;
}
.lb-post__body blockquote {
  background-color: #fff;
  border-radius: 10px;
  border-bottom: 1px solid var(--border-color);
  border-left: none;
  border-top: 1px solid var(--border-color);
  font-family: SourceSansProRegular, Helvetica, sans-serif;
  font-size: 100%;
  font-style: normal;
  margin: 10px 0;
  padding: 10.5px 40px;
  position: relative;
}
.lb-post__body blockquote:before {
  color: #b81f25;
  content: "“";
  font-family: Georgia, serif;
  font-size: 4.5em;
  left: 5px;
  line-height: 1;
  position: absolute;
  top: 0;
}
.lb-post__body blockquote:after {
  bottom: -0.5em;
  color: #b81f25;
  content: "”";
  float: right;
  font-family: Georgia, serif;
  font-size: 4.5em;
  line-height: 1;
  position: absolute;
  right: 5px;
}

.twitter-tweet {
  margin: 10px auto !important;
}
@media (max-width: 768px) {
  .twitter-tweet {
    width: 100% !important;
  }
}

.ec-2020-lb {
  width: 180px;
  margin-left: -5px;
  margin-bottom: 5px;
}

.ec-2020-m {
  width: 114px;
  margin-top: -4px;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.video-wrap {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 100;
  min-height: 225px;
}

.video iframe {
  max-width: 100%;
  max-height: 100%;
}
.video .close {
  display: none;
}
.video.stuck {
  padding: 5px;
  background-color: rgba(125, 125, 125, 0.2);
  border-radius: 10px;
  position: fixed;
  bottom: 150px;
  right: 45px;
  transform: translateY(100%);
  width: 375px;
  animation: fade-in-up 0.25s ease forwards;
}
@media (max-width: 768px) {
  .video.stuck {
    bottom: 75px;
    right: 0;
  }
}
.video.stuck .close {
  display: inline-block;
  position: absolute;
  top: -26px;
  right: 0px;
  cursor: pointer;
  color: black;
  background-color: rgba(125, 125, 125, 0.2);
}
.video.stuck .close:hover {
  color: #808080;
}

.index-story__title {
  font-weight: bold;
  color: #333;
  line-height: 20px;
  margin: 0 0 2px 0;
}
.index-story__contributor, .index-story__contributor-img {
  margin-right: 10px;
}
.index-story__contributor a:hover {
  color: #c90110;
}
.index-story__contributor {
  color: #909090;
  font-size: 84%;
  margin-top: 0;
}
.index-story__contributor a {
  color: #909090;
}
.index-story .img-thumbnail {
  /*overriding bootstrap*/
  background-color: #ddd;
  padding: 1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 36px;
}

.btn-outline-danger {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.comment-social i > svg {
  width: 20px;
  fill: var(--primary-color);
}
.comment-social i > svg:hover {
  fill: #ffffff;
}
.comment-social:hover > i > svg {
  fill: #ffffff;
}

.thm-slideout {
  position: fixed;
  background-color: #ffffff;
  width: 600px;
  height: 600px;
  bottom: 0;
  right: -600px;
  z-index: 100;
  /* Animation  */
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  padding: 0;
}
@media (max-width: 768px) {
  .thm-slideout {
    width: 375px;
  }
}
.thm-slideout h4 {
  font-weight: bold;
}
.thm-slideout__header {
  padding: 10px;
  position: relative;
}
.thm-slideout__header .close {
  cursor: pointer;
}
.thm-slideout__body {
  padding: 10px;
  overflow: scroll;
  height: 600px;
}
.thm-slideout__tab {
  position: absolute;
  left: -40px;
  height: 200px;
  width: 40px;
  color: white;
  background: var(--primary-color);
  cursor: pointer;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 768px) {
  .thm-slideout__tab {
    position: absolute;
    left: 0;
    top: -40px;
    height: 40px;
    width: 200px;
  }
}
@media (max-width: 768px) {
  .thm-slideout__tab div {
    color: white;
    text-align: center;
    position: relative;
    top: 8px;
    right: 0;
    background: var(--primary-color);
    width: 180px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
.thm-slideout__tab div {
  color: white;
  text-align: center;
  position: relative;
  right: 70px;
  top: 90px;
  background: var(--primary-color);
  width: 180px;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -o-transform: rotate(270deg);
}

/* Display slideOut */
.thm-slideout-show {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  right: 0px !important;
}

.lb-list {
  border: solid #e2e2e2 1px;
  border-radius: 6px;
  background-color: white;
}
.lb-list__header {
  border-bottom: solid #e2e2e2 1px;
  position: relative;
}
.lb-list__header .star-box {
  right: 10px;
}
.lb-list__header-title {
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  height: 50px;
  font-size: 21px;
  padding: 12px 10px 0 10px;
}
.lb-list__body {
  margin: 10px;
  display: block;
  clear: both;
  font-size: var(--fs-4);
  font-family: SourceSansProRegular, Helvetica, sans-serif;
  font-weight: bold;
}
.lb-list__body-title {
  color: #000000;
  font-weight: bold;
}

.lb-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.lb-scrollbar::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

.lb-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-color);
}

.timeline {
  position: relative;
  padding: 15px;
  border-radius: 15px;
  background: white;
}
.timeline h4 {
  font-weight: bold;
  font-size: 22px;
}

.timeline-wrapper {
  overflow-y: auto;
  max-height: 300px;
}
.timeline-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 95%;
  height: 30px;
  border-radius: 15px;
  /*background: linear-gradient(rgba(255, 255, 255, 0.001), white);  transparent keyword is broken in Safari */
}
.timeline-wrapper ul, .timeline-wrapper li {
  list-style: none;
  padding: 0;
}
.timeline-wrapper h1 {
  font-size: 1.1rem;
  font-family: sans-serif;
}
.timeline-wrapper .sessions {
  margin-top: 10px;
  border-radius: 12px;
  position: relative;
}
.timeline-wrapper a {
  color: var(--text-color);
}
.timeline-wrapper a:not(.unlinked-thread) {
  text-decoration: underline;
}
.timeline-wrapper li {
  position: relative;
  padding-bottom: 10px;
  border-left: 1px solid #000000;
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
}
.timeline-wrapper li > div {
  position: relative;
  top: -5px;
}
.timeline-wrapper li:last-child {
  border: 0px;
  padding-bottom: 0;
}
.timeline-wrapper li:after {
  bottom: -7px;
  background: #e6e6e6;
}
.timeline-wrapper li:before {
  content: "";
  width: 13px;
  height: 13px;
  background: var(--lb-live);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: -3px;
}
.timeline-wrapper .time {
  color: #2a2839;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 601px) {
  .timeline-wrapper .time {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 600px) {
  .timeline-wrapper .time {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
  }
}
.timeline-wrapper p {
  color: #4f4f4f;
  font-family: sans-serif;
  line-height: 1.5;
  margin-top: 0.4rem;
}
@media screen and (max-width: 600px) {
  .timeline-wrapper p {
    font-size: 0.9rem;
  }
}

.emoji-hover {
  position: relative;
  background-color: #fff;
  color: #fff;
  text-align: center;
  display: none;
}

@media (max-width: 768px) {
  .emoji-hover {
    display: flex;
  }
}
.emoji-action {
  padding: 0;
  display: flex;
  align-items: center;
  border-radius: 25px;
  margin: 0 8px;
  position: relative;
  cursor: pointer;
}
.emoji-action i {
  padding: 6px;
  border: 1px solid grey;
  border-radius: 50%;
  display: flex;
}
.emoji-action i > svg {
  fill: #000;
  position: relative;
  width: 16px;
}

.emoji-bar {
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 10px 10px 5px 10px;
  white-space: nowrap;
  z-index: 10;
}

@media (max-width: 768px) {
  .emoji-bar {
    left: -100%;
  }
}
.emoji {
  font-size: 1.5em;
  margin: 0 8px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.emoji:hover {
  transform: scale(1.2);
}

.emoji-results {
  display: flex;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  padding: 10px 0;
}
.emoji-results .emoji {
  color: black;
  font-size: 1em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 4px 6px 0 4px;
  margin: 0 3px;
  border-radius: 10px;
}

:root {
  --lb-border: #d9d9d9;
  --lb-live: #c90110;
}

@media (max-width: 768px) {
  main {
    margin-top: 0;
    padding-top: 0;
  }
  #liveblog-main.iframe {
    margin-top: 0 !important;
  }
}
.lb-card {
  border: 1px solid var(--th-card-border, #e5e5e5);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  height: 100%;
}
.lb-card .wp-card__title {
  padding: 0 1rem !important;
}
.lb-card .wp-card__author {
  padding: 0 1rem !important;
}
.lb-card .title {
  padding: 12px 14px 14px;
}

.th-color-bg {
  background-color: var(--primary-color) !important;
}

.chevron::before {
  border-style: solid;
  border-width: 4px 4px 0 0;
  content: "";
  display: inline-block;
  height: 12px;
  left: 0;
  position: relative;
  top: 6px;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 12px;
}

.chevron.right:before {
  left: 0;
  transform: rotate(45deg);
}

.chevron.bottom:before {
  top: 0;
  transform: rotate(135deg);
}

.chevron.left:before {
  left: 0.25em;
  transform: rotate(-135deg);
}

.live-color {
  color: var(--lb-live);
}

.replay-bg {
  background: #26daba;
}

.live-overlay {
  /*font-family: $font-sans-serif-bold;*/
  font-size: 12px;
  letter-spacing: 1px;
  color: white;
  background: var(--lb-live);
  position: absolute;
  display: block;
  margin: 10px;
  padding: 3px 8px;
  z-index: 1;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 12px;
  white-space: nowrap;
  transition: color 0.1s linear, border 0.1s linear, opacity 0.1s linear, background-color 0.1s linear;
}

.lb-post .lb-important {
  color: var(--primary-color);
  text-decoration: underline;
  padding: 1rem 0;
  font-weight: bold;
  display: inline-block;
}

.lb-ad {
  /*background-color: #ededed;*/
  /*margin: -20px auto 20px auto;*/
}

.lb-notify {
  padding: 10px 15px;
  position: fixed;
  min-width: 40px;
  min-height: 40px;
  background-color: var(--primary-color);
  color: #FFF;
  text-align: center;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: normal;
  z-index: 999;
}
.lb-notify:hover {
  color: #FFF;
}
.lb-notify__message {
  color: #fff;
}
.lb-notify i {
  color: var(--primary-color);
}
@media only screen and (min-width: 768px) {
  .lb-notify {
    top: 15%;
    left: 38%;
    right: auto;
    border-radius: 3px;
  }
}
@media only screen and (max-width: 768px) {
  .lb-notify {
    bottom: 50px;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}

.lb-circle {
  position: relative;
  height: 21px;
  width: 22px;
  display: inline-block;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  vertical-align: middle;
}

.star-box {
  border-radius: 3px;
  background-color: var(--primary-color);
  width: 20px;
  height: 20px;
  display: block;
  top: 8px;
  position: absolute;
  right: 25px;
}
.star-box .star {
  top: 0;
  left: 2px;
  display: inline-block;
}

.star-icon {
  width: 1.2em;
  height: auto;
  display: block;
  top: 1rem;
  position: absolute;
  right: 10px;
  fill: var(--primary-color);
}

.lb-color-live {
  background-color: white;
}

.lb-hero a {
  color: black;
}

.dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 6px;
  display: inline-block;
  position: relative;
}

@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-flicker {
  -webkit-animation: flickerAnimation 1s infinite;
  -moz-animation: flickerAnimation 1s infinite;
  -o-animation: flickerAnimation 1s infinite;
  animation: flickerAnimation 1s infinite;
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  height: 1.5em;
  /*opacity: .8;*/
}
.hr-text:before {
  content: "";
  /*background-color: black;*/
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
  /*background: linear-gradient(to right, transparent, #818078, transparent);*/
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  line-height: 1.5em;
  color: black;
  background-color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  .hr-text:after {
    background-color: #f3f3f2;
  }
}

.fade-in-color {
  opacity: 1;
  animation: fadeBackground 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s;
}

.fade-in {
  opacity: 1;
  animation-name: fadeBackground;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeBackground {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  from {
    background-color: rgba(0, 0, 0, 0.4);
  }
  to {
    background-color: #ffffff;
  }
}
.fr-video {
  position: relative;
  display: block;
  height: 0;
  /*padding: 0;*/
  overflow: hidden;
  padding-bottom: 56.25%;
}
.fr-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.iframe-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1000;
}

.squiggly {
  position: relative;
  height: 20px;
  width: 100%;
  margin-bottom: 1rem;
}

.squiggly::after,
.squiggly::before {
  height: inherit;
  width: inherit;
  background-size: 25px 100%; /* Change this to adjust the size of the squiggly line. */
  content: "";
  position: absolute;
}

.squiggly::before {
  top: -2px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 35%, transparent 0), linear-gradient(-45deg, rgba(0, 0, 0, 0.4) 35%, transparent 0);
}

.squiggly::after {
  top: 0px;
  background-image: linear-gradient(45deg, white 35%, transparent 0), linear-gradient(-45deg, white 35%, transparent 0);
}

.col {
  margin-bottom: 1rem !important;
}

/*# sourceMappingURL=liveblog.css.map */
