@import "fancybox.css";

:root {
    --white-color: #fff;
    --black-color: #000;
    --main-color: #1a5056;
    --red-color: #d90001;
    --font-main: 'Inter', sans-serif;
}

@font-face {
    font-family: 'Merriweather';
    font-weight: 400;
    src: url(../css/fonts/Merriweather/Merriweather-Regular.ttf);
}

@font-face {
    font-family: 'Merriweather';
    font-weight: 700;
    src: url(../css/fonts/Merriweather/Merriweather-Bold.ttf);
}

@font-face {
    font-family: 'Inter';
    font-weight: 700;
    src: url(../css/fonts/Inter/Inter-Bold.ttf);
}

@font-face {
    font-family: 'Inter';
    font-weight: 400;
    src: url(../css/fonts/Inter/Inter-Regular.ttf);
}

@font-face {
    font-family: 'Playfair_Display';
    font-weight: 700;
    src: url(../css/fonts/Playfair_Display/PlayfairDisplay-Bold.ttf);
}

@font-face {
    font-family: 'Noto_Sans';
    font-weight: 400;
    src: url(../css/fonts/Noto_Sans/NotoSans-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    min-width: 1240px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
}

.siteCenter {
    width: 1182px;
    margin: 0 auto;
}

.fw {
    width: 100%;
}

a {
    text-decoration: none;
    border: none;
    color: inherit;
    transition: 0.3s ease all;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

input,
button {
    border: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

b,
strong {
    font-weight: 700;
}

.flex-0 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.wrap {
    flex-wrap: wrap;
}

.flex-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-2 {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.flex-3 {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.flex-4 {
    display: flex;
    flex-direction: row;
    gap: 44px;
    flex-wrap: wrap;
}

.fw {
    width: 100%;
}

.lt {
    display: block;
    float: left;
}

.rt {
    display: block;
    float: right;
}

.hide,
.hidden {
    display: none;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    width: 100%;
    clear: both;
}

.article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
}

.article-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 10px;
}

.article-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: url(../images/no-image.jpg) 0 0 no-repeat;
    background-size: cover;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
}

.article-image::before {
    padding-top: 62.5%;
    content: "";
    display: block;
}

.article-image:hover {
    opacity: .85;
}

.article-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* .article-image:hover {
    opacity: .85;
} */

.article-title {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    transition: .3s ease;
}

.article-link {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.article-desc {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: #666;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.article-cat {
    text-transform: uppercase;
    font-size: 12px;
    font-family: 'Noto_Sans', sans-serif;
    font-weight: 400;
    display: inline-flex;
    color: #ed1c24;
    margin-right: 5px;
    display: none;
}

.article-cat:hover {
    color: #f00;
}

.article-publish:empty,
.article-cat:empty {
    display: none;
}

.article-publish {
    color: #5d5d5d;
    font-size: 12px;
}
.article-publish-time+.article-cat::before,
.article-cat+.article-publish::before {
    content: '-';
    padding-right: 5px;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 0;
}
.bx-cat .bx-cat-link:hover, .bx-cat .cat-link:hover,
.article-link:hover {
    color: #ed3237;
}

.gotop {
    width: 39px;
    height: 39px;
    background: url(../images/pc/gotop.png) 0 0 no-repeat;
    display: none;
    position: fixed;
    bottom: 40px;
    right: 12px;
    cursor: pointer;
    z-index: 999;
    text-align: center;
    transition: .3s ease all;
    opacity: 1;
}

.gotop:hover {
    opacity: .8;
}

.header-top {
    height: 44px;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    justify-content: space-between;
}

.header-info {
    display: flex;
    column-gap: 15px;
}

.calendar {
    background: url(../images/pc/ico-calendar.png) 0 center no-repeat;
    padding-left: 26px;
}

.hotline {
    background: url(../images/pc/ico-phone.png) 0 3px no-repeat;
    padding-left: 26px;
}

.email {
    background: url(../images/pc/ico-mail.png) 0 3px no-repeat;
    padding-left: 26px;
}

.header-weather {
    align-items: center;
    column-gap: 12px;
    margin-left: 5px;
    position: relative;
}

.bx-weather {
    align-items: center;
    column-gap: 12px;
    border: 1px solid #dadada;
    padding: 5px 10px 5px 16px;
}

.weather-info {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.temp-info {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.hd-caret-down {
    width: 16px;
    height: 16px;
    position: relative;
    cursor: pointer;
}

.hd-caret-down::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #555;
}

.hd-caret-down.active::before {
    border-bottom: 8px solid #555;
    border-top: unset;
}

.weather-icon {
    height: 44px;
    display: none;
}

.weather-list .weather-icon {
    display: block;
    height: 32px;
}

.weather-list {
    display: none;
    width: 100%;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    background: #fff;
    display: none;
    z-index: 2;
    padding-top: 5px;
    border: 1px solid #ebebeb;
}

.weather-list.show {
    display: block;
}

.weather-item-sub {
    cursor: pointer;
    padding: 5px 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

.hd-weather-item:not(:first-child),
.weather-item-sub.active-weather {
    display: none;
}

.weather-more {
    border-top: 1px solid #ebebeb;
    color: #007bd9;
    text-align: right;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
}

.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;
}


#frmSearch {
    width: 225px;
    height: 33px;
    border-radius: 33px;
    border: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

#frmSearch .search-input {
    display: inline-block;
    font-size: 14px;
    width: calc(100% - 32px);
    padding-left: 15px;
    line-height: 32px;
}

#frmSearch .search-input::-webkit-input-placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

#frmSearch .search-input:-ms-input-placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

#frmSearch .search-input::-ms-input-placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

#frmSearch .search-input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

#frmSearch .search-btn {
    display: block;
    margin-left: 5px;
    width: 32px;
    height: 32px;
    background: url("../images/pc/ico-search.png") center center no-repeat;
    cursor: pointer;
}
.hna-user-link {
    display: block;
}
.hna-user-link > svg {
    top: 2px;
    display: block;
    position: relative;
}
.header-logo {
    padding-top: 28px;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}
.logo > span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 25px;
    margin-top: -1px;
}
.stock-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stock-bar-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    width: calc((100% - 4*18px) / 5);
    min-height: 70px;
    padding: 7px 9px;
    font-size: 12px;
}

.stock-bar-item .up {
    color: #2be72c;
}

.stock-bar-item .up .arrow::before {
    content: '';
    display: inline-block;
    background: url("../images/stock-arrow-up-small.png") center center no-repeat;
    width: 8px;
    height: 9px;
}

.stock-bar-item .down {
    color: #f03;
}

.stock-bar-item .down .arrow::before {
    content: '';
    display: inline-block;
    background: url("../images/stocks/stock-arrow-down-small.png") center center no-repeat;
    width: 8px;
    height: 9px;
}

.stock-bar .icon-stock-up {
    display: inline-block;
    padding-left: 15px;
    background: url("../images/stocks/stock-arrow-up.png") 0px center no-repeat;
    margin-right: 2px;
}

.stock-bar .icon-stock-rect {
    display: inline-block;
    padding-left: 15px;
    background: url("../images/stocks/stock-rectangle.png") 0px center no-repeat;
    margin-right: 2px;
}

.stock-bar .icon-stock-down {
    display: inline-block;
    padding-left: 15px;
    background: url("../images/stocks/stock-arrow-down.png") 0px center no-repeat;
}

.stock-bar-item {
    white-space: nowrap;
}

.stock-bar-item-head {
    font-size: 13px;
}

.stock-bar-item-body {
    font-size: 11px;
    margin-top: 5px;
    margin-bottom: 8px;
    padding-top: 5px;
    border-top: 1px solid #e1e1e1;
}

.c-orange {
    color: #f90;
}

.system-menu {
    background: #ED2F38;
    background: linear-gradient(90deg, rgba(237, 47, 56, 1) 0%, rgba(237, 47, 56, 1) 40%, rgba(252, 187, 113, 1) 100%);
}

.system-menu.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 1px 10px #ebebeb;
}

.header-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* justify-content: space-between; */
    align-items: center;
}

.item-menu {
    position: relative;
    line-height: 36px;
}

.link-menu {
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    display: block;
    color: #fff;
    padding-inline: 8px;
    white-space: nowrap;
}

.menu-home {
    background: url(../images/pc/ico-home.png) 0 15px no-repeat;
    width: 20px;
    height: 47px;
    display: block;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    text-align: left;
    list-style: none;
    background-color: #eee;
    min-width: 200px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    transition: 0.5 ease-in all;
}

.item-menu:hover .sub-menu {
    display: block;
    border: none;
    -webkit-box-shadow: 0px 10px 34px -20px rgb(0 0 0 / 50%);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 50%);
    box-shadow: 0px 10px 34px -20px rgb(0 0 0 / 50%);
    padding: 0;
    -webkit-animation: goToTop .25s ease-in;
    animation: goToTop .25s ease-in;
}

@-webkit-keyframes goToTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.sub-item-menu:not(:first-child) {
    border-top: 1px solid #fff;
}

.sub-item-menu a {
    padding: 5px 10px;
    display: block;
    font-size: 15px;
    transition: .3s ease all;
}

.item-menu:hover>a:not(.menu-home) {
    color: var(--main-color);
    background-color: #eee;
}

.header-bottom {
    padding: 8px 0;
    margin-bottom: 30px;
}

.header-flash {
    margin: 12px 0;
    height: 28px;
    overflow: hidden;
}

.flash-container {
    overflow: hidden;
}

.flash {
    padding-inline: 28px;
    /* background: url(../images/pc/ico-flash.png) 0 center no-repeat; */
    position: relative;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
}

.flash::before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #f00;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.flash .article-title {
    font-weight: 400;
    position: relative;
    float: left;
    margin-right: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.flash .article-link {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.external-google-news {
    padding-right: 98px;
    /* margin-left: 5px; */
    line-height: 20px;
    background: url(../images/pc/ico-google-news.png) right 5px no-repeat;
    background-size: inherit;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.header-internal {
    column-gap: 10px;
}

.header-internal a:not(:first-child) {
    display: inline-block;
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    border-radius: 2px;
    background-color: #f9f7f7;
    background-position: center center;
}

.header-internal a:nth-child(2) {
    background-image: url(../images/pc/ico-fb.png);
}

.header-internal a:nth-child(3) {
    background-image: url(../images/pc/ico-zl.png);
}

.header-internal a:nth-child(4) {
    background-image: url(../images/pc/ico-ytb.png);
}

/* main */
.g-0 {
    gap: 30px 38px;
    flex-wrap: wrap;
}

.col-left {
    width: 844px;
}

.col-right {
    width: 300px;
}
.bx-cover .article {
    width: 260px;
    float: left;
    margin-right: 32px;
}
.bx-cover .article:nth-child(n+3) {
    margin-top: 25px;
}
.bx-cover .article:first-child {
    float: right;
    width: 552px;
    margin-right: 0;
}
.bx-cover .article:first-child .article-title {
    font-size: 28px;
    line-height: 1.3125;
}
.bx-cover .article:not(:first-child) .article-desc,
.bx-cover>.article:nth-child(n+4) {
    display: none;
}

.fi-name {
    text-transform: uppercase;
    font-size: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 27px;
}

.bx-cat-item .article:not(:first-child) .article-image {
    display: none;
}

.bx-cat-item .article:not(:first-child) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
}

.bx-cat-item .article-desc {
    display: none;
}
.bx-finance .article-title {
    font-size: 14px;
}
/* bx-news */
.bx-news {
    display: flex;
    column-gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.bx-news .article {
    width: calc((100% - 2*32px) / 3);
}
.bx-news .article-title {
    font-size: 16px;
}
.bx-news .article-desc {
    display: none;
}

/* bx-cat */
.ico-cat-sub {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    cursor: pointer;
}

.ico-cat-sub::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #898989;
}

.cat-title,
.bx-cat-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cat-sub-list {
    position: relative;
}

.cat-sub-item {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0px 0px 2px #666;
    display: none;
    width: 230px;
}

.cat-sub-item .cat-item {
    width: 100%;
    float: left;
    clear: both;
    text-align: right;
    border-top: 1px dotted #e0e0e0;
    padding: 8px 10px;
    font-size: 13px;
}

.cat-sub-item .cat-item:first-child {
    border-top: 0;
}

.cat-sub-list:hover .cat-sub-item {
    display: block;
}

.bx-cat-name {
    font-size: 22px;
    text-transform: uppercase;
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    padding-left: 42px;
    position: relative;
}

.bx-cat-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 32px;
    height: 17px;
    background: #FCBB71;
    background: linear-gradient(90deg, rgba(252, 187, 113, 1) 0%, rgba(237, 47, 56, 1) 100%);
}

.bx-others .bx-cat-name {
    font-size: 24px;
}

.cat-name {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    padding-bottom: 7px;
}

/* bx-cat-one */
.bx-cat-one .article {
    width: 305px;
    float: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ebebeb;
}

.bx-cat-one .article:first-child {
    width: 498px;
    float: left;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-cat-one .article:nth-child(2) {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-cat-one .article:not(:first-child) .article-cat,
.bx-cat-one .article:not(:first-child) .article-image {
    display: none;
}
.bx-cat-one .article-title {
    font-weight: 400;
}
.bx-cat-one .article:first-child .article-title {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

/* bx-cat-two */
.bx-cat-two .bx-cat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bx-cat-two .article {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ebebeb;
}

.bx-cat-two .article:nth-child(-n+2) {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-cat-two .article:nth-child(2) {
    margin-top: 15px;
}

.bx-cat-two .article:not(:first-child) .article-desc,
.bx-cat-two .article:not(:first-child) .article-cat,
.bx-cat-two .article:not(:first-child) .article-image {
    display: none;
}

.bx-cat-two .article:first-child .article-title {
    font-size: 22px;
    line-height: 1.5;
    margin-top: 5px;
}

/* bx-tab */
.tab-button {
    text-transform: uppercase;
    font-size: 22px;
    color: #000;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
    font-family: 'Merriweather', sans-serif;
    padding-left: 20px;
}

.tab-button.active {
    color: #ed3236;
}

.tab-name span:first-child {
    padding-left: 0;
    margin-left: 0;
}

.tab-name span:not(:first-child)::before {
    content: '';
    width: 2px;
    height: 22px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tab-title {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 22px;
    border-bottom: 1px solid #bbb;
}

.bx-tabs .article {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    column-gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ebebeb;
}

.bx-tabs .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-tabs .article-image {
    width: 116px;
}

.bx-tabs .article-title {
    font-size: 14px;
    font-weight: 400;
    margin-top: -5px;
}

.bx-multimedia {
    background-color: #fee7c7;
    padding: 30px;
}

.multi-heading {
    margin-bottom: 20px;
}

.multi-title,
.multi-heading {
    align-items: baseline;
}

.multi-name {
    font-size: 36px;
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    text-transform: uppercase;

}

.multi-redict {
    font-size: 16px;
    font-family: 'Merriweather', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.link-ytb {
    width: 69px;
    height: 16px;
    background: url(../images/pc/icon-ytb.png) 0 0 no-repeat;
}

.multi-sublink {
    font-size: 20px;
    font-family: 'Merriweather', sans-serif;
    display: inline-block;
    padding-left: 15px;
    margin-left: 28px;
    position: relative;
}

.multi-sublink::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ed1c24;
}

.multi-content {
    display: flex;
    flex-direction: row;
    column-gap: 35px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.multi-content>.article,
.multi-item {
    width: 290px;
    flex-shrink: 0;
    flex-grow: 0;
}

.bx-multimedia .multi-item {
    display: flex;
    row-gap: 20px;
    flex-direction: column;
}

.bx-multimedia .multi-item:first-child {
    width: 472px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bx-multimedia .article-title {
    font-size: 16px;
    line-height: 1.75;
}

.bx-multimedia .multi-item:first-child .article:first-child .article-title {
    font-size: 26px;
    line-height: 1.25;
}

.bx-multimedia .multi-item:first-child .article:first-child .article-cat {
    display: none;
    padding-left: 25px;
    position: relative;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
}

.bx-multimedia .multi-item:first-child .article:first-child .article-cat::before {
    content: '';
    background-color: #ed1c24;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 4px;
}

.bx-multimedia .multi-item:first-child .article:first-child .article-desc {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    color: #000;
}

.bx-multimedia .multi-item:first-child .article:nth-child(2) .article-image,
.bx-multimedia .article-cat,
.bx-multimedia .article-desc {
    display: none;
}

.multi-more {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.multi-more a {
    padding: 15px 50px;
    background: #FF6E02;
    background: linear-gradient(90deg, rgba(255, 110, 2, 1) 0%, rgba(255, 204, 1, 1) 50%, rgba(255, 109, 0, 1) 100%);
    border-radius: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.multi-more a::after {
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
/* layout-voices */
.layout-voices .bx-cat-content {
    overflow: hidden;
}
.layout-voices .content-slide {
    margin: 0 -10px;
}
.layout-voices .slick-track {
    display: flex;
}
.layout-voices .article {
    height: auto;
    background-color: #f6f6f6;
    border: 1px solid #ebebeb;
    margin: 0 10px;
    padding: 10px;
    text-align: center;
}
.layout-voices .article-image {
    width: 140px;
    margin: 0 auto;
    border-radius: 50%;
    background: none;
}
.layout-voices .article-image::before {
    padding-top: 100%;
}
.layout-voices .article-author{
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
.layout-voices .article-title {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
.layout-voices .slick-arrow {
    cursor: pointer;
    position: absolute;
    width: 27px;
    height: 70px;
    color: white;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 2;
    font-size: 0px;
}
  
.layout-voices .slick-arrow:hover {
    background-color: rgba(26, 26, 26, 0.3);
}
  
.layout-voices .slick-prev {
    left: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
  
.layout-voices .slick-next {
    right: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
  
.layout-voices .slick-arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-left: 4px solid #fff;
    border-top: 4px solid #fff;
    opacity: 1;
}
  
.layout-voices .slick-prev::before {
    -webkit-transform: rotate(-45deg) translate(2px, -7px);
            transform: rotate(-45deg) translate(2px, -7px);
}
  
.layout-voices .slick-next::before {
    -webkit-transform: rotate(135deg) translate(2px, 12px);
            transform: rotate(135deg) translate(2px, 12px);
}
.bx-cat-three {
    width: 400px;
}

.bx-cat-three .article {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ebebeb;
}

.bx-cat-three .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-cat-three .article-title {
    font-weight: 400;
}

.bx-cat-three .article:first-child .article-title {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

.bx-cat-three .article:not(:first-child) .article-image {
    display: none;
}
.bx-printer .article-image {
    border: 1px solid #ebebeb;
}

.bx-printer .article-image::before {
    padding-top: 144%;
}
.widget-title {
    border-top: 1px solid #e1e1e1;
    position: relative;
}

.widget-name {
    position: relative;
    display: inline-block;
    padding-right: 40px;
    line-height: 35px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Merriweather', sans-serif;
}

.red-text {
    color: #ed3236;
}

.widget-name::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #ed1c24;
    position: absolute;
    top: -1px;
    font-size: 20px;
}

.widget-name a,
.widget-name span {
    display: inline-block;
    padding-top: 8px;
}

.widget-content {
    overflow-y: scroll;
}

.widget-dot {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background-color: #959595;
}

.bd-blue {
    border: 1px solid #c5e0fc;
}

.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: bold;
}

.tbl-striped-grey th,
.tbl-striped-grey td {
    padding: 8px;
}

.tbl-striped-grey tbody tr:nth-child(even) {
    background-color: #f8f8f8;
    height: 33px;
}

.tbl-striped-grey tbody td:first-child {
    font-weight: bold;
}

.tbl-striped-grey .h165 {
    height: 165px;
    overflow-y: scroll;
}

.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;
}

.js-widget-slide .slick-arrow {
    cursor: pointer;
    position: absolute;
    width: 8px;
    height: 17px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 2;
    font-size: 0px;
    border-radius: 3px;
    top: -30px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: url(../images/pc/widget-arrow.png) center center no-repeat;
}

.js-widget-slide .slick-arrow:hover {
    opacity: .8;
}

.js-widget-slide .slick-prev {
    left: unset !important;
    right: 20px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.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;
}

.icon-search-gold {
    background: url("../images/pc/ic-gold.png") right center no-repeat;

}

/* .icon-good-price {
    background: url("../images/icon-good-price.png") right 4px no-repeat;
} */

.icon-trending-up {
    background: url("../images/pc/icon-trending-up.png") right center no-repeat;
}

.icon-money-bag {
    background: url("../images/pc/icon-money-bag.png") right center no-repeat;
}

/* .icon-search-recycle {
    background: url("../images/icon-recycle.png") right center no-repeat;
} */

.icon-tvsi-bar {
    background: url("../images/pc/ic-ck.png") right center no-repeat;
    padding-right: 40px;
    padding-left: 10px;
}

.icon-chart-bar {
    background: url("../images/pc/ic-ckqt.png") right center no-repeat;
    padding-right: 40px;
}

.widget-tvsi {
    position: relative;
}

.widget-tvsi .widget-title {
    border-top: 1px solid #e1e1e1;
    position: absolute;
    background-color: #f3f5f9;
    top: 5px;
    left: 0px;
}

.widget-tvsi .widget-name span {
    padding-top: 6px;
}

.widget-kqxs {
    padding: 6px 20px 20px;
}

.widget-kqxs .widget-kqxs-title {
    padding-left: 32px;
    font-size: 14px;
    background: url("../images/icon-xo-so.png") 0px center no-repeat;
    line-height: 32px;
    text-transform: uppercase;
}

.widget-kqxs .widget-kqxs-item {
    margin-top: 1px;
    padding: 10px;
    padding-left: 35px;
    background: url("../images/icon-xo-so-small.png") 10px center no-repeat;
    border: 1px solid #e7e7e7;
    background-color: #fff;
    cursor: pointer;
}

.cat-listing .tab-button.active {
    color: #ed3237;
}

.widget-bank-saving .tbl-striped-grey th:nth-child(n+2) {
    display: none;
}

.widget-bank-saving .tbl-striped-grey td:nth-child(n+2) {
    display: none;
}

.widget-bank-saving .tbl-striped-grey th:nth-child(6),
.widget-bank-saving .tbl-striped-grey th:nth-child(9),
.widget-bank-saving .tbl-striped-grey th:nth-child(11) {
    display: table-cell;
}

.widget-bank-saving .tbl-striped-grey td:nth-child(6),
.widget-bank-saving .tbl-striped-grey td:nth-child(9),
.widget-bank-saving .tbl-striped-grey td:nth-child(11) {
    display: table-cell;
}

.world-stock table {
    border-collapse: collapse;
}

.world-stock .widget-content.scroll {
    overflow-y: scroll;
    scrollbar-width: thin;
}

.world-stock .widget-content.scroll::-webkit-scrollbar {
    width: 3px;
}

.world-stock .widget-content.scroll::-webkit-scrollbar-thumb {
    background: #888;
}

.world-stock td>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.world-stock .world-stock-item {
    border-top: 1px solid #e9e9e9;
}

.world-stock .world-stock-item:first-child {
    border-top: none;
}

.world-stock .world-stock-item-head {
    font-size: 12px;
    margin-bottom: 3px;
}

.world-stock .world-stock-date {
    background: url("../images/pc/icon-clock.png") left center no-repeat;
    padding-left: 20px;
    color: #999;
    font-weight: normal;
    font-style: 12px;
}

.world-stock .world-stock-date+span {
    font-style: 12px;
    font-weight: normal;
}

.world-stock .percent-change .symbol_green~* {
    color: #2be72c;
}

.world-stock .percent-change .symbol_red~* {
    color: #f33;
}

.widget-note-small {
    color: #a1a1a1;
    font-size: 10px;
    font-weight: normal;
    display: block !important;
    text-align: right;
    margin-top: 5px;
}

/* category */
.bre-name {
    padding-bottom: 10px;
    border-bottom: 4px double #ebebeb;
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
}

.bre-title {
    font-size: 36px;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: 'Merriweather', sans-serif;
}

.bre-name .bre-title:nth-child(n+2) {
    font-size: 24px;
}

.bre-name .bre-title:not(:first-child)::before {
    content: ' | ';
    margin: 0 10px 0 12px;
}

.bx-cover-cat .article {
    width: 300px;
    float: left;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #ebebeb;
}

.bx-cover-cat .article:first-child {
    width: 505px;
    float: right;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-cover-cat .article:nth-child(2) {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-cover-cat .article:first-child .article-title {
    font-size: 28px;
    line-height: 1.4;
}

.bx-cover-cat .article:not(:first-child) :where(.article-cat, .article-desc) {
    display: none;
}

.bd-1 {
    background: url(../images/pc/1x1.png) left 320px top 0 repeat-y, url(../images/pc/1x1.png) right 319px top 0 repeat-y;
}

.bd-2 {
    background: url(../images/pc/1x1.png) right 319px top 0 repeat-y;
}

.bd-0 {
    border-top: 1px solid #ebebeb;
}

.bx-listing .article {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ebebeb;
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    align-items: flex-start;
}

.bx-listing .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-listing .article-image {
    width: 372px;
    margin-bottom: 0;
}

.bx-listing .article-title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: -10px;
}

.__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 40px;
    background-color: #e7e7e7;
    border-radius: 42px;
    display: inline-flex;
    font-size: 12px;
    color: #cd1c1c;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: .3s all ease;
}

.__MB_ARTICLE_PAGING>div:hover,
.__MB_ARTICLE_PAGING>a:hover,
.__MB_ARTICLE_PAGING span.current {
    background: #EC1C24;
    background: linear-gradient(90deg, rgb(129, 2, 2) 0%, rgba(236, 28, 36, 1) 100%);
    color: #fff;
}

.__MB_ARTICLE_PAGING span:first-child {
    display: none;
}

/* loading more */

.loader-ellips:not(.__mbloading) {
    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(--red-color);
    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;
}

/* detail */
.article-detail-subtitle {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}

.article-detail-subtitle:empty {
    display: none;
}

.article-detail-title {
    font-size: 36px;
    line-height: 1.25;
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.article-detail-main .article-publish {
    color: #c3c2c2;
}

.ico-google-news {
    font-size: 12px;
    color: #999;
}

.article-detail-summary .article-cat,
.article-detail-info .article-cat {
    display: inline-block;
}
.social-top {
    display: flex;
    justify-content: space-between;
    background: #fafafa;
    padding: 8px;
    border-radius: 4px;
    align-items: center;
}
.social-right {
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.article-detail-desc {
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 10px;
}

.article-detail-main {
    display: flex;
    column-gap: 45px;
}

.article-detail-extensition {
    width: 32px;
}

.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;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-detail-social>div,
.article-detail-social>span,
.article-detail-social>a {
    width: 32px;
    height: 32px;
    color: #565656;
    border: 1px solid #ccc;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.ic-copy {
    position: relative;
}

.ic-copy .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;
}

.ic-copy .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.ic-copy:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.article-detail-author {
    font-family: "Merriweather", sans-serif;
    font-weight: 700;
    text-align: right;
    font-style: italic;
}

.article-detail-source {
    text-align: right;
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
}

.article-detail-author {
    display: none;
}

.article-detail-subtitle:empty,
.article-detail-source:empty,
.article-detail-author:empty {
    display: none;
}

.article-detail-content.detail-content-special style#css_tpl_box_in_db:first-child+p,
.article-detail-content.detail-content-special> :first-child {
    margin-top: 0;
}

.article-detail-content {
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Merriweather', sans-serif;
    font-weight: 400;
    width: 767px;
}

.__MASTERCMS_CONTENT p {
    font-size: inherit;
    line-height: 1.6;
    margin: 15px 0;
    color: #000;
}

.__MASTERCMS_CONTENT>p:first-child {
    margin-top: 0;
}

.__MASTERCMS_CONTENT p:empty,
.__MASTERCMS_CONTENT_MOBILE p:empty {
    display: none;
}

.__MASTERCMS_CONTENT img,
.__MASTERCMS_CONTENT_MOBILE img {
    cursor: zoom-in;
}

.__MASTERCMS_CONTENT .cms-caption {
    font-size: 16px;
    font-style: italic;
    font-family: inherit;
}

.MASTERCMS_TPL_TABLE tbody tr:nth-child(even) td {
    background-color: transparent;
    color: #8f8f8f;
    padding: 10px 0 0;
    font-weight: 400;
    font-size: 16px;
    font-style: italic;
    font-family: inherit;
}

/* .video-container,  */
.mb_embed_3rd_html {
    position: relative;
}

.mb_embed_3rd_html tr td:first-child {
    padding-top: 56.25%;
    display: block;
}

.video-container iframe,
.mb_embed_3rd_html tr td:first-child iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.___widget_video_article {
    position: relative;
}

.___widget_video_article::before {
    content: '';
    padding-top: 56.25%;
    display: block;
}

.___widget_video_article .jwplayer {
    position: absolute;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    left: 0;
}

.__MASTERCMS_CONTENT .___widget_video_article video,
.__MASTERCMS_CONTENT_MOBILE .___widget_video_article video,
.___widget_video_article .jwplayer video {
    width: 100% !important;
    object-fit: fill !important;
    height: 100% !important;
    transform: none !important;
}

/* .__MB_ARTICLE_A */

.__MB_ARTICLE_A td a {
    font-size: 16px;
    line-height: 1.5;
    color: #007bd9;
    position: relative;
    width: 100%;
    float: left;
    margin: 5px 0;
    padding-left: 18px;
    padding-right: 10px;
    font-family: 'Merriweather', sans-serif;
    font-weight: 400;
}

.__MB_ARTICLE_A td:first-child a:first-child {
    margin-top: 0;
}

.__MB_ARTICLE_A td a:before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c2c2c2;
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
}

/* 
.MASTERCMS_TPL_TABLE,
.__MASTERCMS_CONTENT table,
.__MASTERCMS_CONTENT_MOBILE table {
    margin-bottom: 0;
} */
.bx-detail-news {
    border-top: 1px solid #ebebeb;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-top: 15px;
}

.bx-detail-news a {
    color: #007bd9;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.bx-detail-news a::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
}

.topic-event .bx-cat-title {
    margin-bottom: 10px;
}

.topic-link {
    font-size: 18px;
    text-transform: initial;
    color: #f00;
}

.topic-link::before {
    content: '[';
}

.topic-link::after {
    content: ']';
}

.topic-event .article-title {
    line-height: 1.4;
    color: #069;
    position: relative;
    width: 100%;
    float: left;
    margin: 5px 0;
    padding-left: 25px;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.topic-event .article-title:before {
    width: 15px;
    height: 2px;
    background: grey;
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
}

.article-tags {
    display: flex;
    column-gap: 16px;
}

.article-tags span {
    display: block;
    color: #000;
    font-size: 21px;
    padding-left: 32px;
    height: 39px;
    line-height: 39px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    background: url(../images/pc/ico-tags.png) 0 center no-repeat;
    flex-grow: 0;
    flex-shrink: 0;
}

.article-keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 6px;

}

.article-keyword .tag-item {
    background-color: #f7f7f7;
    border: 1px solid #f0f0f0;
    padding: 7px 20px;
    border-radius: 4px;
    font-size: 16px;
    color: #007bd9;
}

.tag-local {
    background: url("../images/pc/icon-place.png") left center no-repeat;
    padding: 10px 5px 6px 18px;
    margin-left: 5px;
    font-size: 14px;
    color: #f00;
    text-transform: uppercase;
    font-weight: bold;
}

#user-comment {
    padding: 25px 28px;
    background-color: #eee;
    margin-bottom: 36px;

}

#user-comment .bx-cat-head span {
    display: inline-block;
    text-indent: -9999px;
}

#user-comment .bx-cat-title {
    display: block;
    margin-bottom: 10px;
}

#user-comment .title {
    float: none;
    width: 100%;
}

#user-comment .title::before,
#user-comment .bx-cat-head::before {
    content: "Bình luận";
    font-family: "Merriweather", 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;
}

#user-comment .box-comment a.__MB_ACTION_POST_COMMENT:before {
    content: "gửi";
    text-indent: none;
    visibility: visible;
    background: #EC1C24;
    background: linear-gradient(90deg, rgba(236, 28, 36, 1) 0%, rgba(129, 2, 2, 1) 100%);
    float: right;
    padding: 0 32px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
}

.comments-reply,
.box-comment {
    padding-left: 65px;
}

.box-comment {
    background: url(../images/pc/ico-user.png) 0 10px no-repeat;
}

.comment-actions .reply textarea,
#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: #EC1C24;
    background: linear-gradient(90deg, rgba(236, 28, 36, 1) 0%, rgba(129, 2, 2, 1) 100%);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

#user-comment button:hover {
    background: #EC1C24;
    background: linear-gradient(90deg, rgba(129, 2, 2, 1) 0%, rgba(236, 28, 36, 1) 100%);
    cursor: pointer;
}

#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-cat-five .bx-cat-content {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.bx-cat-five .article {
    width: calc((100% - 2*32px) / 3);
}

/* search */
.results-title {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
    background: #ED2F38;
    padding: 10px;
    border-radius: 10px;
}

.results-title .keyword {
    font-size: 16px;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.results-title .info-key {
    font-size: 16px;
    color: #fff;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 700;
    margin-left: 8px;
}

.results-title .result {
    font-size: 12px;
    color: #fff;
    height: 30px;
    padding: 6px 15px;
    margin-left: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.highlight {
    background: yellow;
}

/* error */
.bx-error-page {
    margin: 30px auto;
    text-align: center;
    color: #8892a0;
}

.bx-error-page h2 {
    margin: 15px auto;
    color: #f00;
}

.bx-error-page .back-home {
    display: inline-block;
    border: 2px solid;
    padding: 8px 16px;
    border-radius: 30px;
    text-transform: uppercase;
}

/* bao in */
#paperSelect {
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 180px;
    height: 25px;
    border-color: #999;
}

.cat-grid-4 .article {
    width: calc((100% - (4 - 1) * 20px - 1px) / 4);
    float: left;
    margin-left: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.cat-grid-4 .article:nth-child(4n + 1) {
    margin-left: 0;
    clear: left;
}

.cat-grid-4 .article:nth-child(-n + 4) {
    margin-top: 0;
}

.thumb-epaper .article-image::before {
    padding-top: 144%;
}

.thumb-epaper .article-title {
    font-family: 'Arial', sans-serif;
    text-align: center;
    font-size: 16px;
}

.paging-square {
    text-align: center;
    display: block;
    margin: 30px auto 0;
}

.paging-square a,
.paging-square span {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    margin-right: 1px;
    border-radius: 2px;
    background: #c2c2c2;
    color: #fff;
}

.paging-square span:first-child {
    display: none;
}

.paging-square a:hover,
.paging-square span.current {
    background: #c33;
}

.js-datepicker {
    width: 210px;
    height: 32px;
    padding-left: 38px;
    background: url("../images/pc/icon-calendar.png") 12px center no-repeat;
    border: 1px solid #e6e6e6;
    line-height: 32px;
    color: #000;
}

.search-by-date {
    margin-top: -30px;
}

/* phong van */
.cat-listing-round .article-interviewer {
    width: 180px;
    flex-shrink: 0;
    flex-grow: 0;
    text-align: center;
}

.cat-listing-round .article-image {
    width: 80px;
    margin: 0 auto;
    border-radius: 50%;
}

.cat-listing-round .article-image::before {
    padding-top: 100%;
}

.cat-listing-round .article-info-interview {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* static */
.bx-static {
    padding: 20px;
    border: 1px solid #ebebeb;
    font-size: 16px;
}

/* price-search */
.price-search {
    height: 124px;
    padding: 12px 18px;
    background-color: #f9f4f4;
    font-size: 14px;
}

.price-search .price-search-title {
    font-weight: bold;
}

.price-search .price-search-input {
    padding: 0px 35px 0px 15px;
    width: 300px;
    height: 31px;
    border: 1px solid #dadada;
    background: url("../images/icon-calendar-grey.png") right 9px center no-repeat;
    background-color: #fff;
}

.price-search .price-search-button {
    width: 94px;
    height: 31px;
    color: #fff;
    font-weight: bold;
    background-color: #007bd9;
}

.cat-price .cat-price-item {
    padding: 5px 12px;
    height: 39px;
    border: 1px solid #c5e0fc;
    background-color: #fbfbfb;
    margin-bottom: 1px;
    font-size: 14px;
    font-weight: bold;
}

.cat-price .icon::before {
    content: '';
    display: inline-block;
    width: 23px;
    height: 25px;
    margin-right: 5px;
    vertical-align: -5px;
}

.cat-price .icon-tieu-dung::before {
    background: url("../images/icon-gia-hang-tieu-dung.png") 0px center no-repeat;
}

.cat-price .icon-building::before {
    background: url("../images/icon-building.png") 0px center no-repeat;
}

.cat-price .icon-gasoline::before {
    background: url("../images/icon-gasoline.png") 0px center no-repeat;
}

.cat-price .icon-thi-truong-tg::before {
    background: url("../images/icon-thi-truong-tg.png") 0px center no-repeat;
}

.cat-price .icon-kqxs {
    background: url("../images/icon-xo-so.png") 0px center/21px 21px no-repeat;
    display: inline-block;
    line-height: 27px;
}

.cat-xo-so-item {
    background: url("../images/bg-xo-so.png") right top no-repeat;
}

/* FORM GỬI CÂU HỎI QA */
.form-ask .title-qa,
.question-filter .head {
    font-size: 16px;
    text-transform: uppercase;
}

.form-ask input[type="text"] {
    width: 100%;
    padding: 5px 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 5px 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.form-ask textarea {
    width: 100%;
    padding: 3px 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 5px 0;
    height: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.form-ask .qa-check {
    margin-top: 5px;
}

.form-ask button {
    border: none;
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
    background: #0388d1;
    margin-bottom: 20px;
}

/* kqxs */
.kqxs {
    width: 100%;
    border: 1px solid #ebebeb;
    border-collapse: collapse;
}

.kqxs td {
    border: 1px solid #ebebeb;
}

.kqxs .kqxs-head {
    font-size: 20px;
    line-height: 40px;
    font-weight: bold;
    background-color: #ebebeb;
    text-align: center;
}

.kqxs .kqxs-row:hover {
    background-color: #ffffde;
}

.kqxs .kqxs-row:first-child .number {
    color: red;
}

.kqxs .prize {
    font-size: 14px;
    width: 80px;
    text-align: center;
    border-left: 1px solid #cccccc;
    padding: 8px 8px;
    text-align: left;
    vertical-align: middle;
    cursor: pointer;
}

.kqxs .number-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.kqxs .number {
    display: inline-block;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    border-right: 1px solid #cccccc;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.kqxs-filter .js-datepicker {
    background: url(../images/icon-calendar.png) right 12px center no-repeat;
    padding-left: 10px;
}

.kqxs-filter .filter-head {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.kqxs-filter .region {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.5;
    color: #0388d1;
}

.filter-date {
    margin-top: 8px;
    width: 100px;
    height: 25px;
}

/* hoi dap chinh sach */
.bd-grey {
    border: 1px solid #ebebeb;
}

.bg-yellow {
    background-color: #fffeec;
}

.cat-title {
    margin-bottom: 10px;
}
.bx-cat-three .cat-title {
    margin-bottom: 20px;
}

.catname {
    font-weight: 700;
    font-size: 22px;
    color: #007bd9;
}

.qa-check>div {
    margin-top: 5px;
}

.qa-article .article-title {
    font-size: 16px;
}

/* infographics */
.page-infographics .topbar {
    height: 66px;
    background: #ED2F38;
    background: linear-gradient(90deg, rgba(237, 47, 56, 1) 0%, rgba(237, 47, 56, 1) 40%, rgba(252, 187, 113, 1) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-white {
    line-height: 0;
    margin-left: 22px;
}

.logo-infographics {
    margin-bottom: 4px;
    padding: 50px 0px 27px;
    line-height: 82px;
    font-size: 82px;
    font-weight: bold;
    color: #6a6a6a;
    text-align: center;
    text-shadow: 5px 9px #f0f0f0;
    border-bottom: 4px solid #b8b8b8;
}

.cat-list-grid3 .article:first-child {
    width: 100%;
    background-color: #f9f4f4;
    margin-bottom: 20px;
    overflow: hidden;
    flex-direction: row;
}

.cat-list-grid3 .article:first-child .article-content {
    padding: 15px 20px 15px 0px;
    height: calc(100% - 16px);
    overflow-y: hidden;
}

.cat-list-grid3 .article:first-child .article-image {
    width: 525px;
    float: left;
    margin-right: 20px;
}

.cat-list-grid3 .article-image::before {
    padding-top: 56.25%;
}
.cat-list-grid3 .article-title {
    font-size: 16px;
}
.cat-list-grid3 .article:first-child .article-title {
    font-size: 24px;
}

.cat-list-grid3 .article:not(:first-child) {
    width: calc((100% - 2*20px) / 3);
    margin-left: 20px;
    float: left;
}

.cat-list-grid3 .article:nth-child(3n+2) {
    margin-left: 0;
    clear: left;
}
.article-bdt-20 .article {
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
    margin-top: 20px;
}
.article-bdt-20 .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.page-infographics .article-cat {
    display: inline-block;
}

/* .page-infographics .article-image::before {
    padding-top: 56.25%;
} */
/* video */
/* fix jw-player video 16:9*/
.video-frame img,
.video-frame iframe {
    width: 100%;
    height: 100%;
}

.video-frame {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    margin-bottom: 15px;
}

.video-frame .videoWrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.jw-video {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: none !important;
    transform: none !important;
    top: 0;
    left: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.__MB_YOUTUBE_VIDEO_EMBED {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    font-weight: bold;
    font-family: 'Noto Serif';
    font-size: 32px;
    margin-top: 10px;
}

.video-desc {
    font-family: 'Noto Serif';
    font-size: 18px;
}

.video-meta {
    margin: 10px auto;
    font-size: 12px;
    color: #999;
}

.video-views {
    padding-left: 25px;
    background: url("../images/video/icon-eye.png") 0px center no-repeat;
    color: #262626;
}

.video-catname {
    color: #ed1c24;
    text-transform: uppercase;
}

.video-catname::before {
    content: ' | ';
    color: #999;
}

.video .catname {
    font-size: 30px;
    font-weight: 800;
}
.share-post {
    margin-left: 5px;
}
.video-email {
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
    vertical-align: -1px;
    background: #007bd9 url(../images/video/ico-mail-white.png) 6px 4px no-repeat;
    padding-left: 26px;
    background-size: 15px;
}
.bdt-grey {
    border-top: 1px solid #ebebeb;
    padding-top: 10px;
}
.catname-blue::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 16px;
    background-color: #eb2327;
    margin-right: 9px;
}
.cat-grid-3 .article {
    width: calc((100% - (3 - 1) * 20px - 1px) / 3);
    float: left;
    margin-left: 20px;
    margin-top: 20px;
}

.cat-grid-3 .article:nth-child(3n + 1) {
    margin-left: 0;
    clear: left;
}

.cat-grid-3 .article:nth-child(-n + 3) {
    margin-top: 0;
}
.icon-play-small {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #007bd9 url(../images/video/ico-video.png) center center no-repeat;
    background-size: 12px;
}
.icon-podcasts {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #007bd9 url(../images/video/ico-podcast.png) center center no-repeat;
    background-size: 18px;
}

.ico-duration {
    display: block;
    height: 24px;
    line-height: 24px;
    padding: 0 5px;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 24px;
    background: #959595;
    font-size: 14px;
}
.cat-grid-3 .hidden {
    display: none;
}
.cat-grid-3 .article-meta, .cat-grid-3 .article-desc {
    display: none;
}
.cat-grid-3 .article-title {
    font-size: 16px;
}
/*podcast detail */
.podcast-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .podcast-detail .podcast-thumb {
    width: 526px;
    position: relative;
  }
  
  .podcast-detail .podcast-thumb::before {
    content: '';
    display: block;
    padding-top: 56.25%;
  }
  
  .podcast-detail .podcast-thumb .podcast-image {
    display: block;
    position: absolute;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
  }
  
  .podcast-detail .podcast-content {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 296px;
    padding: 15px;
    background-color: #f2f2f2;
    position: relative;
  }
  
  .podcast-detail .podcast-player {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  
  .podcast-detail .svg-player-background {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .podcast-detail .podcast-title {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .podcast-detail .podcast-desc {
    overflow-y: auto;
    font-size: 14px;
    height: 97px;
  }
  
  .podcast-detail .podcast-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
  }
  
  .visually-hidden {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
  
  .bx-podcasts-player{position: absolute;left: 0;bottom: 0;}
.pcast-play {width: 60px;height: 60px;display: block;position: absolute;left: 20px;bottom: 40px;border-radius: 100%;border: 0;font-size: 24px;color: #fff;outline: none;text-align: center;line-height: 60px;cursor: pointer;background: #bfbfbf url(../images/podcast/pod-play.png) center center no-repeat;background-size: 20px;}
.pcast-pause{width: 60px;height: 60px;display: block;position: absolute;left: 20px;bottom: 40px;border-radius: 100%;border: 0;font-size: 24px;color: #fff;outline: none;text-align: center;line-height: 60px;cursor: pointer;background: #bfbfbf url(../images/podcast/pod-pause.png) center center no-repeat;background-size: 20px;}
._MB_PODCASTS_STATISTICS{display: none;}
.pcast-rewind{display: none;}
.pcast-progress {position: absolute;left: 0;bottom: 0;width: 100%;box-shadow: none;outline: none;vertical-align: unset;height: 6px;z-index: 9;line-height: 0;border-radius: 0;}
.pcast-progress::-webkit-progress-bar{background: #ebebeb;}
.pcast-progress::-webkit-progress-value{background: #c3c3c3;}
.pcast-currenttime {color: #c3c3c3;position: absolute;left: 20px;bottom: 10px;}
.pcast-duration{color: #c3c3c3;position: absolute;right: 20px;bottom: 10px;}
.pcast-mute {display: block;position: absolute;right: 20px;bottom: 36px;border: 0;outline: none;cursor: pointer;font-size: 16px;color: #c3c3c3;background: none;width: 24px;height: 24px;}
.pcast-mute-on {background: url(../images/podcast/pod-mute-on.png) center center no-repeat;background-size: 20px;}
.pcast-mute-off {background: url(../images/podcast/pod-mute-off.png) center center no-repeat;background-size: 20px;}
.pcast-speed {display: block;position: absolute;right: 50px;bottom: 40px;border: 0;outline: none;cursor: pointer;color: #c3c3c3;background: none;}
.svg-player-background{position: absolute;bottom: 0;left: 0;width: 100%;}
.grid-events {border-top: 1px solid #ebebeb;background-color: #f6f6f6;padding: 15px 0;margin-top: 20px;margin-bottom: -40px;}
.bx-events .cat-name {border-bottom: 0;color: #007bd9;padding-bottom: 0;}
.event-slides {overflow: hidden;}
.event-slides.slick-dotted {margin: 0px -10px;padding-bottom: 30px;}
.event-slides .article-title {font-size: 14px;margin-top: 10px;}
.event-slides .slick-slide {margin: 0px 10px;}
.event-slides .slick-dots {left: 50%;bottom: 0;position: absolute;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.event-slides .slick-dots li {
    width: 9px;
    height: 9px;
}
.event-slides .slick-dots li button {
    background-color: #e1e1e1;
    width: 9px;
    height: 9px;
    margin: 2px;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
}

.event-slides .slick-dots .slick-active button {
    background-color: #f00;
}

.event-slides .slick-dots li button::before {
    content: none;
}
.w830 {
    width: 830px;
}
.w320 {
    width: 320px;
}
.p10 {
    padding: 10px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px;
}

.pt10 {
    padding-top: 10px;
}

.mt5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: -10px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}
/* bx-one tin noi bat*/
.bx-one .article {
    width: 100%;
    float: left;
    border-top: 1px solid #ebebeb;
    padding-top: 18px;
    margin-top: 18px;
}
.bx-one .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.bx-one .article-meta {
    margin-top: 10px;
}

.bx-one .article:not(:first-child) .article-meta {
    display: none;
}
.bx-one .article-image {
    width: 91px;
    margin-right: 22px;
    float: left;
    margin-bottom: 0;
}
.bx-one .article:first-child .article-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
}
.bx-one .article:not(:first-child) .article-image::before {
    padding-top: 100%;
}
.bx-one .article-meta {
    margin-top: 10px;
}
/* .bx-one .article-title {
    color: #007bd9;
} */
.bx-one .article:not(:first-child) .article-title {
    font-weight: 400;
}
/* footer */
.footer-body {
    margin-top: 40px;
    background-color: #f3f3f3;
    padding: 22px 0 30px;
    position: relative;
}

.footer-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 7px;
    background: #810202;
    background: linear-gradient(90deg, rgba(129, 2, 2, 1) 0%, rgba(236, 28, 36, 1) 100%);
}

.footer-menu {
    align-items: flex-start;
    column-gap: 70px;
}

.part-ft-menu,
.navigation {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    flex-shrink: 0;
    flex-grow: 0;
}

/* .navigation {
    width: calc(100% / 5);
} */
.part-ft-menu {
    width: calc(100% / 4);
    display: flex;
    border-left: 1px solid #e1e1e1;
    padding-left: 55px;
}

.link-navigation {
    font-weight: 700;
}

.footer-main {
    border-top: 1px solid #e1e1e1;
    margin-top: 30px;
    padding-top: 30px;
    column-gap: 36px;
}

.footer-logo img {
    mix-blend-mode: multiply;
    width: 367px;
    height: auto;
}

.footer-left {
    flex-shrink: 0;
    flex-grow: 0;
}

.footer-text {
    margin-top: 10px;
}

.footer-text p {
    margin-top: 5px;
    line-height: 1.6;
}

.list-social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 5px;
    padding: 12px 0 18px;
}

.list-social a {
    background: url(../images/pc/social.png) 0 0 no-repeat;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.list-social a:first-child {
    background-position: 0 0;
}
.list-social a:nth-child(2) {
    background: url(../images/pc/social-zalo.png) 0 0 no-repeat;
}
.list-social a:nth-child(3) {
    background-position: -33px 0;
}

/* .list-social a:nth-child(3) {
    background-position: -66px 0;
}

.list-social a:nth-child(4) {
    background-position: -99px 0;
} */

.footer-contact {
    margin-top: 10px;
}

.footer-contact a,
.footer-contact span {
    text-transform: uppercase;
}

.footer-contact a {
    color: #c33;
}

.footer-contact span::before {
    content: '|';
    padding-right: 5px;
}

.footer-more {
    display: flex;
    column-gap: 15px;
    margin-top: 25px;
}

.footer-more img {
    mix-blend-mode: multiply;
    height: 26px;
}
.footer-more img[alt="Đấu thầu"] {
    margin-top: 3px;
}
.footer-more img[alt="VIR"] {
    margin-top: 5px;
}
.footer-cms a {
    display: block;
    padding: 20px 0;
}

.mobile-button {
    display: none;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    background: #ed1b24;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 12px;
    z-index: 9999;
}

.mobile-button>svg {
    vertical-align: -7px;
}

@media screen and (max-width: 900px) {
    .mobile-button {
        display: block;
    }
}
.article-title .icon-live::after {
    content: 'Trực tiếp';
    margin: 5px;
  }
  .article-detail-info .icon-live {
    margin-bottom: 10px;
  }
  .icon-live {
    display: inline-block;
    padding: 3px 5px;
    border-radius: 5px;
    background-color: #fff;
    color: #ed3237;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
    line-height: 1em;
    font-size: 14px;
    vertical-align: middle;
  }
  
  .icon-live::after {
    content: 'Trực tiếp';
    margin: 5px;
  }
  
  .icon-live::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #f00;
    border-radius: 50%;
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
  }
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(231, 141, 141, 0.4);
              box-shadow: 0 0 0 0 rgba(231, 141, 141, 0.4);
    }
    70% {
      -webkit-box-shadow: 0 0 0 10px rgba(231, 141, 141, 0);
              box-shadow: 0 0 0 10px rgba(231, 141, 141, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(231, 141, 141, 0);
              box-shadow: 0 0 0 0 rgba(231, 141, 141, 0);
    }
  }
  
  @keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(231, 141, 141, 0.4);
              box-shadow: 0 0 0 0 rgba(231, 141, 141, 0.4);
    }
    70% {
      -webkit-box-shadow: 0 0 0 10px rgba(231, 141, 141, 0);
              box-shadow: 0 0 0 10px rgba(231, 141, 141, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(231, 141, 141, 0);
              box-shadow: 0 0 0 0 rgba(231, 141, 141, 0);
    }
  }
  