﻿﻿@import url("https://fonts.googleapis.com/css?family=Inconsolata");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --roboto-font: "Inconsolata";
    --white: #ffffff;
    --category-border: #EEEEEE;
    --border-gray: #B0B5D5;
    --border-blue: #3D4897;
    --deep-red: #920818;
    --bg-blue: #0C2252;
    --red: #DE192C;
    --gray: #EDEDED;
    --txt-gray: #5C5C5C;
    --txt-black: #181818;
    --txt-blue: #3D4897;
    --side-bar-bg: #F9F9F9;
    --content-border: #7C7B7B;
    --main-blue: #0261B5;
}

.home-page *:is(a,span,h1,h2,h3,h4,h5,p) {
    font-family: var(--roboto-font);
}

.disabled {
    cursor: -webkit-grab;
    cursor: grab;
    /*  pointer-events: none !important;*/
}

.scroll {
    overflow-y: scroll;
}

    .scroll::-webkit-scrollbar {
        width: 3px;
        height: 5px;
    }

    .scroll::-webkit-scrollbar-thumb {
        background: rgba(143,143,143,.35);
        border-radius: 5px;
    }

    .scroll::-webkit-scrollbar-track {
        background: none;
    }

.active {
    border-bottom: 2px solid #3a53a4;
    position: relative;
}

.active_nav {
    color: #3E4CAC;
    border-bottom: 2px solid #3E4CAC;
}

/* START: header */
.mobile-item{
    display: none;
}

.top-header {
    background-image: url('../image/header.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

    .top-header > * {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .top-header .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .top-header .logo .text_logo {
            vertical-align: middle;
            font: 900 1.125rem/1.688rem var(--roboto-font);
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 0px;
        }

    .top-header .logo img {
        height: 60px;
    }

.footer-page-logo img {
    height: 60px;
}

.top-header .controll {
    display: flex;
}

        .top-header .controll .navbar-nav {
            flex-direction: row;
        }

            .top-header .controll .navbar-nav > * {
                margin-right: 18px;
            }

            .top-header .controll .navbar-nav .nav-item:last-child {
                margin-right: 0px;
            }

        .top-header .controll .search-box {
            display: none;
        }

.search_web input {
    display: none;
    background-color: #F2F2F2;
    color: #B1B1B1;
    font-size: 14px;
    /*border-radius: 20px;*/
    border: 0;
    margin-right: 5px;
    text-align: center;
    height: 30px;
}

.main-nav {
    position: sticky;
    top: 0px;
    z-index: 100;
    width: 99vw !important;
    border-bottom: 3px solid var(--main-blue);
    margin-left: 50%;
    transform: translate3d(-50%, 0, 0);
    background-color: #fff;
}

    .main-nav .menu {
        /*border-bottom: 3px solid var(--main-blue);*/
        background-color: #fff;
    }

    .main-nav ul {
        padding-left: 0px;
        margin-bottom: 0px;
        list-style: none;
        display: flex;
    }

    .main-nav .menu > ul {
        height: 47px;
        overflow: hidden;
        /*flex-wrap: wrap;*/
        flex-direction: row;
    }

    .main-nav > .menu > ul > li {
        /*flex-shrink: 1;*/
        /*flex-grow: 1;*/
        white-space: nowrap;
    }

        .main-nav > .menu > ul > li .dropdown-menu {
            position: absolute;
            top: unset;
            left: unset;
        }

        .main-nav > .menu > ul > li > a {
            display: block;
            height: 47px;
            color: #222;
            text-decoration: none;
            text-transform: uppercase;
            font: 600 14px/1.4 var(--roboto-font);
            text-wrap: nowrap;
            line-height: 47px;
        }

        .main-nav > .menu > ul > li > a  > h2{
            display: block;
            height: 47px;
            color: #222;
            text-decoration: none;
            text-transform: uppercase;
            font: 600 14px/1.4 var(--roboto-font);
            text-wrap: nowrap;
            line-height: 47px;
        }

        .main-nav > .menu > ul > li:nth-child(n+2) > a {
            padding-left: 6px;
        }

        .main-nav > .menu > ul > li:nth-last-child(n+2) > a {
            padding-right: 6px;
        }

    .main-nav .dropdown-menu .list-item a {
        padding: 8px 15px;
        display: block;
        text-decoration: none;
        text-wrap: nowrap;
        color: #222;
        border-bottom: solid 1px #e9e9e9
    }

    .main-nav .dropdown-menu .list-item a h2{
        display: block;
        text-decoration: none;
        text-wrap: nowrap;
        color: #222;
        font-size: 14px
    }

    .main-nav > .menu > ul > li .dropdown-search {
        display: none;
        position: absolute;
        left: auto;
        padding: 8px;
        width: 200px;
    }

    .main-nav ul li a:hover {
        color: var(--main-blue) !important;
    }

    .main-nav ul li a h2:hover {
        color: var(--main-blue) !important;
    }

    .main-nav .sub-menu {
        background-color: #fafafa;
        box-shadow: 0 0 0 100vmax #fafafa;
        clip-path: inset(0 -100vmax);
        padding: 15px 0px;
        position: absolute;
        top: 100%;
        height: calc(100vh - 165px);
        overflow: auto;
        width: 100%;
        display: none;
        right: 0;
        left: 0;
    }

        .main-nav .sub-menu::-webkit-scrollbar {
            background-color: transparent;
            width: 5px;
        }

        .main-nav .sub-menu::-webkit-scrollbar-thumb {
            background-color: #E5E5E5;
            border-radius: 2px;
            visibility: hidden;
        }

        .main-nav .sub-menu:hover::-webkit-scrollbar-thumb {
            visibility: visible;
        }

        .main-nav .sub-menu .search-box {
            position: relative;
            margin-top: 15px;
            height: 36px;
            display: flex;
            align-items: stretch;
            margin: 10px 15px 15px;
            border: 1px solid #ddd;
            background-color: #fff;
            border-radius: 18px;
        }

            .main-nav .sub-menu .search-box input {
                background-color: transparent;
                width: calc(100% - 30px);
                margin-right: 15px;
                margin-left: 15px;
                border: none;
            }

            .main-nav .sub-menu .search-box .icon {
                background-color: transparent;
                border: none;
                display: flex;
                align-items: center;
                padding-right: 10px;
            }

    .main-nav .header-menu {
        border-bottom: 1px solid #E5E5E5;
        background-color: #ececec;
        display: flex;
        padding: 15px;
    }

        .main-nav .header-menu .tag {
            width: calc(100% / 3);
        }

            .main-nav .header-menu .tag svg {
                margin-right: 6px;
            }

            .main-nav .header-menu .tag a {
                display: flex;
                align-items: center;
                padding: 5px 0;
                font: 400 13px/1.4 var(--main-font),Arial;
                color: #525252;
                text-decoration: none;
                text-transform: uppercase;
            }

    .main-nav .category-menu {
        margin-top: 25px;
    }

        .main-nav .category-menu ul {
            padding-left: 0px;
            margin-bottom: 0px;
        }

        .main-nav .category-menu > ul {
            display: flex;
            flex-wrap: wrap;
        }

            .main-nav .category-menu > ul > li {
                --col-num: 5;
                --pad: 100px;
                width: calc((100% - var(--pad)) / var(--col-num));
                padding-bottom: 15px;
                margin-bottom: 10px;
                margin: 0px 10px 10px;
                border-bottom: 1px solid #ddd;
            }

        .main-nav .category-menu a {
            text-decoration: none;
            color: #222;
            font: 400 14px/1.3 var(--main-font),Arial;
        }

        .main-nav .category-menu .title {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .main-nav .category-menu > ul > li > ul {
            display: flex;
            flex-direction: column;
        }

            .main-nav .category-menu > ul > li > ul > li > a {
                margin: 4px 0px;
                display: block;
            }

    .main-nav .sub-menu .close {
        position: absolute;
        top: 25px;
        left: -45px;
        background-color: transparent;
        border: none;
    }

*:has(>.dropdown-menu):hover .dropdown-menu {
    display: block;
}

.dropdown-menu.dropdown-menu {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    left: 0;
    top: 100%;
    border-radius: 0px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-menu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    padding-left: 0px;
}

.dropdown-menu .list-item > * {
    font: 400 14px/1.4 var(--main-font),Arial;
}

.dropdown-search.dropdown-search {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    left: 0;
    top: 100%;
    border-radius: 0px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-search .form-control {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    padding-left: 0px;
}

.dropdown-search .form-control {
    font: 400 14px/1.4 var(--main-font),Arial;
}
/* END: header */

.banner-navbar {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
}

.navbar-brand {
    font-weight: bold;
    text-transform: uppercase;
}

.view {
    text-shadow: -1px -1px 0 white, 0 -1px 0 white, 1px -1px 0 white, 1px 0 0 white, 1px 1px 0 white, 0 1px 0 white, -1px 1px 0 white, -1px 0 0 white;
}

.view-count {
    margin-top: 380px;
    margin-left: 1015px;
}

.nav-link, .navbar-brand, .view-count {
    color: #f0f0f0;
    /*text-shadow: -1px -1px 0 white, 0 -1px 0 white, 1px -1px 0 white, 1px 0 0 white, 1px 1px 0 white, 0 1px 0 white, -1px 1px 0 white, -1px 0 0 white;*/
    font-weight: 600;
}

    .navbar-brand img {
        height: 50px;
    }

.nav-user {
    margin-top: 30px
}

.navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .navbar-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

.nav-user .nav-item {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-item .icn {
    height: 24px;
    display: flex;
    margin-bottom: 10px;
}

.navbar-nav .nav-item .txt {
    font-size: 13px;
    line-height: 15px;
    font-family: Roboto-Regular;
    color: #003366;
}

    .navbar-nav .nav-item .txt a {
        color: white;
        font-size: 14px;
    }

#home-page > nav {
    display: flex;
    flex-direction: column;
}

.daknong-menu ul {
    display: contents;
    flex-direction: row;
    text-transform: uppercase;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 !important;
    text-align: center;
}

    .daknong-menu ul li a {
        content: "";
        font-size: 13.5px;
        line-height: 16px;
        text-transform: uppercase;
        font-weight: bold;
        color: #2f3438;
        font-family: Roboto-Medium;
    }

        .daknong-menu ul li a:hover {
            color: #3E4CAC;
            border-bottom: 2px solid #3E4CAC;
        }

.daknong-menu {
    padding: 0 !important;
    background: #F9F9F9;
    width: 100%;
    height: 50px;
    margin-top: 10px;
}

.daknong-navbar {
    width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0px 0px 0px;
}

.menu_toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .menu_toggle .menu_toggle_icon {
        display: block;
        width: 30px;
        height: 30px;
        position: relative;
        opacity: .8;
        cursor: pointer;
        transition: opacity .3s;
    }

        .menu_toggle .menu_toggle_icon i {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #75757a;
            position: absolute;
            left: 0;
            transition: all .3s;
        }

.toggle .line-1 {
    transform: rotate(-45deg) translate(-6px,5px);
}

.toggle .line-2 {
    opacity: 0;
}

.toggle .line-3 {
    transform: rotate(45deg) translate(-3px);
}

.expand-bar {
    display: none !important;
}

.efftoptobot {
    background: #f9f9f9;
    box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
    padding: 35px;
    border-top: 2px solid #3a53a4;
    z-index: 9;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(66%);
    transition: height 2s;
    position: absolute;
    top: -200px;
    animation: .2s toptobot linear;
    display: block;
}

    .efftoptobot #search-form {
        padding: 20px 16px;
        background: #f9f9f9;
    }

.box-search {
    background: #fff;
    border: 1px solid #e9e9e9;
    box-sizing: border-box;
    border-radius: 8px;
    width: 100%;
    height: 35px;
    display: flex;
}

    .box-search input {
        width: calc(100% - 110px);
        border: none;
        font-family: Roboto-Regular;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 14px;
        color: #000;
        outline: none;
        padding: 0 10px;
        border-top-left-radius: 8px !important;
        border-bottom-left-radius: 8px !important;
    }

.search {
    font-family: Roboto-Medium;
    background: none;
    border: none;
    border-left: 1px solid #e9e9e9;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #75757a;
}

.efftoptobot .box-main {
    display: flex;
    padding: 20px 16px;
}

    .efftoptobot .box-main .expand-menu {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -12px;
        width: 100%;
    }

        .efftoptobot .box-main .expand-menu .navexpand-item {
            width: 20%;
            padding: 0 12px;
            margin-bottom: 30px;
        }

            .efftoptobot .box-main .expand-menu .navexpand-item > .title {
                font-family: Roboto-Medium;
                font-size: 16px;
                line-height: 19px;
                color: #3a53a4;
            }

            .efftoptobot .box-main .expand-menu .navexpand-item .expand-items .item > .title {
                font-size: 14px;
                line-height: 16px;
                color: #666;
                margin-bottom: 9px;
            }

.icon_search {
    font-family: Roboto-Medium;
    background: none;
    border: none;
    border-left: 1px solid #e9e9e9;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #75757a;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none !important;
    /*color: black !important;*/
}

.top-page {
    background: #0C2252;
}

.highlight-top {
    display: flex;
    width: 1320px;
    padding: 30px 0 30px 0;
    margin-right: auto;
    margin-left: auto;
}

    .highlight-top .highlight-swiper .mySwiper {
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

        .highlight-top .highlight-swiper .mySwiper .swiper-wrapper {
            height: 730px;
            z-index: 5;
            position: relative;
        }

.highlight-swiper {
    padding-right: 15px;
    width: 70%;
}

.padding-left-10 {
    padding: 0 10px;
}

.highlight-column {
    width: 30%;
    height: 730px;
    background: #3E4CAC;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.highlight-column-img {
    display: none;
}

.text-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

video {
    width: 100%;
}

.content .content-created {
    opacity: 0.6;
    color: #B7BAC4;
}

.content {
    padding: 15px;
    background: #3E4CAC;
    height: 280px;
}

.top-radius {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 396px;
}

.top-radius-bottom {
    display: none;
}

.swiper-img {
    width: 100%;
    height: 100%;
    max-height: 559px;
}

.highlight-column div > img {
    height: 200px;
    width: 100%;
}

.highlight-column-txt {
    font-size: 20px;
    line-height: 28px;
    padding-left: 10px;
    display: -webkit-box;
    color: #fff;
    font-family: SVN-Avo-Regular;
}

.highlight-column-txt-bottom {
    font-size: 20px;
    line-height: 28px;
    padding-left: 20px;
    display: -webkit-box;
    color: #c9cacb;
    font-family: SVN-Avo-Regular;
}

.content .content-title {
    font-weight: 600;
    font-size: 26px;
    text-align: initial;
}

    .content .content-title a {
        color: #fff;
        font-family: "Merriweather",serif;
    }

.content-description {
    text-align: initial;
    color: #F2F2F2;
}

ul {
    padding-left: 0px !important;
}

    ul li {
        color: white
    }

.mySwiper-bottom .swiper-slide {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    display: flex;
    flex-direction: column;
    background: #3E4CAC;
    margin-bottom: 30px;
}

.highlight-bottom {
    width: 1320px;
    margin-right: auto;
    margin-left: auto;
}

.mySwiper-bottom .swiper-button-next {
    color: #fff;
}

.mySwiper-bottom .swiper-button-prev {
    color: #fff;
}

.p-13 {
    font-size: 12px;
    line-height: 20px;
    padding: 5px;
    opacity: 0.9;
}

.btn-home {
    margin-top: 30px;
    margin-left: 5px;
}

.btn-Vid {
    margin-right: 10px;
    color: #fff;
    font-weight: bold;
    padding: 10px 40px;
    background: #2B43E6;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    height: auto;
}

.btn-Rad {
    color: #2032A9;
    font-weight: bold;
    padding: 10px 40px;
    background: #C9C1BC;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    height: auto;
}

.home-body {
    margin-top: 30px;
}

.home-body {
    padding: 0 15px;
}

    .home-body .hot-news div img {
        padding: 10px
    }

    .home-body .col-md-6 {
        padding: 10px;
    }

        .home-body .col-md-6 ul {
            padding-top: 10px;
        }

    .home-body .hot-news div ul li p {
        color: black !important;
    }

    .home-body .hot-news div ul li hr {
        color: black !important;
    }

    .home-body .hot-news {
        background: #F4F4F4;
    }

.fw-not-bold {
    opacity: 0.7;
    font-size: 14px;
}

.ads {
    padding-top: 30px;
}

.news-list {
    padding: 30px 4.5px;
}

    .news-list .list-item {
        height: auto;
        padding-top: 20px;
    }

.news-list-title {
    background: #F4F4F4;
    padding: 6px 10px 10px 10px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .01em;
    color: black !important;
    font-weight: bold;
    overflow: hidden;
    opacity: 0.8;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    border: 1px solid #e9e9e9;
    height: 50px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.news-list div img {
    display: flex;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 129px;
}

.news-list
.txt {
    opacity: 0.6;
}

/*.card-svg {
    position: absolute;
    transform: translate(260%, -230%);
    color: white;
    opacity: .8;
    z-index: 1000;
}*/

.body-title {
    font-size: 22px;
    line-height: 29px;
    color: #3a53a4;
    font-weight: bold;
}

.btn-body-tags {
    margin-bottom: 20px;
    color: #15258C;
    font-weight: bold;
    padding: 10px 40px;
    background: #F4F4F4;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    height: auto;
}

.body-tags {
    margin-top: 30px
}

    .body-tags .mySwiper-body-tags .swiper-wrapper .swiper-slide > a {
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        border: 1px solid #e9e9e9;
        padding: 10px;
        width: 100%;
        /*height: 67px;*/
        color: black !important;
    }

.mySwiper-body-tags .swiper-button-next {
    color: #c4c4c4;
}

.mySwiper-body-tags .swiper-button-prev {
    color: #c4c4c4;
}

.p-15 {
    font-size: 15px;
}

.list-group {
    overflow-y: scroll !important;
    height: 495px;
}

    .list-group .list-group-item {
        font-size: 13px;
        padding: 4px;
        background: #0C2252;
        color: white;
    }

    .list-group::-webkit-scrollbar-track {
        background-color: rgb(228, 215, 215);
    }

    .list-group::-webkit-scrollbar {
        width: 6px;
        background-color: rgb(158, 29, 29);
    }

    .list-group::-webkit-scrollbar-thumb {
        background-color: #882222 !important;
    }

.list-group-item {
    border-bottom: 1px solid white !important;
}

    .list-group-item.active2 {
        background: red !important;
        font-family: bold;
    }

    .list-group-item.active3 {
        background: red !important;
        font-family: bold;
    }

.live {
    background: #0C2252;
    padding: 20px;
}

.live-web {
    background: #0C2252;
    padding: 20px;
}

#countdown-div {
    position: absolute;
    top: 68%;
    left: 41%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: .8;
    z-index: 1000;
}

.live-mobile {
    display: none;
}

#selectedDate {
    background: #3E4CAC;
    border: none;
}

.time-prev {
    margin-right: 190px;
    position: absolute;
    z-index: 10;
}

.time-next {
    margin-left: 190px;
    position: absolute;
    z-index: 10;
}

.mySwiper-live {
    margin-top: 20px;
}

    .mySwiper-live .swiper-wrapper .swiper-slide {
        background: #3E4CAC;
        height: 170px;
        font-size: 13px;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

        .mySwiper-live .swiper-wrapper .swiper-slide > a {
            width: 100%;
            border-bottom-right-radius: 5px;
            border-bottom-left-radius: 5px;
        }

            .mySwiper-live .swiper-wrapper .swiper-slide > a > img {
                border-top-right-radius: 5px;
                border-top-left-radius: 5px;
            }

.new-newsest {
    color: black;
    margin-top: 30px !important;
}

.list-group-new-newsest {
    margin-top: 12px;
    margin-bottom: -10px;
    border-top: 1px solid #e9e9e9;
}

.new-newsest .col-md-6 > ul {
    background: #F4F4F4;
    border-top: 1px solid #e9e9e9;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

    .new-newsest .col-md-6 > ul > li {
        padding: 5px 10px 0 10px;
    }

.new-newsest .col-md-6 ul {
    border: 2px solid #e9e9e9;
}

.list-category > div > ul > li {
    color: black !important;
    border-bottom: 1px solid #e9e9e9 !important;
    background: #F4F4F4;
}

.list-category > div > ul {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background: #F4F4F4;
}

    .list-category > div > ul .img {
        padding: 0px !important;
    }

    .list-category > div > ul > li > a > h3 {
        font-size: 20px;
        line-height: 22px;
        color: #3a53a4;
        font-weight: bold;
        font-family: UTM-Colossalis;
        display: flex;
    }


.title-category {
    color: #2f3438 !important;
    font-size: 16px;
    line-height: 22px;
    font-family: Roboto-Medium;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.footer-page {
    background: #1B1F24;
}

    .footer-page > ul > li {
        display: flex;
        justify-content: center;
        padding-top: 10px;
    }

.footer-page-logo {
    margin-bottom: 5px;
}

.footer-page-name {
    font-weight: bold;
}

.list-category {
    padding-top: 10px;
}

.top-data {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

    .top-data.subject {
        background: none;
        width: 100%;
    }

    .top-data .top-data_wrapper {
        position: relative;
    }

.storgare-title {
    background: #0C2252;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

    .storgare-title .body-title {
        font-size: 18px;
    }

.storgare-input {
    display: flex;
    justify-content: center;
}

    .storgare-input > div {
        padding: 10px;
        width: 400px
    }

.left-box-title {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: .2px;
    text-transform: uppercase;
    font-family: Roboto-Medium;
    color: #2f3438;
    margin-bottom: 10px;
}

.storgare-body .storgare-body-timeline .left-box .swiper .swiper-wrapper .swiper-slide {
    border: 1px solid #e9e9e9;
    box-sizing: border-box;
    border-radius: 5px;
    height: auto !important;
    width: 100px;
    padding: 15px;
}

.left-box {
    width: 100px
}

.time-txt {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .2px;
    color: #3a53a4;
    font-family: Roboto-Regular;
    margin-left: 4px;
    margin-top: 4px;
    display: block
}

.pg-name {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #333;
    font-family: Roboto-Regular;
}

.storgare-description {
    display: flex;
    justify-content: space-between;
}

.share > ul {
    display: flex;
}

.storgare-body-item {
    background: #F4F4F4;
    border-radius: 5px;
    margin-bottom: 30px;
}

.storgare-description {
    padding: 0 20px 20px;
}

.storgare-tag {
    display: none;
}

.share .list-ul .list-li {
    padding-left: 10px
}

.left-box {
    padding-top: 50px
}

.storgare-img {
    padding: 20px;
}

    .storgare-img .video-js {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.storgare-body .storgare-body-timeline .content > p {
    color: black !important;
}

.storgare-body .categorydetail-body-timeline {
    color: black !important;
    border-radius: 5px;
}

    .storgare-body .categorydetail-body-timeline .content {
        border: 1px solid #e9e9e9;
        color: #F2F2F2;
        background: #F4F4F4;
    }

        .storgare-body .categorydetail-body-timeline .content a {
            color: #343434;
            margin-bottom: 15px;
            font-family: Roboto-Medium;
            font-size: 26px;
        }

        .storgare-body .categorydetail-body-timeline .content p {
            color: #999;
            font-size: 15px;
            line-height: 22px;
            font-family: Roboto-Regular;
        }

    .storgare-body .categorydetail-body-timeline .top-radius {
        width: 100%;
        max-height: 454px
    }

.categorydetail-body-content {
    margin-top: -50px !important;
    border-radius: 5px
}

.categorydetail-center {
    display: flex;
    flex-direction: column;
    height: 700px;
}

    .categorydetail-center > ul > li > span {
        color: black;
        padding: 10px 5px 1px 10px;
    }

    .categorydetail-center > ul > li > a > img {
        width: 100%;
        max-height: 129px
    }

.title-categorydetail-center {
    padding: 0 10px;
    color: #343434
}

    .title-categorydetail-center:hover {
        color: #343434;
    }

.categorydetail-center > ul {
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    /*height: 700px;
        margin-bottom:0px !important;*/
}

.categorydetail-top > div {
    height: 700px;
}

.categorydetail-top-swiper {
    width: 600px
}

.mySwiper-live-1 .swiper-wrapper .swiper-slide {
    margin-top: 20px;
    height: 160px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

    .mySwiper-live-1 .swiper-wrapper .swiper-slide > a > img {
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
    }

    .mySwiper-live-1 .swiper-wrapper .swiper-slide > a {
        width: 100%;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

.mySwiper-live-1 {
    margin-top: 20px;
}

.live-related .col-md-12 .list-body .body-title {
    padding-top: 30px;
}

.newsdetail-title {
    background: #0C2252;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.newsdetail-content {
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.newsdetail-top-content {
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.newsdetail-content .newsdetail-top-content .body-title {
    font-size: 22px;
    line-height: 29px;
    color: #3a53a4;
    margin-right: 0px;
    font-weight: bold;
}

.newsdetail-body-content {
    padding-top: 20px;
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    /*margin-right: auto;*/
}

.audio-box {
    margin-top: 20px;
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 20px;
    min-height: 40px;
}

    .audio-box audio {
        width: 70%;
    }

    .audio-box .icon {
        margin-left: auto;
    }

    .audio-box .icon .option {
        border: none;
        background: #f1f5f9;
        margin-left: 10px;
    }

.newsdetail-title-img {
    padding-top: 10px;
    height: 50%;
    width: 50%;
    margin: 0 auto;
    font-size: 12px;
}

.newsdetail-center {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.newsdetail-center-info p {
    color: black;
}

.sourse-tag {
    margin: 0 auto;
    margin-top: 20px;
}

.icon-tag {
    padding: 4.5px 10px;
    background: #999;
    border-radius: 4px;
    align-items: center;
}

.hagtag {
    padding: 6px 10px;
    background: #FFFFFF;
    border: 1px solid #C9C1BC;
    border-radius: 3px;
    align-items: center;
    margin-left: 12px;
    font-size: 13px;
    line-height: 18px;
}

.block-comment {
    margin: 0 auto;
    margin-top: 20px;
    font-size: 12px;
    overflow: hidden;
    clear: both;
}

.comment-box {
    padding: 10px 20px;
    background: #F4F4F4;
    border-radius: 4px;
    height: auto;
}

.cmt-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
    font-size: 25px;
    margin-bottom: 15px;
    text-transform: none;
    font-weight: bold;
    color: #15258C;
}

.txt-cmt {
    flex-direction: column;
    display: flex;
}

#txtName {
    width: 100%;
    height: 30px;
    padding-left: 15px;
}

#txtComment {
    width: 100%;
    height: 100px;
    padding-left: 15px;
    padding-top: 10px;
}

.w-full {
    width: 100%;
}

.btnsend {
    text-align: right;
    padding: 20px 0 20px 0;
}

.button-comment {
    color: #fff;
    padding: 10px 30px;
    background: #15258C;
    border-radius: 3px;
    text-align: center;
    font-size: 12px;
    height: auto;
}
/*Search index*/
.bar-toggle {
    background: #f9f9f9;
    height: 600px;
    border-top: 2px solid #0c2252;
    padding: 24px;
}

.search-form {
    background-color: #fff;
    border-radius: 5px;
}

.search-input {
    padding: 4px;
    width: 100%;
}

.btn-search {
    color: #75757a;
    border: none;
}
/**/
.top-video {
    background: #0C2252;
}

.highlight-videodetail {
    display: flex;
    width: 1320px;
    padding: 30px 0 30px 0;
    margin-right: auto;
    margin-left: auto;
    height: 478px;
}

.screen-live {
    position: relative;
    z-index: 5;
    width: 60%;
    display: flex;
    background: #000;
}

.live-info {
    height: 446px;
    width: 40%;
    background: #3E4CAC;
    z-index: 5;
    flex-direction: column;
    box-sizing: border-box;
}

    .live-info .title {
        font-size: 28px;
        line-height: 35px;
        color: #fff;
        font-family: SVN-Avo-Bold;
        padding: 15px 15px 0px 15px;
    }

    .live-info .date {
        margin: 12px 0;
        color: #C4C4C4;
        font-family: SVN-Avo;
        font-size: 14px;
        padding-left: 15px;
    }

    .live-info p {
        font-family: SVN-Avo-Regular;
        font-size: 16px;
        line-height: 27px;
        color: #fff;
        padding: 0px 15px 0px 15px;
    }

    .live-info .block-comment {
        padding: 0px 15px 10px 15px;
        font-size: 12px;
        overflow: hidden;
        clear: both;
    }

        .live-info .block-comment .comment-box {
            padding: 10px 20px 0px 20px;
            background: #F4F4F4;
            border-radius: 4px;
            height: auto;
        }

            .live-info .block-comment .comment-box .cmt-title {
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-bottom: none;
                font-size: 20px;
                margin-bottom: 5px;
                text-transform: none;
                font-weight: bold;
                color: #15258C;
            }

    .live-info .txt-cmt {
        flex-direction: column;
        display: flex;
    }

    .live-info #txtName {
        width: 100%;
        height: 30px;
        padding-left: 15px;
    }

    .live-info #txtComment {
        width: 100%;
        height: 50px;
        padding-left: 15px;
        padding-top: 10px;
        resize: none;
    }

    .live-info .w-full {
        width: 100%;
    }

    .live-info .btnsend {
        text-align: right;
        padding: 20px 0 20px 0;
    }

    .live-info .button-comment {
        color: #fff;
        padding: 10px 30px;
        background: #15258C;
        border-radius: 3px;
        text-align: center;
        font-size: 12px;
        height: auto;
    }

.top-video .highlight-bottom {
    padding-top: 20px;
}

.videodetail-body .col-md-12 .list-body .body-title {
    padding-top: 20px;
}

.videodetail-body .news-list {
    padding: 10px 0px 30px 0px;
}

.dropbtn {
    font-size: 13.5px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: #2f3438 !important;
    font-family: Roboto-Medium;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 200px;
    z-index: 99999;
    margin-top: 11px;
}

    .dropdown-content a {
        color: black;
        font-size: 12px;
        font-weight: 600;
        padding: 10px;
        text-decoration: none;
        display: flex;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
}

.daknong-navbar {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 !important;
    text-align: center;
    height: 35px;
    margin-top: 10px
}

/*LiveRadio*/
.btn-liveRad {
    margin-top: 30px;
}

.btn-StoRad {
    color: #15258C;
    font-weight: bold;
    padding: 8px 60px;
    background: #E7E7E7;
    border-radius: 3px;
    text-align: center;
    font-size: 16px;
    height: auto;
}

.body-stograge-rad {
    padding: 0px;
}
/*Mobile*/
.header_wrapper {
    display: none;
}

.sticky-toolbar {
    display: none;
}

.header-mobile {
    display: none;
}
/*ScrollToTop*/
#_back2top {
    background: rgba(0,0,0,0.03);
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 66px;
    color: #3a53a4;
    opacity: 0;
    transition: ease .2s;
    pointer-events: none;
}

    #_back2top.active_1 {
        opacity: 1;
        pointer-events: auto;
        bottom: 80px;
    }
/*LiveHot*/
.highlight-livehot {
    display: flex;
    width: 1320px;
    padding: 30px 0 30px 0;
    margin-right: auto;
    margin-left: auto;
}

    .highlight-livehot .highlight-swiper .mySwiper {
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

        .highlight-livehot .highlight-swiper .mySwiper .swiper-wrapper {
            height: 730px;
            z-index: 5;
            position: relative;
        }

.swiper-livehot {
    padding-right: 25px;
    width: 90%;
}

.livehot-timeline {
    width: 10%;
}

.vjs-poster {
    box-shadow: none !important;
}

.vjs-quality-menu-item-sub-label {
    display: none !important
}

.txt-video {
    font-size: 28px;
    line-height: 39px;
    letter-spacing: .01em;
    color: #2f3438;
    font-family: Roboto-Medium;
    margin-bottom: 15px;
}

.navbar-brand span {
    font-size: 16px !important
}

/*Khám phá*/
.aspect-16-9 {
    position: relative;
    display: block;
}

    .aspect-16-9::before {
        content: '';
        display: block;
        width: 100%;
        padding-bottom: 56.25%;
    }

.aspect-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover {
    margin-bottom: 0px;
}

.discover-top:nth-child(1) {
    margin-top: -50px !important;
}

.discover-top {
    padding-bottom: 20px;
}

.discoverCategory-top {
    padding-top: 20px;
}

.box-discovercate {
    padding-bottom: 32px;
}

.discover-top > .parent-item {
    padding-right: 0px;
    padding-left: 20px;
}

    .discover-top > .parent-item > .item {
        border-radius: 10px;
        overflow: hidden;
    }

        .discover-top > .parent-item > .item > .style_height {
            max-height: 240px;
        }

        .discover-top > .parent-item > .item > .img-frame > .title-frame {
            position: absolute;
            background-color: rgba(202, 222, 241, 0.70);
            color: #FFFFFF;
            font-size: 16px;
            opacity: 90%;
            padding: 10px 24px;
            bottom: 0;
            width: 100%;
        }

            .discover-top > .parent-item > .item > .img-frame > .title-frame > .item-category {
                color: #0261B5;
                font-size: 12px;
                font-family: Roboto-Medium;
            }

            .discover-top > .parent-item > .item > .img-frame > .title-frame > .item-title {
                color: #000;
                font-size: 16px;
                font-family: Roboto-Medium;
                font-weight: 600;
            }

.item_20 {
    padding-bottom: 20px;
}

.discover_title {
    display: flex;
    position: relative;
}

    .discover_title > h3 {
        color: #0C2252;
        font-size: 24px;
        font-family: Roboto-Medium;
        font-weight: 600;
        /*margin-bottom: 0px;*/
    }

    .discover_title > .discover_all {
        right: 0;
        position: absolute;
        color: #0261B5;
        font-size: 16px;
        font-family: Roboto-Medium;
        font-weight: 600;
    }


.banner-ads {
    position: fixed;
    right: calc(100% - 84%) !important;
    top: 0px;
    z-index: -1;
    width: 300px !important;
}

.item_20 > .item_box > .parent-box > .item > .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.item_20 > .item_box > .parent-box > .item > .title-box > .big {
    min-height: 0px !important;
}

.item_20 > .item_box > .parent-box > .item > .title-box > .item-title {
    padding: 8px 0;
    color: #383838;
    font-size: 16px;
    font-family: Roboto-Medium;
    font-weight: 600;
    min-height: 65px;
    display: block;
}

.item_20 > .item_box > .parent-box > .item > .title-box > .item-description {
    padding: 0 0 8px 0;
    color: #8A8A8A;
    font-size: 16px;
    font-family: Roboto-Medium;
    font-weight: 400;
}

.item_20 > .item_box > .parent-box > .item > .title-box > .item-category > .title-nameCategory {
    color: #0261B5;
    font-size: 14px;
    font-family: Roboto-Medium;
    font-weight: 400;
}

.item_20 > .item_box > .parent-box > .item > .title-box > .item-category > .schedule {
    color: #383838;
    font-size: 14px;
    font-family: Roboto-Medium;
    font-weight: 400;
}

.item_20 > .item_box > .parent-box-right > .item {
    display: flex;
    /*flex-wrap: wrap;*/
    margin: 0;
    padding: 0;
    list-style: none;
    padding-bottom: 30px;
}

    .item_20 > .item_box > .parent-box-right > .item > .img-box {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        margin-right: 8px;
    }

    .item_20 > .item_box > .parent-box-right > .item > .title-box {
        width: 100%;
        max-width: 100%;
    }

        .item_20 > .item_box > .parent-box-right > .item > .title-box > .item-title {
            color: #383838;
            font-size: 16px;
            font-family: Roboto-Medium;
            font-weight: 700;
        }

        .item_20 > .item_box > .parent-box-right > .item > .title-box > .item-category > .title-nameCategory {
            color: #0261B5;
            font-size: 14px;
            font-family: Roboto-Medium;
            font-weight: 400;
        }

        .item_20 > .item_box > .parent-box-right > .item > .title-box > .item-category > .schedule {
            color: #383838;
            font-size: 14px;
            font-family: Roboto-Medium;
            font-weight: 400;
        }



@media only screen and (max-width:1300px) {
    .banner-ads {
        right: calc(100% - 94%) !important;
        z-index: -1;
        width: 280px !important;
    }
}

@media only screen and (min-width:1300px) and (max-width:1400px) {
    .banner-ads {
        right: calc(100% - 93%) !important;
        z-index: -1;
        width: 280px !important;
    }
}

@media only screen and (min-width:1400px) and (max-width:1480px) {
    .banner-ads {
        right: calc(100% - 93%) !important;
        z-index: -1;
        width: 280px !important;
    }
}

/*@media only screen and (max-width:1480px) {
    .banner-ads {
        right: calc(100% - 91%) !important;
        z-index: -1;
        width: 280px !important;
    }
}*/

@media only screen and (min-width: 1480px) and (max-width:1580px) {
    .banner-ads {
        right: calc(100% - 91%) !important;
        z-index: -1;
        width: 300px !important;
    }
}

@media only screen and (min-width: 1580px) and (max-width:1700px) {
    .banner-ads {
        right: calc(100% - 89%) !important;
        z-index: -1;
        width: 300px !important;
    }
}

@media only screen and (min-width: 1700px) and (max-width:1800px) {
    .banner-ads {
        right: calc(100% - 86%) !important;
        z-index: -1;
        width: 300px !important;
    }
}

.footer-page {
    z-index: 99;
    position: relative
}

@media only screen and (max-width: 60em) {
    header {
        position: relative;
        z-index: 99999999;
    }

    .mobile-item {
        display: block;
    }

    .top-header .logo .text_logo{
        display: none;
    }

    .top-header .controll .navbar-nav {
        display: none;
    }

    .top-header .mobi-nav button {
        background-color: var(--bg-blue);
    }

    .top-header .live-btn, .top-header .search-box, .top-header .mobi-nav button {
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #B0B5D533;
    }

    .top-header .controll .search-box {
        display: block;
        justify-content: center;
        align-items: center;
    }

        .top-header .controll .search-box button {
            border: none;
            background-color: #fff0;
            outline: none;
            margin-top: 5px;
        }

    .main-head, .main-nav {
        width: 100vw;
        margin-left: 50%;
        transform: translate3d(-50%, 0, 0);
        z-index: 9999999;
    }

        .main-nav .menu {
            max-width: 738px;
            margin: 0 auto;
            overflow: auto;
            padding-bottom: 1px;
            background-color: #fff;
            border: none;
        }

            .main-nav .menu > ul {
                flex-wrap: nowrap;
                overflow: unset;
            }

        .main-nav > .menu > ul > li:last-child{
            display: none;
        }
}
