@charset "UTF-8";
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter-semibold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.inter-bolder {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.grid .card-style-default ~ .card-style-default {
  margin-top: 0;
}

.card-list .card ~ .card {
  margin-top: 15px;
}

.text-blue {
  color: #000197 !important;
}

.text-red {
  color: #d10100 !important;
}

.body-bg {
  background-color: #fff;
}

/* Hamburger menu button — animate three bars into an X on focus/active */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle .bar {
  display: block;
  width: 28px;
  height: 4px;
  background: #ffffff;
  border-radius: 4px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.2s ease;
}
.menu-toggle .bar + .bar {
  margin-top: 6px;
}
.menu-toggle:focus {
  outline: none;
}
.menu-toggle {
  /* Trigger animation on focus, when aria-expanded is true, or when an "open" class is present */
}
.menu-toggle:focus .bar:nth-child(1), .menu-toggle[aria-expanded=true] .bar:nth-child(1), .menu-toggle.open .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle:focus .bar:nth-child(2), .menu-toggle[aria-expanded=true] .bar:nth-child(2), .menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle:focus .bar:nth-child(3), .menu-toggle[aria-expanded=true] .bar:nth-child(3), .menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.header {
  color: #6a6a6a;
}
.header .header-topbar {
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.header .header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-topbar .container .topbar-left {
  display: flex;
  align-items: center;
}
.header .header-topbar a {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  color: #000197;
}
.header .header-topbar a:hover {
  color: #d10100;
}
.header .header-topbar a img {
  margin-right: 5px;
  height: 20px;
}
.header .header-topbar .follow-us {
  display: flex;
  align-items: center;
}
.header .header-topbar .follow-us a {
  margin-left: 10px;
  margin-right: 0;
}
.header .header-topbar .follow-us a img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.header .header-topbar .follow-us a:hover img {
  transform: scale(1.2);
}
.header .header-main {
  padding: 15px 0;
}
.header .header-main .head-logo {
  margin-right: 30px;
}
.header .header-main .head-logo a {
  display: inline-block;
}
.header .header-main .head-logo a img {
  height: 68px;
}
.header .header-main .header-search-form {
  min-width: 250px;
  margin-bottom: 10px;
}
.header .header-main .header-search-form .head-search {
  border-radius: 0;
}
.header .header-main .header-search-form .head-search .btn {
  border-radius: 0;
}
.header .header-main .header-datetime {
  font-size: 14px;
  color: #333333;
}
.header .header-main .logo-text {
  text-transform: uppercase;
  margin-left: 15px;
}
.header .header-main .logo-text .logo-text-vi {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #000197;
  margin-bottom: 5px;
}
.header .header-main .logo-text .logo-text-en {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #000197;
}
.header .head-mobile {
  flex: 1;
}
.header .head-mobile img {
  width: 100px;
  height: auto;
}
@media (max-width: 768px) {
  .header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  .header .header-topbar a {
    margin-right: 10px;
    font-size: 11px;
  }
  .header .header-main {
    border-bottom: none;
  }
  .header .header-main .head-logo a img {
    height: auto;
    width: 100px;
  }
  .header .header-main .logo-text .logo-text-vi {
    font-size: 14px;
  }
  .header .header-main .logo-text .logo-text-en {
    font-size: 11px;
    display: none;
  }
}
@media (min-width: 375px) and (max-width: 425px) {
  .header .header-topbar a {
    margin-right: 5px;
    font-size: 0.85em;
  }
  .header .header-topbar a img {
    height: 18px;
  }
  .header .header-topbar .topbar-left {
    flex: 1;
    justify-content: space-between;
  }
}
@media (max-width: 320px) {
  .header .header-topbar a img {
    display: none;
  }
}

.header-news .header-news-content {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  color: #595959;
}
.header-news .header-news-label {
  flex: 0 0 140px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #e93323;
  line-height: 1.25;
  font-size: 1.15em;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.header-news .header-news-label img {
  margin-right: 5px;
  width: 28px;
}
.header-news .news-marquee {
  overflow: hidden;
  display: flex;
  min-height: 24px;
  flex: 1 1 auto;
  position: relative;
}
.header-news .news-marquee::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 100%;
  background: linear-gradient(270deg, #fff 22.19%, rgba(255, 255, 255, 0.85) 56.56%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
}
.header-news .news-marquee .js-marquee {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.header-news .news-marquee a {
  white-space: nowrap;
  color: #595959;
  font-weight: 500;
  margin-right: 30px;
}
.header-news .news-marquee a:hover {
  color: #d10100;
}
.header-news .news-marquee span {
  color: #d10100;
}
.header-news .header-weather {
  flex: 1 1 auto;
  white-space: nowrap;
}
.header-news .header-divider {
  content: "";
  height: 24px;
  width: 1px;
  background-color: #595959;
  flex: 0 0 1px;
  margin: 0 15px;
}
@media (max-width: 767.9px) {
  .header-news .container {
    padding: 0;
  }
  .header-news .header-news-label {
    flex: 0 0 35px;
  }
}

.feature-posts .top-posts {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.feature-posts .top-posts .card .card-title {
  font-size: 1.5em;
}
.feature-posts .bottom-posts {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.feature-posts .bottom-posts .card:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: -0.75rem;
  height: 100%;
  width: 1px;
  background-color: #e5e5e5;
  content: "";
  display: block;
}
@media (max-width: 768px) {
  .feature-posts .bottom-posts .card:not(:first-child)::before {
    display: none;
  }
  .feature-posts .bottom-posts .card ~ .card {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e5e5e5;
  }
}

.relates-posts {
  margin-top: 15px;
}

.main-footer .btn {
  border: 1px solid #ada9ad;
}
.main-footer .version {
  margin-top: 70px;
}
.main-footer .follow-us {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .main-footer .version,
  .main-footer .follow-us {
    margin-top: 1em;
  }
}

@media (max-width: 768px) {
  .main-content .box-top {
    display: block;
  }
  .main-content .box-top .left-box {
    width: auto;
    padding-right: 0;
  }
  .main-content .box-top .left-box .scroll-list {
    margin: 15px 0;
    padding: 10px;
    max-height: 450px;
    border: 1px solid #ddd;
    overflow-y: auto;
  }
  .main-content .box-top .right-box {
    width: auto;
  }
}

.news-views-more {
  padding: 0;
  background: #fff;
  height: auto;
  border: none;
}
.news-views-more .box-content {
  border: 1px solid #e5e5e5;
  padding: 10px;
}
.news-views-more .box-content .item .number {
  font-size: 20px;
  background-color: rgba(110, 191, 244, 0.22);
  color: #000197;
  font-weight: 500;
}
.news-views-more.news-sidebar .head-block {
  padding: 0 10px;
}
.news-views-more.news-sidebar .box-content {
  border: none;
}

.block-news .head-block .title {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.block-news .head-block .title::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000197;
  margin-right: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
  position: absolute;
  top: 12px;
  left: 0;
}
.block-news .head-block .title::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 2px;
  background-color: #000197;
  margin-left: 15px;
  flex: 1 1 auto;
  position: static;
}
.block-news .head-block .title a {
  color: #000197;
}
.block-news .head-center .head-block {
  justify-content: center;
}
.block-news .head-center .head-block .title {
  justify-content: center;
}
.block-news .head-center .head-block .title::before {
  content: "";
  display: block;
  flex-grow: 1;
  height: 2px;
  background-color: #000197;
  flex: 1 1 auto;
  position: static;
  border-radius: 0;
}
.block-news .head-center .head-block .title::after {
  width: auto;
  border-radius: 0;
}
.block-news .head-center .head-block a {
  display: flex;
  align-items: center;
}
.block-news .head-center .head-block a img {
  height: 34px;
}

.block-bg-gray {
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(204, 204, 204) 46%, rgb(245, 245, 245) 100%);
}
@media (max-width: 768px) {
  .block-bg-gray {
    padding: 15px 10px;
  }
  .block-bg-gray .card .card-desc {
    display: none;
  }
}

.block-bg-image-1 {
  background-image: url(../img/bg/bg_livestream.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
}

.block-bg-image-2 {
  background-image: url(../img/bg/bg_photo.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
}

.block-border-radius-16 {
  border-radius: 16px;
}

.block-photos .card {
  padding: 10px;
  border: 1px solid rgba(8, 102, 254, 0.72);
  backdrop-filter: blur(10px); /* Blurs the content *behind* this div */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  height: 100%;
}
.block-photos .card .card-title {
  font-size: 1.15em;
}
.block-photos .card .card-title a {
  color: #000197;
}
.block-photos .card .card-desc a {
  color: #000197;
}
@media (max-width: 768px) {
  .block-photos .card {
    height: auto;
  }
  .block-photos .card .card-desc {
    display: none;
  }
}

.block-travel .text-style {
  font-size: 84px;
  font-weight: 400;
  color: #fff;
  font-family: "Carattere", cursive;
  line-height: 1;
  word-spacing: 0.15em;
  margin-top: 80px;
  margin-left: 15px;
  display: none;
}
.block-travel .text-style .text-line {
  margin-bottom: 10px;
}
@media (min-width: 991px) {
  .block-travel {
    background-image: url(../img/bg/bg_travel.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px;
  }
  .block-travel .primary-item {
    padding: 10px;
    border: 1px solid rgba(8, 102, 254, 0.72);
    backdrop-filter: blur(10px); /* Blurs the content *behind* this div */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
  }
  .block-travel .primary-item .card .card-title a {
    color: #fff;
  }
  .block-travel .primary-item .card .card-desc a {
    color: #fff;
  }
  .block-travel .text-style {
    display: block;
  }
  .block-travel .card-style-horizontal ~ .card-style-horizontal {
    margin-top: 0;
  }
}

.block-photo .card {
  padding: 10px;
  border: 1px solid rgba(8, 102, 254, 0.72);
  backdrop-filter: blur(10px); /* Blurs the content *behind* this div */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}
.block-photo .card .card .card-title a {
  color: #fff;
}
.block-photo .card .card .card-desc a {
  color: #fff;
}

.live-video-box {
  border-radius: 16px;
  background-image: url(../img/bg/video_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 10px 0;
}
.live-video-box .live-badge {
  border-radius: 3px;
  padding: 0 10px 0 5px;
  background-color: #fff;
  color: #ff0000;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.live-video-box .live-badge::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #ff0000;
  border-radius: 50%;
  margin-right: 5px;
  animation: live-pulse 1.5s infinite;
}
.live-video-box .live-name,
.live-video-box .live-timecode {
  font-size: 14px;
  color: #fff;
}
.live-video-box .live-name {
  margin-top: 5px;
}
.live-video-box .info-live {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}
.live-video-box .info-live a,
.live-video-box .info-live a:hover {
  color: #fff;
}
.live-video-box .info-live .info-live-item {
  border: 1px solid #fff;
  padding: 10px;
  height: 100%;
}
.live-video-box .info-live .info-live-item.item-schedule {
  text-align: center;
  background-color: #0064c2;
}
.live-video-box .head-live .nav-link {
  font-size: 24px;
  color: #000197;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.live-video-box .head-live .nav-link.active {
  color: #ff0000;
}
.live-video-box .head-live .nav-link img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.live-video-box .video-list {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 455px;
}
.live-video-box .video-list .card {
  background: none;
}
.live-video-box .video-list .card .card-title {
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.25;
}
.live-video-box .video-list .card .card-title a {
  color: #000197;
}
@media (max-width: 767.99px) {
  .live-video-box {
    margin-top: 1em;
    background: #cee5f3;
  }
  .live-video-box .head-live .nav-link {
    font-size: 0.95em;
  }
  .live-video-box .info-live {
    font-size: 0.9em;
    color: #000197;
    gap: 5px;
    font-weight: 500;
    margin: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  .live-video-box .info-live .live-name {
    font-size: 0.95em;
    color: #000197;
  }
  .live-video-box .info-live .item-upcoming {
    display: none;
  }
  .live-video-box .video-list {
    max-height: 300px;
  }
  .live-video-box .video-list .card .card-title {
    font-size: 0.95em;
  }
}
.box-television .tv-box {
  position: relative;
}
.box-television .tv-box .tv-live-box {
  position: relative;
  min-height: 480px;
}
.box-television .tv-box .tv-live-box .tv-playpause-control {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.box-television .tv-box .tv-live-box .tv-playpause-control .tv-control-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}
.box-television .tv-box .tv-live-box .tv-playpause-control .tv-control-btn svg {
  width: 80px;
  height: 80px;
}
.box-television .tv-box .tv-live-box .tv-playpause-control .btn-play {
  display: block;
}
.box-television .tv-box .tv-live-box .tv-playpause-control .btn-pause {
  display: none;
}
.box-television .tv-box .tv-live-box .tv-playpause-control.is-playing .btn-play {
  display: none;
}
.box-television .tv-box .tv-live-box .tv-playpause-control.is-playing .btn-pause {
  display: block;
}
.box-television .tv-box .tv-live-box:hover .tv-playpause-control {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .box-television .tv-box .tv-live-box {
    min-height: 0;
  }
  .box-television .tv-box .tv-live-box .tv-playpause-control {
    display: none;
  }
}
.box-television .tv-box .tv-info-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 10% 50px 10%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 100%);
  z-index: 3;
}
.box-television .tv-box .tv-info-box .box-button {
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 1em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid transparent;
  height: 42px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.box-television .tv-box .tv-info-box .box-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.box-television .tv-box .tv-info-box .channel-text {
  margin-left: 5px;
}
.box-television .tv-box .tv-info-box .tv-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.box-television .tv-box .tv-info-box .tv-head .nav-right {
  display: flex;
}
.box-television .tv-box .tv-info-box .channel-list {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.box-television .tv-box .tv-info-box .channel-list .channel-item .channel-link img {
  width: 30px;
  height: 30px;
}
.box-television .tv-box .tv-info-box .channel-list .channel-item .channel-link:hover, .box-television .tv-box .tv-info-box .channel-list .channel-item .channel-link.active {
  border: 1px solid #ed2c25;
  background: linear-gradient(92deg, #ed2c25 1.37%, #b40001 99.79%);
  backdrop-filter: unset;
}
.box-television .tv-box .tv-info-box .channel-list .channel-item ~ .channel-item {
  margin-left: 10px;
}
.box-television .tv-box .tv-info-box .dateplay-box img {
  width: 32px;
  height: 32px;
  margin-right: 5px;
}
.box-television .tv-box .tv-info-box .dateplay-box .invisible {
  width: 0;
  height: 100%;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.box-television .tv-box .tv-info-box .dateplay-box .switch-channel {
  background: none;
  border: none;
  color: #fff;
  font-size: 1em;
  padding: 0;
}
.box-television .tv-box .tv-info-box .dateplay-box:hover {
  opacity: 1;
}
.box-television .tv-box .tv-info-box .fullscreen-box,
.box-television .tv-box .tv-info-box .minimize-box,
.box-television .tv-box .tv-info-box .volume-box {
  margin-left: 10px;
}
.box-television .tv-box .tv-info-box .fullscreen-box:hover,
.box-television .tv-box .tv-info-box .minimize-box:hover,
.box-television .tv-box .tv-info-box .volume-box:hover {
  opacity: 1;
}
.box-television .tv-box .tv-info-box .volume-box img {
  width: 20px;
  height: 20px;
}
.box-television .tv-box .tv-info-box .volume-box .volume-on {
  display: block;
}
.box-television .tv-box .tv-info-box .volume-box .volume-off {
  display: none;
}
.box-television .tv-box .tv-info-box .volume-box.is-muted .volume-on {
  display: none;
}
.box-television .tv-box .tv-info-box .volume-box.is-muted .volume-off {
  display: block;
}
.box-television .tv-box .tv-info-box .minimize-box img {
  width: 20px;
  height: 20px;
}
.box-television .tv-box .tv-info-box .minimize-box .minimize-on {
  display: block;
}
.box-television .tv-box .tv-info-box .minimize-box .minimize-off {
  display: none;
}
.box-television .tv-box .tv-info-box.is-minimized .schedule-box {
  display: none;
}
.box-television .tv-box .tv-info-box.is-minimized .minimize-on {
  display: none;
}
.box-television .tv-box .tv-info-box.is-minimized .minimize-off {
  display: block;
}
.box-television .tv-box .tv-info-box .schedule-box {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 12px 0px rgba(16, 11, 40, 0.08);
  backdrop-filter: blur(12px);
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list {
  display: flex;
  align-items: center;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-prev,
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-next {
  width: 32px;
  height: 32px;
  margin: 0 16px;
  flex: 0 0 32px;
  cursor: pointer;
  border-radius: 1000px;
  border: 2px solid rgba(16, 16, 16, 0.24);
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-prev img,
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-next img {
  width: 32px;
  height: 32px;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-prev:hover,
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-next:hover {
  background-color: rgba(218, 0, 0, 0.3);
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-prev:focus,
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-next:focus {
  border-color: #da0000;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .time_line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: 2px solid rgba(173, 173, 173, 0.4);
  width: 100%;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .time_code {
  font-size: 1.25em;
  font-weight: 600;
  opacity: 0.6;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .replay {
  cursor: pointer;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .replay img {
  width: 24px;
  height: 24px;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .replay_text {
  display: none;
  color: #da0000;
  font-size: 0.8em;
  border-radius: 4px;
  padding: 4px 8px;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .text_live {
  color: #fff;
  font-size: 0.8em;
  border-radius: 4px;
  background: #da0000;
  padding: 4px 8px;
  cursor: pointer;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .program {
  font-size: 0.95em;
  line-height: 1.2;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .program_note {
  display: flex;
  align-items: center;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .active .time_line {
  border-color: #da0000;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .active .time_line .replay_text {
  display: block;
}
.box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .item {
  display: flex;
  max-width: 284px;
  padding: 10px 0;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .box-television .tv-box .tv-info-box {
    position: static;
    padding: 0;
  }
  .box-television .tv-box .tv-info-box .box-button {
    padding: 5px 5px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    width: 36px;
    height: 36px;
  }
  .box-television .tv-box .tv-info-box .box-button img {
    width: 24px;
    height: 24px;
    margin: 0;
  }
  .box-television .tv-box .tv-info-box .channel-list .channel-item .channel-link .channel-text {
    display: none;
  }
  .box-television .tv-box .tv-info-box .minimize-box {
    display: none;
  }
  .box-television .tv-box .tv-info-box .dateplay-box .switch-channel i,
  .box-television .tv-box .tv-info-box .dateplay-box .switch-channel span {
    display: none;
  }
  .box-television .tv-box .tv-info-box .tv-head {
    padding: 5px;
    margin: 0;
    background-color: #0e2346;
    overflow: hidden;
  }
  .box-television .tv-box .tv-info-box .tv-head .nav-channel {
    margin: 0;
  }
  .box-television .tv-box .tv-info-box .tv-head .nav-right {
    justify-content: flex-end;
    flex: 1;
  }
  .box-television .tv-box .tv-info-box .schedule-list {
    padding: 10px;
  }
  .box-television .tv-box .tv-info-box .schedule-list .schedule-prev,
  .box-television .tv-box .tv-info-box .schedule-list .schedule-next {
    display: none;
  }
}
@media (min-width: 1660px) {
  .box-television .tv-box {
    max-width: 1440px;
    margin: 0 auto;
  }
  .box-television .tv-box .tv-player-box {
    box-shadow: 0px 4px 12px 0 rgba(23, 12, 43, 0.16);
    border-radius: 15px;
    overflow: hidden;
  }
  .box-television .tv-box .tv-info-box {
    padding-bottom: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.55) 20%, rgba(255, 255, 255, 0.6) 35%, rgba(255, 255, 255, 0) 80%);
  }
}
@media (min-width: 1361px) and (max-width: 1659px) {
  .box-television .tv-box {
    max-width: 1280px;
    margin: 15px auto;
  }
  .box-television .tv-box .tv-player-box {
    box-shadow: 0px 4px 12px 0 rgba(23, 12, 43, 0.16);
    border-radius: 15px;
    overflow: hidden;
  }
  .box-television .tv-box .tv-info-box {
    padding-bottom: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.55) 20%, rgba(255, 255, 255, 0.6) 35%, rgba(255, 255, 255, 0) 80%);
  }
}
@media (min-width: 992px) and (max-width: 1360px) {
  .box-television .tv-box .tv-live-box {
    min-height: 480px;
  }
  .box-television .tv-box .tv-info-box {
    padding: 15px;
  }
  .box-television .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .time_code {
    font-size: 1.05em;
  }
  .box-television .tv-box .tv-info-box .box-button,
  .box-television .tv-box .tv-info-box .dateplay-box .switch-channel {
    font-size: 0.9em;
  }
}

.box-schedule .tv-box .tv-info-box {
  position: static;
}
.box-schedule .tv-box .tv-info-box .box-button:not(.active) {
  color: #888;
  background-color: #ccc;
}
.box-schedule .tv-box .tv-info-box .dateplay-box .switch-channel {
  color: #888;
}
.box-schedule .tv-box .tv-info-box .schedule-wrapper {
  flex: 1;
}
.box-schedule .tv-box .tv-info-box .channel-list .channel-item .channel-link .channel-text {
  display: block !important;
  font-size: 0.85em;
}
.box-schedule .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .text_live {
  padding: 0;
  display: block;
}
.box-schedule .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .item {
  padding: 10px;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  color: #595959;
  border-color: #ddd;
}
.box-schedule .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .item .time_line {
  flex: 0 0 120px;
  padding: 0;
  margin: 0;
  border: 0;
  flex-wrap: wrap;
  color: #595959;
}
.box-schedule .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .item .program_title {
  color: #000197;
}
.box-schedule .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .item .program_desc {
  color: #595959;
}
@media (max-width: 768px) {
  .box-schedule .tv-box .tv-info-box .schedule-box .schedule-list .schedule-item .item .time_line {
    flex: 0 0 80px;
  }
}

.block-video-shorts .card {
  position: relative;
  border-radius: 5px !important;
  overflow: hidden;
}
.block-video-shorts .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 22%, rgb(0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
}
.block-video-shorts .card .card-body .card-title {
  font-size: 14px;
}
.block-video-shorts .card .card-body .card-title a {
  color: #fff;
}
@media (max-width: 768px) {
  .block-video-shorts .video-shorts-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
  }
}

/*.main-livestream */
.television {
  overflow: hidden;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
.television .video-js {
  width: 100%;
  min-height: 460px;
}
.television .livestream-wrapper {
  background-color: #000;
  padding: 0;
  margin-top: 15px;
}
.television .livestream-wrapper > .row {
  margin: 0;
}
.television .livestream-wrapper > .row > .row > [class*=col-] {
  padding: 0;
}
.television .nav-tabs {
  border: none;
  background-color: #ddd;
}
.television .nav-tabs > li > a {
  border: 0;
  background: none;
  border-radius: 0;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 10px 10px 40px;
  display: block;
}
.television .nav-tabs > li > a:before {
  position: absolute;
  top: 7px;
  left: 10px;
  width: auto;
  height: 100%;
  display: block;
  font-family: FontAwesome;
  content: "\f26c";
  font-size: 20px;
}
.television > li.active > a, .television > li.active > a:focus, .television > li.active > a:hover {
  color: #bc0000;
  background-color: inherit;
  border: none;
}
.television .tab_schedule {
  display: none;
}
.television .tab_schedule .nav-tabs > li {
  float: none;
}
.television .tab_schedule .active {
  display: block;
}
.television .tab_schedule > li > a {
  border: none;
  margin: 0;
}
.television .tab_comment {
  background-color: #ebebeb;
}
.television .tab_comment .nav-tabs > li {
  display: inline-block;
}
.television .tab_comment .nav-tabs > a {
  padding-left: 10px;
  color: #666;
}
.television .tab_comment .nav-tabs.active > a {
  color: #bc0000;
}
.television .tab_comment .nav-tabs > a:before {
  display: none;
}
.television .tab_comment .tab-content {
  border-radius: 0;
  height: 100%;
  box-shadow: none;
}
.television .tab_comment .captcha_img,
.television .tab_comment .captcha_code {
  float: none;
  width: 100%;
}
.television .tab-content {
  border: none;
}
.television .live a {
  position: relative;
}
.television .live aa:after {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #f26921;
}

.schedule-heading {
  padding: 0;
  background-color: #ececec;
  color: #000;
  line-height: 34px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  text-align: center;
}

.schedule-heading .item {
  flex: 1 1 auto !important;
  cursor: pointer;
}

.schedule-heading .item.active {
  color: #bc0000;
}

.schedule-item {
  overflow: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 382px;
  color: #000;
  font-size: 14px;
}

.schedule-item a:before {
  display: none;
}

.schedule-item .item {
  /* padding: 10px 0; */
  transition: background-color 0.2s ease;
  cursor: pointer;
  border-bottom: 1px solid #222;
  position: relative;
  color: #fff;
  line-height: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.schedule-item .item:hover {
  background-color: rgba(155, 155, 155, 0.2);
}

.schedule-item .item:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.schedule-item .item .time_code {
  padding: 0 0 0 15px;
}

.schedule-item .item .time_line {
  padding: 0 0 0 15px;
  font-weight: 400;
  font-size: 0.84rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.schedule-item .item .program {
  padding: 0 15px 0 15px;
  font-size: 0.84rem;
  padding: 10px;
}

.schedule-item .item.canplay .program,
.schedule-item .item.live .program {
  padding-right: 80px;
}

.schedule-item .item .program_title {
  display: block;
  color: #fff;
}

.schedule-item .item .program_icon {
  display: inline-block;
  text-align: center;
  line-height: 16px;
  color: #fff;
  transition: opacity 0.2s ease;
  width: 16px;
  height: 16px;
  margin: 0 0 0 2px;
}

.schedule-item .item .program_icon img {
  height: 16px;
  vertical-align: top;
}

.schedule-item .item .replay {
  width: auto;
  padding: 0 10px 0 0;
  text-align: right;
  cursor: pointer;
}

.schedule-item .item .program_playing,
.schedule-item .item .program_note {
  border: solid 1px #fff;
  display: inline-block;
  margin-left: 5px;
  border-radius: 3px;
  /* background: #40a629; */
  color: #fff;
  font-size: 0.7rem;
  padding: 0 5px;
  vertical-align: top;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
}

.schedule-item .item .program_note i {
  margin-right: 3px;
}

.schedule-item .item:not(.live) .program_playing {
  display: none;
  background-color: #ff9800;
}

.schedule-item .item.live .program_playing {
  background-color: #bc0000;
}

.schedule-item .item.live .program_playing:before {
  display: inline-block;
  font-family: FontAwesome;
  content: "\f111";
  font-size: 0.5rem;
  vertical-align: top;
  padding-right: 3px;
}

.schedule-item .item.live .replay .program_note {
  background-color: #e21313;
}

.schedule-item .item.active .replay .program_playing {
  display: block;
}

.schedule-item .item.live .replay i {
  margin-right: 3px;
}

.schedule-item .item .program_desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #ccc;
}

.schedule-item .item:hover .program_desc {
  color: #ddd;
}

.schedule-item .item.active {
  background-color: rgba(155, 155, 155, 0.2);
  color: #fff;
  border-top: none;
}

.schedule-item .item.active .time_line,
.schedule-item .item.active .program_name,
.schedule-item .item.active .program_desc {
  color: #fff;
  border-top: none;
}

.schedule-item .item.live .time_line,
.schedule-item .item.live .program_title {
  /* color: #ff2a2a; */
}

.schedule-item .item .time_line {
  padding: 0 0 0 15px;
  padding: 10px;
}

.schedule-item .item.active .time_line,
.schedule-item .item.live .time_line {
  color: #fff;
  /* background-color: #e21313; */
}

.schedule-item .mCSB_inside > .mCSB_container {
  margin-right: 0;
}

.schedule-item .mCSB_scrollTools {
  width: 7px;
}

@media (max-width: 768px) {
  .primary-menu {
    border: none;
  }
}
.category-menu .category-menu-nav {
  background-color: #ccc;
  border-radius: 5px;
  display: none;
  padding: 5px;
}
.category-menu .category-menu-title {
  font-weight: 600;
}
.category-menu .category-menu-button {
  width: 28px;
  height: 28px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.category-menu .category-menu-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #555;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.category-menu .category-menu-button span:nth-child(1) {
  top: 4px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.category-menu .category-menu-button span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.category-menu .category-menu-button span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.category-menu.open .icon-bars span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 3px;
  left: 3px;
}
.category-menu.open .icon-bars span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.category-menu.open .icon-bars span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 19px;
  left: 3px;
}
.category-menu .offcanvas {
  border: none;
}
.category-menu .offcanvas-header .offcanvas-title {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  flex: 1;
  color: #000197;
}
.category-menu .offcanvas-header .offcanvas-title::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000197;
  margin-right: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.category-menu .offcanvas-header .offcanvas-title::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 2px;
  background-color: #000197;
  margin-left: 15px;
  flex: 1 1 auto;
  position: static;
}
.category-menu .offcanvas-body {
  padding: 0;
}
.category-menu .offcanvas-body .list-group {
  border: none;
}
.category-menu .offcanvas-body .list-group .list-group-item {
  border: none;
}
.category-menu .offcanvas-body .list-group .list-group-item a {
  color: #555;
  font-weight: 600;
}
.category-menu .offcanvas-body .list-group .list-group-item a:hover {
  color: #000197;
}
.category-menu .offcanvas-body .list-group .list-group-item.active {
  background-color: #cee5f3;
}
.category-menu .offcanvas-body .list-group .list-group-item.active a {
  color: #000197;
}
@media (min-width: 768px) {
  .category-menu .offcanvas {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .category-menu .offcanvas .btn-close {
    display: none;
  }
}
@media (max-width: 767.99px) {
  .category-menu .category-menu-nav {
    display: flex;
    align-items: center;
  }
}