﻿:root {
    --color-text-color: #fff001;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    text-rendering: optimizeSpeed;
}

body {
    color: #333;
    font: 400 15px arial;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #fff;
}

.bg-primary {
    background-color: #104382 !important;
}

h1, h2, h3, h4, h5, h6 {
    line-height: inherit;
    font-weight: inherit
}

a:focus {
    outline: 1 !important
}

a {
    color: inherit;
    text-decoration: none;
    outline: 1
}

    a:hover {
        text-decoration: none;
        color: #0064af;
    }

.cursor {
    cursor: pointer;
}

/* header */
header {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(50,50,50,0.33);
    -moz-box-shadow: 0px 0px 7px 0px rgba(50,50,50,0.33);
    box-shadow: 0px 0px 7px 0px rgba(50,50,50,0.33);
    min-height: 50px;
}

    header .bg-main-header {
        /*background-image: url(images/19366.png);*/
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 0 -22px;
    }
.logo-main {
    padding-top: 10px;
    padding-bottom: 10px;
}
    .logo-main .char-logo h3 {
        font-family: SegoeUI-Bold !important;
        color: #fff;
        font-size: 22px;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
        margin-top: -8px;
    }

    .logo-main .char-logo h5 {
        font-family: SegoeUI-Bold !important;
        color: var(--color-text-color);
        font-size: 30px;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    }

.bg-menu {
    background-color: #0064af;
}

.bg-yellow {
    background-color: #D48431;
}

.section {
    width: 100%;
    float: left;
}

.wrap-main-nav {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 999;
}

.main-nav {
    width: 100%;
    clear: both;
    font-size: 14px;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(.7,1,.7,1);
}

    .main-nav .menu-top {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex
    }

    .main-nav .menu-top {
        text-align: left;
        margin: 0 auto;
    }

        .main-nav .menu-top li {
            position: relative;
            font-weight: 600;
            color: var(--color-menu-text-color);
            transition-duration: 200ms;
            transition-property: color;
            transition-timing-function: cubic-bezier(.7,1,.7,1);
        }

            .main-nav .menu-top li:hover a {
                color: var(--color-menu-hover-color);
            }

            .main-nav .menu-top li a {
                padding: 0 5px;
                display: block;
                white-space: nowrap;
                line-height: 45px;
                border-right:1px solid #ffffff42;
                text-transform: uppercase;
            }
                .main-nav .menu-top li:first-child a{
                    padding-left:0;
                }
    .main-nav .sub li:first-child a {
        padding-left: 10px;
    }
    .main-nav .menu-top li.home {
        padding: 10px 10px;
    }

                .main-nav .menu-top li.home a {
                    justify-content: center;
                    padding: 0;
                    position: relative;
                    transition-duration: 300ms;
                    transition-property: all;
                    transition-timing-function: cubic-bezier(.7,1,.7,1);
                }

            .main-nav .menu-top li.active {
                background-color: #fff;
            }

                .main-nav .menu-top li.active a {
                    color: #0064af;
                    background-color: #fff;
                }

            .main-nav .menu-top li:hover > ul {
                opacity: 1;
                visibility: visible;
                top: 100%;
                border-top: 1px solid #0064af;
            }

            .main-nav .menu-top li ul li:hover > ul {
                opacity: 1;
                visibility: visible;
                top: 0;
                border-top: 1px solid #0064af;
            }

            .main-nav .menu-top li ul ul li:hover > ul {
                opacity: 1;
                visibility: visible;
                top: 0;
                border-top: 1px solid #0064af;
            }

    .main-nav .sub {
        min-width: 200px;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        z-index: 2;
        left: 0;
        top: calc(100% + 20px);
        box-shadow: 0 2px 8px rgba(0,0,0,.1);
        transition-duration: 200ms;
        transition-property: opacity,top,visible;
        transition-timing-function: cubic-bezier(.7,1,.7,1);
    }

        .main-nav .sub li {
            font-weight: 400;
            color: #222;
        }

            .main-nav .sub li a {
                padding: 7px 10px 7px 10px;
                color: #333 !important;
                border: none;
                line-height: 18px;
                text-transform: none;
            }

                .main-nav .sub li a:hover {
                    background-color: #0064af;
                    color: var(--color-text-color)!important;
                }

        .main-nav .sub ul {
            min-width: 200px;
            background: #fff;
            opacity: 0;
            visibility: hidden;
            position: absolute;
            z-index: 2;
            left: 100%;
            top: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,.1);
            transition-duration: 200ms;
            transition-property: opacity,top,visible;
            transition-timing-function: cubic-bezier(.7,1,.7,1);
        }

            .main-nav .sub ul ul {
                min-width: 200px;
                max-height: 250px;
                overflow: auto;
                background: #fff;
                opacity: 0;
                visibility: hidden;
                position: absolute;
                z-index: 2;
                left: 100%;
                top: 0;
                box-shadow: 0 2px 8px rgba(0,0,0,.1);
                transition-duration: 200ms;
                transition-property: opacity,top,visible;
                transition-timing-function: cubic-bezier(.7,1,.7,1);
            }

#searchbox {
    position: relative;
    width: inherit;
    height: inherit;
    padding: 0;
}

    #searchbox input {
        position: absolute;
        width: 150px;
        height: 34px;
        right: -1px;
        top: 5px;
        border-radius: 6px;
        background-color: #f98181;
        padding-left: 15px;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        opacity: 0;
        visibility: hidden;
        background-image: none;
        padding: 0 10px;
        border: none;
        color: #fff !important;
    }

#search_button {
    position: relative;
    top: 11px;
    right: inherit;
    width: inherit;
    height: inherit;
    cursor: pointer;
    outline: none;
    background: transparent;
    color: white;
    border: none;
    margin-left: 11px;
}

    #search_button i {
        font-size: 22px;
    }

.main-menu-bg {
    background-color: #0064af!important;
    /*background-image: linear-gradient(to right,#0064af,#0064af,#0064af,#1285dc,#1285dc);*/
    height: 45px;
}
/* end header */
/* slider */
.slider .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}
/* end slider */
/* menu tin tuc home */
.section-new .dropdown {
    position: relative;
    display: inline-block;
}

.section-new .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    right: 0;
    top: 25px;
    text-align: left;
}

.section-new .dropdown:hover .dropdown-content {
    display: block;
}

.section-new .list-inline-item:not(:last-child) {
    margin-right: 0;
}

a.banner-quangcao:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: #fff;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    z-index: 1;
}

a.banner-quangcao:hover:before {
    opacity: 0.2;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
/* end menu tin tuc home */
/* button */

/* end button */

.btnDetail {
    font-style: normal;
    font-weight: normal;
    align-items: center;
    text-align: center;
    background: #BEC2C7;
    color: #000;
    padding: 5px 10px !important;
    border: 0px solid #BEC2C7;
}

    .btnDetail:hover, .btnsignup:hover {
        -webkit-transition: background-color 0.5s ease 0s;
        -moz-transition: background-color 0.5s ease 0s;
        -o-transition: background-color 0.5s ease 0s;
        transition: background-color 0.5s ease 0s;
        background: #104382;
        color: #fff !important;
    }

#myTabHome li:first-child {
    position: absolute;
    left: 15px;
    top: 5px;
}

#myTabHome .nav-link.active {
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
    background: #104382;
    color: #fff !important;
}

#myTabHome {
    border-bottom: none;
    float: right;
    margin-right: -15px;
}

    #myTabHome .nav-link {
        border: 1px solid transparent;
        border-radius: 0;
        margin-right: 5px;
    }

.item-notifile {
    background: #FFFFFF;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    min-height: 220px;
    margin: 15px 0;
}

    .item-notifile .item-notifile-content {
        color: #757575;
        font-style: normal;
        font-weight: bold;
        text-align: left;
    }

        .item-notifile .item-notifile-content p {
            line-height: 18px;
        }

        .item-notifile .item-notifile-content .item-notifile-content-content {
            font-weight: normal;
            font-size: 13px;
        }

    .item-notifile .item-notifile-button {
        text-align: right;
        margin-top: 15px;
    }

        .item-notifile .item-notifile-button a {
            font-style: normal;
            color: #fff;
            font-size: 12px;
            line-height: 14px;
            align-items: center;
            text-align: center;
            background-color: #E12728;
            padding: 5px 10px;
            border-radius: 5px;
        }

.widget-title {
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    font-size: 16px;
    padding: 8px 10px;
    margin: 0;
    border-bottom: 4px solid #044c82;
    color: #fff;
    background: #1285dc;
    font-weight: 600;
}

.item-news-category {
    background: #fff;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
}

    .item-news-category .item-news-category-icon {
        font-style: normal;
        font-weight: normal;
        font-size: 42px;
        line-height: 0;
        padding: 0 15px;
        border-right: 1px solid #c7c0c0;
    }

        .item-news-category .item-news-category-icon img {
            width: 100%;
        }

    .item-news-category .item-news-category-titile {
        padding: 0 15px;
    }

        .item-news-category .item-news-category-titile p {
            font-style: normal;
            font-weight: normal;
            font-size: 13px;
            line-height: 18px;
            align-items: center;
            color: #999;
        }

            .item-news-category .item-news-category-titile p:first-child {
                font-style: normal;
                font-weight: bold;
                font-size: 18px;
                line-height: 22px;
                color: #272727;
                text-transform: uppercase;
            }

.item-new-content-images img {
    width: 100%;
    height: 180px;
}

.item-new-content-description {
    width: 100%;
    z-index: 999 !important;
    background: linear-gradient(#02397c,#104382) !important;
    display: block;
    position: absolute;
    bottom: 0;
    padding: 10px;
    left: 18px;
    min-height: 40px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    left: 0;
    right: 0;
    opacity: 0.95;
}

    .item-new-content-description a:hover {
        color: #fff;
    }

.list-item-category-news {
    display: block;
}

    .list-item-category-news ul {
        padding: 5px;
    }

        .list-item-category-news ul li {
            font-size: 16px;
            line-height: 20px;
            font-style: normal;
            font-weight: 400;
            color: #454545;
            padding: 0 0 10px 5px;
            clear: both;
            transition-duration: 200ms;
            transition-property: all;
            transition-timing-function: cubic-bezier(.7,1,.7,1);
            background-position-x: left;
            background-position-y: 2px;
            border-bottom: 1px solid #dad8d8;
            padding: 10px 0;
        }

footer {
    min-height: 160px;
    border-top: 5px solid #0064af;
    background: #333;
}

.title-footer {
    font-weight: bold;
    font-size: 16px !important;
}

    footer .div-bottom {
        display: block;
        border-right: 1px solid #BEC2C7;
        min-height: 160px;
    }

    footer {
        font-style: normal;
        font-family: "Merriweather",serif;
        font-size: 16px !important;
        align-items: center;
        color: #fff;
    }

        footer::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            width: 59px;
            background: #fff;
        }

    footer ul.ulLinks {
        margin-bottom: 50px;
    }

        footer ul.ulLinks li {
            font-style: normal;
            font-size: 14px;
            line-height: 18px;
            align-items: center;
            color: #fff;
            margin-top: 12px;
        }

            footer ul.ulLinks li a:hover {
                color: #f89d35;
            }
/* arrow top */
.back-to-top {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 3px;
    background-color: #0064af;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    display: none;
}

    .back-to-top:hover {
        background-color: #0064af;
    }

    .back-to-top.show {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 999;
        display: block;
    }

    .back-to-top img {
        width: 50%;
    }
/* end arrow top */
/* tin tuc */
.item-news {
    overflow: hidden;
}

.newslist a {
    display: block;
    overflow: hidden;
    position: relative;
}

.item-news-common {
    border-top: 1px solid #E5E5E5;
    border-bottom: none;
    padding: 10px 0;
    text-align: justify;
}

.newslist .thumb-art {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.newslist .thunb-art-list {
    float: left;
    position: relative;
    width: 250px;
    height: 150px;
    margin-right: 15px;
    margin-bottom: 5px;
    overflow: hidden;
}

.list-news-more {
    padding: 0 0 0 10px;
}

.title-news-more {
    font-family: "Merriweather",serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 17px;
    display: flex;
    align-items: center;
    color: #0064af;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom:5px;
}

.is-divider {
    height: 3px;
    display: block;
    background-color: rgba(0,0,0,0.1);
    margin: 1em 0 1em;
    width: 100%;
    max-width: 30px;
    margin-top: 5px;
}

    .is-divider:after {
        content: "";
        display: block;
        top: -10px;
        left: 0;
        width: 180px;
        height: 3px;
        background: url(images/line.png) left bottom no-repeat;
    }

.list-item-utilities li {
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 20px 15px;
}

.list-item-news-new li:nth-of-type(odd) {
    background-color: #F5F5F5;
}

.list-item-utilities ul.list-new-home {
    display: block;
}

    .list-item-utilities ul.list-new-home li {
        display: inline-block;
        padding: 10px 10px 5px;
        background: #fff;
        position: relative;
        width: 100%
    }

        .list-item-utilities ul.list-new-home li a {
            position: absolute;
            z-index: 1;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0
        }

            .list-item-utilities ul.list-new-home li a:hover {
                color: #cd1818
            }

        .list-item-utilities ul.list-new-home li img {
            float: left;
            width: 80px;
            height: 50px;
            margin: 0 10px 0 0
        }

        .list-item-utilities ul.list-new-home li p.description {
            display: block;
            overflow: hidden;
            line-height: 1.3em;
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
            margin-top: 0
        }

            .list-item-utilities ul.list-new-home li p.description:hover {
                color: #cd1818
            }

        .list-item-utilities ul.list-new-home li p.dateNews {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px
        }

        .list-item-utilities ul.list-new-home li:last-child {
            margin-bottom: 0
        }

.list-item-utilities .max-height {
    height: 400px;
    overflow-y: auto
}

.list_news_cate {
    list-style: none;
    padding-left: 0;
}

    .list_news_cate li {
        width: 100%;
        display: block;
        overflow: hidden;
        padding: 15px 0;
    }

    .list_news_cate .thumb260x170 {
        height: auto;
        width: 30%;
        margin-right: 10px;
        overflow: hidden;
    }

    .list_news_cate .info_list_top_news {
        width: 66%;
    }

.thumbblock > img {
    width: 100%;
    height: 350px !important;
}

.thumbblockfull > img {
    width: 100%;
    height: auto;
}
/* end tin tuc */
/* list sim */
.list-item-sims {
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
}

.left-sims ul.list_sim {
    list-style: none;
    padding-left: 0;
}

    .left-sims ul.list_sim li:last-child {
        border-bottom: 1px solid #eee;
    }

    .left-sims ul.list_sim li {
        width: calc(50% - 10px);
        margin: 5px 5px 5px;
        border: 1px solid #eee;
        padding: 8px 9px;
        box-sizing: border-box;
        border-radius: 3px;
        float: left;
        display: flex;
        justify-content: left;
        align-items: center;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

        .left-sims ul.list_sim li:hover {
            background-color: #f7f7f7;
            -webkit-box-shadow: 0 5px 10px 0 rgba(138,138,145,.8);
            -moz-box-shadow: 0 5px 10px 0 rgba(138,138,145,.8);
            box-shadow: 0 5px 10px 0 rgba(138,138,145,.8);
            cursor: pointer;
        }

        .left-sims ul.list_sim li .image {
            padding: 18px;
            /* border: 1px solid #efefef; */
            box-sizing: border-box;
            /* border-radius: 50%; */
            margin-right: 10px;
        }

        .left-sims ul.list_sim li .link-sim {
            display: block;
            line-height: 20px;
            font-size: 16px;
            position: relative;
            color: #000 !important;
        }

            .left-sims ul.list_sim li .link-sim span {
                display: block;
                font-size: 14px;
            }

.sim-item--price {
    font-size: 13px;
    color: #E66A20;
    font-weight: 600;
}

.sim-item--priceDel {
    color: #777;
    font-size: 12px;
}

.viettel {
    background: url(images/viettel.svg) no-repeat center center;
    background-size: cover;
}

.vinaphone {
    background: url(images/vinaphone.svg) no-repeat center center;
    background-size: cover;
}

.mobifone {
    background: url(images/mobifone.svg) no-repeat center center;
    background-size: cover;
}

.viii {
    background: url(images/vietnammobile.svg) no-repeat center center;
    background-size: cover;
}

.gmobile {
    background: url(images/gmobile.svg) no-repeat center center;
    background-size: cover;
}
/* end list sim */
/* list tu khoa */
.list-tukhoa li {
    display: inline-block;
}

.list-tukhoa li {
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    align-items: center;
    text-align: center;
    color: #757575;
    background: #FFFFFF;
    border: 1px solid rgba(11, 11, 11, 0.1);
    box-sizing: border-box;
    border-radius: 100px;
    padding: 5px 10px;
    margin-top: 10px;
    margin-right: 5px;
}

    .list-tukhoa li:first-child {
        font-style: normal;
        font-size: 14px;
        line-height: 16px;
        align-items: center;
        text-align: center;
        color: #FFFFFF;
        background: #CD1818;
        border-radius: 2px;
        padding: 5px 10px;
        margin-right: 10px;
    }

        .list-tukhoa li:first-child a:hover {
            color: #FFFFFF;
        }

/* end list tu khoa */
.description-contact .widget_text {
    background: #fff5e2;
    padding: 15px;
    border: 1px solid #ffdfa2;
    border-radius: 5px
}

    .description-contact .widget_text ul li a.phonedetail {
        color: #ff0101;
        font-size: 18px;
        font-weight: 700
    }

    .description-contact .widget_text p {
        font-size: 15px;
        line-height: 10px
    }

.uk-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529
}

    .uk-table td, .table th {
        padding: .65rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6
    }

    .uk-table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6
    }

    .uk-table tbody + tbody {
        border-top: 2px solid #dee2e6
    }

.uk-overflow-container {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

table {
    border-collapse: collapse;
}

#searchbox {
    position: relative;
    width: inherit;
    height: inherit;
    padding: 0;
}

    #searchbox.active input {
        width: 250px;
        opacity: 1;
        visibility: visible;
    }

.slider .carousel-caption a:hover {
    color: #ae0000;
}
.slider .carousel-caption a {
    color: #ae0000;
}

.img379 {
    width: 350px;
    height: 109px;
}

.section-new .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.section-new .dropdown-toggle::after {
    content: none;
}

.section-new .carousel-control-next, .section-new .carousel-control-prev {
    opacity: 1;
    z-index: 99999;
    margin-left: -65px;
    margin-right: -65px;
}

.toolbar {
    position: fixed;
    width: 58px;
    right: 30px;
    text-align: center;
    top: 30%;
    z-index: 999
}

    .toolbar .inner {
        position: relative
    }

    .toolbar .menu-top-toolbar {
        text-align: left;
    }

.theme-skin.skin-1 {
    background: #0064af !important;
}

.theme-skin.skin-2 {
    background: #E81111 !important;
}

.theme-skin.skin-3 {
    background: #42B8D4 !important;
}

.theme-skin.skin-4 {
    background: #35B494 !important;
}

.toolbar .menu-top-toolbar li {
    position: relative;
    font-weight: 600;
    color: #fff;
    transition-duration: 200ms;
    transition-property: color;
    transition-timing-function: cubic-bezier(.7,1,.7,1);
    display: block;
    text-align: center;
}

    .toolbar .menu-top-toolbar li:hover a {
        color: #0064af;
    }

    .toolbar .menu-top-toolbar li a {
        padding: 0 10px;
        display: block;
        white-space: nowrap;
        line-height: 45px;
        border: 1px solid #fff;
        background-color: #0064af;
        font-size: 24px;
    }

    .toolbar .menu-top-toolbar li.home {
        padding: 10px 10px;
    }

        .toolbar .menu-top-toolbar li.home a {
            justify-content: center;
            padding: 0;
            position: relative;
            transition-duration: 300ms;
            transition-property: all;
            transition-timing-function: cubic-bezier(.7,1,.7,1);
        }

    .toolbar .menu-top-toolbar li.active {
        background-color: #fff;
    }

        .toolbar .menu-top-toolbar li.active a {
            color: #0064af;
            background-color: #fff;
        }

    .toolbar .menu-top-toolbar li:hover .sub {
        opacity: 1;
        visibility: visible;
        top: 0;
        border-top: 1px solid #0064af;
    }

.toolbar .sub {
    min-width: 200px;
    background: #104382;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 2;
    left: -274px;
    top: calc(100% + 20px);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition-duration: 200ms;
    transition-property: opacity,top,visible;
    transition-timing-function: cubic-bezier(.7,1,.7,1);
}

.toolbar .sub-gopy {
    left: -200px;
}

.toolbar .skin {
    left: -200px;
}

.toolbar .sub-login {
    left: -200px;
}

.toolbar .sub li {
    font-weight: 400;
    color: #fff;
    text-align: left;
}

    .toolbar .sub li a {
        padding: 7px 10px 7px 10px;
        color: #fff !important;
        border: none;
        line-height: 18px;
        text-transform: none;
        font-size: 16px;
    }

        .toolbar .sub li a:hover {
            background-color: #0064af;
            color: #fff !important;
        }

.theme-skin {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 33px !important;
    text-align: center;
    position: relative;
    margin-top: 3px;
}

.skin li {
    display: inline-block !important;
}


/*backtop*/
body:not(.device-touch) #gotoTop {
    transition: background-color .2s linear;
    -webkit-transition: background-color .2s linear;
    -o-transition: background-color .2s linear;
}

#gotoTop {
    display: none;
    z-index: 299;
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #0064af;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    top: auto;
    left: auto;
    right: 30px;
    bottom: 50px;
    cursor: pointer;
    border-radius: 2px;
}

#gotoTop {
    bottom: 70px;
    background-color: #0064af;
}

    #gotoTop:hover {
        background-color: #ff7a13;
    }
/*end backtop*/
/*popup*/
.quick-view-modal {
    background: rgba(0,0,0,.31);
    z-index: 9999;
}

    .quick-view-modal .title-data {
        font-weight: 500;
        text-transform: uppercase;
        color: #007472;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .quick-view-modal .modal-body .sms {
        border-radius: 3px;
        background: #dc0734;
        color: #fff;
        float: right;
        margin: 0;
        padding: 2px 10px;
    }

        .quick-view-modal .modal-body .sms a {
            color: #fff !important;
            font-weight: 600;
        }

            .quick-view-modal .modal-body .sms a:hover {
                color: #fff;
            }

div.quick-view-modal .modal-dialog.modal-lg {
    padding-top: 20px
}

div.quick-view-modal .modal-header {
    padding: 10px
}

h4.modal-title {
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase
}

@media(min-width: 768px) {
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5)
    }
}

.modal .close {
    z-index: 10;
    position: absolute;
    right: -12px;
    top: -12px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border-radius: 50%;
    color: #da0e0e;
    opacity: 1;
    padding: 2px;
    line-height: 12px;
    border: 2px solid #fff;
}

.model-quick-content {
    padding: 0;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

    .close:hover, .close:focus {
        color: #000;
        text-decoration: none;
        opacity: .75
    }

    .close:not(:disabled):not(.disabled) {
        cursor: pointer
    }

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-lg {
    max-width: 60% !important;
}

.border-white {
    border: solid 3px #fff !important;
}
/*end popup*/
.share_video {
    padding: 5px 0;
    text-align: center;
    margin: 15px 0;
}

.sharing-zone li {
    float: left;
    margin: 0 6px 0 0;
}

.sharing-zone-bottom li {
    width: 24%;
    margin: 0 .3% 0 0;
    display: inline-block;
}

.sharing-zone li a {
    background: #e6e6e6;
    display: block;
    padding: 4px 12px;
    color: #fff;
    font-family: Roboto-Bold,Arial,Helvetica,sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.sharing-zone-bottom li a {
    padding: 8px 12px;
}

.fb_share {
    background: #3c5898 !important;
}

.sharing-zone .fa {
    font-size: 15px;
    color: #fff;
    vertical-align: sub;
    margin-right: 12px;
}

.sharing-zone li a span {
    display: inline-block;
    margin-top: 2px;
    font-size: 11px;
}

.glus_share {
    background: #cd3627 !important;
}

.tweet_share {
    background: #6aadd1 !important;
}

.zalo_share {
    background: #007DC4 !important;
}

.addcomment {
    width: 90%;
    display: inline-block;
}

.comment-widget .comment-form {
    width: 100%;
    position: relative;
    padding-left: 40px;
}

.comment-widget .comment-editor {
    position: relative;
    margin-bottom: 7px;
    float: left;
    width: 100%;
}

    .comment-widget .comment-editor:before {
        content: '';
        position: absolute;
        top: 0;
        left: -40px;
    }

.comment-widget .avatar, .comment-widget .comment-form .comment-editor:before {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: #eee url(images/avatar_silkhouse.gif) no-repeat 50% 50%;
    background-size: cover;
    border: 0;
    display: inline-block;
    margin-right: 10px;
}

.comment-widget .comment-editor .editor-tool {
    display: none;
    position: absolute;
    top: 1px;
    right: 2px;
    width: 40px;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
}

.comment-widget .comment-editor .comment-input {
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 22px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 55px;
    min-height: 55px;
    padding: 10px 15px;
    margin: 0 0;
    outline: none;
    border: 1px solid #999999;
    background-color: #FFF;
    overflow: hidden;
    resize: none !important;
    -webkit-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
}

.comment-widget .comment-list .comments {
    width: 100%;
    margin: 0;
    -webkit-animation: fadeInImages 0.5s;
    -khtml-animation: fadeInImages 0.5s;
    -moz-animation: fadeInImages 0.5s;
    -ms-animation: fadeInImages 0.5s;
    -o-animation: fadeInImages 0.5s;
    animation: fadeInImages 0.5s;
    margin-top: 10px;
}

.comment-widget .comments:not(.replies) {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 30px;
}

.comment-widget .comment {
    width: 100%;
    padding: 18px 0 0 18px;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid #eee;
}

    .comment-widget .comment .comment-meta {
        font-size: 14px;
        color: #141823;
        line-height: 20px;
        width: 100%;
        float: left;
        margin-bottom: 5px;
    }

    .comment-widget .comment .avatar {
        position: absolute;
        top: 21px;
        left: 0;
    }

    .comment-widget .comment .comment-meta .author {
        color: #000;
        font-weight: bold;
        font-size: 14px;
        line-height: 19px;
        display: inline-block;
        margin-bottom: 0;
    }

        .comment-widget .comment .comment-meta .author .author-name {
            margin-right: 10px;
        }

        .comment-widget .comment .comment-meta .author .time {
            color: #666;
            font-size: 11px;
            display: inline-block;
            font-weight: normal;
            line-height: normal;
        }

    .comment-widget .comment .comment-meta .comment-content {
        width: 100%;
        font-size: 14px;
        line-height: 1.43;
        margin-bottom: 5px;
    }

.comment-actions {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 2px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.67;
    position: relative;
}

    .comment-actions a {
        color: #627aad !important;
        display: inline-block;
    }

    .comment-actions > span.separator {
        display: inline-block;
        padding: 0 10px;
        font-size: 10px;
        color: #999;
    }

.comment-widget .comment .comment-form.reply-form {
    padding-left: 0;
    margin-bottom: 10px;
}

.comment-widget .btnMore {
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: left;
    display: block;
    width: 100%;
}

.comment-widget > .btnMore {
    width: 100%;
    padding: 5px 0;
    text-shadow: 1px 1px 0px #FFF;
    text-align: center;
    margin-top: 20px;
    background: #f6f7f8;
    color: #3b5998;
}

.DangNhapDangKyModal, .YeuCauXacThucModal, .LayLaiMatKhauModal, .YeuCauXemMailDoiPassModal, .DoiMatKhauModal {
    top: 15%;
}


.btnDangNhapTK, .btnDangKyTK {
    background-color: #E81111;
    color: white;
}

    .btnDangNhapTK:hover, .btnDangKyTK:hover {
        color: white !important;
    }

.nav-login a:hover {
    color: black !important;
}

.nav-login {
    width: 50%;
    text-align: center;
    font-size: .875rem;
    font-weight: bold;
}

.title-login {
    text-align: center;
    font-size: .875rem;
}

.login-width {
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
    border-radius: 3px;
    padding: 0;
    height: 31px;
    line-height: 31px;
    font-size: 15px;
    font-weight: 700;
}

.toltal-search {
    color: #1874C1 !important;
    padding: 10px 0px;
    font-size: 15px;
}

#tableQLVB {
    max-width: 100% !important;
    width: 100% !important;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

    #tableQLVB tr {
        max-width: 100% !important;
        word-wrap: break-word;
        padding: 8px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #ddd;
        font-size: 13px;
    }

        #tableQLVB tr th, td {
            padding: 8px;
        }

#page-search .search-box {
    border-radius: 5px;
    border: solid 1px #d2d0d0;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 15px;
}

    #page-search .search-box input {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        flex-grow: 1;
        padding: 12px 15px 10px;
        font-size: 15px;
        font-weight: bold;
        line-height: 0.77;
        color: #000000;
        border: none;
    }

    #page-search .search-box button {
        width: 33px;
        height: 100%;
        background-color: transparent;
        outline: none;
        border: none;
    }

        #page-search .search-box button i {
            font-size: 20px;
            color: #000;
            position: relative;
            top: 2px;
            font-weight: bold;
        }

    #page-search .search-box input:focus {
        outline: none;
    }

.totalsearch {
    font-size: 1rem;
    color: #888;
}




.tree ul {
    padding-top: 20px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

    /*We will use ::before and ::after to draw the connectors*/

    .tree li::before, .tree li::after {
        content: '';
        position: absolute;
        top: 0;
        right: 50%;
        border-top: 3px solid #000;
        width: 50%;
        height: 20px;
    }

    .tree li::after {
        right: auto;
        left: 50%;
        border-left: 3px solid #000;
    }

    /*We need to remove left-right connectors from elements without 
any siblings*/
    .tree li:only-child::after, .tree li:only-child::before {
        display: none;
    }

    /*Remove space from the top of single children*/
    .tree li:only-child {
        padding-top: 0;
    }

    /*Remove left connector from first child and 
right connector from last child*/
    .tree li:first-child::before, .tree li:last-child::after {
        border: 0 none;
    }
    /*Adding back the vertical connector to the last nodes*/
    .tree li:last-child::before {
        border-right: 3px solid #000;
        border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
    }

    .tree li:first-child::after {
        border-radius: 5px 0 0 0;
        -webkit-border-radius: 5px 0 0 0;
        -moz-border-radius: 5px 0 0 0;
    }

/*Time to add downward connectors from parents*/
.tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 3px solid #000;
    width: 0;
    height: 20px;
}

.tree li a {
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 11px;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

    /*Time for some hover effects*/
    /*We will apply the hover effect the the lineage of the element also*/
    .tree li a:hover, .tree li a:hover + ul li a {
        background: linear-gradient(#05528b,#1285dc);
        color: #000;
        border: 1px solid #94a0b4;
    }
        /*Connector styles on hover*/
        .tree li a:hover + ul li::after,
        .tree li a:hover + ul li::before,
        .tree li a:hover + ul::before,
        .tree li a:hover + ul ul::before {
            border-color: #94a0b4;
        }

/*Thats all. I hope you enjoyed it.
Thanks :)*/
.thanh_doc {
    width: 3.22px;
    height: 70px;
    background-color: black;
    text-align: center;
    margin-left: 50%;
}

.w-350 {
    width: 270px;
}

.w-500 {
    width: 430px;
}

.w-450 {
    width: 385px;
}

.custree li a {
    background: linear-gradient(#1285dc,#05528b);
    box-shadow: #00000047 5px 5px 7px -1px;
    width: 110px;
    padding: 0px 5px !important;
    text-transform: uppercase;
    color: #fff !important;
    margin: 0 auto;
    text-align: center;
    font-size: 14px !important;
    line-height: 20px;
    border-radius: 10px;
    min-height: 65px;
    vertical-align: middle;
}

    .custree li a p {
        padding-top: 18px;
    }

.custom-tree-phongchuyenmon {
    padding-left: 10px;
    display: inline-block;
    border: 3px solid #000;
    padding-top: 30px;
    padding-bottom: 20px;
}

.phongban-chuyenmon {
    background: linear-gradient(#1285dc,#05528b);
    box-shadow: #00000047 5px 5px 7px -1px;
    width: 110px;
    padding: 10px 5px;
    text-transform: uppercase;
    color: #fff !important;
    margin: 0 auto;
    text-align: center;
    font-size: 14px !important;
    line-height: 20px;
    border-radius: 10px;
    min-height: 70px;
    vertical-align: middle;
    position: relative;
    cursor: pointer
}

.w-200 {
    width: 144px !important;
    margin-right: 9px !important;
    margin-bottom: 10px !important;
    margin-left: 20px !important;
    min-height: 100px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 18px !important;
}

.thanh_doc_ngang_cuoi::after {
    border-bottom: 3px solid #000;
    content: '';
    position: absolute;
    bottom: -335px;
    width: calc(100% - 118px);
    left: 4px;
    top: 0;
    right: 0;
    margin: auto;
    height: calc(100% + 1px);
    z-index: 1 !important;
}

.phongban-chuyenmon:hover {
    background: linear-gradient(#05528b,#1285dc);
}

.custom-tree-phongchuyenmon p {
    padding-top: 10px;
    font-size: 14px !important;
}

.arrow-left {
    background: #000;
    height: 3px;
    width: 30px;
    margin: 0 auto;
    position: absolute;
    cursor: pointer;
    left: -30px;
    top: 50%;
}

    .arrow-left:before, .arrow-left:after {
        content: "";
        background: #000;
        position: absolute;
        height: 3px;
        width: 15px;
    }

    .arrow-left:before {
        right: -3px;
        bottom: -4px;
        transform: rotate(-45deg);
    }

    .arrow-left:after {
        right: -3px;
        top: -4px;
        transform: rotate(45deg);
    }

.arrow-right {
    background: #000;
    height: 3px;
    width: 32px;
    margin: 0 auto;
    position: absolute;
    cursor: pointer;
    right: -33px;
    top: 50%;
}

    .arrow-right:before, .arrow-right:after {
        content: "";
        background: #000;
        position: absolute;
        height: 3px;
        width: 15px;
    }

    .arrow-right:before {
        left: -3px;
        bottom: -4px;
        transform: rotate(45deg);
    }

    .arrow-right:after {
        left: -3px;
        top: -4px;
        transform: rotate(-45deg);
    }

.tooltip-image {
    background: linear-gradient(#05528b,#1285dc);
    border-radius: 10px;
    padding: 10px;
    z-index: 999999;
    opacity: 1 !important;
}

.tooltip > .tooltip-inner {
    background: linear-gradient(#05528b,#1285dc);
}

[data-placement="right"] + .tooltip > .tooltip-arrow {
    border-right-color: #05528b;
}

.tooltip.show {
    opacity: 1 !important;
    z-index: 99999999 !important;
}

.tooltip-image img {
    height: 100px;
    object-fit: cover;
    padding: 5px;
}

.tooltip > .tooltip-arrow {
    border-bottom-color: #05528b;
}

.li-chuyenmon {
    padding-top: 100px !important;
}

    .li-chuyenmon::before, .li-chuyenmon::after {
        height: 145px !important;
    }

.information-humman {
    width: 300px;
    display: inline-block;
}

    .information-humman .text {
        color: #222;
        opacity: .6;
        margin-left: 12px;
        display: inline-block;
    }

.image_uploads {
    margin-top: 7px;
    color: #222;
    background-color: #eee;
    padding: 6px 18px;
    display: inline-block;
    border-radius: 2px;
    margin-left: 12px;
    cursor: pointer;
}

#uploadavatar {
    cursor: inherit;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
}

.img84x84 {
    width: 84px;
    height: 84px;
    float: left;
}

.avatar_inner {
    width: 25px;
    height: 25px;
    background: #c4c4c4;
    overflow: hidden;
    margin-top: -4px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.name_user_av {
    max-width: 65px;
    overflow: hidden;
    margin-top: -2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

.myvne_user_status {
    height: auto;
    top: 29px;
    left: auto;
    right: -25px;
    margin-top: 0;
    min-width: 270px;
    background: #fff;
    border: none;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,.1);
    padding: 0 15px;
    display: none;
    z-index: 999;
    position: absolute;
}

.name-humman {
    color: #222;
    font: bold 18px/normal Roboto;
    width: 150px;
    float: left;
    margin-left: 12px;
}

.news-category-home-min-height {
    min-height: 300px;
}


.logo {
    display: inline-block;
    font-size: 2.85714em;
    margin-top: 0px;
}

    .logo .logo-wrapper {
        height: 80px;
        line-height: 80px;
        display: block;
    }

        .logo .logo-wrapper img {
            max-width: 100%;
            max-height: 100%;
        }

.w-100-logo {
    height: 150px;
}

.w-100-logo-top {
    height: 150px;
    width: 100% !important;
}

.bg-warning {
    background-color: #f8fa7d !important;
}
.carousel-indicators li {
    background-color: #ae0000!important;
}
.icon_list {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid #dadada;
    margin-bottom: 3px;
}
.column-margin-left{
    margin-left:10px;
}
.head_news {
    background: transparent;
    border-bottom: solid 1.5px #0064af;
    font-size: 16px;
    padding-top: 0;
    margin-bottom: 10px;
}

    .head_news a {
        font-family: SegoeUI-Bold !important;
        margin: 0;
        font-weight: 700;
        display: inline-block;
        background: #0064af;
        padding: 0.4px 15px;
        line-height: 30px;
        color: var(--color-main-color-text)!important;
        text-transform: uppercase;
        border-top-right-radius: 5px;
    }
.box_left_home > .pkg > .pkg {
    min-height: 275px;
}
.box_left_home .f22 {
    line-height: 22px;
}
.list_news_show_home li {
    background: url(images/icon_dot_red.png) left 15px no-repeat;
    background-size: 5px 5px;
    padding-left: 13px;
    border-bottom: 1px solid #e6e6e6;
    padding: 8px 0 8px 15px;
}
    .list_news_show_home li a.selected {
        color: #0064af;
    }
    .mar_bottom10 {
        margin-bottom: 10px;
    }
.title_bg333 {
    background: #333;
    font: 700 14px arial;
    color: #ae0000;
    padding: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin-bottom: 0;
}
.thumbblock {
    position: relative;
    display: block;
    overflow: hidden;
}
.list_photo_home li {
    width: 48%;
    float: left;
    margin-bottom: 20px;
    list-style: none;
}
/* accordion-plus */

.accordion-plus__item {
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #e5e5ea;
    cursor: pointer;
}

.accordion-plus__control {
    padding: 5px 0;
    padding-right: 25px;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.accordion-plus__icon {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 15px;
}

[data-accordion] [data-control] {
    position: relative;
}

.accordion-plus__icon:after,
.accordion-plus__icon:before {
    content: "";
    height: 2px;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    background: #121f3e;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.accordion-plus__icon:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.accordion-plus__content > div {
    padding: 0 20px 20px 0px;
    padding-top: 1px;
    line-height: 1.6;
    font-size: 16px;
}

    .accordion-plus__content > div p {
        font-size: 16px;
    }

.accordion-plus .open > .accordion-plus__control > .accordion-plus__icon:after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

@media (max-width: 767px) {

    .accordion-plus__content > div {
        padding: 1px 20px 20px 20px;
    }

    .accordion-plus__icon {
        width: 12px;
    }

    .accordion-plus__control {
        padding: 10px 0;
        padding-right: 30px;
    }

    .accordion-plus__icon {
        right: 0px;
    }
}
.file-attach{
    color:blue;
}
/*end accordion-plus */

.img-fluid {
    height: 130px !important;
    object-fit: fill !important;
}

.img-fluid-chude {
    height: 150px !important;
    width: 250px !important;
    object-fit: fill !important;
}

.not_padding {
    padding: 0 !important;
}

.youtube-player {
    height: 415px;
}

.main-footer-nav {
    font-size: 12px;
}

@media (min-width:1920px) {
    .container {
        max-width: calc(100% - 25rem);
    }

    .logo-main .char-logo h5 {
        font-size: 40px;
    }

    .logo-main .char-logo h3 {
        font-size: 22px;
    }

    .main-nav {
        font-size: 14px;
    }

    .title-footer {
        font-size: 16px !important;
    }

    .main-footer-nav {
        font-size: 12px !important;
    }

    .char-logo {
        margin-top: 0px;
        padding: 30px 0px 30px 0px !important
    }

    .logo-wrapper {
        height: 150px !important;
    }

    .w-100-logo {
        height: 150px !important;
        width: 150px !important;
    }

    .w-100-logo-top {
        height: 150px !important;
    }

    .youtube-player {
        height: 600px !important;
    }

    .col-md-44 {
        flex: 0 0 19.33%;
        width: 19.33%;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 350px !important;
    }
}

@media (min-width:1801px) and (max-width:1919px) {
    .container {
        max-width: calc(100% - 20rem);
    }

    .logo-main .char-logo h5 {
        font-size: 40px;
    }

    .logo-main .char-logo h3 {
        font-size: 22px;
    }

    .main-nav {
        font-size: 14px;
    }

    .title-footer {
        font-size: 15px !important;
    }

    .main-footer-nav {
        font-size: 12px !important;
    }

    .char-logo {
        margin-top: 30px;
    }

    .logo-wrapper {
        height: 150px !important;
    }

    .w-100-logo {
        height: 150px !important;
        width: 150px !important;
    }

    .w-100-logo-top {
        height: 150px !important;
    }

    .youtube-player {
        height: 600px !important;
    }

    .col-md-44 {
        flex: 0 0 19.33%;
        width: 19.33%;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 350px !important;
    }
}

@media (min-width:1600px) and (max-width:1800px) {
    .container {
        max-width: calc(100% - 10rem);
    }

    .logo-main .char-logo h5 {
        font-size: 40px;
    }

    .logo-main .char-logo h3 {
        font-size: 22px;
    }

    .main-nav {
        font-size: 14px;
    }

    .title-footer {
        font-size: 15px !important;
    }

    .main-footer-nav {
        font-size: 12px !important;
    }

    .char-logo {
        margin-top: 25px;
    }

    .logo-wrapper {
        height: 150px !important;
    }

    .w-100-logo {
        height: 150px !important;
        width: 150px !important;
    }

    .w-100-logo-top {
        height: 150px !important;
    }

    .youtube-player {
        height: 600px !important;
    }

    .col-md-44 {
        flex: 0 0 19.33%;
        width: 19.33%;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 350px !important;
    }
}

@media (min-width:1367px) and (max-width:1599px) {
    .container {
        max-width: calc(100%);
    }

    .logo-main .char-logo h5 {
        font-size: 40px;
    }

    .logo-main .char-logo h3 {
        font-size: 22px;
    }

    .main-nav {
        font-size: 14px;
    }

    .title-footer {
        font-size: 14px !important;
    }

    .main-footer-nav {
        font-size: 11px !important;
    }

    .main-nav .menu-top li a {
        padding: 0 8px;
    }

    .main-nav .sub li a {
        padding: 7px 10px 7px 10px;
    }

    .img-fluid {
        height: 130px !important;
    }

    .img-fluid-news {
        height: 230px !important;
    }

    .char-logo {
        margin-top: 25px;
    }

    .logo-wrapper {
        height: 150px !important;
    }

    .w-100-logo {
        height: 150px !important;
        width: 150px !important;
    }

    .w-100-logo-top {
        height: 150px !important;
    }

    .youtube-player {
        height: 600px !important;
    }

    .col-md-44 {
        flex: 0 0 19.33%;
        width: 19.33%;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 300px !important;
    }
}

@media (min-width:1360px) and (max-width:1366px) {
    .container {
        max-width: calc(100%);
    }

    .logo-main .char-logo h5 {
        font-size: 35px;
    }

    .logo-main .char-logo h3 {
        font-size: 22px;
    }

    .main-menu-bg {
        height: 50px;
    }

    .main-nav {
        font-size: 13px;
    }

    .title-footer {
        font-size: 14px !important;
    }

    .main-footer-nav {
        font-size: 11px !important;
    }

    .main-nav .menu-top li a {
        padding: 0 8px;
    }

    .main-nav .sub li a {
        padding: 7px 10px 7px 10px;
    }

    .img-fluid {
        height: 130px !important;
    }

    .img-fluid-news {
        height: 210px !important;
    }

    .char-logo {
        margin-top: 20px;
    }

    .logo-wrapper {
        height: 130px !important;
    }

    .w-100-logo {
        height: 130px !important;
        width: 130px !important;
    }

    .w-100-logo-top {
        height: 130px !important;
    }

    .youtube-player {
        height: 500px !important;
    }

    .col-md-44 {
        flex: 0 0 19.33%;
        width: 19.33%;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 300px !important;
    }
}

@media (min-width:1180px) and (max-width:1359px) {
    .container {
        max-width: calc(100%);
    }

    .logo-main .char-logo h5 {
        font-size: 35px;
    }

    .logo-main .char-logo h3 {
        font-size: 22px;
    }

    .main-menu-bg {
        height: 50px;
    }

    .main-nav {
        font-size: 12px;
    }

    .title-footer {
        font-size: 13px !important;
    }

    .main-footer-nav {
        font-size: 11px !important;
    }

    .main-nav .menu-top li a {
        padding: 0 6px;
    }

    .main-nav .sub li a {
        padding: 6px 9px 6px 9px;
    }

    .img-fluid {
        height: 120px !important;
    }

    .img-fluid-news {
        height: 190px !important;
    }

    .char-logo {
        margin-top: 20px;
    }

    .logo-wrapper {
        height: 130px !important;
    }

    .w-100-logo {
        height: 130px !important;
        width: 130px !important;
    }

    .w-100-logo-top {
        height: 130px !important;
    }

    .youtube-player {
        height: 500px !important;
    }

    .col-md-44 {
        flex: 0 0 19.33%;
        width: 19.33%;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 250px !important;
    }
}

@media (min-width:1024px) and (max-width:1179px) {
    .container {
        max-width: calc(100%);
    }

    .logo-main .char-logo h5 {
        font-size: 30px;
    }

    .logo-main .char-logo h3 {
        font-size: 18px;
    }

    .main-menu-bg {
        height: 40px;
    }

    .main-nav {
        font-size: 11px;
        margin-top: -5px;
    }

    .title-footer {
        font-size: 12px !important;
    }

    .main-footer-nav {
        font-size: 9px !important;
    }

    .main-nav .menu-top li a {
        padding: 0 6px;
    }

    .main-nav .sub li a {
        padding: 5px 8px 5px 8px;
    }

    .img-fluid {
        height: 110px !important;
    }

    .img-fluid-news {
        height: 170px !important;
    }

    .char-logo {
        margin-top: 20px;
    }

    .logo-wrapper {
        height: 120px !important;
    }

    .w-100-logo {
        height: 120px !important;
        width: 120px !important;
    }

    .w-100-logo-top {
        height: 120px !important;
    }

    .youtube-player {
        height: 415px !important;
    }

    .col-md-44 {
        flex: 0 0 33.333333%;
        width: 33.333333% !important;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 250px !important;
    }
}

@media (min-width:768px) and (max-width:1023px) {
    .container {
        max-width: calc(100%);
    }

    .logo-main .char-logo h5 {
        font-size: 25px;
    }

    .logo-main .char-logo h3 {
        font-size: 16px;
    }

    .main-menu-bg {
        height: 40px;
    }

    .main-nav {
        font-size: 11px;
        margin-top: -5px;
    }

    .title-footer {
        font-size: 11px !important;
    }

    .main-footer-nav {
        font-size: 9px !important;
    }

    .main-nav .menu-top li a {
        padding: 0 6px;
    }

    .main-nav .sub li a {
        padding: 5px 8px 5px 8px;
    }

    .img-fluid {
        height: 90px !important;
    }

    .img-fluid-news {
        height: 150px !important;
    }

    .char-logo {
        margin-top: 25px;
    }

    .logo-wrapper {
        height: 100px !important;
    }

    .w-100-logo {
        height: 100px !important;
        width: 100px !important;
    }

    .w-100-logo-top {
        height: 100px !important;
    }

    .youtube-player {
        height: 415px !important;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .col-md-44 {
        flex: 0 0 33.333333%;
        width: 33.333333% !important;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 200px !important;
    }
}

@media (max-width:767px) {
    .container {
        max-width: calc(100%);
    }

    .logo-main .char-logo h5 {
        font-size: 20px;
    }

    .logo-main .char-logo h3 {
        font-size: 10px;
    }

    .main-menu-bg {
        height: 30px;
    }

    .main-nav {
        font-size: 10px;
        margin-top: -5px;
    }

    .title-footer {
        font-size: 11px !important;
    }

    .main-footer-nav {
        font-size: 9px !important;
    }

    .main-nav .menu-top li a {
        padding: 0 5px;
    }

    .main-nav .sub li a {
        padding: 5px 8px 5px 8px;
    }

    .img-fluid {
        height: 80px !important;
    }

    .img-fluid-news {
        height: 200px !important;
    }

    .char-logo {
        margin-top: 10px;
    }

    .logo-wrapper {
        height: 110px !important;
    }

    .w-100-logo {
        height: 110px !important;
        width: 110px !important;
    }

    .w-100-logo-top {
        height: 110px !important;
    }

    .youtube-player {
        height: 415px !important;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .col-md-44 {
        flex: 0 0 50%;
        width: 50% !important;
    }

    .thumbblock > img {
        width: 100% !important;
        height: 400px !important;
    }
}

@media (max-width:500px) {
    .thumbblock > img {
        width: 100% !important;
        height: 350px !important;
    }
}

@media (max-width:450px) {
    .thumbblock > img {
        width: 100% !important;
        height: 300px !important;
    }
}

@media (max-width:400px) {
    .thumbblock > img {
        width: 100% !important;
        height: 250px !important;
    }
}

@media (max-width:350px) {
    .thumbblock > img {
        width: 100% !important;
        height: 200px !important;
    }
}

@media (max-width:300px) {
    .thumbblock > img {
        width: 100% !important;
        height: 150px !important;
    }
}

::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
    background-color: #f1f1f1 !important;
}

::-webkit-scrollbar-thumb {
    border-radius: 3px !important;
    background: #c1c1c1 !important;
}

    ::-webkit-scrollbar-thumb:horizontal {
        border-radius: 3px !important;
    }

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.arrow {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #333;
    margin-top: 5px;
    margin-right: -5px;
}

.img-fluid-news {
    height: 250px;
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

        .carousel-inner .carousel-item > div:first-child {
            display: block;
        }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* display 3 */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33.333%);
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33.333%);
    }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
    transform: translateX(0);
}

.ml-6, .mx-6 {
    margin-left: 3.5rem !important;
}

.ml-7, .mx-7 {
    margin-left: 4rem !important;
}

.col-md-44 {
    width: 100%;
    float: left;
}

.text-red-hd {
    color: #B80001 !important;
}

.text-red-hd::after {
    background: #B80001 !important;
    width: 100% !important;
}

.text-red-hd > ul > li {
    color: #000 !important;
    cursor: pointer;
}

.icon_hot {
    background: url(../Content/images/icon_hot.gif) no-repeat;
    display: inline-block;
    width: 33px;
    height: 15px;
}

#div-noidungtintuc table.image.center,
#div-noidungtintuc table.image.center img {
    width: 100% !important;
}

.banner-img img {
    margin: auto;
    display: block;
    opacity: 1;
    object-fit: cover;
    width: 100%;
    height: 600px !important;
}

.hide-carousel-control {
    opacity: 0;
}

.item-wrap-full {
    margin-bottom: 15px;
}

    .item-wrap-full .img {
        margin-bottom: 15px;
    }

.img, .item-img {
    overflow: hidden;
    display: block;
}

.img {
    border-radius: 5px;
    border: 1px solid #CCC;
}

    .img:hover img, .item-img:hover img {
        transform: scale(1.05);
        -ms-transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

img.lazy:hover {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.img img, .item-img img, .item-img a {
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    width: 100%;
    object-fit: cover;
}

img.lazy {
    transition: all 1s ease-in-out;
}

.h-250px {
    height: 250px !important;
}

.meta-time {
    color: #847878;
    font-size: 14px;
    margin-bottom: 10px;
}

.list-news-special li:not(:last-child) {
    margin-bottom: 20px;
}

.list-news-special li {
    position: relative;
    padding-left: 60px;
    min-height: 44px;
}

.list-news-special {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .list-news-special .number {
        position: absolute;
        top: 0;
        left: 0;
    }

.number {
    display: block;
    width: 44px;
    height: 44px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    background-color: #EEEEEE;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
}

.meta-time {
    color: #847878;
    font-size: 14px;
    margin-bottom: 10px;
}

.list-news-special h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    max-height: 40px;
}

.box-icon-titles {
    margin: 0px 0px 5px 0px;
    line-height: 27px;
    font-size: 18px;
    font-weight: 100;
    padding-left: 45px;
    border-bottom: 2px solid #db0000;
    font-family: UTM Netsite;
    letter-spacing: 1px;
}

.classsub-customize-0 {
    max-height: 300px;
    overflow-y: auto;
}