.header-top {
    padding-top: var(--space-8);
    padding-bottom: var(--space-4);
    background: var(--bg-site);
    position: relative;
    z-index: 4;
}



.header-top__inner {
    text-align: center;
}

.header-top__logo {
    font-size: 0;
    padding: 0;
}

.header-top__logo .header-top__logo-link {
    display: inline-block;
}

.header-top__border {
    text-align: center;
      background: #faf0e4;
    position: relative;
    z-index: 4;
}

.header-top__menu {
    display: none;
}

.header-top__user {
    display: none;
}

.header-main {
    position: relative;
    top: 0;
    transition: all .4s;
    width: 100%;
    z-index: 3;
}

.header-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-site);
    z-index: -1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
}
.header-main.fixed-header {
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.search-box__close .icon-close svg path {
    transition: all .3s;
}

.search-box__close:hover .icon-close svg path {
    fill: var(--text-title);
}

.header-main.fixed-header {
    position: fixed;
    animation: slideDown 0.4s ease-in-out forwards;
    /* box-shadow moved to ::before */
    margin: 0;
    padding: 0;
}

@keyframes slideDown {
    0% {
        top: -100px;
        visibility: hidden;
    }

    100% {
        top: 0;
        visibility: visible;
    }
}

.menu__popup_main .menu__layout .header-top__inner {
    display: none;
}



@media (max-width:575px) {}

@media (min-width: 576px) and (max-width:767px) {}

@media (min-width: 768px) and (max-width:991px) {}

@media (max-width:991px) {
    .header-main {
        position: static;
    }
    .header-main.fixed-header .logo-header-scroll {
        display: none;
    }

    .header__nav.is-scrollable .nav-menu-btn {
        display: none;
    }

    .header-top__border img {
        height: 10px;
        object-fit: cover;
        object-position: center;
    }

    .header-top__border {
        height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .header-top {
        padding: 0;
    }

    .header-top__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 12px;
        height: 56px;
    }

    .header-top__menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .header-top__user {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }
    
}

@media (min-width: 992px) and (max-width:1199px) {}

@media (min-width: 1200px) and (max-width:1399px) {}

@media (min-width: 1400px) and (max-width:1599px) {}




/* */
.layout-header__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 12px;
    position: relative;
    padding: 0 var(--space-6);
    height: 56px;
}

.nav__sub {
    background: #EEE4D9;
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(100% + 0px);
    padding: var(--space-6);
    z-index: 12;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    transform: scaleY(0);
    transform-origin: 0 0;
}

.list-news-submenu .news-item {
    min-width: 0;
}

.header__nav .nav__item:hover .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.nav-menu-btn {
    display: none;
    align-items: center;
    gap: 0 8px;
}
.nav-menu-btn:first-child:before {
    content: '';
    position: absolute;
    top: -7px;
    left: -65px;
    width: 60px;
    height: 37px;
    background: linear-gradient(90deg, rgba(250, 240, 228, 0) 0%, #FAF0E4 100%);
}

.header__menu-main .nav-menu-btn:first-child {
    position: relative;
}
.header__nav.is-scrollable .nav-menu-btn {
    display: flex;
}

.header__nav .nav__list {
    display: flex;
    align-items: center;
    gap: 0 4px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
}

.header__nav.is-scrollable .nav__list {
    justify-content: flex-start;
    flex: 1;
    /* Take full width when scrolling */
}

.header__nav .nav__list::-webkit-scrollbar {
    display: none;
}

.header__home {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all .3s;
    flex-shrink: 0;
    border-radius: 4px;
}
.header__home svg {
    width: 16px;
}
.header__home svg path {
    transition: all .3s;
}
 .header__home:hover svg path {
 fill: var(--text-title);
} 
 .header__home:hover {
background:rgba(228, 27, 33, 0.05);
} 
.header__menu-home.nav__item--active   {
    background:rgba(228, 27, 33, 0.05);
    border-color: transparent !important;
}
.header__menu-home.nav__item--active svg path {
    fill: var(--text-title);
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 0 8px;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.header__nav.is-scrollable {
    justify-content: flex-start;
}

.header__menu-home {
    flex-shrink: 0;
}

.nav-menu-btn button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-site);
    border: none;
    outline: none;
    transition: all .3s;
    border-radius: 4px;
    cursor: pointer;
}

.nav-menu-btn button:hover {
    background: #edd7bc;
}

.logo-header-scroll {
    display: none;
    align-items: center;
    margin-right: 16px;
    /* Add spacing */
}

.header-main.fixed-header .logo-header-scroll {
    display: flex;
    animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-header-scroll a {
    display: block;
    line-height: 0;
}




.header__menu-main {
    display: flex;
    align-items: center;
    gap: 0 8px;
    flex: 1;
    min-width: 0;
}

.nav__item .nav__link {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    transition: all .3s;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.header__nav .nav__item:hover .nav__link {
    border-color: rgba(204, 204, 204, 1);
}

.nav__sub-heading h3 {
    font-size: 28px;
    line-height: 1.4;
    color: var(--text-main);
    font-family: "VNBSerif";
    text-transform: uppercase;
}

.nav__sub-heading {
    border-bottom: 1px solid #808080;
    margin-bottom: var(--space-6);
}

.layout-nav__sub {
    display: grid;
    grid-template-columns: 292px 1fr 292px;
    gap: 0 var(--space-12);
    white-space: normal;
}

.list-news-submenu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.list-news-submenu .news-item .news-item__image-wrapper {
    width: 100%;
}

.list-news-submenu .news-item .news-item__title {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'VNBDisplay';
}

.nav__submenu .nav__submenu-item+.nav__submenu-item {
    margin-top: var(--space-2);
}

.nav__submenu .nav__submenu-item a {
    display: block;
    font-size: 16px;
    color: var(--text-header);
    line-height: 1.4;
    transition: all .3s;
    text-transform: uppercase;
}

.nav__submenu .nav__submenu-item a:hover {
    color: var(--text-title);
}

.box-topic-submenu .title-topic {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--space-2);
}

.list-topic-item .topic-item+.topic-item {
    margin-top: var(--space-2);
}

.list-topic-item .topic-item {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.list-topic-item .topic-item .icon {
    font-size: 16px;
}

.follow-vnb-share {
    margin-top: var(--space-6);
}

.follow-vnb-share .title {
    color: #808080;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: var(--space-1);
    font-weight: 400;
}

.follow-vnb-share .vnb__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-4);
}

.follow-vnb-share .vnb__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-nav__sub .box-topic-submenu {
    min-width: 0;
    position: relative;
}

.layout-nav__sub .nav__submenu {
    min-width: 0;
    position: relative;
}

.layout-nav__sub .box-news-submenu {
    min-width: 0;
    position: relative;
}

.layout-nav__sub .box-news-submenu:before {
    content: '';
    position: absolute;
    top: 0;
    left: -24px;
    border-left: 1px dashed #CCCCCC;
    height: 100%;
}

.layout-nav__sub .box-topic-submenu:before {
    content: '';
    position: absolute;
    top: 0;
    left: -24px;
    border-left: 1px dashed #CCCCCC;
    height: 100%;
}

.nav__item.nav__item--active .nav__link {
    color: var(--text-title);
    background: #E31B210D;
    border-color: transparent !important;
}

.header__menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.header__menu-icon .icon-menu {
    opacity: 1;
    visibility: visible;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

.header__menu-icon .icon-close {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

@media (min-width: 992px) {
    .header__menu-btn.is-open .header__menu-icon .icon-menu {
        opacity: 0;
        visibility: hidden;
    }

    .header__menu-btn.is-open .icon-close {
        opacity: 1;
        visibility: visible;
    }
}

/* */
.menu__popup_main {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FAF0E4;
    z-index: 20;
    max-height: calc(100dvh - 200px);
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    border-radius: 0 0 8px 8px;
}

.menu__popup_main.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.menu__popup_main::-webkit-scrollbar {
    width: 6px;
}

.menu__popup_main::-webkit-scrollbar-track {
    background: #faf0e4;
    border-radius: 100px;
}

.menu__popup_main::-webkit-scrollbar-thumb {
    background: #c6c0ac;
    border-radius: 100px;
}

.list_menu__categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}

.menu__popup_main .menu__layout {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 0 var(--space-6);
    padding: var(--space-6);
}

.menu__column.menu__column--left {
    min-width: 0;
    width: 100%;
}

.name-title-column-sub {
    color: #808080;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'VNBSerif';
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.menu__column {
    min-width: 0;
}

.menu__column .menu__title {
    margin-bottom: var(--space-2);
        display: flex;
    align-items: center;
}

.menu__column .menu__title a {
    display: inline-flex;
    align-items: flex-start;
}

.menu__column .menu__title a h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-main);
    transition: all .3s;
    text-transform: uppercase;
}

.menu__column .menu__title a .icon {
    transform: translateX(0);
    transition: all .3s;
    margin-left: var(--space-4);
}

.menu__column .menu__title a:hover h4 {
    color: var(--text-title);
}

.menu__column .menu__title a:hover .icon {
    transform: translateX(4px);
}

.menu__list {}

.menu__list .menu__item+.menu__item {
    margin-top: var(--space-2);
}

.menu__list .menu__item .menu__link {
    display: inline-block;
    color: var(--text-header);
    transition: all .3s;
    line-height: 1.4;
    font-size: 15px;
    text-transform: uppercase;
}

.menu__list .menu__item .menu__link:hover {
    color: var(--text-title);
}

.multimedia-block {
    padding-left: var(--space-6);
    position: relative;
    border-left: 1px dashed #E4DFD9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 0 48px;
}

.multimedia-block__content {
    min-width: 0;
}

.multimedia-block__sidebar {
    min-width: 0;
}

.multimedia-block:Before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% + 12px);
    transform: translateX(-50%);
    border-right: 1px dashed #E4DFD9;
    height: 100%;
}

.contact-follow {
    display: flex;
    align-items: flex-start;
    border-top: 4px solid rgb(121 121 87 / 10%);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    gap: 0;
    gap: 0 24px;
}

.contact-follow .follow-vnb-share {
    margin: 0;
}

.contact-follow__left {
    flex: 1;
}

.contact-follow__hotline {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-follow__hotline .contact-follow__hotline-link {
    transition: all .3s;
    color: var(--text-main);
}

.contact-follow__hotline .contact-follow__hotline-link:hover {
    color: var(--text-title);
}

.contact-follow__ads {
    margin-top: 4px;
}

.contact-follow__ads .contact-follow__ads-link {
    font-size: 14px;
    color: var(--text-title);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: underline;
}

.contact-follow .follow-vnb-share .vnb__social {
    justify-content: flex-end;
}

.multimedia-block__sidebar .event-featured__content .news-item__title:before {
    display: none;
}

.multimedia-block__sidebar .ct-nav-slide {
    background: #faf0e4;
}

.multimedia-block__sidebar .ct-nav-slide:hover {
    background: #fff;
}

.multimedia-block__sidebar .event-featured__content .news-item__title {
    font-size: 16px;
    margin-bottom: var(--space-4);
}

.multimedia-block__sidebar .event-featured__thumb {
    width: 200px;
    height: 215px;
}

.multimedia-block__sidebar .event-featured__thumb .image-container {
    width: 142px;
    height: 190px;
}

.multimedia-block__sidebar .event-featured__slider .swiper-button-next.ct-nav-slide {
    top: 250px;
    right: 0;
}

.multimedia-block__sidebar .event-featured__slider .swiper-button-prev.ct-nav-slide {
    top: 250px;
    left: 0;
}

.multimedia-block__sidebar .event-featured__slider .ct-pagination {
    top: 239px;
    width: calc(100% - 80px);
}

.multimedia-block__menu .menu__list .menu__item .menu__link {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
}
.multimedia-block__menu .menu__list .menu__item .menu__link:hover {
    color: var(--text-title);
}
.multimedia-block__menu {
    margin-bottom: var(--space-8);
}



@media (max-width:1199px) {
    .layout-header__menu {
        padding: 0;
    }
}

/* Form */
.header__menu-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header__menu-search .icon-search {
    cursor: pointer;
    position: relative;
    top: 2px;
}

.search-box__inner {
    position: relative;
    right: 0;
    top: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7efe4;
    height: 36px;
    border-bottom: 1px solid #cfcfcf;
    transition: width 0.35s ease, opacity 0.25s ease;
}

.search-box__input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-main);
}

.search-box__input::placeholder {
    font-size: 14px;
    color: #B3B3B3;
    font-style: italic;
}

.header__menu-search.is-active .search-box__inner {
    width: 300px;
    opacity: 1;
    visibility: visible;
}

.header__menu-search.is-active>.icon-search {
    display: none;
}

.header__menu-search .icon-search svg path {
    transition: all .3s;
}

.header__menu-search .icon-search:hover svg path {
    fill: red;
}

.search-box__close {
    cursor: pointer;
    outline: none;
    border: none;
    background: #faf0e4;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box__inner--mobile {
    display: none;
}

.box-topic_submenu--mobile {
    display: none;
}

.follow-vnb-mobile {
    display: none;
}
.header-top.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    animation: slideDown 0.4s ease-in-out forwards;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        visibility: hidden;
    }

    to {
        transform: translateY(0);
        visibility: visible;
    }
}


.bg-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--text-main);
    opacity: 0;
     transform: translateZ(0);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: -2;
    visibility: hidden;
    transition: all .3s;
}

.bg-popup.is-visible {
    opacity: 0.7;
    visibility: visible;
}
.menu__column .menu__title>.icon {
        margin-left: 12px;
    position: relative;
    top: -1px;
}


@media (max-width:991px) {
    .header__menu-btn.is-open .menu__popup_main {
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        transform: translateZ(0);
        visibility: visible;
    }
    .menu__popup_main .menu__layout {
        display: flex;
        flex-direction: column;
        padding: 0;
        position: relative;
    }
    .menu__popup_main::-webkit-scrollbar {
        display: none;
    }

    .menu__popup_main .menu__layout .header-top__inner {
        display: flex;
        padding: 0 12px;
        margin: 0;
        position: sticky;
        top: 0;
        width: 100%;
        left: 0;
        background: #faf0e4;
        z-index: 2;
    }

    .box-topic_submenu--mobile {
        background: rgba(238, 228, 217, 1);
        padding: var(--space-4);
        display: block;
    }

    .search-box__inner--mobile {
        display: flex;
        align-items: center;
        gap: 0 12px;
        padding: 0 12px;
        margin-bottom: 12px;
    }

    .search-box__inner--mobile .search-box__input {
        height: 36px;
        border-bottom: 1px solid rgba(228, 223, 217, 1);
        padding-left: 32px;
    }

    .search-box__inner--mobile .search-box__icon {
        position: absolute;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 12px;
    }

    .box-topic_submenu--mobile .title-topic {
        color: var(--text-main);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        font-family: 'VNBSerif';
        margin-bottom: var(--space-2);
    }

    .box-topic_submenu--mobile .list-topic-item {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -12px;
        padding: 0 12px;
        gap: 0 12px;
    }

    .box-topic_submenu--mobile .list-topic-item .topic-item {
        margin: 0;
        white-space: nowrap;
    }

    .box-topic_submenu--mobile .list-topic-item::-webkit-scrollbar {
        display: none;
    }

    .menu__column--right .multimedia-block .multimedia-block__content {
        padding: 16px 12px;
        border-top: 1px solid rgba(228, 223, 217, 1);
    }

    .menu__column .menu__title {
        margin: 0;
        padding-bottom: var(--space-2);
        display: flex;
        align-items: flex-start;
        gap: 0 4px;
    }
    .menu__column .menu__title>.icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(90deg);
        transition: all .3s;
    }
    .menu__column.open-menu-item .menu__title>.icon {
        transform: rotate(-90deg);
    }
    .list_menu__categories {
        display: block;
    }

    .list_menu__categories .menu__column+.menu__column {
        border-top: 1px solid rgba(228, 223, 217, 1);
        padding-top: var(--space-3);
    }

    .menu__column.open-menu-item .menu__list {
        display: block;
    }

    .menu__column .menu__title a {
        display: flex;
        width: 100%;
        gap: 0 4px;
    }

    .menu__column .menu__title a h4 {
        flex: 1;
    }

    .menu__column .menu__list {
        display: none;
        padding-bottom: 12px;
    }

    .menu__column--right .multimedia-block .multimedia-block__content .multimedia-block__topics {
        display: none;
    }

    .multimedia-block__sidebar {
        width: 100%;
        min-width: auto;
        padding: 16px 12px;
        border-top: 1px solid rgba(228, 223, 217, 1);
    }

    .menu__column.menu__column--right .multimedia-block {
        padding: 0;
        display: block;
        border: none;
    }

    .menu__column--right .multimedia-block .multimedia-block__content .menu__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 24px;
    }

    .menu__column.menu__column--left {
        padding: 16px 12px 0 12px;
    }

    .multimedia-block:Before {
        display: none;
    }

    .menu__column--right .multimedia-block .multimedia-block__content .menu__list .menu__item {
        min-width: 0;
        margin: 0;
    }
    .menu__column.open-menu-item .menu__title a h4 {
        color: var(--text-title);
    }
    .menu__column--right .multimedia-block .multimedia-block__content .multimedia-block__menu {
        margin: 0;
    }

    .multimedia-block__sidebar .ct-nav-slide {
        display: none;
    }

    .multimedia-block__sidebar .event-featured__slider .ct-pagination {
        width: 100%;
    }

    .menu__column--right .contact-follow .follow-vnb-share {
        display: none;
    }

    .menu__column--right .contact-follow {
        border-width: 1px;
        gap: 0;
        display: block;
        margin-top: 0;
        padding: var(--space-3);
        text-align: center;
        padding-bottom: 32px;
    }
    .follow-vnb-share.follow-vnb-mobile {
        display: flex;
        align-items: center;
        background: rgba(250, 240, 228, 1);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100%;
        margin: 0;
        height: 56px;
        padding: 0 12px;
        gap: 0 12px;
        justify-content: center;
        z-index: 1;
    }

    .follow-vnb-share.follow-vnb-mobile .title {
        margin: 0;

    }
    .header__menu-icon {
        display: none;
    }

    .header__menu-main {
       height:0;
    }
    .header__menu-main .header__nav {
        display: none;
    }

    .header__menu-main::-webkit-scrollbar {
        display: none;
    }

    .header__menu-search {
        display: none;
    }

    .layout-header__menu {
        height:16px;
    }

    .nav__sub {
        display: none;
    }

    .header__nav .nav__list {
        gap: 0 5px;
        justify-content: flex-start;
    }


    .menu__popup_main {
        position: fixed;
        top: 0;
        left: 0;
        width: 350px;
        height: 100dvh;
        max-height: none;
        z-index: 12;
        background: #FAF0E4;
        border-radius: 0;
        transform: translateX(-100%);
        transition: all .4s;
        visibility: hidden;
    }

    .bg-popup {
        z-index: 9;
    }

    .no-scroll {
        overflow: hidden;
        padding-right: var(--scrollbar-width, 0px);
    }

}

@media (max-width:575px) {
    .header-main .container {
        padding: 0;
    }

    .header__menu-main {
        padding: 0 12px;
    }

    .menu__popup_main {
        width: 90vw;
    }

    .header-top__logo {
        flex: 1;
    }

    .header__nav .nav__list {
        margin-right: -12px;
        padding-right: 12px;
    }
}

@media (max-width:325px) {
    .follow-vnb-share .vnb__social a {
        width: 30px;
        height: 30px;
    }

    .follow-vnb-share .vnb__social {
        gap: 0 8px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .menu__popup_main {
        max-height: calc(100dvh - 100px);
    }
    .menu__popup_main .menu__layout {
        grid-template-columns: 1fr 300px;
    }

    .list_menu__categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .multimedia-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .multimedia-block:Before {
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        height: 1px;
        width: 100%;
        right: 0;
        margin: auto;
        border-right: none;
        border-top: 1px dashed #E4DFD9;
    }

    .contact-follow {
        flex-direction: column;
        width: 100%;
    }

    .contact-follow__left {
        flex: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-follow .follow-vnb-share {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .layout-nav__sub {
        grid-template-columns: 200px 1fr 200px;
        gap: 0 var(--space-6);
    }

    .layout-nav__sub .box-topic-submenu:before {
        left: -12px;
    }

    .list-news-submenu {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav__sub {
        padding: var(--space-5);
    }
}

@media (min-width: 1200px) and (max-width:1399px) {
     .menu__popup_main {
        max-height: calc(100dvh - 100px);
    }
    .menu__popup_main .menu__layout {
        grid-template-columns: 1fr 500px;
    }
    .list_menu__categories {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }

    .layout-nav__sub {
        grid-template-columns: 200px 1fr 200px;
    }
   
}

@media (min-width: 1400px) and (max-width:1599px) {
    .menu__popup_main {
        max-height: calc(100dvh - 100px);
    }
 
}




/* Header detail news */
.ct-header-detail .header-main.fixed-header .header__menu-main {
    display: none;
}

.ct-header-detail .header-main.fixed-header .layout-header__menu {
    justify-content: flex-start;
}

.ct-header-detail .header-main.fixed-header .header__menu-search {
    display: none;
}

.ct-header-detail .header-main.fixed-header .header__menu-btn {
    margin-right: auto;
}
.header__detail-new {
    display: none;
    align-items: center;
    flex: 1;
    padding-left: 105px;
    transition: all .3s;
}

.header__detail-new .name-category-menu {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    margin-right: 24px;
    position: relative;
    color: var(--text-main);
}
.header__detail-new .name-news-detail {
    max-width: 640px;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-main);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
}
.header__share {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 0 24px;
    width: 220px;
    margin-left: auto;
    transition: all .3s;
}
.header__share .share__item {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s;
}
.header__share .share__item .share__item--icon {
    display:block;
}
.header__share .share__item:before {
    content: '';
    position: absolute;
    top: 4px;
    right: -12px;
    height: 16px;
    width: 1px;
    background: rgba(228, 223, 217, 1);
}
.header__share .share__item:last-child:before {
    display: none;
}
.ct-header-detail .header-main.fixed-header .header__share {
    display: flex;
}
.ct-header-detail .header-main.fixed-header .header__detail-new {
    display: flex;
}

.header__detail-new .name-category-menu:before {
    content: '';
    position: absolute;
    top: 2px;
    right: -12px;
    width: 1px;
    height: 16px;
    background: rgba(228, 223, 217, 1);
}
.header__share .share__item .article-actions__group--absolute {
    width: 248px;
    background: #faf0e4;
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--border-1);
    top: 40px;
    padding: 12px;
    left: -20px;
    gap: 0 16px;
}
.header__share .share__item .share__item--icon svg path {
    transition: all .3s;
}
.header__share .share__item .share__item--icon:hover svg path {
    fill: var(--text-main);
    stroke: var(--text-main);
}
.share__item .share__item--icon.article-actions__btn--font-dec:hover svg path {
    stroke: transparent;
}
.header__share .share__item .article-actions__group--absolute  .js-font-btn {
    background: #faf0e4;
    border: none;
}
.header__share .share__item .article-actions__group--absolute .article-actions__btn--undo {
    background: #faf0e4;
}
.share__item__absolute {
    position: absolute;
    top: 40px;
    background: var(--bg-site);
    width: 248px;
    border-top: 1px solid var(--border-1);
    left: -16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}
.share__item--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}
.share__item--header .text {
    font-size: 16px;
    color: var(--text-header);
}
.share__item--header .article-actions__btn--close {
    background: transparent;
}
.share__item__absolute .custom-article-actions__size {
    gap: 0 16px;
}
.share__item__absolute .custom-article-actions__size .js-font-btn {
    background: transparent;
    border-color: transparent;
}
.share__item__absolute .custom-article-actions__size .js-font-btn:hover {
    border-color: #e31b21;
    background: #fff;
}
.share__item__absolute .custom-article-actions__size .article-actions__btn--undo {
    background: transparent;
}
.share__item.is-open .icon-choose-size svg path {
    fill: var(--text-main);
}
.share__item.is-open .share__item__absolute {
    opacity: 1;
    visibility: visible;
}
.share__item__absolute.is-open {
    opacity: 1;
    visibility: visible;
}
.header__share .share__item .custom-article-actions__size {
    display: flex;
    align-items: center;
}
@media (max-width:575px){
    .ct-header-detail .header-top__inner {
        justify-content: flex-start;
    }
    .ct-header-detail .header-top__inner .header-top__logo {
        flex: none;
        width: 168px;
    }
     .share__item__absolute {
        position: fixed;
        top: 56px;
        width: 100%;
        left: 0;
    }
}
@media (min-width: 576px) and (max-width:767px)  { 
    .ct-header-detail .header-top__inner .header-top__menu {
        margin-right: auto;
    }
    .share__item__absolute {
        left: auto;
        right: -56px;
    }
}
@media (min-width: 768px) and (max-width:991px)  { 
    .ct-header-detail .header-top__user {
        display: none;
    }
     .ct-header-detail .header-top__inner .header-top__menu {
        margin-right: auto;
    }
    .share__item__absolute {
        left: auto;
        right: -56px;
    }
}
@media (max-width:991px)  { 
    .share__item__absolute .custom-article-actions__size {
        justify-content: center;
    }

    .ct-header-detail .header-top__user {
        display: none;
    }
     .ct-header-detail .header-top__inner .header__share {
        display: flex;
        width: auto;
        margin-left:auto;
    }
    .ct-header-detail  .header-top_stock {
        display: none;
    }
    .ct-header-detail .header-top__border {
        display: none;
    }
    .ct-header-detail .layout-header__menu {
        height: auto;
    }
}
@media (min-width: 992px) and (max-width:1199px)  { 
    .header__detail-new {
        padding-left: 6px;
    }
    .ct-header-detail .header-main.fixed-header .header__detail-new {
        display: none;
    }
    .share__item__absolute {
        left: auto;
        right: -56px;
    }
}
@media (min-width: 1200px) and (max-width:1399px)  { 
    .header__detail-new {
        padding-left: 6px;
    }
    .header__share {
        gap: 0 12px;
        width: 180px;
        justify-content: flex-end;
    }
    .header__share .share__item:before {
        right: -8px;
    }
    .header__detail-new .name-news-detail {
        max-width: 585px;
    }
    .ct-header-detail .header-main.fixed-header .logo-header-scroll {
        margin-right: 0;
        width: 148px;
    }
    .share__item__absolute {
        left: auto;
        right: -56px;
    }
}
@media (min-width: 1400px) and (max-width:1599px)  { 
    .share__item__absolute {
        left: auto;
        right: -56px;
    }
    .header__detail-new {
        padding-left: 6px;
    }
    .header__share {
        gap: 0 12px;
        width: 180px;
        justify-content: flex-end;
    }
    .header__share .share__item:before {
        right: -8px;
    }
}



/* End Header detail news */