﻿.Widget_BreadCrumb {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    padding: 1em 0;
    transition: all .1s linear;
}

.fixedBreadCrumb {
    position: fixed;
    width: 100%;
    max-width: 100%;
    background: white;
    padding: 0.5em 2em;
    z-index: 10;
    left: 0;
    right: 0;
    animation: slidedown .2s ease forwards;
    box-shadow: rgb(122 122 122 / 12%) 0px 16px 24px;
}

    .fixedBreadCrumb .breadcrumb {
        margin: auto;
        padding-right: var(--bs-gutter-x,.75rem);
        padding-left: var(--bs-gutter-x,.75rem);
    }

.breadcrumb {
    padding: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-top: 10px;
}

.breadcrumb_link {
    color: #4e4e4e;
}

a.breadcrumb_link:hover {
    color: #4e4e4e;
}

.breadcrumb_link.redirectable:hover {
    color: var(--MainBGColor-Blue);
}

@keyframes slidedown {
    from {
        opacity: 0;
        top: 0px;
    }

    to {
        top: 54px;
        opacity: 1;
    }
}


.divider {
    content: "";
    border-top: solid var(--MainBGColor-DarkGrey) 4px;
    border-left: solid var(--MainBGColor-DarkGrey) 4px;
    border-right: solid transparent 4px;
    border-bottom: solid transparent 4px;
    transform: rotate(135deg);
    padding: 0;
    margin: 0 3px;
    position: relative;
    top: -1px;
    width: 2px;
}

/*#region Widget Paginated phan trang */
/* Paginated */
.paginated_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 2em 0;
}

.paginated_child {
    background: #e9e9e9;
    margin: 2px;
    padding: 8px 11px;
    color: black;
    font-size: 16px;
    border-radius: 8px;
}

    .paginated_child:hover {
        background: #FF5E61;
        color: #fff;
    }

    .paginated_child.active {
        background: #FF5E61;
        color: #fff;
    }

.nextpage_icon {
    border-top: solid black 1px;
    border-left: solid black 1px;
    padding: 3px;
    transform: rotate(135deg);
    margin-top: 8px;
    transition: all .1s ease;
}

.paginated_child:hover .nextpage_icon, .paginated_child:hover .prevpage_icon {
    border-top: solid white 2px;
    border-left: solid white 2px;
}

.prevpage_icon {
    border-top: solid black 1px;
    border-left: solid black 1px;
    padding: 3px;
    transform: rotate(315deg);
    margin-top: 8px;
    transition: all .1s ease;
}

/*#endregion  */

/*#region Widget tab danh muc con */

.widget__tab--container {
    margin: 2em 0;
}

.widget__tab--container {
    display: grid;
    grid-template-columns: 25% 73%;
    justify-content: space-between;
}

.widget__tab--list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*align-items: flex-start;*/
    /*padding: 2em 0 2em 1em;*/
    height: fit-content;
}

.widget__tab--list {
    border-radius: 24px;
    box-shadow: 0px 16px 24px rgb(22 22 22 / 11%);
}

    .widget__tab--list .widget__tab--link {
        text-decoration: none !important;
        position: relative;
        transition: color 0.2s ease, padding .2s ease;
        margin: 4px 0;
        padding: 2px 0;
        display: block;
    }

.widget__tab--link:hover {
    background: #0065C0;
    margin-left: -3rem;
    padding: 0.5em 2em;
    width: calc(100% + 3em);
    color: white;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
}

.widget__tab--link.active {
    width: calc(100% + 2em);
    padding: 0.5em 2em;
    background: #0065C0;
    margin-left: -3rem;
    color: white;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
}

a.widget__tab_linkbox {
    display: block;
}

.widget__tab_linkbox:hover.widget__tab_linkbox:before, .widget__tab_linkbox.active:before {
    content: "";
    position: absolute;
    border-top: solid white 1px;
    border-left: solid white 1px;
    border-width: 2px;
    padding: 3px;
    /*left: 1em;*/
    transform: translateY(100%) rotate(135deg);
}

.widget__tab_linkbox[level='3']:hover.widget__tab_linkbox[level='3']:before, .widget__tab_linkbox[level='3'].active:before {
    /*margin-left: 1em;    */
}

.widget__tab_linkbox[level='4']:hover.widget__tab_linkbox[level='4']:before, .widget__tab_linkbox[level='4'].active:before {
    margin-left: 1em;
}

.widget__tab_linkbox[level='5']:hover.widget__tab_linkbox[level='5']:before, .widget__tab_linkbox[level='5'].active:before {
    margin-left: 2em;
}

.widget__tab_linkbox[level='6']:hover.widget__tab_linkbox[level='6']:before, .widget__tab_linkbox[level='6'].active:before {
    margin-left: 3em;
}

.widget__tab_linkbox[level='7']:hover.widget__tab_linkbox[level='7']:before, .widget__tab_linkbox[level='7'].active:before {
    margin-left: 4em;
}

.widget__tab_linkbox[level='8']:hover.widget__tab_linkbox[level='8']:before, .widget__tab_linkbox[level='8'].active:before {
    margin-left: 5em;
}

.widget__tab_linkbox[level='9']:hover.widget__tab_linkbox[level='9']:before, .widget__tab_linkbox[level='9'].active:before {
    margin-left: 6em;
}

.widget__tab--content {
    box-shadow: 0px 16px 24px rgb(22 22 22 / 11%);
    border-radius: 24px;
    padding: 1em;
}

.widget__tab-content-child {
    display: none;
}

.tab__menu__box {
    width: 100%;
    padding: 0;
    margin: 0;
}

.tab__menu_subList {
    position: relative;
    /* margin-left: 1em;*/
}

.tab__menu__box .tab__menu_subList.level-3, .level-4, .level-5, .level-6, .level-7, .level-8, .level-9 {
    display: none;
}

    .tab__menu__box .tab__menu_subList.level-3.expand,
    .tab__menu__box .tab__menu_subList.level-4.expand,
    .tab__menu__box .tab__menu_subList.level-5.expand,
    .tab__menu__box .tab__menu_subList.level-6.expand,
    .tab__menu__box .tab__menu_subList.level-7.expand,
    .tab__menu__box .tab__menu_subList.level-8.expand,
    .tab__menu__box .tab__menu_subList.level-9.expand {
        display: block;
    }

    .tab__menu__box .tab__menu_subList.level-3.siblings,
    .tab__menu__box .tab__menu_subList.level-4.siblings,
    .tab__menu__box .tab__menu_subList.level-5.siblings,
    .tab__menu__box .tab__menu_subList.level-6.siblings,
    .tab__menu__box .tab__menu_subList.level-7.siblings,
    .tab__menu__box .tab__menu_subList.level-8.siblings,
    .tab__menu__box .tab__menu_subList.level-9.siblings {
        background: #F0F2F5;
    }

/*.widget__tab_linkbox.ancestors,
.widget__tab_linkbox.ancestors,
.widget__tab_linkbox.ancestors,
.widget__tab_linkbox.ancestors,
.widget__tab_linkbox.ancestors,
.widget__tab_linkbox.ancestors,
.widget__tab_linkbox.ancestors {
    background: #F0F2F5;
}*/

.widget__tab_linkbox {
    position: relative;
    /* left: -1em;
    width: calc(100% - 1em);
    margin: 1em 0;*/
    padding: 1em 0.5em;
}

a.widget__tab--link {
    font-size: 18px;
}

.widget__tab_linkbox[level='3'] a {
    margin-left: 1em;
}

.widget__tab_linkbox[level='4'] a {
    margin-left: 2em;
}

.widget__tab_linkbox[level='5'] a {
    margin-left: 3em;
    display: inline-block;
}

.widget__tab_linkbox[level='6'] a {
    margin-left: 4em;
    display: inline-block;
}

.widget__tab_linkbox[level='7'] a {
    margin-left: 5em;
    display: inline-block;
}

.widget__tab_linkbox[level='8'] a {
    margin-left: 6em;
    display: inline-block;
}

.widget__tab_linkbox[level='9'] a {
    margin-left: 7em;
    display: inline-block;
}

.widget__tab_linkbox:hover, .widget__tab_linkbox.active {
    /*  margin-left: -3em;
    padding-left: 2em;*/
    background-color: var(--MainBGColor-Blue);
    color: white;
    transition: all .3s;
    border-radius: 0.5em;
}

    .widget__tab_linkbox:hover a, .widget__tab_linkbox.active a {
        color: white;
    }

/*.menu_expandable_anchor {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(10px, 10px);
    color: white;
    cursor: pointer;
    padding: 0 6px;
}*/
.menu_expandable_parent {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 1em;
    width: 20px;
    height: 20px;
}

.menu_expandable_anchor {
    border-top: solid white 1px;
    border-left: solid white 1px;
    padding: 4px;
    display: inline-flex;
    position: absolute;
    /*  top: 50%;
    right: 1em;*/
    border-width: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .menu_expandable_anchor.expanded {
        transform: rotate(45deg);
    }

    .menu_expandable_anchor.collapsed {
        transform: rotate(224deg);
    }


/*#endregion  */
/*region Danh sách bài viết tuyển dụng*/
#btnJoinOurTalentPool {
    color: #0065C0;
    background: white;
    font-size: 18px;
    text-transform: uppercase;
    padding: 13px 35px;
}


.btnJoinOurTalentPool_container {
    text-align: left;
    margin-top: 30px;
}

#btnJoinOurTalentPool:hover {
    color: white;
    background: #0065C0;
}

.tb_CongViecKhac {
    display: none;
}

#FormSendCV_Position {
    height: 70px;
}

    #FormSendCV_Position .m--s-ipt {
        width: 98% !important;
    }

.TinTuyenDung_Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.TinTuyenDung h6 {
    font-size: 34px;
    color: #0065C0;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.TinTuyenDung_Padding {
    padding: 35px 0 0 0;
}

.TinTuyenDung .col-md-2 img {
    width: 100%;
    height: 100%;
}

.TinTuyenDung_TieuDe a {
    color: #0065C0;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
}

.TinTuyenDung_GhiChu {
    font-size: 14px;
    color: #767676;
}

.ThongBao_Moi {
    display: inline-block;
}

button.btnNew {
    background: #0065C0;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    padding: 3px 10px;
    margin-left: 30px;
}

.TinTuyenDung_NoiDung {
    border: 1px solid grey;
    border-radius: 15px;
    padding: 30px 0;
}

/*.Button_UngTuyenNgay {
    font-size: 16px;
    color: #0065C0;
    background: white;
    border: 1px solid #0065C0;
    border-radius: 8px;
    padding: 6px 12px;
}

    .Button_UngTuyenNgay:hover {
        background: #0065C0;
        color: white;
        transition: all 0.3s;
    }*/

.TuyenDung_Facebook, .TuyenDung_Linkin {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.text_right {
    text-align: right;
}
.UngTuyen_ViTri {
    text-transform: uppercase;
}
/*endregion*/
/*region FormCV*/

.ImageBirthdayForm {
    position: relative;
}

    .ImageBirthdayForm img {
        position: absolute;
        bottom: 0;
        right: 20px;
        top: 30px;
    }


.FormSendCV_Title {
    text-align: center;
}

.FormSendCV {
    background: #FBFBFB;
}

    .FormSendCV .container {
        background: white;
    }

.FormSendCV_Title h4 {
    font-size: 34px;
    color: #0065C0;
    font-weight: 400;
    text-transform: uppercase;
}

.FormSendCV_Title p {
    color: #767676;
    font-size: 18px;
}

#FormSendCV_Description {
    height: 20vh;
}

.FormatTitle {
    font-size: 16px;
    color: #767676;
}

.ButtonSendCV {
    text-align: center;
    margin-top: 20px;
}

.Button_AttachFile_Container {
    display: flex;
    justify-content: center;
}

.ButtonCss {
    width: 15%;
    height: 40%;
    background-color: #e9ecef;
    border-color: #e0e3e7;
}
.fontsize14 {
    font-size: 14px;
    font-style: italic;
    color: #00000073;
    background-color: white !important;
}

#FormSendCV_Name-error, #FormSendCV_Email-error, #FormSendCV_Phone-error, #FormSendCV_Department-error, #InputFile-error, #FormSendCV_Birthday-error, #FormSendCV_Gender-error, #FormSendCV_School-error, #FormSendCV_Major-error, #FormSendCV_AcademicLevel-error, #FormSendCV_GraduationLevel-error, .Positons_Error {
    font-size: 14px;
    color: #FF5E61;
    font-weight: 600;
}

.txt_title_tuyendung {
    text-align: center;
    text-transform: uppercase;
    font-size: 34px;
    font-weight:bold;
}

.txt_sub_title_tuyendung {
    text-align: center;
    font-size: 20px;
    font-weight:bold;
}

.Confirm_ApplyCV {
    display: flex;
    align-items: start;
    justify-content: start;
}

#btnConfirmApplyCV, #btnConfirmApplyCV_UngTuyen {
    margin-top: 6px;
}

.Confirm_ApplyCV label {
    font-size: 15px;
    padding-left: 5px;
}
h5.Confirm_ApplyCV_ViewDetail {
    font-size: 15px;
    padding-left: 50px;
}

    h5.Confirm_ApplyCV_ViewDetail a {
        padding-left: 5px;
        font-style: italic;
    }

/*endregion*/


/*#region Ban tin nha dau tu theo quy */
.news__nhadautu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news__nhadautu--heading {
    display: grid;
    grid-template-columns: 7% 80%;
    align-items: center;
}

.news__nhadautu__detail_leftbox {
    margin-top: 10px;
}

.news__nhadaut_title_group {
    display: flex;
    justify-content: start;
    align-items: center;
    grid-gap: 10px;
}

.news__nhadautu--detail {
    display: none;
}

.btnQuy {
    cursor: pointer;
    position: relative;
    padding: 2px 8px;
    transition: all 0.3s ease;
    color: var(--MainBGColor-DarkGrey);
    font-size: 18px;
}
    /*.btnQuy:before {
        content: "";
        height: 2px;
        background: var(--MainBGColor-Blue);
        left: 0;
        right: 0;
        position: absolute;
        bottom: -3px;
        width: 0%;
        transition: all 0.3s ease;
    }
    .btnQuy:hover.btnQuy:before{
        width: 100%;
    }*/
    .btnQuy.active, .btnQuy:hover {
        color: var(--MainBGColor-Blue);
    }

.news__nhadautu--child {
    border: solid #b5b5b5 1px;
    border-radius: 10px;
    margin: 0.5em 0;
    padding: 0.5em;
}

.news__nhadautu__detail--title {
    font-weight: bolder;
}

.news__nhadautu__detail_rightbox {
    display: none;
}

.news__nhadautu--detail:hover .news__nhadautu__detail_rightbox {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    grid-gap: 6px;
}

.news__nhadautu__time_detail {
    font-size: 14px;
    color: var(--MainBGColor-DarkGrey);
}

.news__nhadautu--detail {
    display: grid;
    /*grid-template-columns: 70% 30%;*/
    grid-template-columns: 100%;
    justify-content: space-between;
}

.bantindautu__viewFile_container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: rgb(139 139 139 / 89%);
    display: none;
    justify-content: center;
    align-items: center;
}

.bantindautu__viewFile_detail {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4em;
}

.pdf__detail {
    margin: auto;
    width: 100%;
    height: 80%;
    box-shadow: 0 8px 20px 0 #3333338f;
}

.pdf__detail_controls {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 2em 3em;
}

.btnEyeIcon {
    filter: invert();
}

.btnDownloadIcon {
    filter: invert(1);
}

.btnViewFile:hover .btnEyeIcon {
    filter: invert(1);
}

.news__nhadautu__quy--list {
    margin-top: 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 2em;
}

.news__nhadautu__time_detail {
    padding: 0.5em 0;
}
/*#endregion  */


/*.danhmuc__container > section {
    padding: 2em 0;
}*/


/*#region Dai hoi co dong */
.Widget_DaiHoiCoDong .container {
    padding: 0 !important;
}

.DHCD_Nam_Container, .BCTN_Nam_Container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

#DHCD_Nam, #BCTN_Nam {
    border-radius: 10px;
}

#DHCD_Nam {
    width: 12vw;
}

.DHCD_TieuDe h4, .BCTN_TieuDe h4 {
    color: #0065C0;
    font-size: 30px;
    font-weight: 600;
}

.DHCD_NoiDung h4, .BCTN_NoiDung h4 {
    font-size: 30px;
    font-weight: 600;
    color: #0065C0;
    padding: 0 10px 20px 10px;
}

.DHCD_NoiDung, .BCTN_NoiDung {
    border: 1px solid #817f7f47;
    border-radius: 10px;
    padding: 15px 10px;
}

.DHCD_NoiDungCon a, .BCTN_NoiDungCon a, .FilterBCTN_NoiDungCon a {
    /*  font-size: 17px;
    font-weight: 700;*/
}

.DHCD_ThoiGian, .BCTN_ThoiGian, .FilterBCTN_ThoiGian {
    font-size: 14px;
    font-weight: 600;
    color: grey;
}

.DHCD_DongHo, .BCTN_DongHo, .FilterBCTN_DongHo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .DHCD_DongHo label, .BCTN_DongHo label, .FilterBCTN_DongHo label {
        margin-left: 3px;
    }

.DHCD_NoiDungCon, .BCTN_NoiDungCon, .FilterBCTN_NoiDungCon {
    border-bottom: 1px solid #80808038;
    margin: 0 10px 20px 10px;
    padding-bottom: 10px;
}

.pd-0 {
    padding: 0;
}

.displayFlex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.buttonDownload {
    margin-left: 10px;
}

.hidebutton {
    /* display: none; */
    opacity: 0;
    transition: all 0.3s ease;
}

.DHCD_NoiDungCon:hover .hidebutton {
    /* display: block; */
    opacity: 1;
}

.widget__tab--content .container {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

#DHCD li.page-item.first, #DHCD li.page-item.last {
    display: none;
}

.btnDHCD_EyeIcon {
    filter: invert(1);
}

.DHCD_Pagination, .BCTN_Pagination, .FilterBCTN_Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-demo {
    transform: scale(0.8);
}

    .pagination-demo li {
        padding: 0 10px !important;
    }

        .pagination-demo li a {
            color: grey;
            font-weight: 600;
            border-radius: 15px
        }

            .pagination-demo li a:hover {
                background: #ff00009c;
                color: white;
                border: 1px solid #ff000038 !important;
            }

    .pagination-demo .page-item.active .page-link {
        color: white !important;
        background: #ff00009c !important;
        border: 1px solid #ff000038 !important;
    }
/*#endregion  */


/*#region Thông tin cổ phiếu */
.thongtincophieu__box {
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
}

.thongtincophieu__info {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-gap: 1em;
    justify-content: space-between;
    align-items: flex-start;
}

.thongtincophieu__bottom {
    display: flex;
    align-items: end;
    justify-content: end;
}

.thongtincophieu__info_col:not(:first-child,:nth-child(2)) {
    border-left: solid #00000038 1px;
    padding: 0 1em;
}

.thongtincophieu__info_col {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    align-items: center;
    grid-gap: 0.5em;
}

#lichsucotuc-table table td {
    border: 1px solid #DEE2E6;
}

    #lichsucotuc-table table td.coTuc-item {
        text-align: center;
    }

#myChart {
    overflow: unset !important;
}

td.padding-left-25{
    padding-left: 25px;
}

#lichsucotuc-table thead tr th{
    text-align: center;
}
/*#endregion  */
/*#region Quản trị công ty */
.quantricongty__heading {
    display: flex;
    justify-content: space-between;
}

.quantricongty__pagination {
    display: flex;
    justify-content: center;
    margin: 1.5em 0 0.5em 0;
}

.news__nhadautu__detail--title:hover {
}

.quantricongty_input_search {
    background: #c7c7c733;
    transition: all 0.3s;
}

    .quantricongty_input_search:focus {
        box-shadow: none;
    }

.news__quantricongty-child {
    border: none;
    border-radius: 0;
    margin: 1em 0;
    padding: 0.5em 0 1em 0;
    border-bottom: solid #b5b5b5bd 1px;
}
/*#endregion  */

/* #region Trách nhiệm xã hội */
.Widget_DanhSachTinTucTrachNhiemXaHoi .news__nhadautu_header {
    justify-content: end;
}

.trachnhiemxahoi__news_list {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 2em;
    justify-content: space-between;
    align-items: start;
}

.trachnhiemxahoi__news_controls {
    display: flex;
    justify-content: space-between;
}

.trachnhiemxahoi__news_controls {
    margin-top: 0.5em;
}

.trachnhiemxahoi__news_image_container {
    height: 250px;
}

.trachnhiemxahoi__news_image {
    display: block;
    width: 100%;
    object-fit: cover;
    height: -webkit-fill-available;
}

.trachnhiemxahoi__main .analysis__child--timeicon {
    width: 17px;
    display: block;
    transform: translateY(1px);
    margin-right: 2px;
}

.trachnhiemxahoi__loadmore_container {
    display: flex;
    justify-content: center;
    margin: 4em 0;
}

.trachnhiemxahoi__noContent {
    text-align: center;
}

.trachnhiemxahoi__news_child:not(:first-child) {
    /*padding: 1em 0.5em;*/
    border-radius: 10px;
    transition: all .3s;
}

.trachnhiemxahoi__bodyContainer {
    padding: 1em;
}

.trachnhiemxahoi__news_child:not(:first-child):hover {
    box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);
    transform: translateY(-10px);
}

.Widget_DanhSachTinTucTrachNhiemXaHoi {
    padding: 1em;
}
/* #endregion  */


/*#region Common */
.pagination__container {
    display: flex;
    flex-direction: row;
    list-style: none;
    width: fit-content;
    justify-content: space-evenly;
}

    .pagination__container > li {
        min-width: 30px;
        text-align: center;
        padding: 2px 4px;
        margin: 0 2px;
        border: solid black 1px;
        border-radius: 4px;
        transition: all 0s;
    }

        .pagination__container > .active, .pagination__container > li:hover {
            background: #0065C0;
            border-color: #0065C0;
        }

            .pagination__container > li:hover > a {
                color: white;
                font-weight: 500;
            }

            .pagination__container > .active > a {
                color: white;
                font-weight: 500;
            }

    .pagination__container > li {
        background: #e9e9e9;
        border: none;
    }

        .pagination__container > li > a {
            color: #686868;
            transition: all 0s;
        }

    .pagination__container .first, .last {
        display: none;
    }

    .pagination__container li:hover {
        cursor: pointer;
    }

.leftarrow:before {
    content: "";
    border-top: solid 1px;
    border-left: solid 1px;
    border-color: #323232;
    padding: 4px;
    position: absolute;
    top: 10px;
    transform: rotate(315deg);
    right: 8px;
}

.leftarrow, .rightarrow {
    position: relative;
}

    .rightarrow:before {
        content: "";
        border-top: solid 1px;
        border-left: solid 1px;
        border-color: #323232;
        padding: 4px;
        position: absolute;
        top: 10px;
        transform: rotate(135deg);
        left: 8px;
    }

.pagination__container .rightarrow:hover.rightarrow:before {
    border-color: white;
}

.pagination__container .leftarrow:hover.leftarrow:before {
    border-color: white;
    border-width: 2px;
}

.danhmuc__container {
    /*box-shadow: 0px 16px 24px rgb(0 0 0 / 15%);*/
    /*border-radius: 24px;
    padding: 1em 0;*/
}

.widget_main_container {
    box-shadow: 0px 16px 24px rgb(0 0 0 / 15%);
    border-radius: 24px;
    padding: 1em 0;
}

.Widget_ThanhTienIch {
    margin: 2em 0;
}

section#gioithieuContainer {
    padding: 1em;
}
/*#endregion  */

/*#region lịch sử cổ tức */
#lichsucotuc-table {
    width: 100%;
}

.lichsucotuc-heading {
    color: #0065C0;
    line-height: 20px;
    padding: 10px 0;
    height: fit-content;
}

.lichsucotuc thead {
    color: #0065C0;
    font-size: 16px;
}

.lichsucotuc-heading-detail {
    width: fit-content;
    display: inline-block;
}

.filter_lichsucotuc {
    float: right;
}

#lichsucotuc_nam {
    border-radius: 10px;
}

.lichSuCoTuc_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*#endregion */


/*#region Banner */
.banner__background_video {
    width: 100%;
    position: absolute;
}

.category__banner {
    background-size: cover;
}
/*#endregion */
/*#region Phân tích tại BVSC */
.phantich__bvs_box {
    display: grid;
    grid-template-columns: 50% 48%;
    justify-content: space-between;
}

.phantich__bvs_box {
    /*box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);*/
    padding: 1em;
    border-radius: 1em;
}

.phantich__bvs_left {
    display: grid;
    grid-template-columns: 1;
    padding-right: 1em;
    border-right: solid var(--MainBGColor-Grey) 1px;
}

.phantich__bvs_thumbnail-img {
    display: block;
    width: 100%;
    object-fit: cover;
}

ul.phantich__bvs_noidunglienquan_list {
    padding: 0;
}

    ul.phantich__bvs_noidunglienquan_list > li:not(li:last-child) {
        border-bottom: solid var(--MainBGColor-Grey) 1px;
    }

/*.phantich__bvs_noidunglienquan_child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid var(--MainBGColor-Grey) 1px;
    padding: 0.5em 0;
}*/

.phantich__bvs_noidunglienquan_news {
    font-size: small;
}

.phantich__bvs_noidunglienquan_desc {
    margin: 1em;
    font-size: 14px;
    color: var(--MainBGColor-DarkGrey);
}

p.phantich__bvs_noidunglienquan_desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

ul.phantich__bvs_noidunglienquan_list {
    /*padding: 0.5em 1em;*/
}

.phantich__bvs_noidunglienquan_child {
    padding: 0.5em 0;
}
/*#endregion */
/*#region Đăng ký mã cổ phiếu tin */
.dangkytin__macophieu_heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dangkytin__macophieu_thumbnail {
    display: block;
    width: 100%;
    object-fit: cover;
}

.dangkytin__macophieu_controls {
    display: flex;
    justify-content: center;
}
/*#endregion */


/*#region Phân tích >  chi tiết > báo cáo */
.heading_category_child.active {
    color: var(--MainBGColor-Blue);
}

.phantich_chitiet_baocaophantich_heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.phantich_chitiet_baocaophantich .heading_category_child {
    padding: 0 0.5em;
    cursor: pointer;
}

.phantich_chitiet_baocaophantich_main {
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    justify-content: space-between;
    row-gap: 2em;
}

.chitiet_baocaophantich_child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2em 1em 4em 1em;
    border-radius: 1em;
    transition: all 0.3s;
    height: 100%;
}

.chitiet_baocaophantich_fileAttach {
    display: flex;
    justify-content: space-between;
}

.chitiet_baocaophantich_fileAttach {
    display: flex;
    justify-content: space-between;
    background: var(--MainBGColor-White);
    color: var(--MainBGColor-Blue);
    background: var(--MainBGColor-Blue);
    padding: 0.5em 0.5em;
    border-radius: 0.5em;
}

.new_article {
    background: var(--MainBGColor-Red);
    height: fit-content;
    padding: 0.5em 1em;
    border-radius: 4px;
    color: white;
    margin-bottom: 2em;
    position: absolute;
    top: 10px;
    right: 10px;
}
h3.chitiet_baocaophantich_title_MCK {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin: 0;
}

.chitiet_baocaophantich_title {
    text-align: center;
    margin:0;
}

/*.chitiet_baocaophantich_title {
    min-height: 55px;
}

.chitiet_baocaophantich_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}*/

.chitiet_baocaophantich_child:nth-child(odd) {
    background: var(--MainBGColor-Blue);
    color: var(--MainBGColor-White);
}

    .chitiet_baocaophantich_child:nth-child(odd) .btnNewsDetail {
        border-color: white;
        color: white;
    }

.chitiet_baocaophantich_child:nth-child(even) {
    background: var(--MainBGColor-DarkGrey2);
    color: var(--MainBGColor-Blue);
}

.chitiet_baocaophantich_child:nth-child(odd) .new_article {
    background: var(--MainBGColor-White);
    color: var(--MainBGColor-Blue);
}

.chitiet_baocaophantich_child:nth-child(odd) .chitiet_baocaophantich_desc_box .article__news_descript * {
    color: var(--MainBGColor-White) !important;
}

.chitiet_baocaophantich_child:nth-child(even) .chitiet_baocaophantich_desc_box .article__news_descript * {
    color: var(--MainBGColor-Blue) !important;
}


.chitiet_baocaophantich_fileInfo {
    width: 100%;
    position: absolute;
    bottom: 15px;
    padding: 0 20px;
    right: 0;
}
.pd-bottom{
    padding-bottom: 60px;
}

.chitiet_baocaophantich_desc_box {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: -webkit-fill-available;
    width: 100%;
}

.chitiet_baocaophantich_fileAttach {
    background: var(--MainBGColor-Grey);
    color: var(--MainBGColor-Blue);
    display: grid;
    align-items: center;
    grid-template-columns: auto auto auto;
    grid-gap: 4px;
}

.chitiet_baocaophantich_child hr {
    background: white;
    height: 1px;
    width: 80%;
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
}

.phantich_chitiet_baocaophantich_bottom {
    margin: 2em 0;
}

.phantich_baocaophantich_bottom_box {
    display: grid;
    grid-template-columns: 80% 30%;
}

.phantich_baocaophantich_bottom_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
}

.phantich_baocaophantich_page_detail_box {
    display: grid;
    grid-template-columns: auto auto;
}

.dangkytin__macophieu_container {
    padding: 1em;
    /*box-shadow: 0px 16px 24px rgb(0 0 0 / 15%);*/
    border-radius: 1em;
    background: white;
}

.phantich_baocaophantich_bottom_box {
    padding: 1em;
}

.phantich_baocaophantich_page_detail_box {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-content: center;
}

.phantich_baocaophantich_bottom_left {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    grid-gap: 1em;
}
/*.pagination-info {
    display: grid;
    grid-template-columns: auto 30% 40%;
    justify-content: space-between;
    grid-gap: 10px;
    transform: translate(20%, 0);
}*/
.pagination-info {
    display: grid;
    grid-template-columns: 20% 30% 30%;
    grid-gap: 1rem;
    align-items: center;
    justify-content: center;
}

.baocaophantich_bottom_input_currentPage {
    text-align: center;
}

.rightArrow {
    border-top: solid 1px;
    border-left: solid 1px;
    border-color: #323232;
    padding: 4px;
    top: 10px;
    transform: rotate(315deg);
    right: 8px;
    width: 8px;
    height: 8px;
}

.leftArrow {
    border-top: solid 1px;
    border-left: solid 1px;
    border-color: #323232;
    /* padding: 4px; */
    top: 10px;
    transform: rotate(135deg);
    left: 8px;
    width: 8px;
    height: 8px;
}

.baocaophantich_bottom_input_currentPage {
    text-align: center;
    border: solid #a7a7a7 1px;
    border-radius: 4px;
    padding: 4px 0;
}

.fileAttach_name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.backgroundcss {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position:relative;
}
.backgroundcss-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.2;
    border-radius: 1em;
}

.backgroundcss-content-container {
    z-index: 100000;
    opacity: 1;
}

.chitiet_baocaophantich_child:hover {
    /*box-shadow: 0px 8px 10px rgb(22 22 22 / 11%);*/
    transform: translateY(-0.5em);
}

.btnNext .leftArrow, .btnPrevious .rightArrow {
    border-color: var(--MainBGColor-Blue);
}

.btnNext:hover .leftArrow, .btnPrevious:hover .rightArrow {
    border-color: var(--MainBGColor-White);
}

.phantich_baocaophantich_page_detail_right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnNext, .btnPrevious {
    /*padding: 0.5em 0.5em;*/
    margin-right: 5px;
}

.phantich_chitiet_baocaophantich {
    padding: 1em;
    /*box-shadow: 0px 16px 24px rgb(0 0 0 / 15%);*/
    border-radius: 1em;
    background: white;
}

.article__news_descript {
    text-align: center;
    width: 70%;
}
/*Detail*/
.baocaophantich_detail_heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.baocaophantich_table_detail thead tr:first-child {
    background-color: var(--MainBGColor-Grey);
}

.baocaophantich_table_detail {
    border-collapse: collapse;
    border-radius: 1em;
    overflow: hidden;
}

    .baocaophantich_table_detail td {
        min-width: 15vw;
    }

.baocaophantich_table_fileinfo_detail {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    justify-content: space-between;
    align-items: center;
}

/*#endregion */
/*Modal*/
.phantich_modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, .4);
}

.phantich_modal_box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.phantich_modal .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal_closeIcon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--MainBGColor-DarkGrey2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.close {
    display: flex;
    justify-content: end;
    margin: 0 0 3em 0;
}

    .close:hover .modal_closeIcon {
        background: var(--MainBGColor-Red);
    }

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.phantich_chitiet_btnViewFile:hover, .phantich_chitiet_btnDownloadFile:hover {
    cursor: pointer;
}

/*#region Đội ngũ tuyển dụng*/
.HR .slick-prev:before {
    color: #0065C0;
    font-size: 30px;
    font-weight: 800;
}

.HR .slick-next:before {
    color: #0065C0;
    font-size: 30px;
    font-weight: 800;
}

.slick-next:before, .slick-prev:before {
    content: "" !important;
}


.HR.container {
    box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);
    border-radius: 1em;
    position: relative;
}

.HR h4 {
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    color: #0065C0;
    text-align: center;
    margin: 30px 0 50px 0;
}

.HR_Content {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}

.HR .slick-next {
    margin-top: auto;
    position: absolute;
    right: -35px !important;
}

.HR .slick-prev {
    position: absolute;
    left: -35px !important;
}

/*.HR_Sub_content img {
    display: block;
    width: 100%;
    object-fit: cover;
}*/

.HR .slick-dots li button:before {
    font-size: 25px !important;
}

.HR_Sub_content {
    position: relative;
    padding: 0 10px;
    width:100%;
    height:360px;
}

.HR_Sub_Title {
    position: absolute;
    bottom: 0;
    color: white;
    z-index: 1000;
    padding-left: 15px;
}

    .HR_Sub_Title p {
        font-size: 15px;
        font-weight: 600;
    }

    .HR_Sub_Title h5 {
        font-size: 21px;
        font-weight: 700;
    }

.HR_Sub_content img {
    width: 100%;
    height: 100%;
    border-radius:12px;
    object-fit:cover;
}

.HR_Sub_content:hover .overlay {
    transition: all 0.5s;
    opacity: 0;
}

.HR_Sub_content:hover .HR_Sub_Content_Detail {
    transition: all 0.5s;
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, rgba(19, 19, 19, 0.25) 34.38%, rgba(19, 19, 19, 0.5) 69.27%, #131313 100%);
    border-radius: 12px;
    margin: 0 11px;
}

.HR_Sub_Content_Detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000c7;
    color: white;
    border-radius: 12px;
    opacity: 0;
    padding: 50px 10px 10px 10px;
    z-index: 10000000;
    margin: 0 11px;
}

    .HR_Sub_Content_Detail h5 {
        margin: 0;
        padding: 0;
        font-weight: 700;
    }

    .HR_Sub_Content_Detail p.position {
        margin: 2px 0 0 0;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .HR_Sub_Content_Detail p.Description {
        margin: 0;
        padding: 0;
        font-size: 14px;
        margin-top: 12px;
    }

    .HR_Sub_Content_Detail a {
        color: white;
        text-decoration: none;
        border: 1px solid;
        border-radius: 5px;
        padding: 5px 10px;
        font-size: 15px;
        font-weight: 600;
    }

.btnDetail {
    margin-top: 25px;
}

.LeftContent img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.LeftContent h5 {
    color: #0065C0;
    font-size: 21px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
}

.LeftContent p {
    font-size: 18px;
    font-weight: 500;
}

.RightContent h5 {
    font-size: 21px;
    font-weight: 700;
    color: #0065C0;
}

.RightContent p {
    font-size: 16px;
    font-weight: 500;
}

.RightContent ul li {
    font-size: 16px;
    font-weight: 500;
}

.HR .previous {
    margin-left: -80px;
}

.HR .next {
    margin-right: -80px;
}

.HR_Content {
    position: relative;
}

.HR_Arrow_Left {
    position: absolute;
    top: 50%;
    left: -4%;
}

.HR_Arrow_Right.slick-arrow {
    position: absolute;
    top: 50%;
    right: -4%;
}

.HR_Arrow_Left i, .HR_Arrow_Right i {
    font-size: 25px;
    color: #0065C0;
    width: 50px;
    height: 50px;
    border: 2px solid #0065C0;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}

    .HR_Arrow_Left i:hover {
        background: #0065C0;
        color: white;
        cursor: pointer;
        transition: all .3s;
    }

    .HR_Arrow_Right i:hover {
        background: #0065C0;
        color: white;
        cursor: pointer;
        transition: all .3s;
    }

/*#endregion*/
.freetext2_container img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: auto;
}

.freetext2_container {
    /*box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);*/
    border-radius: 1em;
    padding: 0 !important;
    /* padding: 1em;*/
}

.freetext2_container {
    position: relative;
    /*padding-bottom: 30px;*/
}

    .freetext2_container.umb-grid {
        padding: 2em;
    }

.freetext2_otherLink {
    /*position: absolute;
    transform: translate(14px, -20px);*/
}
.margin-left-10 {
    margin-left: 10px;
}
.readMore_area {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 2em;
}


/*#region Bai Viet Chi Tiet*/
.ArticleDetail_Content {
    padding: 30px 0 0 0;
}

.ArticleDetail_File p {
    padding-top: 20px;
    border-top: 1px solid #00000047;
}

.ArticleDetail_File ul li {
    margin-bottom: 12px;
}
/*#endregion*/

/*#region Thanh tien ich */
.tienich_nutlienket_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.tienich_nutlienket_left {
    display: grid;
    color: white;
    transition: all .3s;
}

    .tienich_nutlienket_left:hover {
        color: var(--MainBGColor-White);
    }

.tienich_nutlienket_child {
    flex: 1;
    margin-right: 1em;
}

.tienich_nutlienket_child {
    display: flex;
    align-items: center;
    background: var(--MainBGColor-Blue);
    padding: 0.5em 1em;
    border-radius: 0.5em;
}

.tienich_nutlienket_right {
    padding: 6px;
}

.tienich_nutlienket_child * {
    cursor: pointer;
}



.Render_Widget_lienKetNhanh {
}

/*#endregion*/

section.bottom__container {
}

.multiple {
    /*box-shadow: 0px 16px 24px rgb(22 22 22 / 11%);*/
    border-radius: 24px;
    padding: 0;
}

/*#region Lien ket nhanh */
.quick_redirect_icon {
    content: "";
    border-top: solid black 1px;
    border-left: solid black 1px;
    border-color: var(--MainBGColor-Blue);
    /*width: 6px;
    height: 6px;*/
    padding: 3px;
    transform: rotate(135deg);
    margin-right: 10px;
}

.quick_redirect_child {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.quick_redirect_list {
    display: grid;
    grid-template-columns: 29% 29% 29%;
    justify-content: space-between;
    align-items: center;
    grid-gap: 0.5em 2em;
}
/*#endregion*/

/*#region Accordion */
.Widget_accordion.container {
    margin: 3em 0;
    padding: 1em;
}

.accordion_content {
    display: none;
}
/*.active{
    display: block;
}*/

.accordion_box {
    display: grid;
    grid-template-columns: 49% 50%;
    justify-content: space-between;
    align-items: start;
}

img.accordion_left_image {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.accordion_child {
    padding: 2px 0.5em;
    /* border: solid #0065c038 1px; */
    border-radius: 6px;
    margin-bottom: 1em;
    /* box-shadow: 8px 16px 24px rgb(0 0 0 / 5%), -8px -16px 24px rgb(0 0 0 / 5%); */
}

.accordion_heading {
    position: relative;
}

    .accordion_heading, .accordion_heading:hover, .accordion_child {
        cursor: pointer;
    }

.accordion_arrowbtn {
    content: "";
    border-top: solid white 1px;
    border-left: solid white 1px;
    padding: 5px;
    border-color: var(--MainBGColor-Blue);
    transform: translate(-100%, 100%) rotate(225deg);
    position: absolute;
    cursor: pointer;
    right: 4px;
    top: 0;
}

    .accordion_arrowbtn.expanded {
        transform: translate(-100%, 100%) rotate(45deg);
    }


/*#endregion*/
/*#region Ve chung toi gioi thieu doi ngu nhan vien */
.grid_responsive_container {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 19% 19% 19% 19% 19%;
    justify-content: space-between;
}

.grid_image_child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .grid_image_child:nth-child(even) {
        padding: 5em 0;
    }

    .grid_image_child:nth-child(1), .grid_image_child:nth-child(5) {
        padding: 10em 0;
    }

img.grid_image {
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.grid_image_child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 1em;
}

.veChungToi_gioiThieu_doiNguNhanLuc_danhSachMota {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 3em;
    row-gap: 1em;
    margin: 2em 0;
}

.veChungToi_gioiThieu_doiNguNhanLuc_heading {
    display: grid;
    grid-template-columns: 10% 90%;
    justify-content: center;
    align-items: center;
}

    .veChungToi_gioiThieu_doiNguNhanLuc_heading h3:before {
        content: "0";
    }

.veChungToi_gioiThieu_doiNguNhanLuc_title, .veChungToi_gioiThieu_doiNguNhanLuc_title:before {
    color: var(--MainBGColor-Blue);
}

.veChungToi_gioiThieu_doiNguNhanLuc_mota {
    color: var(--MainBGColor-DarkGrey);
}
/*#endregion*/
/*#region KH ca nhan cong cu cua BVSC */
.congcuBVSC_anhNen {
    display: block;
    width: 100%;
}

.congcuBVSC_mota, .congcuBVSC_danhSachCongCu {
    margin: 1em 0;
}

.congcuBVSC_child {
    display: grid;
    grid-template-columns: 30% 60%;
}

img.congcuBVSC_image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.congcuBVSC_child {
    display: grid;
    grid-template-columns: 35% 65%;
    grid-gap: 1em;
    justify-content: space-between;
    align-items: center;
    border: solid black 1px;
    border-radius: 1em;
    padding: 1em;
    margin: 1em 0;
    border-color: #0065C0;
}

.congcuBVSC_child {
    background-image: url(/media/b00huvz0/274700948_3178004429098634_4681931305558860210_n.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.congcuBVSC_main {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5em 1em;
    border-radius: 8px;
    color: white;
}

.congcuBVSC_controls {
    display: flex;
    justify-content: start;
    align-items: center;
}

.congcuBVSC_btnDetail {
    color: white;
    background: transparent;
    border: white;
    border-radius: 4px;
    padding: 0.5em 2em;
}

.congcuBVSC_btnDetail {
    color: white;
    background: transparent;
    border: solid white 1px;
    border-radius: 4px;
    padding: 6px 1em;
    color: white;
}

    .congcuBVSC_btnDetail:hover {
        color: white;
    }

.congcuBVSC_main_icon {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1em 0;
}

.congcuBVSC_avatar {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: solid white 3px;
    border-radius: 4px;
}

.congcuBVSC_main_icon {
    background-image: url(/media/maynhmqh/rectangle-4068.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100px;
    background-position: -85px;
    height: 100px;
    border-radius: 4px;
    border: solid 3px;
    margin: 1em 0;
}

.congcuBVSC_detail_container {
    display: none;
}
/*#endregion*/
.btn_arrow {
    border-top: solid #0065C0 2px;
    border-left: solid #0065C0 2px;
    padding: 3px;
    display: inline-flex;
    transform: rotate(-135deg);
    position: relative;
    top: -2px;
    left: 2px;
    transition: all 0.3s ease;
}

.ActivityNews_Content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #070707;
}

p.ActivityNews_Description {
    font-size: 14px;
    font-weight: 500;
    color: #070707;
}

p.ActivityNews_DateTime span {
    font-weight: 500;
    color: #767676;
    font-size: 13px;
    margin-left: 3px;
}

p.ActivityNews_DateTime {
    display: flex;
    justify-content: start;
    align-items: center;
}

.ActivityNews_Image {
    width: 100%;
    height: 156px;
}

    .ActivityNews_Image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
    }

.buttonViewMore {
    text-align: center;
}

#btnViewMore:hover span.btn_arrow {
    border-color: white;
}

/*#region Khách hàng cá nhân*/
#IndividualCustomers .slick-prev:before,
#IndividualCustomers .slick-next:before {
    color: #0065C0;
}

#IndividualCustomers_Item .backgroundBlur {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(77, 77, 77, 0) 0%, rgba(77, 77, 77, 0.6) 29.17%, rgba(77, 77, 77, 0.75) 62.5%, #4D4D4D 100%);
}

#IndividualCustomers_Item .picture {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
}

#IndividualCustomers_Item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#IndividualCustomers_Nav .slideImage_container {
    display: grid !important;
    padding-top: 30px;
}

#IndividualCustomers_Item .slideImage_container {
    position: relative;
    width: 100%;
    height: 680px;
}

#IndividualCustomers_Item .slideImage_Content {
    position: absolute;
    bottom: 20px;
    color: white;
    left: 20px;
}

    #IndividualCustomers_Item .slideImage_Content h3 {
        font-size: 23px;
        font-weight: 700;
    }

        #IndividualCustomers_Item .slideImage_Content h3 span {
            font-size: 40px;
            padding-right: 10px;
        }

    #IndividualCustomers_Item .slideImage_Content p {
        font-size: 15px;
        font-weight: 400;
        width: 40vw;
    }

#IndividualCustomers_Nav .picture {
    width: 100%;
    height: 235px;
    position: relative;
    padding: 0 5px;
}

    #IndividualCustomers_Nav .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

#IndividualCustomers_Nav .slideImage_Content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0065C0;
}

#IndividualCustomers_Nav .slideImage_Content {
    width: 100%;
    height: auto;
}

#IndividualCustomers_Nav .slideImage_container .active {
    transform: translateY(-20px);
    transition: all 0.5s;
}

#IndividualCustomers_Nav .overlayImage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(77, 77, 77, 0) 0%, rgba(77, 77, 77, 0.6) 29.17%, rgba(77, 77, 77, 0.75) 62.5%, #4D4D4D 100%);
    border-radius: 15px;
    margin: 0 5px;
}

#IndividualCustomers_Item {
    position: relative;
}

.IndividualCustomers_Button {
    position: absolute;
    bottom: 5vh;
    right: 1vw;
}

#btnIndividualCustomers_Pre, #btnIndividualCustomers_Next {
    border-radius: 50%;
    color: white;
    border: 1px solid white;
}

    #btnIndividualCustomers_Pre:hover, #btnIndividualCustomers_Next:hover {
        transition: all 0.3s;
        border: 1px solid #0065C0;
        background: #0065C0;
    }

.IndividualCustomersDetail_Social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .IndividualCustomersDetail_Social .Social_Item {
        margin-right: 5px;
    }

.IndividualCustomers_Detail h3 {
    font-size: 20px;
    font-weight: 700;
    background: #0065C0;
    color: white;
    border-radius: 5px;
    padding: 8px;
}

.IndividualCustomersDetail_Title h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0065C0;
}

.IndividualCustomersDetail_Datetime.DHCD_DongHo label {
    font-size: 13px;
    color: #767676;
    font-weight: 600;
}

.IndividualCustomersDetail_Title {
    padding-bottom: 15px;
    border-bottom: 1px solid #DADADA;
}

.Widget_KhachHangCaNhan {
    margin: 2em 0;
}

.Widget_TinHoatDongCuaBvsc {
    margin: 2em 0;
}

#IndividualCustomers_Nav .slideImage_container:hover {
    cursor: pointer;
}

.ActivityNews_Container {
    overflow-y: scroll;
    max-height: 700px;
}

/*#endregion*/

/*#region Doi ngu lanh dao */
select.select_nhiemky {
    float: right;
}

.SlickBoardOfDirectors_Image {
    display: block;
    /* background: #3498db;
  color: #fff; */
    /* font-size: 36px; */
    height: 350px;
    /* line-height: 100px; */
    position: relative;
    /* text-align: center; */
    /* border: solid 1px rgb(145, 195, 0); */

    transform: translate(0, 0) scale(0.7);
    transition: all .4s ease;
    opacity: .5;
}

    .SlickBoardOfDirectors_Image img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

.slick-slide.slick-center .SlickBoardOfDirectors_Image {
    z-index: 1;
    transform: scale(1);
    opacity: 1;
    /* color: #e67e22; */
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    appearance: none;
    margin-top: -10px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: transparent;
    outline: none;
    z-index: 100;
}

.slick-prev {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #007bff transparent transparent;
    left: 0;
}

.slick-next {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #007bff;
    right: 0;
}

.SlickBoardOfDirectors_Image {
    display: grid;
    align-items: center;
}

    .SlickBoardOfDirectors_Image img {
        width: 100% !important;
        display: block;
        object-fit: cover;
        height: fit-content;
        border-radius: 50%;
    }

    .SlickBoardOfDirectors_Image img {
        display: block;
        border-radius: 50%;
        object-fit: cover;
        height: -webkit-fill-available;
    }

.SlickBoardOfDirectors_Title, .SlickBoardOfDirectors_Title li {
    white-space: normal;
}

.SlickBoardOfDirectors_Image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SlickBoardOfDirectors_Image {
    margin: auto;
}

.SlickBoardOfDirectors_Title {
    text-align: center;
    margin: 1em 0;
    opacity: 0;
    transition: all .3s;
    padding: 0;
    text-align: center;
}

.SlickBoardOfDirectors_Title_tit {
    display: block;
    width: -webkit-fill-available;
}

.slick-center .SlickBoardOfDirectors_Container .SlickBoardOfDirectors_Title {
    opacity: 1;
}

.SlickBoardOfDirectors_Image {
    position: relative;
}

    .SlickBoardOfDirectors_Image img {
        position: absolute;
        z-index: 2;
    }

    .SlickBoardOfDirectors_Image::after {
        content: "";
        position: absolute;
        background: transparent;
        width: 210px;
        height: 210px;
        z-index: 1;
        border-radius: 50%;
        opacity: 0;
        transition: all .7s ease;
    }

.slick-center .SlickBoardOfDirectors_Container:hover .SlickBoardOfDirectors_Image:after {
    opacity: 1;
    background: #0065C0;
}

/*#DNLDContainer .slick-list {
    padding: 3em 1em !important;
}*/

.slick-next {
    width: 0;
    height: 0;
    border-style: solid !important;
    border-width: 15px 0 15px 15px !important;
    border-color: transparent transparent transparent #007bff !important;
    right: 0;
    transform: translate(-50%, 0%) !important;
}

.slick-prev {
    width: 0;
    height: 0;
    border-style: solid !important;
    border-width: 15px 15px 15px 0 !important;
    border-color: transparent #007bff transparent transparent !important;
    left: 0;
    transform: translate(50%, 0%) !important;
}


.DNLD_detail {
    display: grid;
    grid-template-columns: 30% 69%;
    justify-content: space-between;
}

.DNLD_detail_tenlanhdao {
    font-weight: bolder;
}

.DNLD_detail_avatar {
    display: block;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    object-position: top;
}

.DNLD_detail_danhsachchucvu {
    padding: 0;
    color: var(--MainBGColor-DarkGrey);
}
/*#endregion*/


/*#region Danh sach chi nhanh */
.mangLuoiBVSC_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mangLuoiBVSC_danhsach_diachi li {
    margin-right: 3em;
}

.mangLuoiBVSC_danhsach_diachi {
    display: flex;
    flex-direction: row;
    padding: 0;
    align-items: center;
}

.mangLuoiBVSC_main_box {
    display: grid;
    grid-template-columns: 29% 69%;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3em;
}

.mangLuoiBVSC_main_left_child {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    border: 1px solid #DADADA;
    border-radius: 12px;
    padding: 30px;
    /*min-height: 270px;*/
    align-content: start;
    min-height: 500px;
}

.mangLuoiBVSC_main_title {
    margin: 1em 0;
    border-left: solid var(--TxtColor-Blue) 3px;
    padding-left: 0.5em;
}

.mangLuoiBVSC_main_left_child_row {
    display: grid;
    grid-template-columns: 8% 90%;
    align-content: space-between;
    padding: 5px 0;
}

    .mangLuoiBVSC_main_left_child_row div,
    .mangLuoiBVSC_main_left_child_row div a {
        font-size: 16px !important;
    }

.mangLuoiBVSC_main_left {
    /*display: grid;*/
    /* grid-template-columns: 49% 49%;*/
    justify-content: space-between;
    align-items: start;
    row-gap: 1em;
}

.branch-name-network {
    margin: 48px 0;
    color: var(--TxtColor-Blue);
    font-size: var(--TxtSize-34);
    font-weight: 600;
    text-align: center;
    font-size: 24px;
}

div.map-container {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    width: 100%;
}

iframe.map {
    width: 200%;
    height: 150%;
    position: absolute;
    bottom: -25%;
    left: -50%;
}

.map-container iframe {
    border: 0;
    min-height: 500px;
    height: 100%;
}

.mangLuoiBVSC_main_left_child {
    transition: all .3s;
}

    .mangLuoiBVSC_main_left_child.active {
        box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);
        transform: translateY(-5px);
    }

.mangLuoiBVSC_heading_filter {
    transition: all .3s;
    color: var(--MainBGColor-DarkGrey);
    border-left: solid var(--MainBGColor-DarkGrey) 1px;
    padding-left: 1em;
    cursor: pointer;
}

    .mangLuoiBVSC_heading_filter:first-child {
        border: none;
    }

    .mangLuoiBVSC_heading_filter.active {
        color: var(--MainBGColor-Blue);
    }

.network_container h2 {
    color: #0065C0;
    font-size: 35px;
    font-weight: bold;
}

.accordion_timeline {
    background: none !important;
    margin-bottom: 40px;
}

    .accordion_timeline .accordion-button {
        font-size: 18px !important;
        font-weight: bold !important;
        color: #0065C0 !important;
    }

#mangLuoiBVSC_right_map iframe {
    width: 100%;
    height: 550px;
}

.mangLuoiBVSC_right_map_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding-left: 8px !important;
    padding-right: 0 !important;
}

/*#endregion*/


/*#region Thành tích và giải thưởng:*/
.AchievementsAndAwards_Header h3.s30 {
    text-transform: uppercase;
}

#AchievementsAndAwards {
    box-shadow: 0px 16px 24px rgb(22 22 22 / 11%);
    border-radius: 24px;
    padding: 1em;
}

.AchievementsAndAwards_Header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.row.AchievementsAndAwards_Header_Container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.AchievementsAndAwards_Header ul li {
    padding: 0 10px;
    border-right: 1px solid #0065C0;
}

    .AchievementsAndAwards_Header ul li:last-child {
        border: none;
    }

    .AchievementsAndAwards_Header ul li:hover {
        cursor: pointer;
        transition: all 0.3s;
        color: #0065C0;
        font-weight: 600 !important;
    }

    .AchievementsAndAwards_Header ul li.active {
        color: #0065C0;
        font-weight: 600 !important;
    }

.AchievementsAndAwards_Header p {
    font-size: 16px;
    font-weight: 500 !important;
}

.AchievementsAndAwards_Content {
    border: 1px solid #00000024;
    margin: 0 2em 0 0;
    border-radius: 12px;
    padding: 1rem;
}

    .AchievementsAndAwards_Content h3 {
        font-size: 22px;
        color: #BC8D09;
        font-weight: 600 !important;
        padding-left: 10px;
        border-left: 4px solid #BC8D09;
    }

.AchievementsAndAwards_Item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AchievementsAndAwards_Item h4 {
    color: #0065C0;
    font-weight: 600 !important;
}

.AchievementsAndAwards_Item p {
    font-size: 16px;
    font-weight: 500 !important;
}

.AchievementsAndAwards_bd_bottom {
    border-bottom: 1px solid #00000024;
    padding-bottom: 30px;
    margin-top: 30px;
}

input#InputSearch_Award {
    border: 1px solid #00000024;
    border-radius: 5px;
    width: 60px;
    height: 35px;
    text-align: center;
}

.AchievementsAndAwards_Pagination_Right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.InputSearchCurrent {
    padding-right: 15px;
}
/*#endregion*/

/*#region Tin tuc su kien*/
.tinTucChung_main {
    display: grid;
    grid-template-columns: 69% 29%;
    justify-content: space-between;
}

.tinTucChung_main_left_firstContainer {
    display: flex;
    flex-direction: column;
}

.tinTucChung_firstContainer_imgContainer {
    position: relative;
}

.tinTucChung_img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 100%;
    transition: all .3s ease;
}

    .tinTucChung_img:hover {
        transform: scale(1.1);
    }

.tinTucChung_article_newIcon {
    /*position: absolute;*/
    top: 1em;
    left: 1em;
    color: white;
    background: var(--MainBGColor-Blue);
    padding: 2px 10px;
    border-radius: 4px;
}

.tinTucChung_main_left_sublist {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    justify-content: space-between;
    margin: 2em 0;
}

.tinTucChung_main_right_box {
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    grid-gap: 1.5em;
    padding: 0 10px 0 0;
    padding-bottom: 2em;
    height: 1000px;
}

.tinTucChung_main_right_heading {
    background: var(--MainBGColor-Blue);
    color: white;
    padding: 4px 0.5em;
    border-radius: 5px;
    font-size: 20px;
    margin-bottom: 1em;
}

.tinTucChung_right_child_heading {
    display: grid;
    grid-template-columns: 80% 19%;
    /*justify-content: space-between;*/
    position: relative;
}

.tinTucChung_main_right .tinTucChung_article_newIcon {
    right: 4px;
    left: unset;
    position: unset;
}

.tinTucChung_right_child_heading {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    justify-content: space-between;
}

a.tinTucChung_right_child_title {
    width: 100%;
}

.tinTucChung_main_controls {
    display: flex;
    justify-content: center;
}

.tinTucChung_right_child_heading:before {
    content: "";
    width: 1px;
    border-radius: 50%;
    padding: 2px;
    background: #6e6e6e;
    transform: translateY(0%);
}

.Widget_Ttsk_BaiVietTheoDanhMuc .tinTucChung_tinyTitle {
    overflow: unset !important;
    display: inline-block !important;
    font-size: 1.15em;
}

.tinTucChung_tinyTitle {
    color: var(--MainColor-Black);
}


.TTSK_danhSachBaiViet_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.TTSK_danhSachBaiViet_main {
    display: grid;
    grid-template-columns: 23.2% 23.2% 23.2% 23.2%;
    justify-content: space-between;
    margin-top: 2em;
    grid-row-gap: 2em;
}

.TCBC_child_description, .TCBC_first_description {
    /*overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
}

.TCBC_child_description {
    font-weight: 500;
    color: #646464;
    font-size: calc(95%);
}

.Widget_Ttsk_BaiVietTheoDanhMuc .tinTucChung_time {
    display: flex;
    justify-content: space-between;
}

.Widget_Ttsk_BaiVietTheoDanhMuc .tinTucChung_main_left_firstContainer {
    /*padding: 1em;*/
    border-radius: 6px;
}

.Widget_Ttsk_BaiVietTheoDanhMuc .tinTucChung_main_left_firstContainer {
    display: grid;
    grid-template-columns: auto;
    justify-content: space-between;
    align-items: baseline;
    align-content: flex-start;
}

.tinTucChung_firstContainer_imgContainer {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

/*.Widget_Ttsk_BaiVietTheoDanhMuc .tinTucChung_main_left_firstContainer:hover{
    transform: translateY(-20px);
    transition: all .3s;
    box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);
}
*/
.isHovering:hover {
    transform: translateY(-20px);
    transition: all .3s;
    box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);
}

.Widget_Ttsk_BaiVietTheoDanhMuc .tinTucChung_description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.Widget_Ttsk_BaiVietTheoDanhMuc .tinTucChung_right_container {
    display: grid;
    grid-gap: 12px;
    padding: 1em;
}
.TTSK_danhSachBaiViet_main .tinTucChung_right_container {
    height: 240px;
    align-content: space-between;
}

.slick-dots li button::before {
    font-size: 40px !important;
    width: 0 !important;
    height: 0 !important;
}

.tinTucChung_tinyTitle {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.articles_slider_container {
    position: relative;
}

.articles_slider_arrow_left {
    position: absolute;
    top: 50%;
    left: -4%;
}

.articles_slider_arrow_right {
    position: absolute;
    top: 50%;
    right: -4%;
}

    .articles_slider_arrow_left i, .articles_slider_arrow_right i {
        font-size: 25px;
        color: #0065C0;
        width: 50px;
        height: 50px;
        border: 2px solid #0065C0;
        border-radius: 50%;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        align-content: center;
    }

        .articles_slider_arrow_left i:hover {
            background: #0065C0;
            color: white;
            cursor: pointer;
            transition: all .3s;
        }

        .articles_slider_arrow_right i:hover {
            background: #0065C0;
            color: white;
            cursor: pointer;
            transition: all .3s;
        }


.danhsachtintuc_heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}

.danhsachtintuc_list {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 1em;
}

.danhsachtintuc_item {
    display: grid;
    grid-template-columns: 80% auto;
    justify-content: space-between;
    border-bottom: solid #cfcfcf 1px;
}

/*#endregion*/
/*#region Tin tuc su kien - thong cao bao chi*/
.Widget_tinTucSuKien_thongCaoBaoChi {
    /*padding: 0 1em;*/
    margin: 3em 0;
}



.TCBC_main {
    display: grid;
    grid-template-columns: 100%;
}

.TCBC_first {
    display: grid;
    grid-template-columns: auto;
}

.TCBC_first_image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.TCBC_right_list .TCBC_first {
    grid-template-columns: auto auto;
}

a.TCBC_child_imageContainer {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

img.TCBC_child_image {
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all .3s ease;
}

    img.TCBC_child_image:hover {
        transform: scale(1.1);
    }

.TCBC_child_title {
    overflow: unset !important;
    display: inline-block !important;
    font-size: 1.15em;
}

.TCBC_child_right {
    height: 260px;
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
}
a.TCBC_child_title.tinTucChung_tinyTitle {
    flex: 1;
}

.TCBC_child_detail, .TCBC_child_detail * {
    font-size: 92%;
}

.TCBC_child, .tinTucChung_main_left_firstContainer {
    transition: all .3s ease;
}

    .TCBC_child:hover, .tinTucChung_main_left_firstContainer:hover {
        transform: translateY(-1em);
    }

/*.TCBC_right_list {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
    grid-row-gap: 2em;
    grid-column-gap: 2em;
}*/
.TCBC_right_list {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    justify-content: space-between;
    grid-row-gap: 2.5em;
}

.TCBC_child {
    display: grid;
    grid-template-columns: 100%;
    justify-content: space-between;
    align-content: stretch;
    box-shadow: 0px 16px 24px rgb(143 143 143 / 11%);
}

.TCBC_child_right {
    padding: 1em 1em;
}

    .TCBC_child_right > a {
        color: var(--MainColor-Black);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

        .TCBC_child_right > a:hover {
            color: var(--TxtColor-Blue);
        }

.TCBC_child_image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.Widget_tinTucSuKien_thongCaoBaoChi a.tintucChung_loadMore {
    font-weight: 600;
}

.tinTucChung_date {
    font-size: 80%;
    color: var(--MainBGColor-DarkGrey);
}
/*#region Lịch sử phát triển-Thành tích và giải thưởng:*/
#History-Awards h2 span {
    font-size: 20px;
}

#History-Awards h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0065C0;
}

#History-Awards p.Description {
    font-size: 16px;
    color: #070707;
    font-weight: 600;
}

.History-Awards-Content {
    width: 100%;
    height: 100%;
    position: relative;
}

    .History-Awards-Content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.History-Awards-Overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    border-radius: 12px;
    height: 100%;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, rgba(19, 19, 19, 0.25) 34.38%, rgba(19, 19, 19, 0.5) 69.27%, #131313 100%);
    padding: 90px 20px 0 20px;
    opacity: 1;
}

    .History-Awards-Overlay h3, .History-Awards-Preview h3 {
        font-weight: 600;
        font-size: 34px;
        text-transform: uppercase;
    }

    .History-Awards-Overlay p, .History-Awards-Preview p {
        font-size: 16px;
        font-weight: 400;
        width: 100%;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }

.History-Awards-Preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: white;
    border-radius: 12px;
    background: #0065C0;
    padding: 90px 20px 0 20px;
}

.History-Awards-Content:hover .History-Awards-Overlay {
    opacity: 0;
    transition: all 0.5s;
}

.History-Awards-Content:hover .History-Awards-Preview {
    opacity: 1;
    transition: all 0.5s;
}

.History-Button-Preview {
    text-align: center;
}

    .History-Button-Preview a {
        color: #0065C0;
        background: white;
        font-size: 16px;
        font-weight: 600;
        padding: 7px 15px;
        border-radius: 7px;
        text-decoration: none;
    }

.HistoryBVSC_Background {
    /*background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0 0 50px 0;*/
    /*background-repeat: no-repeat;
    background-size: auto auto;
    background-position-x: -22vw;
    min-height:1000px;
    max-height:1200px;*/
}
/*#endregion*/
#InputSearch_TTSK {
    max-width: 65px;
    text-align: center;
    border: solid #0000004f 1px;
    border-radius: 4px;
}


.tinTucChung_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*#endregion*/

/*#region Danh sach bai viet slider */

.articles_slider .slick-slide {
    margin: 0 12px;
}

.tinTucChung_description {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    background: #fff;
}

.articles_slider {
    padding: 0 1em;
}
/*#endregion*/

/*#region Danh sach video */
.danhsachVideo_main {
    display: grid;
    grid-template-columns: 49% 49%;
    margin: 4em 0;
    justify-content: space-between;
}

.danhsachVideo_left {
    display: grid;
    grid-template-columns: auto;
}

.danhsachVideo_right {
    display: grid;
    grid-template-columns: 50% 49%;
    justify-content: space-between;
}

.danhsachVideo_child_heading {
    display: grid;
    grid-template-columns: 10% 98%;
    justify-content: space-between;
    align-items: start;
}

.danhsachVideo_video {
    width: 100%;
    height: fit-content;
    border-radius: 10px;
}
/*#endregion*/

/*#region Lịch sử phát triển- Timeline*/
#HistoryBVSC .section-header {
    text-align: left;
}

    #HistoryBVSC .section-header h2 {
        font-size: 35px;
        font-weight: 700;
    }

        #HistoryBVSC .section-header h2 span {
            font-size: 20px;
        }

#HistoryBVSC .bg-gradient_solid {
    background: white;
    color: #0065C0;
}

#HistoryBVSC .steps {
    position: relative;
    margin-top: 32px;
}

    #HistoryBVSC .steps::after {
        content: "";
        position: absolute;
        width: 1px;
        background-color: #0065C0;
        opacity: 0.4;
        top: 0;
        bottom: 0;
        left: 43px;
    }

    #HistoryBVSC .steps .content p {
        color: #676767;
        font-size: 16px;
    }

    #HistoryBVSC .steps .content h2 {
        font-weight: 600;
        font-size: 20px;
        color: #0065C0;
    }

#HistoryBVSC .steps-container {
    position: relative;
    background-color: inherit;
    /*transition: transform 5s ease-in-out;*/
}

.steps.slideUp {
    animation: SlideUp 1s ease forwards;
}

@keyframes SlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*.steps_body {
    transition: width 1s ease-in-out;
}*/
#HistoryBVSC .steps-container .content {
    position: relative;
}

#HistoryBVSC .steps .steps-container {
    /*width: fit-content;*/
    /*width: 40%;*/
    flex-direction: row-reverse;
    justify-content: flex-end;
}

#HistoryBVSC .steps-container {
    display: flex;
}

#HistoryBVSC .steps .steps-container .date {
    font-weight: 900;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    width: 62px;
    height: 40px;
    background-color: #0065C0;
    flex-shrink: 0;
    border-radius: 5px;
    align-items: center;
    display: flex;
    justify-content: center;
    z-index: 777;
    margin-left:12px;
}

#HistoryBVSC .step-line {
    width: 40px;
    flex-shrink: 0;
}

#HistoryBVSC .steps .steps-container:not(:first-child) {
    margin-top: 20px;
}

#HistoryBVSC .HistoryImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#HistoryBVSC .HistoryImage {
    width: 100%;
    height: 100%;
}

#HistoryBVSC .button-container {
    display: grid;
    grid-template-columns: min-content min-content;
    grid-gap: 1em;
}
/*#endregion*/


/*#region Tin tuc su kien chi tiet bai viet */
.tintucsukien_chitiet_main {
    display: grid;
    grid-template-columns: 69% 29%;
    justify-content: space-between;
}

.tintucsukien_chitiet_left {
    box-shadow: 8px 16px 24px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 1em;
}

.tintucsukien_chitiet_right {
    box-shadow: 8px 16px 24px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 1em;
    height: fit-content;
}

.TTSK_action_link {
    padding: 6px 10px;
    background: var(--MainBGColor-Blue);
    color: white;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    width: fit-content;
    align-items: center;
    grid-column-gap: 6px;
}

    .TTSK_action_link:hover {
        color: white;
    }

.TTSK_socialMedia_bottom_action {
    display: flex;
    flex-direction: row;
    width: fit-content;
    grid-gap: 6px;
    border-right: solid #bbbbbb 1px;
    padding-right: 10px;
}

.TTSK_socialMedia_bottom_container {
    display: flex;
    grid-column-gap: 2em;
    padding: 8px 12px;
    background: var(--MainBGColor-Grey);
    border-radius: 6px;
}

.TTSK_banner_image {
    display: block;
    width: 100%;
    object-fit: cover;
}
/*#endregion*/

/*#region Giao dịch trực tuyến:*/
.BwiseOnline_Image {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.BwiseOnline_Image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*#endregion*/


/*#region KHCN category detail slider: */
#widget_IndividualCustomers .slick-prev:before,
#widget_IndividualCustomers .slick-next:before {
    color: #0065C0;
}

#widget_IndividualCustomers_Item .backgroundBlur {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(77, 77, 77, 0) 0%, rgba(77, 77, 77, 0.6) 29.17%, rgba(77, 77, 77, 0.75) 62.5%, #4D4D4D 100%);
}

#widget_IndividualCustomers_Item .picture {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
}

#widget_IndividualCustomers_Item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#widget_IndividualCustomers_Nav .slideImage_container {
    display: grid !important;
    padding-top: 30px;
}

#widget_IndividualCustomers_Item .slideImage_container {
    position: relative;
    width: 100%;
    height: 680px;
}

#widget_IndividualCustomers_Item .slideImage_Content {
    position: absolute;
    bottom: 20px;
    color: white;
    left: 20px;
}

    #widget_IndividualCustomers_Item .slideImage_Content h3 {
        font-size: 23px;
        font-weight: 700;
    }

        #widget_IndividualCustomers_Item .slideImage_Content h3 span {
            font-size: 40px;
            padding-right: 10px;
        }

#widget_IndividualCustomers_Item .slideImage_Content {
    position: absolute;
    color: white;
    top: 0;
    width: 20vw;
    margin: 2em 2em;
    background: rgba(0, 0, 0, 0.4);
    padding: 1em;
    border-radius: 1em;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    grid-gap: 4px;
}

#widget_IndividualCustomers_Nav .picture {
    /*    width: 250px;
    height: 230px;
    position: relative;*/
    width: fit-content;
    height: 230px;
    position: relative;
    margin: 0.5em;
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
    justify-content: center;
}

    #widget_IndividualCustomers_Nav .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

#widget_IndividualCustomers_Nav .slideImage_Content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0065C0;
}

#widget_IndividualCustomers_Nav .slideImage_Content {
    width: 240px;
    height: auto;
}

#widget_IndividualCustomers_Nav .slideImage_container .active {
    transform: translateY(-20px) scale(1.04);
    transition: all 0.5s;
}

#widget_IndividualCustomers_Nav .overlayImage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(2 2 2 / 68%) 0%, rgb(6 6 6 / 60%) 29.17%, rgb(10 10 10 / 75%) 62.5%, #1a1a1a 100%);
    border-radius: 15px;
}

.slideImage_image {
    width: 30%;
    background-size: cover;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    /* margin: auto; */
    border: solid white 3px;
    border-radius: 8px;
}

.slideImage_otherlinks {
    display: flex;
    justify-content: center;
}

.overlayItem {
    position: absolute;
    padding: 10px;
}

.overlayItem, .overlayImage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slideImage_title {
    color: white;
    text-align: center;
}

/*.slick-dots li.slick-active button:before {
    transform: scale(7.5);
}

.slick-dots li button {
    background: #c5c5c540 !important;
    border-radius: 50%;
}*/

.CategoryDetail_Slider_Heading {
}

#widget_IndividualCustomers_Nav .slick-next.slick-arrow {
    right: -30px !important;
}

#widget_IndividualCustomers_Nav .slick-prev.slick-arrow {
    left: -32px !important;
}

.articles_slider .slick-prev.slick-arrow {
    left: -20px !important;
}

.articles_slider .slick-next.slick-arrow {
    right: -5px !important;
}


.slick-next.slick-arrow {
    right: 0;
}

.slick-prev.slick-arrow {
    left: 0;
    /*border-color: transparent #ffffff transparent transparent !important;*/
}

/*#endregion*/
/*#region Dịch vụ quỹ mở:*/
ul.OpenFundService_Category {
    display: flex;
    justify-content: right;
    align-items: center;
}

    ul.OpenFundService_Category li {
        padding: 0 5px;
        border-right: 1px solid #0065C0;
        font-size: 15px;
    }

        ul.OpenFundService_Category li:last-child {
            border: none;
        }

        ul.OpenFundService_Category li:hover {
            transition: all 0.5s;
            color: #0065C0;
            cursor: pointer;
        }

        ul.OpenFundService_Category li.active {
            color: #0065C0;
        }

/*#endregion*/

/*#region IBond*/
.IBond_Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.IBond_Item {
    border: 1px solid #8080803d;
    width: 24%;
    /*margin-right: 1%;*/
    margin-right: 30px;
    padding-top: 12px;
    border-radius: 12px;
    transition: all .3s;
}

/* .IBond_Item:hover {
        cursor: pointer;
        box-shadow: 0px 16px 24px rgb(0 0 0 / 15%);
        transform: translateY(-2em);
    }*/
/*#endregion*/

/*#region khách hàng tổ chức - Khách hàng tổ chức của BVSC:*/
.IBond_Container .row {
    display: flex;
    justify-content: center;
    /*justify-content: space-around;*/
}
/*#endregion*/

/*#region Khách hàng cá nhân - Hỗ trợ giao dịch*/

.HinhAnh_NoiDung_NoiDungChiTiet_child {
    border: 1px solid #DADADA;
    border-radius: 12px;
    margin: 0 8px;
    width: 48%;
    padding: 20px;
}

.HinhAnh_NoiDung_NoiDungChiTiet_Anh img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/*#endregion*/

/*#region DanhSachCauHoiThuongGap */
.DanhSachCauHoiThuongGap_Child {
    width: 48%;
    margin: 0 8px;
    border: solid #DADADA 1px;
    border-radius: 12px;
    padding: 1em;
    transition: all .3s;
}

    .DanhSachCauHoiThuongGap_Child:hover {
        box-shadow: 0px 16px 24px rgb(0 0 0 / 9%);
    }
/*#endregion*/

/*#region Về chúng tôi - Thành tích và giải thưởng*/
/*.ThanhTichVaGiaiThuong_Content {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}*/

.ThanhTichVaGiaiThuong_Item {
    position: relative;
    text-align: center;
}

.gioithieuSubContent_Item {
    background: #FBFBFB;
    border: solid 1px #dadada;
}

    .gioithieuSubContent_Item:hover {
        cursor: pointer;
        box-shadow: 0px 16px 24px rgb(0 0 0 / 15%);
        transform: translateY(-2em);
    }

.ThanhTichVaGiaiThuong_TieuDe h3 {
    font-size: 34px;
    font-weight: 600;
    color: #0065C0;
    text-transform: uppercase;
}

.ThanhTichVaGiaiThuong_TieuDe p {
    font-size: 16px;
    font-weight: 400;
}

.ThanhTichVaGiaiThuong_Loai {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content_center {
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0065C0;
    padding: 5px 8%;
    color: #0065C0;
    font-weight: 700;
}

    .content_center:hover {
        cursor: pointer;
        background: #0065C0;
        color: white;
        transition: all 300ms;
    }

        .content_center:hover img {
            filter: brightness(0) invert(1);
        }

.ThanhTichVaGiaiThuong_Item_Content h5 {
    color: #0065C0;
    font-weight: 600;
}

.ThanhTichVaGiaiThuong_Item_Content p {
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    /*    display: -webkit-inline-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
}

.ThanhTichVaGiaiThuong_Item_Image {
    width: 200px;
    margin: 0 auto;
    height: 200px;
}

    .ThanhTichVaGiaiThuong_Item_Image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.ThanhTichVaGiaiThuong_Button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NavigationPage {
    display: flex;
    justify-content: center;
    align-items: center;
}

#ThanhTichVaGiaiThuong_Search {
    width: 60px;
    display: inline-block;
}

.SearchPage {
    padding-right: 20px;
}

.ThanhTichVaGiaiThuong_Loai .content_center.active {
    background: #0065C0;
    color: white;
}

    .ThanhTichVaGiaiThuong_Loai .content_center.active img {
        filter: brightness(0) invert(1);
    }

.content_center label {
    cursor: pointer;
}

.ThanhTichVaGiaiThuong_Container_Item {
    border: 1px dashed #0065C0;
    padding: 20px;
}

.ThanhTichVaGiaiThuong_container_Content_Title label {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
    color: #0065C0;
}

.ThanhTichVaGiaiThuong_container_Content_Title {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.ThanhTichVaGiaiThuong_Year {
    color: #0065C0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 30px;
}

    ul.ThanhTichVaGiaiThuong_Year li {
        font-weight: 600;
        margin-bottom: 8px;
        padding-left: 6px;
        font-size: 16px;
        min-width: 80px;
        transition: all 0.1s;
        text-align: center;
    }

        ul.ThanhTichVaGiaiThuong_Year li:hover {
            cursor: pointer;
        }

li.ThanhTichVaGiaiThuong_Year_Active {
    border-left: 5px solid #0065C0;
    font-size: 20px !important;
}

/*#endregion*/

/*#region Tin hoạt động của BVSC*/
a.LoadingArticleDetailModal {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/*#endregion*/

/*#region Dịch vụ nổi bật*/
p.hot__service--description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.txt_white {
    color: white;
}

.font_weight_bold {
    font-weight: bold;
}

.background_color_blue {
    background-color: white;
}

.txt_blue {
    color: #0065C0;
}

a.btn_hot_service {
    background-color: white;
    color: #0065C0;
    border: 1px solid #0065C0;
    font-weight: bold;
}

    a.btn_hot_service:hover {
        text-decoration: underline !important;
        transition: all 0.3s;
    }

h4.DVNB_Element {
    color: #0065C0;
    font-weight: bold;
    font-size: 35px;
    margin: 0;
    position: relative;
    padding: 0 0 0 10px;
    width: 100%;
    min-height: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    h4.DVNB_Element::after {
        background: #ffd400;
        position: absolute;
        content: '';
        height: 4.25rem;
        width: 0.5rem;
        left: -11px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        border-radius: 0 8px 8px 0;
    }

.paddding_left {
    padding-left: 5px;
}

body {
    counter-reset: section;
}

/*h2::before {
    counter-increment: section;
    content: "Section " counter(section) ": ";
}*/

h4.DVNB_Element::before {
    counter-increment: section;
    content: "0" counter(section);
}

/*#endregion*/
/*#region Tin tuyển dụng*/
.TinTuyenDung_ThongBao {
    display: flex;
    justify-content: center;
    align-items: center;
}

.RightContainer {
    margin: 0 5px;
}

.dis_flex {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

/*#endregion*/


.lienhe_map_child iframe {
    border: 0;
    min-height: 350px;
    height: 100%;
}

/*#region Lazy loading*/

.fadeInImage {
    opacity: 1;
    transition: all .3s ease;
}

.fadeOutImage {
    opacity: 0;
    transition: all .3s;
}

/*#endregion*/

/*#region Tin tuc - su kien cuon toi danh muc*/

ul.ScrollCategory {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

    ul.ScrollCategory li a {
        border: 1px solid #0000002b;
        margin: 0 10px;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 15px;
        display: block;
    }

        ul.ScrollCategory li a:hover {
            cursor: pointer;
            background: #0065C0;
            color: white;
            transition: all 0.3s;
        }


/*#end region */

/*.Render_Widget_lienKetNhanh {
    margin-top: 10px;
}*/

.BwiseOnline_ContentDetail img {
    max-width: 100%;
}

.BwiseOnline_ContentDetail table {
    max-width: 100%;
    margin: 0 auto;
}

.DanhMuc_SingleContent img,
.DanhMucCon_SingleContent img {
    max-width: 100%;
}

.DanhMuc_SingleContent table,
.DanhMucCon_SingleContent table {
    max-width: 100%;
    margin: 0 auto;
}

.DanhMuc_SingleContent_Image img,
.DanhMucCon_SingleContent_Image img {
    width: 100%;
    margin: 0 auto;
}

.DanhMucCon_SingleContent {
    margin-bottom: 2em;
}

.banner-slogan-text {
    /*width: 70%;
    margin: 0 auto;  */
    font-size: 16px !important;
    font-weight: normal;
    /*width: 60%;*/
    margin: 0 auto;
}

    .banner-slogan-text p {
        margin: 0;
    }

    .banner-slogan-text.w100 {
        width: 100% !important;
    }
    .quick_redirect_heading p span {
        color: var(--TxtColor-Blue) !important;
    }

div#GiaiThuongThanhTuuNHDT {
    /*padding-top: 12px;*/
}

.GiaiThuong_ThanhTuuNHDT_Title {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

    .GiaiThuong_ThanhTuuNHDT_Title div.left {
        text-align: center;
    }

    .GiaiThuong_ThanhTuuNHDT_Title div.right {
        display: flex;
    }

#filterNam_GiaiThuong_ThanhTuu {
}

.GiaiThuong_ThanhTuuNHDT_Item {
    position: relative;
    text-align: center;
    padding: 12px 0;
}

.GiaiThuong_ThanhTuuNHDT_Item_Content h5 {
    font-weight: 600;
}

.GiaiThuong_ThanhTuuNHDT_Item_Content {
    text-align: left;
}


.right_content_container {
    padding: 0 !important;
}

.network_container {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mangLuoi_leftCol {
    padding: 0;
    padding-right: 8px;
}

.freetext2_content_area .umb-grid div .container {
    padding: 0 !important;
}

    .freetext2_content_area .umb-grid div .container .row.clearfix {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #ThanhTichVaGiaiThuong .container,
    .freetext2_content_area .umb-grid div .container .row .column,
    .NoiDungDonDanhMuc,
    section.container
    /*.Widget_ThanhTienIch.container,
    .Render_Widget_lienKetNhanh.container,
    .Widget_BwiseCongCuGiaoDichTrucTuyen,
    .Render_Widget_CategoryDetail_Slider,
    .Widget_DichVuQuyMo */ {
     /*   padding-left: 0 !important;
        padding-right: 0 !important;*/
    }

/*.tienich_nutlienket_child:nth-child(n+2):not(:nth-child(n+7)) { */
.tienich_nutlienket_child:nth-child(n+3) {
    margin-right: 0px !important;
}

.HinhAnh_NoiDung_NoiDungChiTiet {
    display: flex;
    justify-content: space-between;
}


.ddl_filter {
    display: table-cell;
    vertical-align: middle;
}

    .ddl_filter .ddl_filter_active {
        border-top: 5px solid #0065C0;
        border-left: none;
        padding: 5px 10px;
        margin: 0 0.5em;
    }

.ThanhTichVaGiaiThuong_Content_Title {
    display: flex;
    justify-content: space-between;
}

    .ThanhTichVaGiaiThuong_Content_Title .left {
        text-transform: uppercase;
        display: flex;
        align-items: center;
    }

    .ThanhTichVaGiaiThuong_Content_Title .right {
        display: flex;
    }

.ThanhTichVaGiaiThuong2_Container_Item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 16px;
}

.ThanhTichVaGiaiThuong2_Item {
    position: relative;
    width: 49%;
    display: flex;
    margin-bottom: 30px;
    min-height: 200px;
}

    .ThanhTichVaGiaiThuong2_Item.lastOrClosestLast {
        margin-bottom: 0;
    }

.ThanhTichVaGiaiThuong2_Item_Inner {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #dadada;
    width: 100%;
    display: flex;
    align-items: center;
    /*margin-bottom: 30px;*/
}

    .ThanhTichVaGiaiThuong2_Item_Inner.rightItem {
        /*margin-right: 0;*/
    }

.ThanhTichVaGiaiThuong2_Item_Image img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.ThanhTichVaGiaiThuong2_Item_Image {
    width: fit-content;
}

.ThanhTichVaGiaiThuong2_Item_Content h5 {
    /*font-size: 20px;
    line-height: 24px;*/
    font-weight: 600;
    color: #0065C0;
    text-align: justify;
}

/*.ThanhTichVaGiaiThuong2_Item_Content p {
    text-align: justify;
}*/

.line {
    border-bottom: dashed #0065C0 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    /*transform: translateY(20px);*/
}

    .line::before {
        content: "";
        background: #0065C0;
        border-radius: 50%;
        height: 13px;
        width: 13px;
        padding: 3px;
        position: absolute;
        transform: translate(-50%, -6px);
        left: 50%;
        text-align: center;
    }


.ThanhTichVaGiaiThuong2_Item_Content {
    margin-left: 16px;
}

    .ThanhTichVaGiaiThuong2_Item_Content .Title {
        font-size: 16px;
        font-weight: bold;
        color: #0065C0;
    }

/*#region Co hoi nghe nghiep*/
.SlideAndContent_left {
    float: left;
    width: 50%;
    padding:0 10px;
    position: relative;
}

.SlideAndContent_left.reverse {
    float: right;
}


.ClearAll {
    clear: both;
}

.btn_SlideAndContent_ViewDetail {
    text-align: center;
}

.SlideAndContent_Images img, .ContentTopSlideDown_Slide_Images img {
    width: 100%;
    height: 100%;
}


.SlideAndContent_Images_Arrow_Left i, .SlideAndContent_Images_Arrow_Right i {
    font-size: 20px;
    color: #0065C0;
    width: 40px;
    height: 40px;
    border: 2px solid #0065C0;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}

    .SlideAndContent_Images_Arrow_Left i:hover, .SlideAndContent_Images_Arrow_Right i:hover {
        background: #0065C0;
        color: white;
    }

.SlideAndContent_Images_Arrow_Left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 13px;
}

.SlideAndContent_Images_Arrow_Right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}


.SlideAndContent .slick-prev{
    border-color: transparent #0065C0 transparent transparent !important;
}
.SlideAndContent .slick-next {
    border-color: transparent transparent transparent #0065C0 !important
}

.ContentTopSlideDown_Slide_Item {
    width: 100%;
    height: 265px;
    padding-right: 15px;
}

    .ContentTopSlideDown_Slide_Item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
.ImageItem {
    min-height: 400px;
}
    .ImageItem img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }
/*#endregion*/

#PopupSuKien .modal-body {
    padding: 0;
}

#PopupSuKien .modal-header {
    position: absolute;
    z-index: 9999;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #PopupSuKien .modal-header button {
        background-color: white !important;
        opacity: 0.8;
        border-radius: 50%;
        font-size: 10px !important;
        padding: 10px;
    }

        #PopupSuKien .modal-header button:hover {
            opacity: 1;
        }

#Image_PopupSuKien img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#PopupSuKien .modal-header{
    border-bottom: none !important; 
}

#Preview_Modal .download_analysis-report-file_in_report_detail {
    cursor: pointer;
    padding: 0.5em 0.5em;
    border-radius: 0.5em;
    justify-content: space-between;
    background: var(--MainBGColor-Grey);
    color: var(--MainBGColor-Blue);
    display: grid;
    align-items: center;
    grid-template-columns: auto auto auto;
    grid-gap: 4px;
}

.display-flex{
    display: flex;
}
.padding-top-bottom {
    padding: 50px 0 0 0;
}