@charset "UTF-8";
:root {
  --bs-navbar-active-color: #000;
  --bs-nav-pills-link-active-bg: #FFF;
  --thm-bs-nav-pills-link-active-color: #000;
  --thm-bs-nav-pills-link-active-bg: var(--hs-active);
  --thm-bs-nav-link-hover-color: #000;
  --thm-btn-outline-primary: var(--hs-active);
  --thm-btn-outline-primary-text: #000;
  --thm-btn-outline-border: var(--hs-border-color);
}

[data-bs-theme=dark] {
  --thm-bs-nav-pills-link-active-color: #FFF;
  --thm-bs-nav-pills-link-active-bg: #444444;
  --thm-bs-nav-link-hover-color: #FFF;
  --thm-btn-outline-primary: var(--hs-border-color);
  --thm-btn-outline-primary-text: #FFF;
  --thm-btn-outline-border: var(--hs-border-color);
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--primary-red);
}

.thm-msg-bar .dropdown-item.active,
.thm-msg-bar .dropdown-item:active {
  background-color: transparent !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-pills {
  --bs-nav-pills-link-active-color: var(--thm-bs-nav-pills-link-active-color);
  --bs-nav-pills-link-active-bg: var(--thm-bs-nav-pills-link-active-bg);
}

.nav-pills .nav-link:focus, .nav-link:hover {
  color: var(--thm-bs-nav-link-hover-color);
  background-color: var(--thm-bs-nav-pills-link-active-bg);
}

.btn-outline-primary {
  --bs-btn-color: var(--thm-btn-outline-primary-text);
  --bs-btn-border-color: var(--thm-btn-outline-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--thm-btn-outline-primary);
  --bs-btn-hover-border-color: var(--thm-btn-outline-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--thm-inverse-text);
  --bs-btn-active-bg: var(--thm-btn-outline-primary);
  --bs-btn-active-border-color: var(--thm-btn-outline-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--thm-btn-outline-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--thm-btn-outline-primary);
  --bs-gradient: none;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgba(182, 34, 42, 0.75);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(182, 34, 42, 0.25);
}

.form-select:focus {
  border-color: rgba(182, 34, 42, 0.75);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(182, 34, 42, 0.25);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.form-check-input:focus {
  border-color: var(--primary-red);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(146, 146, 146, 0.25);
}

.form-control {
  background-color: var(--thm-blockquote);
}

.form-select {
  background-color: var(--thm-blockquote);
}

.offcanvas-body {
  --bs-offcanvas-padding-y: 0px !important;
}

.offcanvas,
.offcanvas-start,
.offcanvas-end,
.offcanvas-top,
.offcanvas-bottom {
  --bs-offcanvas-bg: var(--thm-blockquote) !important;
  --bs-offcanvas-color: var(--thm-inverse-text);
  --bs-offcanvas-border-color: var(--thm-border-color);
  --bs-offcanvas-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

/* Remove hover effects and cursor pointer for category buttons */
.btn-no-hover.btn.btn-outline-primary.btn-sm {
  cursor: default !important;
  pointer-events: none;
}

.btn-no-hover.btn.btn-outline-primary.btn-sm:hover {
  background-color: transparent !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-primary) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Alternative: If you want to disable all interactions but keep it visually identical */
.btn-static.btn.btn-outline-primary.btn-sm {
  cursor: default !important;
  transition: none !important;
}

.btn-static.btn.btn-outline-primary.btn-sm:hover,
.btn-static.btn.btn-outline-primary.btn-sm:focus,
.btn-static.btn.btn-outline-primary.btn-sm:active {
  background-color: transparent !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-primary) !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: var(--primary-color) !important;
}

@font-face {
  font-family: "Heuristica Regular";
  font-style: normal;
  font-weight: normal;
  src: url("https://cdn.townhall.com/web/fonts/Heuristica-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Heuristica Bold";
  font-style: normal;
  font-weight: bold;
  src: url("https://cdn.townhall.com/web/fonts/Heuristica-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "HeuristicaBoldItalic";
  font-style: normal;
  font-weight: bold;
  src: url("https://cdn.townhall.com/web/fonts/Heuristica-BoldItalic.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "SourceSansProBold";
  src: url("https://cdn.townhall.com/web/fonts/SourceSansPro-Bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceSansProRegular";
  font-style: normal;
  font-weight: normal;
  src: url("https://cdn.townhall.com/web/fonts/SourceSansPro-Regular-webfont.woff") format("woff");
  font-display: swap;
}
article {
  font-family: var(--font-stack);
  font-size: 18px;
}
article .caption {
  font-size: 11px;
}
article figure {
  margin: 0;
}
article figure figcaption {
  font-size: 11px;
  color: var(--thm-text-1);
  font-family: var(--font-author);
}
article .post-header h1 {
  font-family: var(--font-title);
  font-size: var(--post-header-font-size);
  font-weight: bold;
  color: var(--thm-text-1);
  margin-top: 0;
}
article .post-author {
  margin-bottom: 10px;
  color: var(--thm-text-1);
  font-family: var(--font-author);
}
article .post-author a {
  color: var(--thm-text-1);
  font-family: var(--font-author);
  text-decoration: none;
}
article .post-author ahover {
  color: var(--thm-text-1);
}
article .post-author .dt {
  font-size: 12px;
}
article .post-body {
  color: var(--thm-text-1);
  padding: 0;
}
article .post-body a {
  color: var(--thm-post-theme);
  font-weight: bold;
}
article .post-body img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
}
article .post-body blockquote {
  border-radius: 8px;
  border-left: none;
  position: relative;
  font-size: 100%;
  font-style: italic;
  margin: 10px 0;
  padding: 10.5px 55px;
  background-color: var(--thm-blockquote);
  border-top: 2px solid var(--thm-blockquote-border);
  border-bottom: 2px solid var(--thm-blockquote-border);
  /* Thanks: http://callmenick.com/post/styling-blockquotes-with-css-pseudo-classes */
}
article .post-body blockquote:before {
  font-family: Georgia, serif;
  position: absolute;
  font-size: 4em;
  line-height: 1;
  top: 0;
  left: -3px;
  content: "“";
  color: #b81f25;
}
@media (max-width: 768px) {
  article .post-body blockquote:before {
    font-size: 71px;
    left: -4px;
  }
}
article .post-body blockquote:after {
  font-family: Georgia, serif;
  position: absolute;
  /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
  float: right;
  font-size: 4em;
  line-height: 1;
  right: 10px;
  bottom: -0.5em;
  content: "”";
  color: #b81f25;
}
@media (max-width: 768px) {
  article .post-body blockquote:after {
    font-size: 71px;
    bottom: -0.5em;
  }
}
article .post-body blockquote p:last-of-type {
  margin-bottom: 0;
}
article .post-body .twitter-tweet, article .post-body .fb-post, article .post-body .fb-video, article .post-body .instagram-media {
  text-align: center !important;
  margin: 10px auto !important;
  display: block;
}
article .post-body.normal {
  font-size: 18px;
}
article .post-body.large {
  font-size: 22px;
  line-height: 1.6;
}
article .post-body.xl {
  font-size: 26px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  article .post-body blockquote {
    padding: 10.5px 28px;
  }
}
/* Override the variable for smaller breakpoints using Bootstrap media query sizes */
@media (max-width: 1200px) { /* Extra large devices (Bootstrap "xl" breakpoint) */
  article .post-header h1 {
    font-size: 60px;
  }
}
@media (max-width: 992px) { /* Large devices (Bootstrap "lg" breakpoint) */
  article .post-header h1 {
    font-size: 48px;
  }
}
@media (max-width: 768px) { /* Medium devices (Bootstrap "md" breakpoint) */
  article .post-header h1 {
    font-size: 36px;
  }
}
@media (max-width: 576px) { /* Small devices (Bootstrap "sm" breakpoint) */
  article .post-header h1 {
    font-size: 28px;
  }
}
.thm-card {
  cursor: pointer;
  position: relative;
}
@media (max-width: 575.98px) {
  .thm-card {
    border-bottom: 1px solid var(--bs-border-color);
  }
}
.thm-card__header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.thm-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.thm-card .brid-flex {
  display: flex;
  justify-content: center;
  /*    align-items:center;*/
}
.thm-card__img {
  height: auto;
  position: relative;
}
.thm-card__img img {
  border-radius: 10px;
  /*&:hover {
      transform: scale(1.02);
      transition: transform .75s;
  }*/
}
.thm-card__img .brid-play {
  height: 70px;
  left: 41%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  opacity: 0.5;
}
.thm-card img, .thm-card svg {
  vertical-align: middle;
}
.thm-card__title {
  text-align: left;
}
.thm-card__title a {
  color: var(--thm-link-1);
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}
@media (max-width: 1440px) {
  .thm-card__title a {
    font-size: 18px;
  }
}
.thm-card__dt {
  font-family: var(--font-stack);
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
  color: var(--dt);
}
.thm-card__vip-badge {
  padding: 0;
  position: absolute;
  top: 15px;
  z-index: 0;
}
.thm-card__author {
  text-decoration: none;
  font-family: var(--font-stack);
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 10px 0 10px 0;
  text-align: left;
  display: flex;
  color: var(--thm-text-1);
}
.thm-card__author a {
  color: var(--thm-link-1);
  font-weight: normal;
  text-decoration: none;
}
.thm-card__author a:hover {
  color: var(--thm-link-1);
}

.video-card__player {
  min-height: 200px;
  display: none;
}

.video-card {
  min-height: 260px;
}
.video-card:hover .brid-play {
  opacity: 100%;
  transition: opacity 0.4s;
}

@media (max-width: 575.98px) {
  .thm-hcard {
    border-bottom: 1px solid var(--bs-gray-300);
  }
}
.thm-hcard__header {
  margin: 0 10px 10px 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.thm-hcard__header a {
  color: var(--thm-link-1);
  font-size: 16px;
  font-weight: bold;
}
.thm-hcard__body {
  color: var(--thm-text-1);
}

.thm-episodes h1 {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15px;
  font-weight: bold;
}

.thm-nl-card {
  border: 1px solid var(--thm-blockquote-border);
  background-color: var(--thm-blockquote);
  padding: 15px 15px 20px 15px;
  margin: 0 15px 15px 15px;
  border-radius: 15px;
}
.thm-nl-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.thm-nl-card__header span {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}
.thm-nl-card h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.thm-nl-card__body button.btn {
  font-weight: bold;
  font-size: 13px;
}
.thm-nl-card__body a {
  color: var(--thm-link-1);
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}
@media (max-width: 1440px) {
  .thm-nl-card__body a {
    font-size: 18px;
  }
}
.thm-nl-card__dt {
  font-family: var(--font-stack);
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
}

.thm-ncard {
  border-radius: 10px;
}
.thm-ncard .card-img-top {
  border-radius: 10px;
}
.thm-ncard h5 {
  font-weight: bold;
  margin: 0;
}
.thm-ncard small {
  font-size: 11px;
}

.card {
  border: 1px solid var(--bs-border-color);
  background-color: transparent;
  color: var(--thm-text-1);
}

.thm-episodes h1 {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--thm-text-1);
}

.thm-episode-card {
  border: 1px solid var(--thm-blockquote-border);
  background-color: var(--thm-blockquote);
  padding: 15px 15px 20px 15px;
  margin: 0;
  border-radius: 15px;
}
.thm-episode-card__play {
  cursor: pointer;
  font-size: 30px;
  color: var(--thm-text-1);
  margin-right: 10px;
}
.thm-episode-card__play:hover {
  color: var(--primary-color);
}
.thm-episode-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.thm-episode-card__header span {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}
.thm-episode-card__description {
  margin-bottom: 0;
}
.thm-episode-card__description > *:last-child {
  margin-bottom: 0;
}
.thm-episode-card h3 {
  color: var(--thm-text-1);
  font-size: 18px;
  margin-bottom: 0;
}
.thm-episode-card__body button.btn {
  font-weight: bold;
  font-size: 13px;
}
.thm-episode-card__title {
  text-align: left;
}
.thm-episode-card__title a {
  color: var(--thm-text-1);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}
.thm-episode-card__dt {
  font-family: var(--font-stack);
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
}

.thm-navbar {
  z-index: 990;
  transform: translateY(0);
  transition: transform 0.3s ease;
  min-height: 69px;
  background-color: var(--thm-bg-1);
}

.thm-navbar-brand > img {
  height: 25px;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: var(--skeleton-l1);
  }
  100% {
    background-color: var(--skeleton-l2);
  }
}
.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}

.switch {
  float: right;
  position: relative;
  display: inline-block;
  width: 49px;
  height: 23px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #34c759;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
input {
  /*&:focus {
      & + .slider {
          box-shadow: 0 0 1px $green;
      }
  }*/
}

.widget-list {
  border: 1px solid var(--border-color);
  margin: 0;
  padding: 10px;
  border-radius: 10px;
}
.widget-list__header {
  color: var(--primary-red);
  font-weight: bold;
}
.widget-list__header h3 {
  margin: 0 10px;
  font-weight: bold;
}
.widget-list__body li {
  margin: 10px;
  padding: 5px;
  text-align: left;
  border-radius: 10px;
  color: white;
}
.widget-list__body li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}
.widget-list__body li a:hover {
  color: white;
  text-decoration: none;
}

.cb-list {
  background-color: transparent;
  font-size: 20px;
  line-height: 28px;
  display: inline-block;
}
.cb-list__noborder {
  border: 1px solid transparent !important;
}
.cb-list__border {
  border-bottom: 1px solid var(--border-color);
}
.cb-list__header {
  background-color: transparent;
  padding-bottom: 5px;
}
.cb-list__header img {
  width: 20px;
}
.cb-list__header-title {
  color: var(--primary-color);
  display: inline-block;
  font-family: var(--font-header);
  font-size: var(--widget-title-size);
  padding: 0;
}
.cb-list__author {
  font-size: 14px;
  display: block;
  font-family: var(--font-header);
  color: var(--thm-text-1);
  text-decoration: none !important;
}
.cb-list__body {
  color: var(--thm-text-1);
  margin: 0;
  font-family: var(--font-header);
}
.cb-list__body img {
  margin: 10px 0;
  width: 92px;
}
.cb-list__hero {
  line-height: 1.2 !important;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}
.cb-list__hero img {
  border-radius: 6px;
  margin: 0;
  padding: 0;
  width: 100%;
}
.cb-list__body-title {
  color: var(--thm-text-1);
  font-weight: 800 !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}
.cb-list__body-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 80px;
  display: inline-block;
  margin-right: 15px;
  border-radius: 5px;
  border: solid 0.3px #707070;
}
.cb-list__count {
  font-family: var(--font-title);
  color: var(--thm-text-1);
  font-weight: bold;
  font-size: 45px;
  width: 45px;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}

a.thm-back {
  color: var(--thm-text-1);
  text-decoration: underline;
  cursor: pointer;
  font-size: 1.4em;
}

.thm-link a {
  color: var(--thm-link-1);
  text-decoration: none;
  font-weight: normal;
}
.thm-link a:hover {
  text-decoration: none;
}

.thm-text {
  font-size: 14px;
  font-weight: bold;
}

.thm-link-muted {
  font-size: 13px;
  font-weight: 600;
  color: var(--border-gray);
}

.thm-btn-light {
  white-space: nowrap;
  background-color: var(--bg-gray);
  border: 1px solid #d7d7d7;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
}
.thm-btn-light.active {
  background-color: #E7E7E7;
}

.thm-divider {
  border-top: 1px solid var(--thm-c-border);
  border-bottom: 1px solid var(--thm-c-border);
  color: var(--bs-gray-500);
  text-transform: uppercase;
  font-weight: normal;
  padding: 0.5rem 1rem;
}

.thm-w-70 {
  width: 70px;
  text-align: center;
}

.thm-h2 {
  font-weight: bold;
  margin: 10px 0;
  color: var(--thm-text-1);
}

.thm-cartoonist {
  border: 1px solid var(--thm-c-border);
  margin: 0.5rem;
  border-radius: 8px;
  background-color: var(--thm-c-bg);
  padding: 5px 10px;
  margin-bottom: 10px;
}

.thm-bookmark {
  font-size: 16px;
  color: var(--thm-text-1);
}

.thm-updates a {
  font-weight: bold;
  color: black;
}
.thm-updates img {
  width: 60px;
}
.thm-updates .bg-success {
  background-color: #34C759;
}
.thm-updates .bg {
  background-color: #0094ff;
}

.floating-player {
  position: fixed;
  bottom: 0;
  border-radius: 10px 10px 0 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  border: 1px solid var(--hs-border-color);
  border-top: 1px solid var(--hs-border-color);
  border-right: 1px solid var(--hs-border-color);
  border-left: 1px solid var(--hs-border-color);
  border-bottom: 1px solid transparent;
  background-color: var(--thm-blockquote);
  overflow-x: auto;
  box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0 16px;
}

@media screen and (max-width: 991px) {
  .floating-player {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
  }
}
.ptn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: var(--thm-text-1);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0;
  font-size: 1rem;
}

.player.expand {
  overflow: hidden;
  transition: height 200ms;
  height: 525px;
}
.player.expand .player-duration-bar {
  display: flex;
}
.player.expand .player-volume-bar {
  width: 150px;
}
.player.expand .player-actions {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.player.expand .player-actions .player-actions-volume {
  margin-left: 0;
  margin-right: 0;
  width: 32px;
}
.player.expand .player-picture {
  margin-right: 0;
  width: 250px;
}
.player.expand .player-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.player.expand .player-info .close {
  position: absolute;
  right: 10px;
  top: 5px;
  display: block;
}
.player.expand .player-info .player-info-details {
  margin-top: 10px;
}
.player.expand .player-info-title {
  font-size: 25px;
}
.player.expand .player-info-data {
  color: var(--thm-text-1);
  font-size: var(--text-s-fs);
  line-height: var(--text-s-lh);
  display: flex;
  overflow: auto;
  height: 60px;
}
.player.expand .player-controls {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-start;
  padding-left: 0;
  height: 100%;
}
.player.expand .player-controls .player-controls-buttons {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  margin-bottom: 2px;
  justify-content: center;
  align-items: center;
}
.player.expand {
  grid-template-columns: none;
}

.player {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  background-color: var(--thm-blockquote);
  color: var(--thm-text-1);
  height: 70px;
  padding: 0;
}

.player-playback {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 5px;
  align-items: center;
}

.player-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.player-info .close {
  position: absolute;
  right: 10px;
  top: 5px;
  display: block;
}

.player-info-details {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.player-info-title {
  font-size: 14px;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-info-data {
  color: var(--thm-text-1);
  font-size: var(--text-s-fs);
  line-height: var(--text-s-lh);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-info-date {
  font-size: 13px;
}

.player-picture {
  margin-right: 12px;
  flex-basis: 56px;
  min-width: 56px;
}
.player-picture img {
  height: auto;
  width: 100%;
  border-radius: 10px;
}

.player-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  padding-left: 0;
  height: 100%;
}

.player-controls-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.player-controls-spinner::deep .spinner {
  width: 32px;
}

.player-controls-buttons {
  display: grid;
  align-items: center;
  justify-content: right;
  grid-template-columns: auto auto auto;
  gap: 10px;
  margin-bottom: 2px;
}
.player-controls-buttons > button {
  padding: 0;
}
.player-controls-buttons > button:hover {
  cursor: pointer;
}

.player-controls-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.player-controls-action > span {
  color: var(--th-color);
  font-size: 24px;
  height: unset;
  padding-top: 2px;
}

.player-controls-jump {
  color: var(--th-color);
  font-size: 24px;
}
.player-controls-jump:hover {
  color: var(--pj-color);
}

.player-duration-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
}
.player-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.player-actions-share {
  /*color: var(--pj-color);*/
  font-size: 24px;
}
.player-actions-share:hover {
  cursor: pointer;
}

.player-actions-later {
  font-size: 24px;
}
.player-actions-later:hover {
  cursor: pointer;
}

.player-actions-volume {
  /*color: var(--c-neutral-grey5);*/
  font-size: 24px;
  margin-left: 0;
  margin-right: 0;
}
.player-actions-volume:hover {
  cursor: pointer;
}

.player-volume-bar {
  width: 100%;
}

input[type=range] {
  --current-width: 0;
  --height: 4px;
  appearance: none;
  border-radius: 0;
  height: 22px;
  width: 100%;
  background: transparent;
  outline: none;
  position: relative;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--height);
  cursor: pointer;
  animate: 0.2s;
  background: #cecece;
  border-radius: 0;
  border: 0 solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #9d9d9d;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
  display: block;
}
input[type=range]:hover::-webkit-slider-thumb {
  display: block;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: var(--height);
  cursor: pointer;
  animate: 0.2s;
  border-radius: 0;
  border: 0 solid var(--tf-color);
}
input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  cursor: pointer;
  visibility: visible;
}

input[type=range]:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: var(--current-width);
  height: var(--height);
  background-color: var(--th-color);
  cursor: pointer;
  border-radius: 0;
}
input[type=range]:hover {
  cursor: pointer;
}
input[type=range]:hover:before {
  background-color: var(--th-color);
}
input[type=range]:hover::-moz-range-thumb {
  visibility: visible;
}
input[type=range]:hover::-moz-range-progress {
  background-color: var(--th-color);
}
input[type=range]::-moz-range-progress {
  background-color: var(--th-color);
  border-radius: 0;
  height: var(--height);
}

@media screen and (min-width: 991px) {
  .player {
    grid-template-columns: 25% 50% 25%;
    height: 90px;
  }
  .player-controls {
    padding: 0 15px;
    justify-content: flex-start;
  }
  .player-controls-spinner::deep .spinner {
    width: 48px;
  }
  .player-controls-buttons {
    justify-content: center;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1366px) {
  .player-actions-volume {
    margin-left: 0;
  }
}
@media screen and (max-width: 1399px) {
  .player-info-title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 991px) {
  /*.player-picture {
      display: none;
  }*/
  .player-playback {
    display: none;
  }
  .player-duration-bar {
    display: none;
  }
  .player-actions {
    display: none;
  }
}
.mini-player {
  position: fixed; /* Keeps the mini-player visible even as the user scrolls */
  bottom: 10px; /* Position it near the bottom of the viewport */
  right: 10px; /* Position it near the right of the viewport */
  width: 320px; /* Define the width of the mini-player */
  height: 180px; /* Define the height of the mini-player */
  z-index: 1000; /* Ensure it appears above other elements */
  background-color: black; /* Optional: Background for better visibility */
  border-radius: 8px; /* Optional: Rounded corners */
  overflow: hidden; /* Prevent content overflow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Shadow for a floating effect */
  display: flex; /* Flex container for alignment */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
}

.mini-player.sticky-mode {
  cursor: grab; /* Indicate draggable behavior */
}

.mini-player.sticky-mode:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .mini-player {
    width: 240px;
    height: 135px;
    bottom: 5px;
    right: 5px;
  }
}
.mini-player {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mini-player.hidden {
  transform: translateY(100px); /* Slide off-screen */
  opacity: 0; /* Fade out */
  pointer-events: none; /* Prevent interactions */
}

.thm-search {
  position: relative;
  width: 400px;
}
.thm-search i.bi-search {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--thm-text-1);
}
.thm-search input.form-control {
  padding-left: 40px;
  background-color: var(--thm-blockquote) !important;
  border-radius: 20px;
  color: var(--thm-text-1);
}

.ptr--ptr {
  box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 1px solid var(--thm-text-1);
  pointer-events: none;
  font-size: 0.85em;
  font-weight: bold;
  top: 0;
  height: 0;
  transition: height 0.3s, min-height 0.3s;
  text-align: center;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  align-content: stretch;
}

.ptr--box {
  padding: 10px;
  flex-basis: 100%;
}

.ptr--pull {
  transition: none;
}

.ptr--text {
  margin-top: 0.33em;
  color: var(--thm-text-1) !important;
}

.ptr--icon {
  color: var(--thm-text-1) !important;
  transition: transform 0.3s;
}

/* When at the top of the page, disable vertical overscroll so passive touch listeners can take over. */
.ptr--top {
  touch-action: pan-x pan-down pinch-zoom;
}

.ptr--release .ptr--icon {
  transform: rotate(180deg);
}

[data-bs-theme=light] .thmnews-logo {
  background: url("/images/vip-platinum.svg") no-repeat center;
  width: 200px;
  height: 26px;
  background-size: cover;
}

[data-bs-theme=dark] .thmnews-logo {
  background: url("/images/vip-platinum.svg") no-repeat center;
  width: 200px;
  height: 26px;
  background-size: cover;
}

[data-bs-theme=light] .townhall-logo {
  background: url("/images/townhall.svg") no-repeat center;
  width: 90px;
  height: 18px;
  background-size: cover;
}

[data-bs-theme=dark] .townhall-logo {
  background: url("/images/townhall-dark.svg") no-repeat center;
  width: 90px;
  height: 18px;
  background-size: cover;
}

[data-bs-theme=light] .pjmedia-logo {
  background: url("/images/pjmedia.svg") no-repeat center;
  width: 90px;
  height: 27px;
  background-size: cover;
}

[data-bs-theme=dark] .pjmedia-logo {
  background: url("/images/pjmedia-dark.svg") no-repeat center;
  width: 90px;
  height: 27px;
  background-size: cover;
}

[data-bs-theme=light] .redstate-logo {
  background: url("/images/redstate.svg") no-repeat center;
  width: 93px;
  height: 18px;
  background-size: cover;
}

[data-bs-theme=dark] .redstate-logo {
  background: url("/images/redstate-dark.svg") no-repeat center;
  width: 93px;
  height: 18px;
  background-size: cover;
}

[data-bs-theme=light] .hotair-logo {
  background: url("/images/hotair.svg") no-repeat center;
  width: 50px;
  height: 20px;
  background-size: cover;
}

[data-bs-theme=dark] .hotair-logo {
  background: url("/images/hotair-dark.svg") no-repeat center;
  width: 50px;
  height: 20px;
  background-size: cover;
}

[data-bs-theme=light] .twitchy-logo {
  background: url("/images/twitchy.svg") no-repeat center;
  width: 93px;
  height: 21px;
  background-size: cover;
}

[data-bs-theme=dark] .twitchy-logo {
  background: url("/images/twitchy-dark.svg") no-repeat center;
  width: 93px;
  height: 21px;
  background-size: cover;
}

[data-bs-theme=light] .bearingarms-logo {
  background: url("/images/bearingarms.svg") no-repeat center;
  width: 90px;
  height: 14px;
  background-size: cover;
}

[data-bs-theme=dark] .bearingarms-logo {
  background: url("/images/bearingarms-dark.svg") no-repeat center;
  width: 90px;
  height: 14px;
  background-size: cover;
}

[data-bs-theme=light] .patriotai-logo {
  background: url("/images/patriotai.svg") no-repeat center;
  width: 110px;
  height: 22px;
  background-size: cover;
}

[data-bs-theme=dark] .patriotai-logo {
  background: url("/images/patriotai-dark.svg") no-repeat center;
  width: 110px;
  height: 22px;
  background-size: cover;
}

[data-bs-theme=light] .patriotai-hero {
  background: url("/images/patriotai.svg") no-repeat center;
  width: 300px;
  height: 60px;
  background-size: cover;
}

[data-bs-theme=dark] .patriotai-hero {
  background: url("/images/patriotai-dark.svg") no-repeat center;
  width: 300px;
  height: 60px;
  background-size: cover;
}

.logo-small {
  transform: scale(0.8);
  transform-origin: center;
}

.brid {
  border-radius: 12px;
  overflow: hidden;
}

.bplr-poster {
  border-radius: 15px !important;
  overflow: hidden !important;
}

.brid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(40px, 4vw, 70px);
  height: clamp(40px, 4vw, 70px);
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  pointer-events: none;
}

@media (max-width: 1440px) {
  .brid-play {
    width: 47px !important;
    height: 47px !important;
    display: block !important;
  }
}
.brid-play:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.mini-player-button, .restore-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--thm-text-1);
  font-weight: bold;
  font-size: 15px !important;
  cursor: pointer;
  z-index: 100;
}

.sticky-mode {
  width: 320px !important;
  height: 180px !important;
  position: fixed !important;
  bottom: 10px !important;
  right: 10px !important;
  z-index: 9999 !important;
}

.resize-handle {
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: nwse-resize;
  border-radius: 50%;
}

.sticky-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--hs-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: var(--thm-text-1);
  font-weight: bold;
  text-align: center;
  border-radius: 12px;
}

/*.videoPlaceHolder {
    display: none !important;
}*/
/*
.mini-player-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1000;
}
.restore-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1000;
}
*/
.mini-player-container {
  position: fixed !important;
  bottom: 10px !important;
  right: 10px !important;
  z-index: 10000 !important;
  background-color: #000; /* Ensure consistent background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add some shadow */
  border-radius: 12px; /* Optional: Add rounded corners */
  overflow: hidden; /* Prevent stretching issues */
}

.more-videos {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

/* Mini-player title */
.mini-player-title {
  width: 320px; /* Match the player width */
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px;
  border-radius: 0 0 8px 8px;
  position: absolute;
  bottom: -25px; /* Adjust this to position the title properly */
  left: 0;
}

.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;
}

.social-bar a {
  border: 1px solid var(--bs-border-color);
}
.social-bar a:hover {
  border: 1px solid #bababa;
  background-color: transparent;
}

@media (max-width: 768px) {
  :root {
    --controls-svg-size: 25px;
  }
}
.fb-social i > svg {
  width: var(--controls-svg-size);
  position: relative;
  top: -1px;
}
.fb-social i > svg:hover {
  fill: #000;
}
.fb-social:hover {
  background-color: var(--menu-bg-color);
}

.truth-social i > svg {
  width: var(--controls-svg-size);
  fill: var(--thm-text-1);
  position: relative;
  top: -1px;
}
.truth-social i > svg:hover {
  fill: var(--thm-text-1);
}
.truth-social:hover {
  background-color: var(--thm-text-1);
}

.print i > svg {
  width: var(--controls-svg-size);
  fill: #000;
  position: relative;
  top: -1px;
}
.print i > svg:hover {
  fill: #000;
}
.print:hover {
  background-color: var(--menu-bg-color);
}

.tw-social i > svg {
  width: var(--controls-svg-size);
}
.tw-social:hover {
  background-color: var(--menu-bg-color);
}

#liveblog-posts .img-thumbnail, #liveblog-pinned .img-thumbnail {
  width: 50px;
  height: auto;
  padding: 0px;
  border-radius: 13px;
}
#liveblog-posts .adtext, #liveblog-pinned .adtext {
  margin-top: 10px;
  margin-bottom: 3px;
}

.btn-thumbtack {
  position: absolute;
  top: -10px;
  left: -3px;
}
.btn-thumbtack i {
  padding: 6px;
}
.btn-thumbtack i > svg {
  fill: var(--primary-color);
  position: relative;
  width: 17px;
}

.btn-copylink {
  position: relative;
  display: none;
  cursor: pointer;
}
.btn-copylink i > svg {
  fill: #000;
  position: relative;
  width: 17px;
}

@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(--thm-text-1);
  font-weight: bold;
}

.lb-hero {
  color: var(--thm-text-1);
  display: block;
  background-color: transparent;
}
.lb-hero__timestamp {
  font-size: 13px;
  display: inline-block;
}
.lb-hero__button {
  display: inline-block;
  color: var(--thm-inverse-text);
  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: var(--thm-text-1);
  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(--hs-border-color) 1px;
  background: var(--thm-bg-1);
  border-radius: 6px;
}
.lb-post a {
  color: var(--primary-color);
}
.lb-post__ul {
  color: var(--thm-text-1);
  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: var(--thm-text-1);
  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: var(--thm-bg-1);
  border-radius: 10px;
  border-bottom: 1px solid var(--hs-border-color);
  border-left: none;
  border-top: 1px solid var(--hs-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;
  }
}

.lb-notify {
  border-radius: 10px;
  position: fixed;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3019607843);
  text-transform: uppercase;
  font-weight: 400;
  z-index: 999;
  bottom: 40px;
  color: var(--thm-text-1);
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .lb-notify {
    left: 38%;
    right: auto;
    border-radius: 3px;
  }
}
@media only screen and (max-width: 480px) {
  .lb-notify {
    bottom: 50px;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}

.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;
}

.thm-badge {
  background: var(--primary-color);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 8px;
  padding: 6px 8px 5px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
}

.lb-color-live {
  background-color: white;
}

.live-pulse {
  position: relative;
}

.live-pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #ff5252;
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
.dot {
  background-color: #fff;
  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;
}

.lb-list {
  border: solid var(--hs-border-color) 1px;
  border-radius: 6px;
}
.lb-list__header {
  border-bottom: solid var(--hs-border-color) 1px;
  position: relative;
}
.lb-list__header-title {
  color: var(--thm-text-1);
  font-weight: bold;
  height: 50px;
  font-size: 22px;
}
.lb-list__body {
  color: var(--thm-text-1);
  font-weight: bold;
}
.lb-list__body ul li {
  border-bottom: solid var(--hs-border-color) 1px;
  display: flex;
}
.lb-list__body ul li:last-child {
  border-bottom: none;
}
.lb-list__body a {
  color: var(--thm-text-1);
  text-decoration: none;
}

.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;
}
.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-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;
  border: solid var(--hs-border-color) 1px;
  background: #161616;
}
.timeline h4 {
  font-weight: bold;
  font-size: 22px;
}

.timeline-wrapper {
  overflow-y: auto;
  max-height: 300px;
}
.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(--thm-text-1);
}
.timeline-wrapper a:not(.unlinked-thread) {
  text-decoration: underline;
}
.timeline-wrapper li {
  position: relative;
  padding-bottom: 10px;
  border-left: 1px solid red;
  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, red);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: -3px;
}
.timeline-wrapper .time {
  color: var(--thm-text-1);
  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: var(--thm-text-1);
  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;
  }
}

/* Messages Page Styles */
.thm-thread {
  border: 1px solid var(--thm-blockquote-border);
  transition: all 0.2s ease-in-out;
}
.thm-thread:hover {
  background-color: var(--thm-blockquote);
}
.thm-thread.active {
  background-color: var(--thm-blockquote);
}
.thm-thread.unread {
  font-weight: 600;
  border-left: 4px solid var(--primary-color);
}
.thm-thread__author {
  font-size: 0.875rem;
}
.thm-thread__subject {
  min-width: 0;
}
.thm-thread__ts {
  font-size: 0.75rem;
  white-space: nowrap;
}

.thm-message-view {
  border: 1px solid var(--thm-blockquote-border);
  height: fit-content;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.thm-message-view__header {
  background-color: var(--thm-blockquote);
  border-bottom: 1px solid var(--thm-blockquote-border);
  border-radius: 0.375rem 0.375rem 0 0;
  align-items: center;
}
.thm-message-view__header h4 {
  margin: 0;
  color: var(--thm-text-1);
}
.thm-message-view__footer {
  background-color: var(--thm-blockquote);
  border-top: 1px solid var(--thm-blockquote-border);
  border-radius: 0 0 0.375rem 0.375rem;
  margin-top: auto;
}

.thm-msg {
  background-color: var(--thm-bg-1);
}
.thm-msg:last-child {
  border-bottom: none;
}
.thm-msg__body p:last-child {
  margin-bottom: 0;
}

.lb-timestamp {
  color: var(--thm-text-1);
  font-size: 0.75rem;
}

.lb-author {
  font-size: 0.875rem;
}

.message-thumbnail {
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.scrollarea {
  overflow-y: auto;
  max-height: 500px;
  padding: 0.5rem;
  background-color: var(--thm-blockquote);
}

/* Modal improvements */
.modal-dialog {
  max-width: 600px;
}

.modal-content {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Form improvements */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Badge for unread count */
.badge {
  font-size: 0.65em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .thm-message-view {
    min-height: 300px;
  }
  .scrollarea {
    max-height: 300px;
  }
  .thm-thread {
    margin-bottom: 0.25rem;
  }
  .thm-msg {
    padding: 0.75rem;
  }
}
.source-title a {
  color: var(--thm-link-1);
}

.source-icons {
  background: var(--thm-assistant-icon);
  border-radius: 9999px;
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.source-icons img {
  max-width: 20px;
  max-height: 20px;
  width: auto;
  height: auto;
}

:root {
  --controls-svg-size: 22px;
  color-scheme: unset;
  --bs-blue: #0d6efd;
  --pj-color: #B21F24;
  --pj-blue-color: #0A3161;
  --th-color: #b21f24;
  --ba-color: #ADADAD;
  --ha-color: #972123;
  --tw-color: #F27B21;
  --tf-color: #56782F;
  --he-color: #767676;
  --rs-color: #B81F24;
  --live-color: #c90110;
  --font-stack: "Source Sans Pro", sans-serif;
  --font-stack-body: "Open Sans", sans-serif;
  --nav-menu-fontsize: 15px;
  --button-blue: #166b9e;
  --primary-red: #B6222A;
  --primary-color: #B6222A;
  --border-color: #8A8A8A;
  --widget-body-color: #1E1E1E;
  --blockquote: #b81f24;
  --visited-color: #919191;
  --ct-background: #f7f7f7;
  /*--rs-font-h1: "minion-pro","Times New Roman",Times,serif;*/
  /*--ha-font-h1: 'proxima-nova', Arial, sans-serif;*/
  --thm-border-radius: 6px;
  --thm-bg-1: #FFFFFF;
  --hamburger-bg: #000000;
  --thm-grey-1: #e7e7e7;
  --thm-link-1: #000000;
  --thm-text-1: #000000;
  --thm-inverse-text: #000000;
  --thm-c-bg: #f1f1f1;
  --thm-c-border: #d7d7d7;
  --thm-blockquote: #f1f1f1;
  --thm-blockquote-border: #d7d7d7;
  --thm-post-theme: var(--rs-color);
  --thm-chat-icon: #dee2e6;
  --border-color: #dee2e6;
  --hover-color: #7f8185;
  --hs-border-color: #dee2e6;
  --hs-background-color: #f8f9fa;
  --hs-active: #d7d7d7;
  --dt: var(--bs-gray-300);
  --skeleton-l1: hsl(200, 20%, 80%);
  --skeleton-l2: hsl(200, 20%, 95%);
  --ff-light: "Segoe UI Light";
  --ff-semilight: "Segoe UI Semilight";
  --ff-regular: "Segoe UI";
  --ff-semibold: "Segoe UI Semibold";
  --ff-bold: "Segoe UI Bold";
  --headlines-h1-fs: 90px;
  --headlines-h1-lh: 96px;
  --headlines-h2-fs: 64px;
  --headlines-h2-lh: 72px;
  --headlines-h3-fs: 48px;
  --headlines-h3-lh: 56px;
  --headlines-h4-fs: 36px;
  --headlines-h4-lh: 44px;
  --headlines-h5-fs: 32px;
  --headlines-h5-lh: 40px;
  --headlines-h6-fs: 24px;
  --headlines-h6-lh: 36px;
  --subheadings-s1-fs: 36px;
  --subheadings-s1-lh: 44px;
  --subheadings-s2-fs: 32px;
  --subheadings-s2-lh: 42px;
  --subheadings-s3-fs: 24px;
  --subheadings-s3-lh: 40px;
  --subheadings-s4-fs: 22px;
  --subheadings-s4-lh: 32px;
  --subheadings-s5-fs: 20px;
  --subheadings-s5-lh: 30px;
  --subheadings-s6-fs: 18px;
  --subheadings-s6-lh: 28px;
  --text-xxl-fs: 24px;
  --text-xxl-lh: 32px;
  --text-xl-fs: 20px;
  --text-xl-lh: 30px;
  --text-l-fs: 18px;
  --text-l-lh: 28px;
  --text-m-fs: 16px;
  --text-m-lh: 24px;
  --text-s-fs: 14px;
  --text-s-lh: 22px;
  --text-xs-fs: 12px;
  --text-xs-lh: 18px;
  --link-xl-fs: 20px;
  --link-xl-lh: 30px;
  --link-l-fs: 18px;
  --link-l-lh: 28px;
  --link-m-fs: 16px;
  --link-m-lh: 24px;
  --link-s-fs: 14px;
  --link-s-lh: 22px;
  --input-fs: 15px;
  --input-lh: 24px;
  --box-shadow-s: 0 1px 4px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.05);
  --box-shadow-m: 0 6px 12px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.05);
  --box-shadow-l: 0 10px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.03);
  --box-shadow-xl: 0 30px 48px rgba(0, 0, 0, 0.16), 0 8px 30px rgba(0, 0, 0, 0.14), 0 8px 10px rgba(0, 0, 0, 0.1), 0 4px 12px -10px rgba(0, 0, 0, 0.5);
  --swiper-pagination-bullet-inactive-color: #3d3d3d;
  --swiper-pagination-color: var(--th-color);
  --post-body-size: var(--global-text-size);
  --post-author-size: 18px;
  --post-category-size: 20px;
  --post-body-lh: 1.6;
  --font-bolder: SourceSansProBold, Helvetica, sans-serif;
  --font-title: "Heuristica Bold",serif;
  --font-header: SourceSansProRegular, Helvetica, sans-serif;
  --font-author: Helvetica, sans-serif;
  --post-header-font-size: 60px;
  --thm-usermessage: #f1f1f1;
  --thm-assistant-icon: #f1f1f1;
  --mini-button-icon-color: #ffffff;
  --scrollbar-width: 6px;
  --scrollbar-bg: transparent;
  --scrollbar-thumb: rgba(136, 136, 136, 0.5);
  --scrollbar-thumb-hover: rgba(136, 136, 136, 0.8);
}

[data-bs-theme=dark] {
  --thm-grey-1: #e7e7e7;
  --thm-link-1: #FFF;
  --thm-text-1: #FFF;
  --thm-inverse-text: #FFFFFF;
  --thm-bg-1: #000000 !important;
  --hs-border-color: #444444;
  --hs-background-color: #000000;
  --hs-active: #262626;
  --hamburger-bg: #FFF;
  --visited-color: #919191;
  --thm-blockquote: #101010;
  --thm-blockquote-border: #424242;
  --ct-background: #161616;
  --thm-chat-icon: #FFFFFF;
  --thm-usermessage: #101010;
  --scrollbar-thumb: rgba(136, 136, 136, 0.4);
  --scrollbar-thumb-hover: rgba(136, 136, 136, 0.7);
  --mini-button-icon-color: #ffffff;
}

*::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}
*::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
}
*::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  transition: background 0.2s ease;
}
*:hover::-webkit-scrollbar-thumb, *:active::-webkit-scrollbar-thumb, *:focus::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

* {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}
*:hover, *:active, *:focus {
  scrollbar-color: var(--scrollbar-thumb) transparent;
}

html, body, #app {
  font-family: var(--font-stack);
  background-color: var(--thm-bg-1);
  overflow: hidden; /* Hide the body scrollbar completely */
}

a {
  cursor: pointer;
}

h1 {
  font-family: var(--font-title);
}

.thm-login-form {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.thm-bi {
  width: 17px;
  height: 17px;
  fill: currentcolor;
}

.bi {
  /*width: 2em;
  height: 1em;*/
  /*vertical-align: -.125em;*/
  fill: currentcolor;
}

.ct-bg {
  background-color: var(--ct-background);
}

.thm-modal-content {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rebeccapurple;
  z-index: 10;
}

.thm-list a:visited {
  color: var(--visited-color);
}

[data-bs-theme=dark] .x-follow-btn iframe {
  border: 1px solid var(--bs-border-color);
  border-radius: 99999px;
  height: 22px !important;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--bs-border-color);
}

.divider::before {
  margin-right: 10px;
}

.divider::after {
  margin-left: 10px;
}

.divider .date {
  background: var(--ct-background);
  padding: 5px 10px;
  border-radius: 16px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  color: var(--thm-text-1);
  margin: 15px 0;
}

.thm-myaccount .dropdown-menu {
  position: absolute;
  right: 0;
  left: -75px;
}

.thm-modal-close {
  position: absolute;
  right: -17px;
  top: -16px;
  padding: 0;
  margin: 0;
  background-color: white;
  padding: 7px;
  border-radius: 16px;
  border: 2px var(--bs-border-style) var(--bs-border-color) !important;
}

.hs-icon-button {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid var(--hs-border-color);
  padding: 8px 10px 10px 15px;
  font-size: 1rem;
  border-radius: var(--thm-border-radius);
  height: 45px;
}
.hs-icon-button:hover {
  border: solid 1px #bababa;
  background-color: transparent;
}
.hs-icon-button.active {
  background-color: var(--hs-active);
}

.hs-icon-button.btn-no-hover {
  cursor: default;
}
.hs-icon-button.btn-no-hover:hover {
  border: 1px solid var(--hs-border-color);
  background-color: transparent;
}
.hs-icon-button.btn-no-hover.active {
  background-color: transparent;
}

.thm-icon-button {
  display: block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: var(--bs-gray-100);
  border: 1px solid transparent;
  padding: 0px 8px 5px 8px;
  font-size: 1rem;
  border-radius: 6px;
}

.thm-icon-button__vip {
  border: 1px solid transparent;
  background-color: white;
  padding: 0px 8px 5px 8px;
  border-radius: 0 5px 5px 0;
}
.thm-icon-button__vip img {
  height: 12px;
  width: auto;
  border-radius: 0;
}

/* Hide scrollbar in Chrome, Safari and Opera */
.thm-tag-filter::-webkit-scrollbar {
  display: none;
}

.thm-tag-filter {
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  /* Add some padding to ensure last button is fully visible when scrolled */
}
.thm-tag-filter .btn:last-child {
  margin-right: 4px;
}
.thm-tag-filter {
  /* Ensure buttons don't shrink and maintain consistent sizes */
}
.thm-tag-filter .btn {
  white-space: nowrap;
}
.thm-tag-filter .btn {
  font-weight: bold;
  margin-right: 12px;
  border-radius: 10px;
}

.thm-c a {
  color: var(--thm-post-theme);
  font-weight: bold;
}

.modal-content {
  height: auto !important;
  min-height: 200px !important;
}
.modal-content .modal-cartoon-link-left, .modal-content .modal-cartoon-link-right {
  font-size: 1.6em;
}

.search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background-color: var(--hs-background-color);
}

.search-container:not(.condensed) {
  max-width: 330px;
}
.search-container .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 5px;
}
.search-container .search-text {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.search-container .search-icon-btn {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.search-container .search-icon-left {
  left: 0.75rem;
}
.search-container .search-icon-right {
  right: 0.75rem;
}
.search-container .search-input {
  padding-left: 2rem;
  padding-right: 2rem;
}
.search-container .dropdown-item {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.search-container .dropdown-item.show {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.search-container .advanced-panel.search-panel {
  width: 100%;
  z-index: 1000;
}
.search-container .search-history {
  position: absolute;
  z-index: 1000;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0;
  list-style: none;
  border: 1px solid var(--hs-background-color);
}
.search-container .search-history li {
  padding: 0.5rem;
  cursor: pointer;
}
.search-container .search-history li.text-danger:hover {
  background-color: #f8d7da;
}
.search-container .search-history li {
  /*
  li:hover, li.active {
      background-color: #e9ecef;
  }
  */
}
.search-container li.clear-history {
  color: var(--bs-gray-500);
  font-size: 0.95em;
  border-top: 1px solid var(--hs-border-color);
  margin-top: 4px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.search-container li.clear-history:hover {
  color: var(--primary-red);
  background-color: #2a2a2a;
  cursor: pointer;
}
.search-container li.clear-history .icon-trash {
  font-size: 1em;
}

.thm-menu {
  color: black;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
}
.thm-menu a {
  color: var(--thm-link-1);
}
.thm-menu a:hover {
  color: var(--thm-link-1);
}
.thm-menu .nav-item {
  border-bottom: 1px solid var(--thm-c-border);
}
.thm-menu .nav-item .nav-text {
  cursor: pointer;
  font-size: 14px;
  padding: 15px 0 15px 15px;
}
.thm-menu .nav-item .nav-link {
  cursor: pointer;
  font-size: 14px;
  padding: 15px 0 15px 15px;
}
.thm-menu .nav-item .nav-link::after {
  position: absolute;
  right: 20px;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  transform: rotate(271deg);
}
.thm-menu .nav-item .r-down::after {
  transform: rotate(270deg);
}
.thm-menu .nav-item .r-up::after {
  transform: rotate(0deg);
}
.thm-menu .nav-item i {
  text-align: center;
  width: 30px;
  color: var(--thm-text-1);
  font-size: 20px;
}
.thm-menu .nav-item span {
  vertical-align: text-bottom;
}
.thm-menu .menu-sites {
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  max-height: 0;
}
.thm-menu .menu-sites a {
  margin-bottom: 15px;
  display: block;
  position: relative;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: var(--bs-gray-100);
  border: 1px solid var(--bs-gray-300);
  padding: 6px 10px 9px 10px;
  font-size: 1rem;
  border-radius: 3px;
}
.thm-menu .toggle {
  max-height: 1000px;
}

.alertbar {
  background-color: #9f2629;
  color: #fff;
}
.alertbar span, .alertbar a {
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  color: #fff;
  text-decoration: none;
}
.alertbar .btn-link {
  color: #fff;
  border: 1px solid #fff;
  padding: 0.1rem 0.75rem;
  margin: 0.3em 0.5em 0 0;
  text-decoration: none;
  float: right;
}
.alertbar .btn-link:hover {
  color: #9f2629;
  background-color: #fff;
}
.alertbar__title {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.alertbar__message a {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.alertbar__message a:hover {
  text-decoration: underline;
}

#sortable li {
  touch-action: none;
}
#sortable .bi {
  color: var(--thm-text-1);
}
#sortable .hs-icon-button {
  cursor: grab !important;
}
#sortable a {
  cursor: grab !important;
}
#sortable .drag-handle {
  cursor: grab;
}
#sortable .drag-handle:active {
  cursor: grabbing;
}
#sortable .disabled-item {
  opacity: 0.6;
}
#sortable li.dragging {
  opacity: 0.5;
  border: 2px dashed #ccc;
}

.profile-card {
  position: relative;
  color: var(--thm-link-1);
  border-radius: 10px;
  padding: 10px;
  margin: 10px 10px 0 10px;
  border: 1px solid var(--hs-border-color);
  background-color: var(--hs-background-color);
}
.profile-card__user {
  margin-top: 20px;
}
.profile-card__ac {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}
.profile-card__subscription {
  position: absolute;
  display: flex;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  top: -1px;
  left: 10px;
  padding: 5px 10px;
  border: 1px solid var(--hs-border-color);
  background-color: #FFF;
}
.profile-card__subscription img {
  height: 12px;
  width: auto;
  border-radius: 0;
}

.sticky-widget {
  position: sticky;
  top: 0;
  right: 0;
  z-index: 2;
  height: calc(100vh - 7rem);
  overflow-y: auto;
}

.home-link {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 400;
  line-height: 1.5;
  /* color: #212529; */
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--hs-border-color);
  /* padding: 8px 10px 10px 15px; */
  font-size: 1rem;
  border-radius: var(--thm-border-radius);
  height: 45px;
}
.faq-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.faq-section a:hover {
  color: var(--thm-text-1);
  text-decoration: none;
}

.faq-section .faq-section-header {
  font-weight: 600;
  color: var(--primary-color);
}

.faq-section .accordion-button {
  font-family: var(--font-bolder);
  background-color: var(--thm-bg-1);
}

.faq-section .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--thm-text-1);
  background-color: var(--thm-bg-1);
  -webkit-box-shadow: inset 0 calc(var(--thm-text-1) * -1) 0 var(--thm-text-1);
  box-shadow: inset 0 calc(var(--thm-text-1) * -1) 0 var(--thm-text-1);
}

.faq-section .accordion-item {
  background-color: var(--thm-bg-1);
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

.faq-section .accordion-body p:last-of-type {
  margin-bottom: 0;
}

/*new layout*/
.main-container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  height: calc(100vh - 56px);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.scrollbar-thm::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}
.scrollbar-thm::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
}
.scrollbar-thm::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.scrollbar-thm:hover::-webkit-scrollbar-thumb, .scrollbar-thm:active::-webkit-scrollbar-thumb, .scrollbar-thm:focus::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
}
.scrollbar-thm::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}
.scrollbar-thm {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}
.scrollbar-thm:hover, .scrollbar-thm:active, .scrollbar-thm:focus {
  scrollbar-color: var(--scrollbar-thumb) transparent;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}
.scrollbar-hidden {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-always::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb) !important;
}
.scrollbar-always {
  scrollbar-color: var(--scrollbar-thumb) transparent;
}

.mini-button {
  color: var(--mini-button-icon-color);
}
.mini-button:hover {
  filter: brightness(1.2);
}

/*# sourceMappingURL=style.css.map */
