:root {
    --main-green: #00a834;
    --color-red: #f00;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url(../css/fonts/Inter/Inter-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: 'Inter-Light';
    src: url(../css/fonts/Inter/Inter-Light.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url(../css/fonts/Inter/Inter-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSans-Bold';
    src: url(../css/fonts/Noto_Sans/NotoSans-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: 'NotoSans-Regular';
    src: url(../css/fonts/Noto_Sans/NotoSans-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'UTMAvo-Regular';
    src: url(../css/fonts/UTMAvo/utm-avo.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'UTMAvo-Bold';
    src: url(../css/fonts/UTMAvo/utm-avobold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: 'Gulim';
    src: url(../css/fonts/Gulim/gulim.ttc);
    font-weight: 400;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::after,
*::before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: 'NotoSans-Regular', Arial, sans-serif;
    font-size: 14px;
    color: #252525;
    line-height: 1.3;
    min-width: 1190px;
    background-color: #f9fafb;
}

.lt {display: block;float: left;}
.rt {display: block;float: right;}
.clearfix:after {content: "";display: block;height: 0;width: 100%;clear: both;}
.siteCenter {
    width: 1180px;
    margin: 0 auto;
}

.fw {
    width: 100%;
}

a {
    text-decoration: none;
    border: none;
    color: inherit;
}

a:hover {
    color: var(--main-green);
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

input,
button {
    border: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}

strong {
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
}

.d-flex {
    display: flex;
    align-items: center;
}

.f-between {
    justify-content: space-between;
}

.f-start {
    align-items: flex-start;
}

.r-diection {
    flex-direction: column;
}

.row-40 {
    row-gap: 40px;
    flex-direction: column;
}

.row-30 {
    row-gap: 30px;
    flex-direction: column;
}

.col-40 {
    column-gap: 40px;
}

/* gotop */
.gotop {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: var(--main-green);
    border-radius: 50%;
    font-size: 20px;
    display: none;
    position: fixed;
    bottom: 50px;
    right: 12px;
    cursor: pointer;
    z-index: 999;
    text-align: center;
    color: #fff;
    transition: .3s ease all;
    opacity: 1;
}

.gotop:hover {
    opacity: 0.7;
}

/*pop-up qr code mobile app*/
.qr-popup {
    display: none;
}

.qr-code {
    position: fixed;
    width: 185px;
    bottom: 30px;
    left: 10px;
    z-index: 2;

}

.qr-code-title {
    text-transform: uppercase;
    font-family: 'Roboto condensed';
    background-color: #23c87c;
    padding: 5px;
    color: #fff;
}
.qr-code-title > span:not(.button-minimize) {
    font-size: 13px;
    padding-top: 5px;
    float: left;
}
.minimize-icon {
    float: right;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.icon-tn-app {
    width: 40px;
    height: 40px;
    position: fixed;
    left: 10px;
    bottom: 30px;
    z-index: 3;
    display: none;
    border-radius: 10px;
    overflow: hidden;
}

.icon-tn-app img {
    width: 100%;
    height: 100%;
}

/*videojs wrapper*/
.video-wrapper {
    width: 100%;
    position: relative;
}

.video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

/* header */
.header-top {
    padding: 5px 0;
}

.h-split {
    padding: 0 6px;
}

.tn-date {
    background: url(../images/pc/tn-date.png) 0 center no-repeat;
    padding-left: 22px;
}

.tn-hotline {
    background: url(../images/pc/tn-hotline.png) 0 center no-repeat;
    padding-left: 22px;
}

.tn-mail {
    background: url(../images/pc/tn-mail.png) 0 center no-repeat;
    padding-left: 23px;
}

.language .h-split {
    padding: 0 3px;
}

.lang-dyamic {
    color: #00a934;
    font-size: 11px;
}

.lang-taiyuan,
.lang-korean {
    font-family: 'Gulim', sans-serif;
    font-weight: 400;
    font-size: 11px;
}

#frmSearch {
    width: 181px;
    height: 34px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#frmSearch input[type="text"] {
    width: calc(100% - 32px);
    height: 100%;
    border: none;
    padding-left: 10px;
}

#frmSearch input[type="text"]::-webkit-input-placeholder {
    color: #a9a9a9;
}

#frmSearch input[type="text"]:-ms-input-placeholder {
    color: #a9a9a9;
}

#frmSearch input[type="text"]::-ms-input-placeholder {
    color: #a9a9a9;
}

#frmSearch input[type="text"]::placeholder {
    color: #a9a9a9;
}

#frmSearch button {
    width: 32px;
    height: 100%;
    border: none;
    background: url("../images/pc/ico-search.png") center center no-repeat;
}

.account {
    background: url(../images/pc/logo-account.png) 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 10px;
    display: block;
}

.logo {
    margin: 10px 0;
    column-gap: 40px;
}

.logo a {
    flex-shrink: 0;
    flex-grow: 0;
}

.info-vn {
    text-transform: uppercase;
    font-family: 'UTMAvo-Bold', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding-top: 5px;
}

.info-en {
    text-transform: uppercase;
    font-family: 'UTMAvo-Regular', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-top: 8px;
}

#nav {
    background-color: var(--main-green);
}

#nav.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 1px 10px #ebebeb;
}
.header-menu {
    flex-direction: row;
    flex-wrap: wrap;
}
.nav-menu {
    background: url(../images/pc/nav-menu.png) right center no-repeat;
    width: 44px;
    height: 45px;
    display: block;
    cursor: pointer;
}

.item-menu {
    position: relative;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-timing-function: cubic-bezier(.7, 1, .7, 1);
    transition-timing-function: cubic-bezier(.7, 1, .7, 1);
}

.link-menu {
    line-height: 45px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'UTMAvo-Bold', sans-serif;
    font-weight: 700;
    padding: 0 8px;
    font-size: 12px;
}
.link-menu[title="Nghị quyết 57"] {
    color: #b40000;
    border: 1px solid #ffff00;
    padding-block: 4px;
}
.ico-homepage {
    padding-left: 0;
}

.sub-menu {
    display: none;
}
.item-menu.active .link-menu,
.item-menu:hover .link-menu {
    color: #031cdc;
}

.item-menu .sub-menu {
    background: #fff;
    border-top: 1px solid #add2e1;
    -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
    box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
    display: none;
    left: 0;
    min-width: 248px;
    position: absolute;
    top: 100%;
    z-index: 2;
}

.item-menu:hover .sub-menu {
    -webkit-animation: goToTop .2s ease-in;
    animation: goToTop .2s ease-in;
    display: block;
    opacity: 1;
}

.sub-item a {
    padding: 8px 10px;
    display: block;
    transition: .5s ease;
}

.sub-item:hover a {
    padding-left: 30px;
    position: relative;
    transition: .5s ease;
}

.sub-item:hover a::before {
    content: '';
    width: 15px;
    height: 2px;
    background-color: var(--main-green);
    position: absolute;
    left: 10px;
    top: 20px;
}

.header-news {
    width: 820px;
    white-space: nowrap;
}

.news-heading {
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--color-red);
    text-transform: uppercase;
    background: url(../images/pc/ico-flash.png) 0 center no-repeat;
    padding: 10px 12px 10px 22px;
}

.newsSwiper {
    padding-right: 45px;
    overflow: hidden;
    position: relative;
}

.newsSwiper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 52px;
    background-color: #f9fafb;
    z-index: 1;
}

/* .newsSwiper .article-title {display: flex;} */
/* .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '';
} */

.newsSwiper .article-link {
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-prev {
    right: 22px;
}

.news-next {
    right: 0;
}

.news-arrow {
    position: absolute;
    border: 1px solid #d5d5d5;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    color: #333;
    background-color: #fff;
    top: 0;
    z-index: 2;
    text-align: center;
    cursor: pointer;
}

.news-next.swiper-button-disabled,
.news-prev.swiper-button-disabled {
    opacity: 1;
    border: 1px solid #f1f2f3;
    background-color: transparent;
}

.newsSwiper .article-title {
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
    font-size: 12px;
}

.header-extension {
    column-gap: 8px;
    line-height: 52px;
}

/* header-weadther */
.header-weadther {
    font-size: 13px;
    color: #333;
    padding-left: 8px;
    line-height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: flex-end;
}

.header-weadther+.h-split {
    padding: 0 0 5px;
}

.weather-info {
    font-size: 14px;
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
}

.temp-info {
    color: #000;
    font-size: 14px;
    font-family: 'NotoSans-Regular', sans-serif;
}

.hd-caret-down {
    color: #000;
    font-size: 20px;
    cursor: pointer;
}

.weather-icon {
    height: 44px;
}

.weather-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 44px;
    background: #eee;
    padding: 0 15px;
    white-space: nowrap;
    width: 230px;
    z-index: 2;
}

.weather-list.show {
    display: block;
}

.weather-item-sub {
    border-top: 1px solid #eaeaea;
    cursor: pointer;
}

.hd-weather-item:not(:first-child),
.weather-item-sub.active-weather {
    display: none;
}

/* tn-social */
.tn-social {
    display: flex;
    column-gap: 6px;
}

.tn-social a {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #c9c9c9;
    color: #fff;
    line-height: 27px;
    text-align: center;
}
.tn-social a.ico-zalo-social {
    background-image: url(../images/pc/ico-zalo.png);
    background-position: center center;
    background-size: 10px;
    background-repeat: no-repeat;
}
.login-name {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.login-name span {
    display: inline-block;
    background: url(../images/pc/ico-log.png) 0 0 no-repeat;
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding-left: 30px;
    text-transform: uppercase;
    line-height: 28px;
}

.bx-log-notification {
    display: block;
    text-align: center;
    color: var(--main-green);
    background-color: #fef3d0;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f4efd1;
}

.bx-log-notification a {
    color: #f41113;
    text-decoration: underline;
}
.bx-log-notification p {
    display: inline-block;
}

/* main */
.article,
.article-clip {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.article-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.article-image::before {
    padding-top: 66.67%;
    content: '';
    display: block;
}

.article-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.article-title {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
}

.article-cat {
    font-size: 12px;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    color: #c00;
    text-transform: uppercase;
}

.article-meta {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
}

.article-date .format_time,
.article-times {
    color: #f41112;
}

.article-date .format_time:empty,
.article-times:empty,
.article-date:empty {
    display: none;
}

.article-detail-meta .format_time,
.article-date {
    color: #888;
}

.article-cat+.article-date::before,
.article-times+.article-date::before {
    content: '|';
    padding-right: 4px;
}

.article-date+.article-times::before {
    content: '-';
    padding-right: 5px;
    color: #939393;
}

.banner-item,
.banner {
    text-align: center;
}

.article-desc {
    color: #333;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.img-video .article-image::before {
    padding-top: 56.25%;
}

/* bx-tab */
.ico-player {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: url(../images/pc/ico-player.png) 0 0 no-repeat;
    width: 21px;
    height: 29px;
    z-index: 1;
}

.bx-tab {
    width: 300px;
    flex-grow: 0;
    flex-shrink: 0;
}

.tab-name {
    column-gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}

.tab-name span {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    line-height: 33px;
}

.tab-name span.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-red);
}

.tab-news {
    background-color: var(--color-red);
    padding: 0 17px;
    color: #fff;
    border-radius: 3px;
}

.tab-item {
    display: none;
    opacity: 0;
    transition: .3s ease-in-out all;
}

.tab-item.active {
    display: block;
    opacity: 1;
}

.tabSwiper {
    padding-bottom: 32px;
}

.article-cover .article-title,
.tabSwiper .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.article-cover {
    margin-bottom: 25px;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-red);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.tab-swiper .article {
    width: 136px;
}
.tab-swiper .article {
    width: 136px;
}

.tab-arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: var(--color-red);
    text-align: center;
    z-index: 1;
    cursor: pointer;
    transition: .3s ease;
    opacity: .75;
    top: 30px;
}

.tab-arrow:hover {
    opacity: .9;
}

.tab-arrow.swiper-button-disabled {
    background-color: #eee;
    opacity: .6;
}

.tab-arrow i {
    line-height: 30px;
    font-size: 24px;
}

.tab-prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.tab-next {
    right: 0;
    border-radius: 10px 0 0 10px;
}
/* bx-coverange */

.bx-cover .article:first-child {
    width: 500px;
    /* float: right; */
    grid-row: 1/5;
    /* margin-left: 36px; */
}

.bx-cover .article {
    width: 300px;
}

.bx-cover .article:first-child .article-image {
    width: 100%;
}

.bx-cover .article:first-child .article-title {
    font-size: 30px;
    line-height: 1.4;
}

.bx-cover .article:not(:first-child) {
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
    border-top: 1px solid #ebebeb;
    padding-top: 22px;
}

.bx-cover .article:nth-child(2) {
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
}

.bx-cover .article:not(:first-child) .article-meta,
.bx-cover .article:not(:first-child) .article-desc {
    display: none;
}

.bx-cover .article-image {
    width: 116px;
    flex-grow: 0;
    flex-shrink: 0;
}

.cover-main {
    width: 500px;
}

.cover-main .article-title {
    font-size: 30px;
    line-height: 1.4;
}

.cover-list {
    width: 300px;
    display: flex;
    row-gap: 22px;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
}

.cover-list .article {
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
    border-top: 1px solid #ebebeb;
    padding-top: 22px;
}

.cover-list .article:first-child {
    padding-top: 0;
    border-top: 0;
}

.cover-list .article-title {
    flex-grow: 1;
    flex-shrink: 1;
}

.cover-list .article-meta,
.cover-list .article-desc {
    display: none;
}

.cover-list .article-image {
    width: 116px;
    flex-grow: 0;
    flex-shrink: 0;
}
/* bx-personalization */
.per-link {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    font-family: "UTMAvo-Bold", sans-serif;
    display: block;
    margin-bottom: 15px;
    color: var(--main-green);
}
.per-content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.bx-personalization {
    width: 300px;
}
.bx-personalization .article {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
}
.bx-personalization .article:first-child {
    border-top: 0;
    padding-top: 0;
}
.bx-personalization .article-image {
    width: 120px;
    flex-shrink: 0;
    flex-grow: 0;
}

.bx-personalization .article-link {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
/* layout-livetv */
.livetv-container {
    background-color: #041527;
    padding: 27px 48px;
    border-radius: 10px;
    margin: 0 -48px;
}

.livetv-container .tab-name {
    margin-bottom: 27px;
    margin-top: 12px;
}

.bx-livetv {
    width: 840px;
    flex-grow: 0;
    flex-shrink: 0;
}

.livetv-name {
    column-gap: 1px;
    margin-bottom: 27px;
}

.link-livetv {
    font-family: 'UTMAvo-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 45px;
    border-bottom: 1px solid #293038;
}

.livetv-name a:hover,
.livetv-name>span {
    background-color: var(--main-green);
    color: #fff;
}

.livetv-container .tab-link {
    color: #fff;
}

.livetv-thumb::before {
    padding-top: 56.25%;
}
#live_tv {
    position: relative;
    width: 100%;
    display: block;
}

#live_tv::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.video-js {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.tv-schedule-link {
    position: relative;
    padding-left: 35px;
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    margin-top: 30px;
    display: block;
}

.tv-schedule-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/pc/ico-schedule.png) 0 0 no-repeat;
    width: 17px;
    height: 18px;
}

.layout-livetv .tab-item {
    width: 315px;
}

.scroll-livetv {
    height: 518px;
    overflow: hidden;
}

/*Custom scrollbar*/
.mCSB_inside>.mCSB_container {
    margin-right: 15px;
}

.mCSB_scrollTools {
    width: 1px;
    background-color: transparent;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 0px;
    background-color: #ed1c24;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #ed1c24;
    opacity: .7;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #ed1c24;
    opacity: .9;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 15px;
}

.scroll-livetv .article:not(:first-child) {
    padding-top: 22px;
    margin-top: 16px;
    border-top: 1px solid #303b47;
}

.scroll-livetv .article-title {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

/* outside-videos */
.clip-name {
    text-align: center;
    margin-bottom: 40px;
}

.clip-link {
    padding-left: 50px;
    font-family: 'UTMAvo-Bold', sans-serif;
    font-weight: 700;
    font-size: 34px;
    text-transform: uppercase;
    background: url(../images/pc/ico-clip.png) 0 15px no-repeat;
}

.ouside-clips {
    background-color: #f3f3f3;
    padding: 38px 48px 20px;
    border-radius: 10px;
    margin: 0 -48px;
}

.shortClips {
    padding-bottom: 40px;
    position: relative;
}

.shortClips {
    row-gap: 40px;
}

.article-clip {
    cursor: pointer;
    width: 256px;

}

.article-item-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.layout-story .article-image::before,
.article-item-image::before {
    content: "";
    padding-top: 178%;
    display: block;
}

.article-item-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.article-item-image .btn-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    line-height: 76px;
    text-align: center;
    color: #00a834;
    background-color: #fff;
    font-size: 24px;
    border-radius: 50%;
    object-fit: cover;
    transition: .3s ease;
}

.article-clip:hover .btn-play {
    opacity: .7;
}

.shortClips .article-title {
    font-size: 16px;
    line-height: 1.5;
}

.clip-arrow {
    position: absolute;
    width: 30px;
    height: 82px;
    background-color: #fff;
    color: var(--color-red);
    text-align: center;
    z-index: 1;
    cursor: pointer;
    transition: .3s ease;
}

.clip-arrow:hover {
    opacity: .9;
}

.clip-arrow.swiper-button-disabled {
    background-color: #eee;
    opacity: .7;
}

.clip-arrow i {
    line-height: 82px;
    font-size: 24px;
}

.btn-clip-prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.btn-clip-next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

/* bx-cat */
.col-left {
    width: 840px;
}

.col-right {
    width: 300px;
}

.bx-cat-title {
    padding-bottom: 18px;
}

.bx-cat-link {
    font-size: 28px;
    font-family: "UTMAvo-Bold", sans-serif;
    font-weight: 700;
    padding-left: 20px;
    position: relative;
    text-transform: uppercase;
}

.bx-cat-link::before {
    content: '';
    width: 7px;
    height: 20px;
    background-color: #00a651;
    position: absolute;
    left: 0;
    top: 15px;
}

.subcat-menu {
    color: #878787;
    display: flex;
    column-gap: 18px;
}

.subcat-menu>.subcat-link {
    line-height: 40px;
}

.ico-down {
    display: block;
    width: 20px;
    height: 40px;
    background: url(../images/pc/ico-down.png) right center no-repeat;
    cursor: pointer;
}

.more-subcat {
    display: none;
    position: absolute;
    right: 0;
    min-width: 200px;
    top: calc(100% - 1px);
    z-index: 2;
    background-color: #ebebeb;
}

.subcat-expand {
    position: relative;
}

.subcat-expand:hover .more-subcat {
    display: block;
}

.more-subcat .subcat-link {
    display: block;
    text-align: right;
    padding: 5px 10px;
}

/* cat-main */
.bx-cat-content {
    display: flex;
    flex-direction: column;
}

.bx-cat-one .bx-cat-content {
    row-gap: 38px;
}

.grid-cat-one .article:first-child,
.one-main .article {
    flex-direction: row-reverse;
    column-gap: 25px;
}

.grid-cat-one .article:first-child .article-image,
.one-main .article-image {
    width: 550px;
    flex-grow: 0;
    flex-shrink: 0;
}

.grid-cat-one .article:first-child .article-title,
.one-main .article-title {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.grid-cat-one .article:first-child .article-meta,
.one-main .article-meta {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.grid-cat-one .article:first-child .article-meta::before,
.one-main .article-meta::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--main-green);
    position: absolute;
    left: 0;
    bottom: 0;
}

.one-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

.one-list .article {
    width: 260px;
    flex-grow: 0;
    flex-shrink: 0;
}

.grid-cat-one .article:not(:first-child) .article-desc,
.one-list .article-desc {
    display: none;
}

.bx-listing .article-content,
.grid-cat-one .article:not(:first-child) .article-content,
.one-list .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

/* grid-cat-one */
.grid-cat-one {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.grid-cat-one .article:first-child {
    grid-column: 1/4;
    margin-bottom: 8px;
}

/* layout-multimedia */
.layout-multimedia {
    background-color: #396;
    padding: 22px 0 40px;
}

.multi-heading {
    color: #fff;
    line-height: 45px;
    align-items: flex-end;
    padding-bottom: 10px;
}

.multi-title {
    display: flex;
    align-items: flex-end;
    text-transform: uppercase;
    column-gap: 22px;
}

.multi-title a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.multi-link {
    font-family: 'UTMAvo-Bold', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.multi-sub {
    display: flex;
}

.multi-sub a:not(:first-child):before {
    content: '|';
    margin: 0 12px;
    color: #fff;
}

.multi-redict {
    font-size: 14px;
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.link-ytb {
    width: 85px;
    height: 19px;
    background: url(../images/pc/youtube.png) 0 0 no-repeat;
}

.multi-content {
    column-gap: 35px;
}

.multi-content .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.multi-content .article-date .format_time,
.multi-content .article-times {
    color: #fff405;
}

.multi-content .article-title,
.multi-content .article-desc,
.multi-content .article-date {
    color: #fff;
}

.multi-content .article-title:hover a {
    color: #fff;
    opacity: .7;
}

.multi-main {
    width: 570px;
    flex-grow: 0;
    flex-shrink: 0;
}

.multi-main .multi-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/pc/ico-multi-play.png) 0 0 no-repeat;
    width: 66px;
    height: 75px;
    z-index: 1;
}

.multi-main .article-title {
    font-size: 24px;
    line-height: 1.4;
}

.multi-main .swiper-horizontal>.swiper-pagination-bullets,
.multi-main .swiper-pagination-bullets.swiper-pagination-horizontal,
.multi-main .swiper-pagination-custom,
.multi-main .swiper-pagination-fraction {
    bottom: unset;
    right: 12px;
    left: unset;
    width: auto;
    width: 75px;
    text-align: center;
    background-color: #fff;
    border-radius: 20px;
    height: 20px;
}

.multi-main .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.multi-main .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    transition: .3s ease-in-out;
    margin: 0 2px;
}

.multi-main .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 20px;
}

.multi-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 35px;
}

.multi-list .article {
    width: 270px;
    flex-grow: 0;
    flex-shrink: 0;
}

.multi-list .article-title {
    font-size: 16px;
    line-height: 1.5;
}

.multi-list .article-desc {
    display: none;
}

/* bx-cat-two */
.bx-cat-f22 .bx-cat-link {
    font-size: 22px;
}

.bx-cat-f22 .bx-cat-link::before {
    height: 16px;
    top: 10px;
}

.cat-swiper {
    width: 100%;
    overflow: hidden;
}

.cat-swiper .article-desc {
    display: none;
}

.cat-swiper .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.cat-arrow {
    position: absolute;
    width: 62px;
    height: 62px;
    background: url(../images/pc/arrow-circle.png) center center no-repeat;
    z-index: 1;
    cursor: pointer;
    transition: .3s ease;
    border-radius: 50%;
}

.cat-arrow:not(.swiper-button-disabled):hover {
    background-color: #eee;
    opacity: .7;
}

.cat-arrow.swiper-button-disabled {
    opacity: .5;
}

.cat-prev {
    left: 5px;
    transform: rotate(180deg);

}

.cat-next {
    right: 5px;
}

/* bx-cat-three */
.three-main,
.bx-cat-three .bx-cat-content {
    display: flex;
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap;
}

.three-main .article:first-child {
    width: 576px;
}

.bx-cat-three .article {
    width: 274px;
}

.bx-cat-three .article-desc {
    display: none;
}

.bx-cat-three .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.three-main .article:first-child .article-title {
    font-size: 22px;
    line-height: 1.4;
}

.cat-four-swiper {
    position: relative;
    padding-bottom: 30px;
}

.cat-four-swiper .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.cat-four-swiper .article-desc {
    display: none;
}

/* megastory */
.story-container {
    background-color: #fef1f1;
    margin: 0 -48px;
    padding: 30px 48px 15px;
    border-radius: 10px;
}

.story-name {
    padding-bottom: 25px;
}

.story-link {
    padding-left: 22px;
    font-family: 'UTMAvo-Bold', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    min-height: 20px;
    background: url(../images/pc/icon-megastory.png) 0 7px no-repeat;
}

.ico-story {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: url(../images/pc/ico-story.png) 0 0 no-repeat;
    width: 60px;
    height: 49px;
    z-index: 1;
}

/* casting */
.casting-container {
    margin: 0 -48px;
    padding: 30px 48px;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
}
.bx-cat-casting {border: none;padding-bottom: 0;}

.casting-container .bx-cat-name+.bx-subcat-casting::before {
    content: '/';
    font-family: "UTMAvo-Bold", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    position: absolute;
    left: 8px;
    top: -2px;
}

.bx-subcat-casting {
    display: flex;
    column-gap: 25px;
    text-transform: uppercase;
    color: #010101;
    padding-left: 38px;
    position: relative;
    font-size: 16px;
    transition: .3s ease-in-out;
    cursor: pointer;
    line-height: 22px;
}

.bx-subcat-casting span.active {
    color: #c00;
    border-bottom: 1px solid #c00;
    display: block;
}

.casting-container .bx-cat-content {
    margin: 0 -48px;
}

.casting-swiper {
    padding: 0 48px 50px;
}

.casting-container .article {
    width: 197px;
}

.casting-container .article-image {
    width: 84px;
    margin: 0 auto;
}

.casting-container .article-image::before {
    padding-top: 100%;
}

.casting-container .article-title {
    font-size: 16px;
    line-height: 1.625;
    text-align: center;
}

/* social-buttons */
.social-buttons {
    position: fixed;
    right: 10px;
    top: 208px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: .5s all;
}

.social-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 40px;
    color: #fff;
}

.social-buttons a:hover {
    width: 110px;
    max-width: 300px;
    transition: .25s ease all;
}

.social-buttons a:hover span {
    display: block;
    transition: .3s ease all;
}

.btn-facebook {
    background-color: #4861b3;
}

.btn-zalo {
    background-color: #0065f7;
}
.btn-zalo::before{
    content: '';
    background: url(../images/pc/ico-zalo.png) 0 0 no-repeat;
    width: 14px;
    height: 16px;
    display: inline-block;
}
.btn-twitter {
    background-color: #359bf0;
}

.btn-instagram {
    background-color: #df2f6d;
}

.btn-linkedin {
    background-color: #3261b1;
}

.btn-github {
    background-color: #333;
}

.btn-youtube {
    background-color: #fd1312;
}

.btn-tiktok {
    background-color: #000;
}

.social-buttons span {
    display: none;
    padding-left: 10px;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

/* breadcrumb */
.bx-breadcrumb {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-bottom: 32px;
    display: none;
}

.bx-breadcrumb.active {
    display: flex;
}

.bread-name {
    font-family: 'UTMAvo-Regular', sans-serif;
    font-weight: 400;
    font-size: 32px;
    padding-left: 33px;
    background: url(../images/pc/ico-breadcrumb.png) 0 center no-repeat;
    line-height: 1.3;
    display: inline-flex;
    position: relative;
    padding-right: 12px;
    text-transform: uppercase;
}

.bread-name::after {
    content: '';
    width: 130px;
    height: 1px;
    bottom: 7px;
    left: 100%;
    background-color: #ebebeb;
    position: absolute;
}

.bread-subname {
    background-color: #ebebeb;
    padding: 13px 80px 13px 20px;
    display: flex;
    column-gap: 25px;
    flex-wrap: wrap;
    position: relative;
}

.bread-subname h1 {
    font-weight: 400;
    font-family: inherit;
    line-height: inherit;
    font-size: inherit;
}

.subbread-more {
    display: none;
    box-shadow: 0 0px 10px #cdcdcd;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
    background-color: #f0f0f0;
    padding: 10px;
}

.ico-bread-more {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.ico-bread-more::before {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.subbread-expand {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.subbread-more a:not(:first-child) {
    border-top: 1px solid #ebebeb;
    padding-top: 7px;
}

/* category */
.bx-cover-list {
    flex-direction: row-reverse;
}

.bx-cover-list.bx-cover {
    display: grid;
    grid-template-columns: auto 500px;
    grid-column-gap: 40px;
}

.bx-cover-list.bx-cover .article:first-child {
    grid-column: 2/3;
}

/* bx-cat-listing */
.bx-listing {
    flex-direction: column;
}

.bx-listing .bx-cat-content {
    row-gap: 35px;
}

.bx-listing .article {
    flex-direction: row;
    column-gap: 35px;
    border-top: 1px solid #ebebeb;
    padding-top: 35px;
}

.bx-listing .article-image {
    width: 340px;
    flex-grow: 0;
    flex-shrink: 0;
}

.bx-listing .article-title {
    font-size: 24px;
    line-height: 1.4;
}

.__MB_ARTICLE_PAGING {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    align-items: center;
    width: 100%;
    column-gap: 10px;
}

.__MB_ARTICLE_PAGING>a,
.__MB_ARTICLE_PAGING>div,
.__MB_ARTICLE_PAGING span {
    padding: 15px 50px;
    background-color: #00a651;
    border-radius: 48px;
    display: inline-flex;
    font-size: 16px;
    color: #fff;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    cursor: pointer;
}
.__MB_ARTICLE_PAGING span:first-child {
    display: none;
}

.bx-list-one .article {
    border-top: 1px solid #ebebeb;
    margin-top: 20px;
    padding-top: 20px;
}

.bx-list-one .article:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.bx-list-one .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.bx-list-one :where(.article-desc, .article-meta) {
    display: none;
}
/* no-bd */
.no-bd .article:first-child {border-top: 0;padding-top: 0;}
/* loading more */

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 48px auto 0;
}

.loader-ellips__dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-green);
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

/* bx-readest */
.readest-name {
    border-bottom: 1px solid #e1e1e1;
}

.readest-title {
    font-family: 'UTMAvo-Bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
    display: inline-flex;
    position: relative;
    text-transform: uppercase;
}

.readest-title::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    background-color: #f00;
    width: 100%;
    height: 1px;
}

.bx-readest .bx-cat-content {
    row-gap: 25px;
}

.bx-readest .article {
    padding-top: 22px;
    border-top: 1px solid #ebebeb;
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
}

.bx-readest .article:first-child {
    border-top: 0;
}

.bx-readest .article-image {
    width: 127px;
    flex-grow: 0;
    flex-shrink: 0;
}

.bx-readest :where(.article-meta, .article-desc) {
    display: none;
}

/* detail */
.detail-list-cat {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.detail-list-cat::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 7px;
    background-color: #00a651;
    border-radius: 5px;
}

.detail-list-cat a {
    color: #bbb;
    font-size: 14px;
    font-family: 'Inter-Regular', sans-serif;
}

.detail-list-cat a:not(:first-child)::before {
    content: '>';
    padding: 0 4px;
}

.article-detail-subtitle {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}

.article-detail-title {
    font-size: 40px;
    line-height: 1.3;
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.article-detail-meta {
    margin-bottom: 30px;
}

.article-detail-cat {
    font-size: 18px;
    color: #000;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
}

.article-detail-publish {
    font-size: 16px;
    color: #666;
}

.article-detail-cat+.article-detail-publish::before {
    content: '-';
    padding-right: 4px;
}

.article-detail-info {
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.article-author-info {
    display: flex;
    align-items: center;
    justify-self: flex-start;
}

/* .article-author-info {padding-bottom: 10px;border-bottom: 1px solid #ebebeb;} */
.article-author-info .author-image {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 50%;
}

.article-author-info .author-image img {
    min-height: 100%;
    object-fit: cover;
}

.article-author-info .author-title {
    font-size: 14px;
    color: #0074bc;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.article-author-info .author-email {
    font-size: 12px;
    color: #999;
    line-height: 1;
    display: block;
}

.ico-google-news {
    display: block;
    height: 35px;
    line-height: 35px;
    background: url(../images/pc/ico-google-news.png) top 11px right 10px no-repeat;
    color: #989590;
    border-radius: 4px;
    padding: 0 98px 0 10px;
    font-size: 14px;
    background-color: #ebebeb;
}

.article-detail-main {
    display: grid;
    grid-template-columns: 32px auto;
    grid-column-gap: 46px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 22px;
}

.article-detail-button {
    position: sticky;
    position: -webkit-sticky;
    top: 50px;
}

.change-font {
    width: 32px;
    overflow: hidden;
    border: 1px solid #dfe0e3;
    border-radius: 32px;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.font {
    text-align: center;
    float: left;
    padding: 24px 0;
    color: #444;
    width: 32px;
    cursor: pointer;
}

.change-font .ico-arrow {
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 24px;
    border: 1px solid #ebebeb;
    cursor: pointer;
}
.tn-btn-follow,
.article-detail-social > a,
.article-detail-social > div {
    width: 32px;
    height: 32px;
    color: #565656;
    border: 1px solid #ccc;
    border-radius: 32px;
    display: block;
    line-height: 32px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;
}
.tooltip {position: relative;}
.tooltip .tooltiptext {visibility: hidden;width: 140px;background-color: #555;color: #fff;text-align: center;border-radius: 6px;padding: 5px;position: absolute;z-index: 1;bottom: 150%;left: 50%;margin-left: -70px;opacity: 0;transition: opacity 0.3s;font-size: 14px;z-index: 999;}
.tooltip .tooltiptext::after {content: "";position: absolute;top: 100%;left: 50%;margin-left: -5px;border-width: 5px;border-style: solid;border-color: #555 transparent transparent transparent;}
.tooltip:hover .tooltiptext {visibility: visible;opacity: 1;}
.article-detail-subtitle:empty,
.article-detail-source:empty,
.article-detail-author:empty {
    display: none;
}

.article-detail-content {
    font-size: 16px;
    line-height: 1.75;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
}

.article-detail-desc {
    font-size: inherit;
    line-height: inherit;
    font-family: 'Inter-Bold', sans-serif;
    margin-bottom: 25px;
    font-size: 16px;
}

.__MASTERCMS_CONTENT p {
    font-size: inherit;
    line-height: inherit;
    padding: 12px 0;
}

.MASTERCMS_TPL_TABLE tbody tr:nth-child(even) td {
    background-color: transparent;
    color: #333;
    padding: 10px;
    text-align: center;
    font-family: 'Inter-Light', sans-serif;
    font-size: inherit;
    font-weight: 400;
}

/* .__MB_ARTICLE_A */
.__MB_ARTICLE_A {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.__MB_ARTICLE_A td a {
    font-size: 16px;
    line-height: 1.4;
    color: #00a834;
    position: relative;
    width: 100%;
    float: left;
    margin: 10px 0;
    padding-left: 55px;
    font-family: 'Inter-Light', sans-serif;
    font-size: inherit;
    font-weight: 400;
}

.__MB_ARTICLE_A td a:before {
    width: 5px;
    height: 5px;
    border-radius: unset;
    background: #00a651;
    content: '';
    position: absolute;
    top: 9px;
    left: 30px;
}

.MASTERCMS_TPL_TABLE,
.__MASTERCMS_CONTENT table,
.__MASTERCMS_CONTENT_MOBILE table {
    margin-bottom: 10px;
}

.hide,
.hidden {
    display: none;
}

.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
}
.article-detail-author {
    text-align: right;
    color: #010101;
    font-weight: 700;
    font-family: 'Inter-Bold', sans-serif;
}

.article-detail-source {
    font-family: 'Inter-Light', sans-serif;
    font-weight: 400;
    font-style: italic;
    margin-top: 10px;
}
.article-tags {
    display: flex;
    column-gap: 16px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 22px;
}

.article-tags span {
    display: block;
    color: #000;
    font-size: 21px;
    padding-left: 32px;
    height: 40px;
    line-height: 40px;
    background: url(../images/pc/ico-tags.png) 0 center no-repeat;
}

.article-keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.article-keyword a {
    background-color: #ebebeb;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 16px;
}

#user-comment {
    padding: 25px 28px;
    background-color: #eee;
    margin-bottom: 0;
}

#user-comment .title h6,
#user-comment .bx-cat-head span {
    display: block;
    text-indent: -9999px;
    float: none;
    border-bottom: 0;
    line-height: 0;
}

#user-comment .title,
#user-comment .bx-cat-title {
    display: block;
    margin-bottom: 20px;
    float: none;
}

#user-comment .title:after,
#user-comment .bx-cat-head::before {
    content: "Bình luận";
    font-family: "UTMAvo-Bold", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-size: 26px;
}

#user-comment .bx-cat-link {
    padding-left: 0;
}

#user-comment .bx-cat-link::before {
    content: unset;
}

.comments-reply,
.box-comment {
    padding-left: 65px;
}

.box-comment {
    background: url(../images/pc/ico-user.png) 0 10px no-repeat;
}

#user-comment .box-comment textarea {
    border: 0;
    border-radius: 5px;
    padding: 15px;
}

#user-comment button {
    text-transform: uppercase;
    padding: 9px 15px;
    border-radius: 3px;
    background: #00a54f;
    font-family: 'UTMAvo-Bold', sans-serif;
    font-weight: 700;
}

#user-comment .__comment::-webkit-input-placeholder {
    color: #b7b7b7;
}

#user-comment .__comment:-ms-input-placeholder {
    color: #b7b7b7;
}

#user-comment .__comment::-ms-input-placeholder {
    color: #b7b7b7;
}

#user-comment .__comment::placeholder {
    color: #b7b7b7;
}

.btnDislike>span,
.btnLike>span {
    margin-right: 3px;
}

/* bx-item-one */
.bx-item-one .bx-cat-content {
    display: flex;
    gap: 35px;
    flex-direction: row;
    flex-wrap: wrap;
}

.bx-item-one .article {
    width: 256px;
}

.bx-item-cat .article:first-child {
    padding-top: 0;
    border-top: 0;
}

.bx-item-one .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.bx-item-one .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.bx-item-one .article-desc {
    display: none;
}

/* bx-cover-video */
.bx-cover-video .article-title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.bx-cover-video .article-meta {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.bx-cover-video .article-meta::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--main-green);
    position: absolute;
    left: 0;
    bottom: 0;
}

/* .bx-videos-one */
.bx-videos-one .article {
    border-top: 1px solid #ebebeb;
    margin-top: 20px;
    padding-top: 20px;
}

.bx-videos-one .article:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}
.bx-videos-listing .article-image::before,
.bx-videos-one .article-image::before {
    padding-top: 56.67%;
}
.bx-videos-one .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.bx-videos-one .article-desc {
    display: none;
}

/* bx-video-listing */
.bx-videos-listing .bx-cat-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.bx-videos-listing .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.bx-videos-listing .article {
    width: 272px;
}

.bx-videos-listing .article-title {
    font-size: 16px;
    line-height: 1.625;
}

.bx-videos-listing .article-desc {
    display: none;
}

/* bx-detail-video */
.bx-detail-video .article {
    width: 100%;
}

.bx-detail-video .article-title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.bx-detail-video .article-meta {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.bx-detail-video .article-meta::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--main-green);
    position: absolute;
    left: 0;
    bottom: 0;
}

.bt-top {
    padding-top: 18px;
    border-top: 1px solid #ebebeb;
}
.article-frame .videoWrapper-o {
    width: 100%;
    height: 100%;
    position: relative;
}

.article-frame .videoWrapper-o::before {
    content: '';
    padding-top: 56.25%;
    display: block;
}

.article-frame .videoWrapper-o #myElement {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
}
/* banner-slick */
.banner-full .siteCenter {
    overflow: hidden;
}

.bannersx4:not(.slick-slider) {
    margin: 0 -10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bannersx4 .slick-track {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bannersx4 .banner-item {
    display: block;
    height: 82px;
    padding: 0px 10px;
}

.bannersx4 .banner-item img {
    height: 100%;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    background-size: cover;
    background-color: transparent;
    width: 41px;
    height: 73px;
    border: none;
    font-size: 0;
    cursor: pointer;
}

.slick-prev:focus,
.slick-next:focus {
    outline: none;
}

.slick-prev {
    left: 20px;
    background-image: url("../images/icon-prev.png");
}

.slick-next {
    right: 15px;
    background-image: url("../images/icon-next.png");
}
/* widget */
.widget {width: 100%;}
.scroll {overflow-y: scroll;}
.bd-blue {border: 1px solid #c5e0fc;}
.js-widget-slide:not(.slick-slider) {overflow: hidden;}
.js-widget-slide .slick-dots {top: -20px;right: 0;}
/* .js-widget-slide .slick-arrow {cursor: pointer;position: absolute;width: 30px;height: 30px;color: white;-webkit-transition: 0.3s ease;transition: 0.3s ease;background-color: rgba(0, 0, 0, 0.2);z-index: 2;font-size: 0px;border-radius: 3px;top: -50px;-webkit-transform: scale(0.8);transform: scale(0.8);border: none; outline: 0;background-image: unset;} */
.js-widget-slide .slick-arrow {cursor: pointer;position: absolute;width: 15px;height: 25px;color: #ccc;-webkit-transition: 0.3s ease;transition: 0.3s ease;z-index: 2;top: -28px;border: none; outline: 0;background: transparent;font-size: 20px;}
.js-widget-slide .slick-arrow:hover {color: rgba(0, 0, 0, 0.4);}
.js-widget-slide .slick-prev {left: unset !important;right: 12px;}
.js-widget-slide .slick-next {right: 0px;}
.scroll {scrollbar-width: thin;}
.scroll::-webkit-scrollbar {width: 2px;}
.scroll::-webkit-scrollbar-track {background: #f8f8f8c0;}
.scroll::-webkit-scrollbar-thumb {background: #d7d7d7;}
.scroll::-webkit-scrollbar-thumb:hover {background: #797979;}
.tbl-striped-grey {font-size: 12px;width: 100%;border-collapse: collapse;}
.tbl-striped-grey thead tr th {-webkit-box-shadow: inset 0px -1px #cae2fc;box-shadow: inset 0px -1px #cae2fc;}
.tbl-striped-grey thead {position: -webkit-sticky;position: sticky;top: 0;z-index: 1;background-color: #f8f8f8;font-weight: 700;font-family: 'NotoSans-Bold', sans-serif;}
.tbl-striped-grey th,
.tbl-striped-grey td {padding: 8px 10px;}
.tbl-striped-grey tbody tr:nth-child(even) {background-color: #f8f8f8;height: 33px;}
.tbl-striped-grey tbody tr:nth-child(odd) {background-color: #fff;height: 33px;}
.tbl-striped-grey tbody td:first-child {font-weight: 700;font-family: 'NotoSans-Bold', sans-serif;}
.tbl-striped-grey.head-grid thead tr {border-bottom: none;}
.tbl-striped-grey.head-grid thead tr th.no-shadow-left {-webkit-box-shadow: inset 0 -1px #cae2fc;box-shadow: inset 0 -1px #cae2fc;}
.tbl-striped-grey.head-grid thead th {-webkit-box-shadow: inset 1px -1px #cae2fc;box-shadow: inset 1px -1px #cae2fc;}
.js-widget-slide .slick-dots {top: -20px;right: 0;}
.widget-note-small {color: #a1a1a1;font-size: 10px;font-weight: normal;display: block;text-align: right;margin-top: 5px;}
.widget-legal-docs tbody tr td:last-child {font-family: 'NotoSans-Bold', sans-serif;font-weight: 700;color: #0e76bc;}
/* search */
.results-title {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}
.results-title .keyword {
    font-size: 16px;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.results-title .keyword a:hover {
    color: #23357d;
}
.results-title .info-key {
    font-size: 16px;
    color: var(--main-green);
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
    margin-left: 8px;
}
.results-title .result {
    font-size: 12px;
    color: #fff;
    height: 30px;
    padding: 6px 15px;
    background: var(--color-red);
    border-radius: 20px;
    margin-left: auto;
    font-family: 'NotoSans-Regular', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.highlight {
    background-color: yellow;
}
/* error-page */
.bx-error-page{padding: 20px 0 30px 0;text-align: center;}
.bx-error-page h1{margin: 15px 0;color: inherit;}
.backToHomepage {background: #02a051;display: inline-block;color: #fff !important;height: 40px;line-height: 40px;padding: 0 20px;border-radius: 20px;}
.backToHomepage:hover{background-color: #004e27;}
.bx-contact-page {padding: 20px;background: #f7f8fa;line-height: 1.4;}
.bx-contact{background-color: #f5f5f5;padding: 15px;}
/* bx-detail-livetv */
.bx-detail-livetv {width: 100%;}

/*Contact (static) */
.bx-contact-page {
    float: none;
    width: 80%;
    height: 100%;
    border: 1px solid #999;
    padding: 30px 20px;
    margin: 20px auto;
}

.bx-contact-page table {
    float: none !important;
    width: 100% !important;
}

.bx-contact-page table * {
    font-family: Arial, Helvetica, sans-serif !important;
}

table {
    /* margin-top: 10px; */
    border-collapse: collapse;
}

.bx-contact-page td,
.bx-contact-page th {
    border: 1px solid #ddd;
    padding: 8px;
}

.bx-contact-page tr:nth-child(even) {
    background-color: #f2f2f2;
}

.bx-contact-page tr:first-child {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
}

.bx-contact-page tr:first-child td {
    text-align: center;
    text-transform: uppercase;
}
/* ico-type */
.ico-camera,
.ico-photo,
.ico-infographic,
.ico-emag {
  display: block;
  position: absolute;
  z-index: 1;
  right: 5px;
  bottom: 5px;
  background-image: url(../images/pc/ico-type.png);
  background-repeat: no-repeat;
}

.ico-photo {
  width: 21px;
  height: 19px;
  background-position: 0 0;
}

.ico-camera {
  width: 23px;
  height: 23px;
  background-position: -26px 0;
}

.ico-emag {
  width: 50px;
  height: 14px;
  background-position: -78px -5px;
}

.ico-infographic {
  width: 20px;
  height: 20px;
  background-position: -53px -2px;
}

.ico-video,
.ico-image,
.ico-comment,
.ico-vote {
  display: inline-block;
  margin-left: 2px;
}

.ico-video {
  background: url(../images/pc/img-video.png) 0 0 no-repeat;
  width: 15px;
  height: 12px;
}

.ico-image {
  background: url(../images/pc/img-images.png) 0 0 no-repeat;
  width: 15px;
  height: 12px;
}

.ico-vote {
  background: url(../images/pc/img-vote.png) 0 0 no-repeat;
  width: 14px;
  height: 14px;
}

.ico-comment {
  background: url(../images/pc/ico-comment.png) 0 1px no-repeat;
  padding-left: 17px;
  font-size: 12px;
  font-family: inherit;
  color: #0065b3;
  font-weight: normal;
}
/* bx-epaper-list */
.bx-epaper-list .bx-cat-content {
    flex-direction: row;
    gap: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.bx-epaper-list .article{
    width: 272px;
}
/* lịch phát sóng */
.cat-tv-schedule {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    width: 100%;
}

.search_date {
    column-gap: 10px;
}

.__DAY_CLICK {
    display: block;
    height: 30px;
    background: #e8f6e8;
    line-height: 30px;
    text-decoration: none;
    color: #333;
    padding: 0 10px;
}

.__DAY_CLICK.value_checked {
    background: #009600;
    color: #fff;
}

.schedule-head {
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Inter-Bold';
}

.schedule-head td:first-child {
    min-width: 80px;
}

.list_program {
    display: none;
    padding: 10px 0px;
}

.list_program select {
    float: none;
    height: 30px;
    padding-right: 10px;
}

#__LOAD_TV_SCHEDULER_DATA tbody tr:nth-child(odd) {
    background: #00960017;
}
/* bx-list-casting */
.bx-list-casting {margin-top: 30px;}
.bx-list-casting .bx-cat-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px;
}
.bx-list-casting .article {
    width: 197px;
}

.bx-list-casting .article-image {
    width: 84px;
    margin: 0 auto;
}

.bx-list-casting .article-image::before {
    padding-top: 100%;
}

.bx-list-casting .article-title {
    font-size: 16px;
    line-height: 1.625;
    text-align: center;
}
/* detail-audio */

.radio-detail {
    margin-bottom: 20px;
}

.video-info .cat-name {
    margin-bottom: 10px;
    font-size: 14px;
    color: #3bbe4f;
    text-transform: uppercase;
}

.video-info .video-title {
    display: inline-block;
}

.video-info .video-title {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
    overflow: hidden;
    display: inline-block;
}

.video-info .share-video {
    float: right;
    margin-top: -5px;
}

.video-info .video-meta {
    margin-bottom: 20px;
}

.video-info .video-desc {
    margin-bottom: 20px;
    font-size: 18px;
}
/* hna-signin-signup-mxh */
.hna-signin-signup-mxh{margin-bottom: 20px;}
.hna-mxh-title{margin-bottom: 20px;text-align: center;}
.hna-mxh-content{text-align: center;}
.hna-sign-with{width: 500px;height: 48px;line-height: 48px;text-align: center;display: inline-block;border: 1px solid #0065b1;border-radius: 5px;cursor: pointer;}
.hna-sign-with:hover{background: #f5f5f5;}
.hna-sign-with > span{background: url(../images/login/sign-in-gg.png) left 0px no-repeat;background-size: 16px;padding-left: 22px;}
.hna-sign-with > span.with-facebook{background: url(../images/login/sign-in-fa.png) left 0px no-repeat;}
.hna-sign-with:hover > span{color: #0065b1;}
/* hna-menu-signin */
.hna-menu-signin {position: relative;margin-right: 10px;color: #ed1c24;font-size: 12px;}
.hna-menu-signin .name {display: none;}
.hna-ico-user {cursor: pointer;}
.hna-ico-user img {width: 24px;height: 24px;margin: 0 10px;border-radius: 50%;overflow: hidden;vertical-align: -5px;border: 1px solid #9f9f9f;}
.hna-menu-signin-more {display: none;position: absolute;right: 0;top: 24px;z-index: 10000;box-shadow: 1px 2px 2px #ccc;border-radius: 3px;overflow: hidden;}
.hna-menu-signin:hover .hna-menu-signin-more {display: block;}
.hna-menu-signin-more a {width: 100%;float: left;white-space: nowrap;padding: 0 15px;background: #eaf5ff;line-height: 32px;text-transform: none;font-size: 12px;text-align: left;color:#000;}
.hna-menu-signin-more a .fas {margin-right: 5px;color: #007bd9;width: 20px;text-align: center;}
.bx-grid-section {
    display: grid;
    grid-template-columns: 300px auto;
    grid-column-gap: 40px;
}
/* van ban moi */
.bx-grid-content {
    display: grid;
    grid-template-columns: auto 300px;
    grid-column-gap: 40px;
}
/* hna-newsqa */
.hna-newsqa .qa-article {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    background: #fffeec;
    padding: 15px;
    border-radius: 3px;
    word-break: break-word;
}
.hna-newsqa .article-title {
    font-size: 16px;
    color: #ed1c24;
    margin-bottom: 8px;
}
.hna-newsqa .article-info {
    margin-bottom: 5px;
}
.hna-newsqa .article-date {
    font-size: 12px;
    line-height: 20px;
    color: #999;
    font-family: 'NotoSans-Regular', Arial, sans-serif;
}
.question-filter {
    margin-bottom: 15px;
}
.cat-title {
    margin-bottom: 10px;
    height: 25px;
    position: relative;
}
.cat-name {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #007ec6;
    position: absolute;
    border-bottom: 1px solid red;
    top: 4px;
    line-height: 100%;
    padding-bottom: 4px;
    font-family: 'NotoSans-Medium', sans-serif;
    font-weight: normal;
}
.qa-cat-item {
    list-style: none;
    list-style: none;
    margin: 3px 0px 3px 10px;
}
.form-ask .cat-title {
    margin-bottom: 5px;
}
#MEMBER_QA_UPLOAD_FRM table td strong{
    font-family: "NotoSans-Medium", sans-serif;
    font-weight: normal;
    margin-top: 10px;
    display: block;
}
.title_for_seo::placeholder,
.usr-info::placeholder,
.qa_m_ask::placeholder {
    font-family: "NotoSans-Regular",sans-serif;
    font-family: 13px;
    color: #999;
}
.title_for_seo::-moz-placeholder,
.usr-info::-moz-placeholder,
.qa_m_ask::-moz-placeholder {
    font-family: "NotoSans-Regular",sans-serif;
    font-family: 13px;
    color: #999;
} 
.title_for_seo::-webkit-input-placeholder,
.usr-info::-webkit-input-placeholder,
.qa_m_ask::-webkit-input-placeholder {
    font-family: "NotoSans-Regular",sans-serif;
    font-family: 13px;
    color: #999;
}
.title_for_seo:focus,
.usr-info:focus,
.qa_m_ask:focus {
    background-color: #eee;
    border-radius: 5px;
}
.list-vb {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 10px 10px 7px;
}
.box-docs-search > div {
    margin-bottom: 10px;
}
.box-docs-search input {
    height: 40px;
    border: 1px solid #e1e1e1;
    padding: 0 10px;
    border-radius: 5px;
    outline: none;
}
.box-docs-search-bottom input,
.box-docs-search-top .__MB_DOCS_KEYWORD {
    width: 100%;
}
.box-docs-search-bottom > div {
    width: calc((100% - 20px) / 2);
    float: left;
    margin-left: 20px;
}
.box-docs-search-bottom .from-date {
    margin-left: 0;
}
.box-docs-search-bottom span {
    display: block;
    margin-bottom: 5px;
}
#btnFind {
    padding: 10px 20px; 
    background-color: var(--main-green);
    text-align: center;
    border-radius: 5px;
    outline: 0;
    border: 0;
    color: #fff;
}
.to-search  {
    text-align: center;
}
.form,
.hna-archives {
    border: 1px solid #e1e1e1;
    width: 100%;
    border-collapse: collapse;
 }
 
 .hna-archives th {
    padding: 10px;
    font-family: 'NotoSans-Bold', sans-serif;
    border-bottom: 1px solid #e1e1e1;
}
 .hna-archives tbody td {
    font-size: 13px;
    text-align: center;
    padding: 10px;
}
.hna-archives tbody td:last-child {
    text-align: left;
}
.hna-archives tbody tr:nth-child(even) {
    background: #f1f1f1;
}
.doc-no {
    color: #007ec6;
}
.doc-no:hover {
    text-decoration: underline;
}
.hna-archives .button a {
    display: inline-block;
    margin-right: 5px;
    color: #0480c7;
}
.hna-archives .button .thuoctinh {
    background: url(../images/pc/thuoctinh-ico.png) left center no-repeat;
    padding-left: 17px;
}
.hna-archives .button .download {
    background: url(../images/pc/download-ico.png) left center no-repeat;
    padding-left: 17px;
}
/* chi tiet van ban */
.title-vb {
    margin-bottom: 10px;
}
.link-tracuu {
    font-size: 14px;
    color: #007dc5;
    font-weight: normal;
    float: right;
    font-family: 'NotoSans-Medium', sans-serif;
}

#thuoctinh1nd table tr td:first-child {
    width: 25%;
    font-weight: 500;
}
#thuoctinh1nd table td{
    border: 1px solid #e1e1e1;
    padding: 10px;
}
/* footer */
#footer {
    margin-top: 40px;
}

.footer-info {
    background-color: #f3f3f3;
}

.footer-link {
    display: flex;
    text-transform: uppercase;
    column-gap: 15px;
    justify-content: center;
    padding: 18px 0;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 25px;
}

.footer-main {
    column-gap: 28px;
    align-items: flex-start;
}

.footer-logo {
    padding: 80px 50px;
}

.footer-text p {
    line-height: 24px;
}

.ft-social {
    padding: 15px 0 22px;
    position: relative;
    margin-top: 15px;
}

.ft-social::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 365px;
    height: 1px;
    background-color: #e1e1e1;
}

.footer-ncsc {
    padding: 80px 48px 80px 0;
    display: block;
}

.footer-cms {
    padding: 18px 0;
    color: #6c6c6c;
    background: #fff;
    font-size: 14px;
}

@keyframes goToTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}