@font-face {
    font-family: 'NotoSans-Regular';
    src: url('./fonts/Noto_Sans/NotoSans-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'UTM-AvoBold';
    src: url('./fonts/UTMAvo/UTM_AvoBold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Merriweather-Bold';
    src: url('./fonts/Merriweather-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Merriweather-Regular';
    src: url('./fonts/Merriweather-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('./fonts/Inter/Inter-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('./fonts/Inter/Inter-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter-Thin';
    src: url('./fonts/Inter/Inter-Thin.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSerif-Bold';
    src: url('./fonts/NotoSerif-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSerif-Regular';
    src: url('./fonts/NotoSerif-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Nova-Thin';
    src: url('./fonts/mark/MarkSimonsonProximaNovaThin.otf');
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    background-color: #fbfafa;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

.container {
    width: 95.83%;
    margin: 0 auto;
}

.d-flex {
    display: flex;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.text-alight-center {
    text-align: center;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

img,
svg {
    vertical-align: middle;
}

img {
    max-width: 100%;
}

.alight-item-center {
    display: flex;
    align-items: center;
}

.pt-5 {
    padding-top: 5px;
}

.pt-12 {
    padding-top: 15px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.b {
    font-family: 'Inter-Bold', sans-serif;
}

.article {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 3px;
}

.article-image::before {
    padding-top: 66%;
    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-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.article-link {
    font-family: 'Merriweather-Bold', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.article-link:hover,
.item-options-link:hover {
    color: #ed3237!important;
}

.article-date {
    font-size: 14px;
    color: #d6d6d6;
    font-family: 'Merriweather-Regular', sans-serif;
}

.article-about .article-date.date- {
    padding-left: 5px;
}

.date-::before {
    content: "-";
    color: #dbdbdb;
    font-weight: 400;
    padding-right: 5px;
    font-family: 'Merriweather-Bold', sans-serif;
}

.article-desc {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 16px;
    color: #666666;
}

.article-cat {
    text-transform: uppercase;
    font-family: 'Merriweather-Regular', sans-serif;
    color: #1e9b8d;
    line-height: 1.4;
    font-size: 12px;
}

/* header */

.header-logo {
    margin-bottom: 10px;
}

.header-top {
    margin-top: 7px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
}

.header-top .header-left {
    gap: 25px
}

.header-phone {
    background: url(../images/phone.png) left no-repeat;
    background-size: 15px 15px;
    padding-left: 20px;
    height: 19px;
    display: inline-block;
    font-family: 'NotoSans-Regular', sans-serif;
    color: #aaaaaa;
}

.header-date {
    background: url(../images/calendar.png) left no-repeat;
    background-size: 14px 14px;
    padding-left: 20px;
    display: inline-block;
    font-family: 'NotoSans-Regular', sans-serif;
    color: #aaaaaa;
}

.header-social {
    display: flex;
    gap: 7px;
}

.header-nav {
    background: #1e9b8d;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}

.header-menu {
    width: 90%;
    display: flex;
    align-items: center;
    list-style-type: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 0;
}

.header-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.home-item {
    background: url(../images/home.png) left no-repeat;
    background-size: 15px 15px;
    padding-left: 15px;
    padding-top: 15px;
    cursor: pointer;
    margin-right: 0px;
}


.dropdown .menu-item {
    width: 50px;
    height: 50px;
    color: #fff;
    background: #d79e1b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item {
    position: relative;
    display: block;
}


.header-search-mb.active {
    opacity: 1;
    visibility: visible;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.header-search-mb-wrapper {
    position: absolute;
    top: 46px;
    left: 0px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: white;
    z-index: 9999;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: flex;
    align-items: center;
}

.header-search-mb-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.main-menu-special {
    position: absolute;
    top: 46px;
    left: 0px;
    width: 100%;
    background: white;
    z-index: 9999;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: flex;
    align-items: center;
    display: none;
}

.main-menu-special.active {
    opacity: 1;
    visibility: visible;
}

.header-search-mb {
    display: flex;
    justify-content: end;
    padding: 10px 0;
}

#frmSearch {
    position: relative;
    overflow: hidden;
    font-size: 13px;
    width: 100%;
    height: 40px;
    float: right;
    padding: 0 16px;
    border: 0 none;
    border-radius: 20px;
    border: 1px solid #ebebeb;
}

#frmSearch input[type="text"] {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
}

#frmSearch button[type="submit"] {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 8px;
    background: #1d8b7f;
    border-radius: 20px;
    margin-right: 6px;
}

.main-menu-special .main-menu-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 0 none;
    border-bottom: 1px solid #ebebeb;
    padding: 15px 0;
}

.main-menu-special .main-menu-item:last-child {
    border-bottom: 0px solid #ebebeb;
}

.sub-col-cat {
    display: none;
}

.navigation-link {
    font-family: 'Inter-Bold', sans-serif;
    font-size: 16px;
    color: black;
    text-transform: uppercase;
}

.rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.link-subrow-cat {
    margin: 10px;
}

.link-subrow-cat a {
    font-size: 17px;
    color: #999;
}

/* .link-subrow-cat a:hover, .navigation-link:hover {
    margin-left: 3px;
    text-decoration: underline;
} */

.header-nav .nav-item {
    font-family: 'RobotoCondensed', sans-serif;
    text-transform: uppercase;
    padding: 15px 10px 10px;
    color: #303e82;
    transition: all .2s ease-in-out;
}

.nav-item a {
    font-size: 14px;
    color: white;
    font-family: 'UTM-AvoBold';
}

.nav-item.home {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px 0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item.home:hover {
    background: #fff;
}


.sub-menu {
    background: #ebebeb;
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 2;
    display: none;
}

.icon-dot {
    background: url(../images/dot.png) center no-repeat;
    width: 41px;
    height: 9px;
    background-size: contain;
    display: block;
    cursor: pointer;
}

.icon-close {
    background: url(../images/close.png) center no-repeat;
    width: 41px;
    height: 9px;
    background-size: contain;
    display: block;
    cursor: pointer;
}

.nav {
    position: relative;
}

.icon-right {
    /* position: absolute;
    right: 0; */
    height: 100%;
    background-color: #1e9b8d;
}

.menu-select {
    background-color: #1d8b7f;
    height: 46px;
    align-items: center;
    display: flex;
}

.icon-close {
    background: url(../images/close.png) center no-repeat;
    width: 41px;
    height: 9px;
    background-size: contain;
    display: block;
    cursor: pointer;
}

.i-search {
    background: url(../images/m-search.png) center no-repeat;
    width: 41px;
    height: 16px;
    background-size: contain;
    display: block;
    cursor: pointer;
}

.icon-search {
    height: 100%;
    align-items: center;
    display: flex;
}

.box-coverage .cat-content{
    display: grid;
    column-gap: 30px;
    row-gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}

.box-coverage  .cat-content .article:first-of-type {
    display: grid;
    grid-row: 1;
    grid-column: 1 / 3;
}

.box-coverage  .cat-content .article:first-of-type .article-link {
    font-size: 26px;
}

.box-new .cat-content{
    display: grid;
    column-gap: 30px;
    row-gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}

.box-list .article {
    display: grid;
    grid-template-columns: auto 153px;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid #ebebeb;
    margin-top: 25px;
}

.box-list.index .article:first-child {
    border-top: 0px;
    padding-top: 0px;
}

.box-list .article .article-image {
    order: 1;
}


.box-list .article-link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.back-emag {
    background-color: #1e9b8d;
    padding-top: 10px;
    position: relative;
}

.back-white {
    width: 100%;
    height: 50px;
    background: url(../images/back-white.png) center no-repeat ; 
    background-color: #fbfafa;
    background-size: 100% 100%;
    position: absolute;
    bottom:  -1px;
    border-top: 1px solid white;

}

.back-green {
    width: 100%;
    height: 100%;
    background-color: #1e9b8d;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0px;
    border-top: 1px solid white;
}

.box-emag {
    width: 97.91%;
    margin-right: 0;
}

.box-emag .article-image::before {
    padding-top: 170%;
}
.box-emag .article-image {
    border-radius: 10px;
}

.box-emag .article .article-content {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.box-emag .cat-content {
    z-index: 1;
}

.box-emag .article .article-title {
    padding: 0 40px;
    text-align: center;
    min-height: 200px;
}

.box-emag .article .article-link {
    color: white;
    font-size: 20px;
    line-height: 1.8;
}

.box-emag .article {
    position: relative;
}

.box-emag .article .article-link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-emag .article .article-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgb(0 0 0 / 60%) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.box-emag .title-emag {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-family: 'Nova-Thin', sans-serif;
    font-size: 90px;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    white-space: nowrap;
}

.box-emag .article-title {
    position: relative;
}

.box-emag .article-content {
    position: absolute;
    top: 45%;
}

.box-emag .article:hover {
    opacity: 0.8;
}

.box-emag .article .article-link:hover{
    color: white !important;
}

.box-emag .article-title::after {
    content: '';
    background-color: #e20613;
    width: 91px;
    height: 1px;
    position: absolute;
    z-index: 3;
    bottom: -6px;
    transform: translateX(-50%);
}

.box-emag .article::after {
    content: '';
    background: url(../images/shadow.png) top -5px center no-repeat;
    background-size: 100% 100%;
    width: 112%;
    margin: 0 -17px;
    height: 15px;
    display: inline-flex;
    transform: translateY(-15px);
}

.box-emag .bx-viewport {
    height: max-content !important;
    z-index: 1;
}

.bx-wrapper {
    background-color: #fbfafa !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; 
    border: 0px solid #fff !important;
    margin-bottom: 20px!important; 
}


.bx-pager-link.active {
    background-color: #1e9b8d !important;
    border-radius: 50px;
}


.bx-pager-link {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #cccccc;
    margin: 0 2px;
    cursor: pointer;
    border: none;
    display: block;
}

.bx-wrapper .bx-pager{
    bottom: -10px !important;
    padding-top: 0px !important;
}

.next {
    display: flex;
    justify-content: center;
    right: 15px;
}

.prev {
    display: flex;
    justify-content: center;
    left: 15px;
}

.ic-arr {
    width: 60px;
    height: 60px;
    content: "/f054";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}

.i-prev {
    background: url(../images/rt-l.png) left no-repeat;
    background-size: 60px 60px;
    padding-left: 60px;
    padding-top: 60px;
    cursor: pointer;
}

.i-next {
    background: url(../images/rt-r.png) left no-repeat;
    background-size: 60px 60px;
    padding-left: 60px;
    padding-top: 60px;
    cursor: pointer;
}


.border-top {
    border-top: 1px solid #ebebeb;
}

.cat-title {
    align-items: baseline;
}

.cat-link {
    font-family: 'Merriweather-Bold',sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-size: 400;
    color: #1e9b8d;
}

.cat-link.detail {
    font-size: 18px;
    font-family: 'Inter-Bold',sans-serif;
}

.bd {
    position: relative;
}

.bd::after {
    content: '';
    background: #1e9b8d;
    width: 30px;
    height: 4px;
    position: absolute;
    bottom: -15px;
    left: 0;
}

.bd- {
    position: relative;
}

.bd-::after {
    content: '';
    background: #1e9b8d;
    width: 56px;
    height: 4px;
    position: absolute;
    bottom: -15px;
    left: 0;
}

.bt {
    position: relative;
}

.bt::before {
    content: '';
    background: #ed1c24;
    width: 80%;
    height: 1px;
    position: absolute;
    top: -19px;
    left: 0;
}

.cat-options {
    align-items: center;
}

/* .cat-options .item-options {
    padding-left: 30px;
}

.cat-options .item-options-sub {
    padding-left: 30px;
} */

/* .auto-nav-more-list .item-options-sub {
    padding: 8px;
} */

.auto-nav-more-list .item-options-sub .item-options-link::before{
    content: '';
}

.auto-nav-more-list .item-options-sub:last-child .item-options-link {
    border-bottom: 0px solid #f4f1f1;
}



.cat-options.sub .item-options {
    display: none;
}

.category-tit {
    position: relative;
}

.category-tit .auto-nav-more {
    position: absolute;
    right: 0;
}

.category-tit .item-options-link.active {
    color: #ed1c24;
}

.item-options-link {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Merriweather-Regular', sans-serif;
    color:  #1e9b8d;
    position: relative;
}

/* .cat-options .item-options-link::before {
    content: "";
    background: #1e9b8d;
    width: 4px;
    height: 4px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Merriweather-Regular', sans-serif;
    position: absolute;
    top: 8px;
    left: -13px;
} */

.auto-nav-more {
    position: relative;
    margin-top: 5px;
    padding-left: 20px !important;
}

.auto-nav-more:hover .auto-nav-more-list {
    opacity: 1;
    visibility: visible;
}

.auto-nav-more-list {
    position: absolute;
    right: 0;
    opacity: 1;
    visibility: hidden;
    transition: 0.2s;
    text-align: right;
    padding: 0;
    list-style: none;
    background: white;
    border-radius: 4px;
    z-index: 2;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* .auto-nav-more-list .item-options {
    padding: 8px;
} */

.auto-nav-more-list .item-options .item-options-link::before{
    content: '';
}

.auto-nav-more-list .item-options-link {
    width: 250px;
    display: flex;
    justify-content: flex-start;
    padding: 15px 10px;
    border-bottom: 1px solid #f4f1f1;
}

.auto-nav-more-list .item-options:last-child .item-options-link {
    border-bottom: 0px solid #f4f1f1;
}

.i-dropdown {
    background: url(../images/i-drop.png) left no-repeat;
    background-size: 16px 8px;
    padding-left: 16px;
    padding-top: 8px;
    cursor: pointer;
}

.box-infor .cat-content .article:first-child .article-link {
    font-size: 20px;
}

.box-infor .cat-content .article:nth-child(n+2) {
    gap: 5px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #b4b3b3;
}

.box-infor .cat-content .article:nth-child(n+3) .article-image, .box-infor .cat-content .article:nth-child(n+2) .article-desc, .box-infor .cat-content .article:nth-child(n+2) .article-meta {
    display: none;
}

.box-infor .cat-content .article:nth-child(n+3) .article-link {
    font-family: 'Merriweather-Regular',sans-serif;
    font-weight: 400;
}

.box-infor .cat-content .article:nth-child(2) {
    display: grid;
    grid-template-columns: auto 153px;
    gap: 20px;
}

.box-infor .cat-content .article:nth-child(2) .article-content {
    order: -1;
}


.back-multimedia {
    background-color: #1e9b8d;
    padding: 20px 0 30px;
}

.box-multimedia-link {
    font-size: 26px;
    font-family: 'Inter-Thin',sans-serif;
    text-transform: uppercase;
}

.multimedia-bold {
    font-family: 'Inter-Bold',sans-serif;
}

.cat-options-multi .item-options-link {
    font-family: 'Merriweather-Bold';
    padding-left: 20px;
}

.cat-options-multi .item-options:first-of-type .item-options-link {
    padding: 0;
}


.cat-options-multi {
    padding-left: 10px;
}

.box-multimedia-tit {
    align-items: baseline;
    position: relative;
}

.box-multimedia-fl {
    font-family: 'Merriweather-Regular',sans-serif;
    right: 0;
    bottom: 5px;
    position: absolute;
    color: white;
}

.box-multimedia-fl img{
    transform: translateY(-4px);
    padding-left: 10px;
}

.box-multimedia .cat-content {
    display: grid;
    column-gap: 30px;
    row-gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}

.box-multimedia .cat-content .article:first-of-type {
    display: grid;
    grid-row: 1;
    grid-column: 1 / 3;
}

.box-multimedia .cat-content .article:nth-child(n+2) .article-desc{
    display: none;
}

.box-multimedia .cat-content .article:first-child .article-link {
    font-size: 24px;
}

.box-multimedia .cat-content .article-link {
    color: white;
}

.box-multimedia-link {
    color: white;
}

.box-multimedia .article-desc {
    color: #131313;
}

/* .box-multimedia-link::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #ed1c24;
} */

@media screen and (max-width: 400px) {
    .box-multimedia-fl span {
        display: none;
    }
}

.cat-options-multi {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #24a597; 
}

.box-infographics .slick-arrow {
    display: none !important;
}

.box-infographics .article-link {
    font-size: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-infographics .article-content {
    text-align: center;
    align-items: center;
    margin-top: 15px;
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    transform: translateY(50%);
}

.slick-dots button {
    font-size: 0;
    /* Ẩn đi số */
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e1e1e1;
    margin: 0 3px;
    cursor: pointer;
    border: none;
}

.slick-dots li {
    width: unset !important;
    margin: 0 !important;
}

.slick-dots li.slick-active button {
    background-color: #1e9b8d;
}

.slick-dots li button:before {
    content: none !important;
}

.box-infographics .cat-content {
    position: relative;
}

.box-infographics .cat-content::after {
    content: '';
    background: url(../images/line.png) center  no-repeat;
    width: 100%;
    height: 1px;
    display: inline-flex;
    position: absolute;
    bottom: -35px;
}


.box-video .article-image::before {
    padding-top: 58%;
    content: '';
    display: block;
}

.box-video-left .article {
    gap: 0;
}

.box-video-left .article {
    position: relative;
    margin-bottom: 20px;
}

.box-video-left .article-link {
    color: white;
    font-size: 18px;
}

.box-video-left .article-title{
    margin-left: 20px;
    margin-bottom: 15px;
    background: url(../images/play.png) no-repeat left top 0px / 21px 21px;
    background-size: 65px 66px;
    padding: 0 20px 0 80px;
    cursor: pointer;
    min-height: 70px;
    align-items: center;
    display: flex;
}

.box-video-left .article-link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-video-left .article-content {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.box-video-left .article-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.box-video-right {
    height: 335px;
    overflow: auto;
    margin-top: 25px;
}

.box-video-right .article {
    display: grid;
    grid-template-columns: auto 153px;
    grid-column-gap: 25px;
    margin-bottom: 25px;
}

.box-video-right .article .article-content {
    order: -1;
}

.box-video-right .article:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0px;
}


.box-video-right::-webkit-scrollbar {
    width: 1px;
}
  
.box-video-right::-webkit-scrollbar-track {
    background: #ebebeb;
}
  
.box-video-right::-webkit-scrollbar-thumb {
    background: #1e9b8d;
    border-radius: 10px;
}

.box-social .article:first-child .article-link {
    font-size: 18px;
}

.box-social .article:first-child .article-content {
    text-align: center;
    align-items: center;
}

.box-social .article:nth-child(n+2) {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ebebeb;
}

.box-social .article:nth-child(n+2) .article-image, .box-social .article:nth-child(n+2) .article-meta, .box-social-right .article-meta {
    display: none;
}

.box-social .article:first-child .article-date {
    color: #666666;
    font-family: 'Merriweather-Bold', sans-serif;
    font-size: 11px;
}

.box-read-most .cat-link {
    font-family: 'Inter-Bold',sans-serif;
}

.cat-link.red {
    color: #1e9b8d;
}

.box-read-most .cat-content .article {
    gap: 5px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #afc7c1;
}

.box-read-most .cat-content .article:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px dashed #afc7c1;
}

.box-read-most .article-date {
    position: relative;
    padding-left: 20px;
}

.box-read-most .article-date::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 7px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #1e9b8d;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.box-read-most .article-title {
    display: block;
    padding: 0 15px 0 20px;
}

.box-read-most {
    background: #f6f5ea;
}


footer {
    background-color: #f6f6f6;
    border-top: 1px solid #1e9b8d;
}

.f-a {
    padding: 30px 0 25px 0;
    position: relative;
}

.bold {
    font-family: 'NotoSerif-Bold',sans-serif !important;
    font-size: 16px;
    text-transform: uppercase;
    color: black !important;
    font-weight: 700;
}

.footer-about p {
    font-family: 'NotoSerif-Regular',sans-serif;
    color: #646464;
}

.footer-s span {
    font-family: 'NotoSerif-Bold',sans-serif !important;
    font-size: 16px;
    font-weight: 700;
}

.green {
    color: #1e9b8d;
}

.btn-send {
    color: white;
    background-color: #1e9b8d;
    padding: 5px 15px;
    border-radius: 3px;
    margin-right: 2px;
    margin-top: 15px;
}

.btn-send:hover {
    background-color: #c1cac8;
    color: #1e9b8d;
}


.social-item {
    width: 30px;
    height: 30px;
    background: #898786;
    border-radius: 34px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-item a {
    color: #fff;
    transform: translateY(1px);
}

.social-item a:hover {
    color: #ed1c24;
}

.social-item i {
    font-size: 18px;
}

.social {
    gap: 5px;
    margin-top: 15px;
}

.social .fa-facebook-f{
    font-size: 23px;
    transform: translateY(2.5px);
}

.master-cms {
    height: 50px;
    background-color:  white;
}

.master-cms a {
    color: #9d9d9d;
}


#goTop.show {
    opacity: 1;
    visibility: visible;
}

#goTop {
    display: flex;
    align-items: center;
    background: url(../images/go-top.png) no-repeat ; 
    background-size: 45px 45px;
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 5%;
    right: 10%;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

/* category */

.category-link {
    font-family: 'Merriweather-Bold';
    padding: 7px;
    background-color: #1e9b8d;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

.category-tit .cat-sub-link {
    margin-left: 20px;
    font-family: 'Merriweather-Regular', sans-serif;
}

.category-tit .cat-sub-link::before {
    content: "+";
    color: black;
    font-weight: 700;
    padding-right: 5px;
}

.b-r {
    border-bottom: 1px solid #ea1f28;
    padding-bottom: 20px;
    margin-bottom: 1px;
}

.t-r {
    border-top: 1px solid #ea1f28;
    padding-top: 25px;
}

.see-more {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.see-more .current {
    color: #666666;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    background: #e1e1e1;
    display: flex;
    align-items: center;
}

.see-more a {
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    background: #1e9b8d;
    display: flex;
    align-items: center;
}

.see-more .current.next {
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    background: #137066;
    display: flex;
    align-items: center;
}

/* detail */

.detail-title {
    font-family: 'Merriweather-Bold';
    font-size: 28px;
    color: black;
    font-weight: 400;
}

.auther-name {
    font-size: 14px;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 400;
    color: #1e9b8d;
}

.detail-date {
    color: #666666;
    font-size: 14px;
}

.article-about .article-date {
    font-size: 14px;
}

.detail-cat {
    font-family: 'Merriweather-Regular', sans-serif;
    text-transform: unset;
    color: #e20613;
}

.rt {
    margin-right: 2px;
}

.rt::after {
    content: "";
    background-color: #2e58ac;
    padding-left: 1px;
    margin-left: 7px;
}

.detail-desc {
    font-size: 18px;
    color: #000000;
    font-family: 'Inter-Bold', sans-serif;
}

.detail-body p,.detail-body p,.detail-body h2, .detail-body h3,.detail-body h4, .detail-body h5, .detail-body h6 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #444444;
}

.detail-body table {
    margin-bottom: 20px;
}

.detail-body p strong, .detail-body p b,.detail-body p h2, .detail-body p h3, .detail-body p h4 {
    font-family: 'Inter-Bold',sans-serif;
}

.part-tags {
    align-items: baseline;
    border-top: 1px solid #ebebeb ;
    padding-top: 10px;
}

.tags-title {
    background: url(../images/tag.png) no-repeat left top 4px ;
    padding-left: 30px;
    background-size: 20px 20px;
    height: 25px;
    font-size: 20px;
    color: #333333;
    margin-bottom: 5px;
    font-family: 'Inter-Bold',sans-serif;
    font-size: 16px;
    color: #333333;
    margin-right: 15px;
}


.tags-content .tags-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px 6px 10px;
    background: #ebebeb;
    border: 1px solid #d7d7d7;
    font-family: 'Inter-Regular',sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    margin-right: 2px;
}

.tags-content {
    display: flex; 
    flex-wrap: wrap;
}

.box-relate .cat-content {
    display: grid;
    column-gap: 30px;
    row-gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}

#user-comment {
    background-color: #1e9b8d;
    padding: 20px 0;
    border-radius: 3px;
}

#user-comment .box-comment .content {
    display: grid;
    grid-template-columns: 47px auto;
    gap: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

#user-comment .box-comment .content img {
    border-radius: 50px;
}

#user-comment .box-comment textarea {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding: 10px;
    outline: none;
    border: 0;
    border-radius: 4px;
    font-family: inherit;
    align-items: center;
}

#user-comment button {
    padding: 10px 46px;
    font-size: 14px;
    background: white;
    border-radius: 4px;
    border: none;
    color: #1e9b8d;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
}

#user-comment .content-button {
    display: flex;
    justify-content: flex-end;
}

.__API_WIDGET .box-reply{
    width: 95.83%;
    margin: 0 auto;
}

.motgame-heading {
    font-size: 26px;
    font-family: 'Inter-Bold', sans-serif;
    text-transform: uppercase;
    color: white;
    font-weight: 400;
}

.box-list.detail .article:first-of-type {
    padding-top: 0px;
    margin-top: 0px;
    border-top: 0px solid #ebebeb;
}


.same-topic {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.same-topic .cat-link {
    padding-bottom: 10px;
    font-family: 'Inter-Bold', sans-serif;
}

.same-topic .cat-link a {
    color: #137066;
}

.same-topic .cat-content .article {
    margin-bottom: 15px;
}

.same-topic .cat-content .article-link {
    font-weight: 400;
    font-family: 'Inter-Bold', sans-serif;
}

.same-topic .cat-content .article {
    position: relative;
    padding-left: 15px;
    gap: 10px;
}

.same-topic .cat-content .article::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #959f98;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.same-topic .cat-content .article::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 8px;
    bottom: -20px;
    width: 1px;
    left: 3px;
    background-color: #E5E5E5;
}

.same-topic .cat-content .article:last-child::after {
    content: none;
}


.bx-author-share a {
    display: inline-block;
    margin-left: 10px;
    background-image: url(../images/ico-author-share.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-size: 94px;
    opacity: .4;
}

.bx-author-email {
    background-position: -74px -27px;
}

.bx-author-twitter {
    background-position: -25px -27px;
}

.bx-author-facebook {
    background-position: 0 -27px;
}

.bx-author-rss {
    background-position: -50px -27px;
}

.box-multimedia .item-options-link {
    color: white;
}

.box-qc img {
    height: auto;
}

.pc-version {
    display: flex;
    justify-content: end;
    padding-bottom: 10px;
}

.pc-version a {
    color: white;
    background: #1e9b8d;
    padding: 5px 12px;
    border-radius: 20px;
}