@import "fancybox.css";
:root {
    --white-color: #fff;
    --black-color: #000;
    --main-color: #ec2227;
    --font-main: 'Lora', sans-serif;
}

@font-face {
    font-family: 'Lora';
    font-weight: 400;
    src: url(../css/fonts/Lora/Lora-Regular.ttf);
}

@font-face {
    font-family: 'Lora';
    font-weight: 700;
    src: url(../css/fonts/Lora/Lora-Bold.ttf);
}

@font-face {
    font-family: 'Playfair_Display';
    font-weight: 400;
    src: url(../css/fonts/Playfair_Display/PlayfairDisplay-Regular.ttf);
}

@font-face {
    font-family: 'Playfair_Display';
    font-weight: 700;
    src: url(../css/fonts/Playfair_Display/PlayfairDisplay-Bold.ttf);
}

@font-face {
    font-family: 'Playfair_Display_ExtraBold';
    font-weight: 700;
    src: url(../css/fonts/Playfair_Display/PlayfairDisplay-ExtraBold.ttf);
}

@font-face {
    font-family: 'Playfair_Display_Black';
    font-weight: 700;
    src: url(../css/fonts/Playfair_Display/PlayfairDisplay-Black.ttf);
}

@font-face {
    font-family: 'Roboto_Slab';
    font-weight: 700;
    src: url(../css/fonts/Roboto_Slab/RobotoSlab-Bold.ttf);
}

@font-face {
    font-family: 'Roboto_Slab';
    font-weight: 400;
    src: url(../css/fonts/Roboto_Slab/RobotoSlab-Regular.ttf);
}

@font-face {
    font-family: 'Roboto_Slab_Light';
    font-weight: 400;
    src: url(../css/fonts/Roboto_Slab/RobotoSlab-Light.ttf);
}

@font-face {
    font-family: 'UTM_Avo';
    font-weight: 700;
    src: url(../css/fonts/UTMAvo/utm-avobold.ttf);
}

@font-face {
    font-family: 'Inter';
    font-weight: 400;
    src: url(../css/fonts/Inter/Inter-Regular.ttf);
}

@font-face {
    font-family: 'Inter';
    font-weight: 700;
    src: url(../css/fonts/Inter/Inter-Bold.ttf);
}

* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: 'Lora', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.siteCenter {
    padding: 0 9px;
}

.fw {
    width: 100%;
}



a {
    text-decoration: none;
    border: none;
    color: inherit;
    transition: 0.3s ease all;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

input,
button {
    border: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

b,
strong {
    font-weight: 700;
}

.gotop {
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: url(../images/mb/ico-gotop.png) 0 0 no-repeat;
    display: none;
    position: fixed;
    bottom: 40px;
    right: 12px;
    cursor: pointer;
    z-index: 999;
    text-align: center;
    transition: .3s ease all;
    opacity: 1;
}
.gotop:hover {
    opacity: .8;
}

.row-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row-between-start {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.row-start {
    display: flex;
    justify-content: flex-start;
}

.row-25 {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.row-20 {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.header-top {
    position: relative;
}

.header-logo {
    text-align: center;
    padding: 10px 0;
    /* padding-bottom: 10px; */
}

/* .ico-bars {
    background: url(../images/mb/ico-bars.png) 0 0 no-repeat;
    width: 21px;
    height: 11px;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
} */
.ico-bars {
    cursor: pointer;
}

.ico-bars::before {
    content: '';
    width: 21px;
    height: 1px;
    background-color: #8a8a8a;
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    transition: .3s transform ease;
    z-index: 999;
}

.ico-bars {
    width: 21px;
    height: 11px;
    border-top: 1px solid #8a8a8a;
    display: block;
    position: absolute;
    left: 9px;
    top: 50%;
    cursor: pointer;
    z-index: 9999999;
    transition: .3s ease all;
}

.ico-bars::after {
    content: '';
    width: 21px;
    height: 1px;
    background-color: #442727;
    display: block;
    position: absolute;
    left: 0;
    top: 9px;
    z-index: 999;
}

.ico-bars-close {
    border-top: 0;
    top: 0;
}

.ico-bars-close::before {
    transform: rotate(45deg);
}

.ico-bars-close::after {
    transform: rotate(-45deg) translate(3px, -4px);
}

.ico-close-search {
    color: #fff;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 999;
    cursor: pointer;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
}
.frm-search {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .8);
    z-index: 99999999;
}

.frm-search.active {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
}

.brd-search {
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    width: calc(100% - 18px);
}
.ico-search {
    background: url(../images/mb/ico-search.png) 0 0 no-repeat;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#frmSearch {
    width: 100%;
    background: #f8f8f8;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

#frmSearch input[type="text"] {
    width: calc(100% - 48px);
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 16px;
}

#frmSearch input[type="text"]::-webkit-input-placeholder {
    color: #a9a9a9;
}

#frmSearch input[type="text"]:-ms-input-placeholder {
    color: #a9a9a9;
}

#frmSearch input[type="text"]::-ms-input-placeholder {
    color: #a9a9a9;
}

#frmSearch input[type="text"]::placeholder {
    color: #a9a9a9;
}

#frmSearch button[type="submit"] {
    width: 48px;
    height: 48px;
    border: none;
    cursor: pointer;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-search {
    position: absolute;
    top: 23px;
    color: black;
    font-size: 28px;
    left: 20px;
}

.show-overlay {
    height: 100%;
    overflow: hidden;
}

.menu-list {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
    will-change: transform;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translate(-100%);
    -ms-transform: translate(-100%);
    -o-transform: translate(-100%);
    transform: translate(-100%);
}

.menu-list ul,
.menu-list ol {
    list-style: none;
    margin: 0;
}

.show_main_menu.menu-list {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
}

.menu-header {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-logo {
    text-align: center;
    padding: 10px 0;
}

.menu-header .button {
    padding: 0 15px;
    line-height: 1;
    cursor: pointer;
}

.menu-header .button i {
    color: #ca3c3c;
}

.menu-header .desktop-button i {
    font-size: 100%;
}

.menu-header .close-button i {
    color: #ca3c3c;
    font-size: 20px;
}

.menu-list .menu-body {
    scroll-behavior: smooth;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow: scroll;
    z-index: 9999;
    height: calc(100% - 75px);
    width: 100%;
    text-align: left;
    /* background-color: #f7f7f7; */
}

.list-main-nav {
    padding: 0 9px;
}

.sub-menuLink.active,
.list-sub-nav>.sub-menu-item.active .sub-menuLink,
.list-main-nav>.menu-item.active .menuLink,
.menuLink.active {
    color: #ca3c3c;
}

.menu-list .menu-item {
    width: 100%;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.menuLink {
    font-size: 16px;
    color: inherit;
    display: block;
    width: calc(100% - 50px);
    padding: 15px 0;
    font-style: normal;
    flex-grow: 0;
    flex-shrink: 0;
    font-family: "Lora", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.sub-menu-button {
    display: block;
    width: 50px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.sub-menu-button {
    line-height: 50px;
    color: var(--main-color);
}

.icon-plus::before {
    content: '\2B';
    font-size: 30px;
}

.icon-minus::before {
    content: '\2212';
    font-size: 30px;
}

.ico-desktop {
    text-align: center;
    cursor: pointer;
    padding: 0 15px;
    font-style: normal;
    color: #252525;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    position: absolute;
    right: 9px;
}

/* position: absolute;left: 0;top: 0; */
.ico-desktop i {
    padding-right: 5px;
}

.sub-menu-button i.fa-minus:before {
    content: "\f068";
}

.list-sub-nav {
    width: 100%;
    display: none;
}

.sub-menu-item {
    border-top: 1px solid #dfdfdf;
    width: 100%;
}

.sub-menuLink {
    font-size: 16px;
    color: inherit;
    display: block;
    width: 100%;
    padding: 15px 0 15px 15px;
}

.sub-menuLink i {
    font-size: 10px;
    margin-right: 15px;
    vertical-align: 2px;
}

.header-menu {
    background-color: var(--main-color);
    height: 46px;
    margin-bottom: 10px;
}

.header-menu.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 1px 10px #ebebeb;
}

.menu-system {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

/* .menu-system::-webkit-scrollbar {
    height: 3px;
}

.menu-system::-webkit-scrollbar-track {
    background: transparent;
}

.menu-system::-webkit-scrollbar-thumb {
    background: #fff;
} */
.ico-home {
    line-height: 46px;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    display: block;
    padding-right: 9px;
}

.menu-link {
    line-height: 46px;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 13px;
    font-family: 'UTM_Avo', sans-serif;
    font-weight: 700;
    display: block;
    padding-inline: 10px;
    position: relative;
    white-space: nowrap;
}
.menu-system .menu-item.active {
    background-color: #00509f;
}
.header-bottom {
    background-color: #fcf2f1;
    border-top: 1px solid #fff;
    height: 38px;
    line-height: 37px;
    overflow: hidden;
    font-family: 'Roboto_Slab', sans-serif;
    font-weight: 400;
}

.weather {
    align-items: center;
    margin-left: -9px;
    display: none;
}

.header-bottom .weather:first-child {
    display: flex;
}

.weather img {
    width: 37px;
}
.hamburger-list {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    border-top: 1px solid #ebebeb;
    padding-top: 15px;
    margin-top: 15px;
}
.hamburger {
    padding: 20px 9px;
}
.hamburger .hamburger-list:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.hamburger-sub,
.hamburger-link {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    display: block;
    font-weight: 400;
}

.hamburger-link {
    font-weight: 700;
    font-size: 18px;
}
/* main */
.fw {
    width: 100%;
}

.lt {
    display: block;
    float: left;
}

.rt {
    display: block;
    float: right;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    width: 100%;
    clear: both;
}

.article {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.article-image {
    position: relative;
    display: block;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    background: url(../images/pc/image.png) 0 0 no-repeat;
    background-size: contain;
}

.article-image::before {
    padding-top: 56.25%;
    content: "";
    display: block;
}

.article-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.article-image:hover {
    opacity: .85;
}

.article-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

.article-link {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.bx-arrows:hover,
.breadcrumb-item a.active,
.breadcrumb-item a:hover,
.name-topic-link:hover,
.multi-subcat a:hover,
.subcat-link.active,
.subcat-link:hover,
.bx-cat-name:hover a,
.article-title:hover {
    color: var(--main-color);
}

.article-cat {
    font-size: 12px;
    font-weight: 400;
    color: #cc0033;
    text-transform: uppercase;
}

.article-cat:hover {
    text-decoration: underline;
}

.article-publish {
    color: #031823;
    background: url(../images/pc/ico-clock.png) right center no-repeat;
    padding-right: 25px;
}

.article-meta {
    font-weight: 400;
}

.article-cat:empty+.article-publish {
    content: unset;
}

.article-cat+.article-publish::before {
    content: "-";
    padding-right: 4px;
}

.article-desc {
    font-family: 'Roboto_Slab', sans-serif;
    color: #000;
    font-weight: 400;
    line-height: 1.75;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 16px;
}

.banner {
    text-align: center;
    font-size: 0;
}

.banner img {
    width: initial;
}
.banner-pc-slider,
.banner-mb-slider {overflow: hidden;white-space: nowrap;text-align: center;}
.banner-slider-item {display: inline-block;text-align: center;white-space: nowrap;}
/* bx-coverange  */
.bx-coverange .article:not(:first-child) .article-image,
.bx-coverange .article:not(:first-child) .article-cat,
.bx-coverange .article:not(:first-child) .article-desc {
    display: none;
}

.bx-coverange .article:nth-child(n+3) {
    border-top: 1px solid #e4e4e4;
    padding-top: 15px;
    margin-top: 15px;
}

.bx-coverange .article:nth-child(2) {
    padding-top: 15px;
    border-top: 1px solid #e4e4e4;
    margin-top: 15px;
}

.bx-coverange .article:nth-child(n+2) {
    padding-left: 28px;
    position: relative;
}

.bx-coverange .article:nth-child(n+2)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 26px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ed1c24;
}

.bx-coverange .article-title {
    font-size: 16px;
    line-height: 1.4;
}

.bx-coverange .article:first-child .article-title {
    font-size: 28px;
    line-height: 1.5;
}

/* bx-hot */
.bx-hot {
    margin-top: -10px;
}
.bx-hot .article {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    column-gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e4e4e4;
}

.bx-hot .article-image {
    width: 150px;
}

.bx-hot .article:first-child {
    margin-top: 0;
    /* padding-top: 0;
    border-top: 0; */
}
.bx-cat-three .article:not(:first-child) .article-title,
.bx-cat-one .article:not(:first-child) .article-title,
.bx-red .article-title,
.bx-listing .article-title,
.bx-hot .article-title {
    position: relative;
    top: -5px;
}

/* layout-techsportlight */
.layout-techsportlight {
    position: relative;
}

.layout-techsportlight::after {
    content: '';
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    height: 20px;
    z-index: -1;
    background: rgb(235, 235, 235);
    background: linear-gradient(0deg, rgba(235, 235, 235, 0) 0%, rgba(235, 235, 235, 0.5) 100%);
}

.tech-link {
    font-weight: 400;
    font-size: 34px;
    color: #acacac;
    display: inline-block;
    padding-right: 35px;
    background: url(../images/pc/ico-techspotlight.png) center right no-repeat;
}

.tech-link span {
    font-family: 'UTM_Avo', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-inline: 8px;
    margin-right: 2px;
}

.tech-link span::before {
    content: '';
    width: 100%;
    height: 37px;
    background-color: var(--main-color);
    border-radius: 8px 0 8px 0;
    position: absolute;
    left: 0;
    top: 8px;
    z-index: -1;
}

.tech-swiper {
    overflow: hidden;
    padding-bottom: 48px;
}

.layout-techsportlight .article {
    position: relative;
    padding-bottom: 10px;
    width: 265px;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0 0 10px;
    overflow: hidden;
}

.layout-techsportlight .article::before {
    background-color: #e20613;
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 44px;
    width: 91px;
    height: 1px;
    z-index: 9;
}

.layout-techsportlight .article::after {
    content: '';
    background: url(../images/mb/tech-arrows.png) center center no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    height: 13px;
}

.layout-techsportlight .article-image {
    border-radius: 10px;
    overflow: hidden;
}

.layout-techsportlight .article-image::before {
    padding-top: 180.7%;
}

.layout-techsportlight .article-image::after {
    content: '';
    position: absolute;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(225, 225, 225, 0) 100%);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.layout-techsportlight .article-title {
    position: absolute;
    top: 265px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 20px 60px;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

.layout-techsportlight .article-title:hover {
    opacity: .85;
}

.layout-techsportlight .article-link {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

}

.tech-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -95px;
    width: 75px;
    height: 75px;
    background: url(../images/pc/tech-arrow-left.png) center center no-repeat;
    z-index: 1;
    border-radius: 50%;
    transition: .3s ease background-color;
    cursor: pointer;
}

.tech-swiper .swiper-horizontal>.swiper-pagination-bullets,
.tech-swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.tech-swiper .swiper-pagination-custom,
.tech-swiper .swiper-pagination-fraction {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    padding-inline: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ebebeb;
}

.tech-arrows.tech-next {
    left: unset;
    right: -95px;
    transform: translateY(-50%) rotate(180deg);
}

.tech-swiper .swiper-pagination-bullet {
    background: #e1e1e1;
    opacity: 1;
}

.tech-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ed1c24;
}

/* bx-listing */
.bx-listing .bx-cat-name {
    padding-top: 0;
}
.bx-listing .article {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    column-gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ebebeb;
}

.bx-listing .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-listing .article-image {
    width: 150px;
}

.bx-listing .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: flex-start;
}

.bx-listing .article-title {
    font-size: 16px;
    line-height: 1.4;
}

.bx-listing .article-desc {
    display: none;
}

/* bx-cyberspace */
.bx-red {
    padding-inline: 10px;
    padding-bottom: 15px;
}

.bx-cyberspace {
    background-color: #ff5d53;
    border-radius: 10px;

}

.red-name {
    margin-bottom: 20px;
    padding-block: 10px;
    font-size: 28px;
    color: var(--white-color);
    position: relative;
}

.red-name::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 1px;
    background-color: #ff948d;
}

.red-link span {
    color: #000;
}

.cyber-container {
    overflow: hidden;
    position: relative;
    padding-bottom: 25px;
}

.bx-red .slick-list {
    overflow: hidden;
}

.bx-red .article {
    float: left;
    display: block;

}

.bx-red .article-image {
    width: 150px;
    float: left;
    margin-right: 20px;
}

.bx-red .article-title {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

.bx-red .article-link {
    -webkit-text-size-adjust: none;
}

.bx-red .slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.bx-red .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 4px;
    display: inline-block;
}

.bx-red .slick-dots li button {
    width: 9px;
    height: 9px;
    background-color: #e1e1e1;
    border-radius: 50%;
    font-size: 0;
    display: block;
    cursor: pointer;
}

.bx-red .slick-dots li.slick-active button {
    background-color: #ed1c24;
}

/* layout-choise */
.layout-choise {
    background: #ffe7e5 url(../images/mb/mb-bg-choise.png) 0 0 no-repeat;
    overflow: hidden;
    position: relative;
    background-size: contain;
    padding-bottom: 20px;
}

.layout-choise::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/mb/m-ico-editors-choise.png) 0 0 no-repeat;
    width: 68px;
    height: 75px;
}
.layout-revnews.layout-choise::before {
    background: url(../images/pc/revnews.jpg) 0 0 no-repeat;
    width: 48px;
    height: 48px;
    top: 6px;
    right: 9px;
    background-size: cover;
}

.layout-revnews .article-cat,
.layout-revnews .article .article-desc {
    display: none;
}
.choise-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.choise-name {
    font-size: 42px;
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
    padding-block: 10px 5px;
}

.choise-link span {
    font-weight: 400;
    color: #f00;
}

.meta-choise {
    display: inline-block;
    background-color: var(--white-color);
    padding: 10px 12px;
    box-shadow: 3px 3px 0px 0 rgb(0 0 0 / 10%);
}

.meta-choise span {
    display: inline-block;
    background-color: rgb(41, 10, 89);
    background-image: linear-gradient(90deg, rgba(41, 10, 89, 1) 0%, rgba(254, 124, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
}

.pink-content {
    flex-wrap: wrap;
    gap: 20px;
}

.pink-content .article {
    width: calc((100% - 20px) / 2);
}

.pink-content .article:first-child {
    width: 100%;
}

.pink-content .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: flex-start;
}

.pink-content .article:not(:first-child) .article-desc {
    display: none;
}

.pink-content .article-title {
    font-size: 16px;
    line-height: 1.4;
}

.pink-content .article:first-child .article-title {
    font-size: 24px;
    line-height: 1.3125;
}

.article-more {
    padding-top: 20px;
    text-align: center;
}
.__MB_ARTICLE_PAGING {
    margin-top: 20px;
    text-align: center;
}

.__MB_ARTICLE_PAGING>a,
.__MB_ARTICLE_PAGING>div,
.__MB_ARTICLE_PAGING span {
    padding: 10px;
    background-color: #ebebeb;
    border-radius: 52px;
    display: inline-flex;
    font-size: 14px;
    color: var(--main-color);
    font-family: 'Lora', sans-serif;
    font-weight: 400;
    cursor: pointer;
}

.__MB_ARTICLE_PAGING span:first-child {
    display: none;
}

.link-more {
    font-weight: 400;
    font-size: 16px;
    padding: 7px 40px 8px 20px;
    border-radius: 40px;
    border: 1px solid #e7e7e7;
    background-color: var(--white-color);
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.link-more::after {
    content: '';
    background: url(../images/mb/article-arrow.png) 0 4px no-repeat;
    width: 12px;
    height: 22px;
    background-size: 8px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.link-more:hover::after {
    animation: arrow-right 0.75s ease infinite;

}

@keyframes arrow-right {
    0% {
        opacity: 1;
        transform: translateX(-5px) translateY(-50%);
    }

    100% {
        opacity: 0.7;
        transform: translateX(0) translateY(-50%);
    }
}

.bx-cat .bx-cat-title {
    border-top: 1px solid #ebebeb;
}

.bx-cat .link-more {
    background-color: #ffe7e5;
    border-color: #ffe7e5;
}

/* bx-cat-one */
.bx-cat-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    row-gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.bx-cat-name {
    font-size: 26px;
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
    padding-block: 10px;
    position: relative;
}

.bx-cat-name::first-letter {
    color: var(--main-color);
}

.bx-cat-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background-color: #ed1c24;
}

.ico-cat-sub {
    background: url(../images/mb/ico-submenu.png) 0 center no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
}

.subcat-more {
    display: none;
}
.bx-cat-one .article-cat {
    color: #f00;
}
/* .subcat-more */
.subcat-more {
    display: none;
    background-color: #f8f8f8;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99;
    min-width: 200px;
    box-shadow: -2px 2px 5px rgb(0 0 0 / 20%);
    transform-origin: 0 0;
}

.subcat-more a {
    display: block;
    text-align: right;
    padding: 0 10px;
    line-height: 36px;
    border-top: 1px solid #ebebeb;
    font-weight: 400;
}

.subcat-more a:first-child {
    border-top: 0;
}

.bx-cat-one .article:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffe7e5;
}

.bx-cat-one .article:first-child .article-content {
    padding: 15px 20px 25px;
    display: flex;
    flex-flow: column;
    row-gap: 8px;
    align-items: flex-start;
}

.bx-cat-one .article:first-child .article-title {
    font-size: 24px;
    line-height: 1.4;
}

.bx-cat-one .article {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dashed #ebebeb;
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
}

.bx-cat-one .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    row-gap: 0;
}

.bx-cat-one .article:nth-child(2) {
    margin-top: 0;
    border-top: 0;
}

.bx-cat-one .article-image {
    width: 150px;
}

.bx-cat-one .article:first-child .article-image {
    width: 100%;
}

.bx-cat-one .article-title {
    font-size: 16px;
    line-height: 1.4;
}
.bx-cat-cover .article-desc,
.bx-cat-one .article:not(:first-child) :where(.article-cat, .article-desc) {
    display: none;
}
.bx-cat-cover .article:not(:first-child) .article-cat {
    display: block;
    color: #cc0033;
}
.bx-no-desc .article-desc {display: none;}
.bx-fsz-20 .bx-cat-name {
    font-size: 20px;
}
/* bx-multimedia */
.bx-multimedia {
    background-color: #ffe7e5;
    padding: 20px 0;
}

.multi-heading {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.multi-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.multi-link {
    font-weight: 700;
    font-size: 40px;
    font-family: 'Playfair_Display_Black', sans-serif;
    display: inline-block;
    padding-right: 40px;
    background: url(../images/pc/ico-techspotlight.png) top 24px right no-repeat;
    padding-bottom: 5px;
    position: relative;
    word-wrap: nowrap;
}

.multi-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 165px;
    height: 1px;
    background-color: #ed1c24;
}

.multi-link span {
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 400;
    color: #ed1c24;
    display: inline-block;
}

.multi-title {
    display: flex;
    column-gap: 42px;
}

.multi-subcat {
    display: flex;
    column-gap: 20px;
    font-size: 16px;
    overflow-x: scroll;
}

.multi-subcat::-webkit-scrollbar {
    height: 4px;
}

.multi-subcat::-webkit-scrollbar-track {
    background: transparent;
}

.multi-subcat::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    background-color: #ccc;
}

.link-ytb {
    width: 81px;
    height: 18px;
    background: url(../images/pc/ico-youtube.png) 0 0 no-repeat;
}

.bx-multimedia .article:first-child .article-title {
    font-size: 24px;
    line-height: 1.4;
}

.bx-multimedia .article:not(:first-child) .article-cat {
    display: none;
}
.bx-multimedia .article-image .icoVideo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    z-index: 1;
    background: url(../images/pc/ico-player.png) center center no-repeat;
    background-color: rgba(255, 255, 255, 0.6);
    background-size: 32%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.bx-multimedia .multi-list .article-image .icoVideo {
    left: 15px;
    top: unset;
    transform: unset;
    bottom: 15px;
    background-color: unset;
    width: 21px;
    height: 29px;
    box-shadow: unset;
}
/* bx-cat-two */
.bx-cat-two .bx-cat-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.bx-cat-two .article {
    width: calc((100% - 20px) / 2);
}

.bx-cat-two .article:first-child {
    width: 100%;
}

.bx-cat-two .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
}

.bx-cat-two .article-title {
    font-size: 16px;
    line-height: 1.4;
}

.bx-cat-two .article:first-child .article-title {
    font-size: 22px;
    line-height: 1.5;
}

.bx-cat-two .article:not(:first-child) .article-cat,
.bx-cat-two .article-desc {
    display: none;
}

/* bx-cat-three */
.bx-cat-three .article:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bx-cat-three .article:first-child .article-content {
    display: flex;
    flex-flow: column;
    row-gap: 10px;
    align-items: flex-start;
}

.bx-cat-three .article:first-child .article-title {
    font-size: 22px;
    line-height: 1.5;
}

.bx-cat-three .article {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dashed #ebebeb;
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
}

.bx-cat-three .article:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.bx-cat-three .article-image {
    width: 150px;
}

.bx-cat-three .article:first-child .article-image {
    width: 100%;
}

.bx-cat-three .article-title {
    font-size: 16px;
    line-height: 1.4;
}

.bx-cat-three .article-desc,
.bx-cat-three .article:not(:first-child) .article-cat {
    display: none;
}

/* layout-stock */

.layout-stock {
    background-color: #f8f8f8;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.stock-bars {
    padding-block: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.stock-bar-item {
    background-color: #fff;
    border: 1px solid #ececec;
    width: calc((100% - 17px) / 2);
    min-height: 70px;
    padding: 7px 9px;
    font-size: 11px;
    font-family: 'Roboto_Slab', sans-serif;
}

.stock-bar-item .up {
    color: #2be72c;
}

.stock-bar-item .up .arrow::before {
    content: '';
    display: inline-block;
    background: url("../images/stock/stock-arrow-up-small.png") center center no-repeat;
    width: 8px;
    height: 9px;
}

.stock-bar-item .down {
    color: #f03;
}

.stock-bar-item .down .arrow::before {
    content: '';
    display: inline-block;
    background: url("../images/stock/stock-arrow-down-small.png") center center no-repeat;
    width: 8px;
    height: 9px;
}

.stock-bars .icon-stock-up {
    display: inline-block;
    padding-left: 15px;
    background: url("../images/stock/stock-arrow-up.png") 0px center no-repeat;
    margin-right: 2px;
}

.stock-bars .icon-stock-rect {
    display: inline-block;
    padding-left: 15px;
    background: url("../images/stock/stock-rectangle.png") 0px center no-repeat;
    margin-right: 2px;
}

.stock-bars .icon-stock-down {
    display: inline-block;
    padding-left: 15px;
    background: url("../images/stock/stock-arrow-down.png") 0px center no-repeat;
}

.stock-bar-item {
    white-space: nowrap;
}

.stock-bar-item-head {
    font-size: 13px;
}

.stock-bar-item-body {
    font-size: 11px;
    margin-top: 5px;
    margin-bottom: 8px;
    padding-top: 5px;
    border-top: 1px solid #e1e1e1;
}

.c-orange {
    color: #f90;
}

.layout-stock .swiper-scrollbar-drag {
    background: #ccc;
}

.layout-stock .swiper-scrollbar {
    bottom: 0;
    opacity: 1 !important;
    height: 1px;
    background: transparent;
}

/* widget */
.tab-widgets .siteCenter {
    margin: 0 9px;
    padding: 0;
    overflow: hidden;
}

.widget-title {
    background-color: #ffe7e5;
    height: 50px;
    line-height: 50px;
    padding-right: 60px;
    overflow: hidden;
}

.widget-name {
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    overflow-x: scroll;
    display: flex;
    text-wrap: nowrap;
    padding-left: 10px;
    justify-content: flex-start;
}

.tab-button {
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.tab-button:not(:last-child)::after {
    content: '|';
    color: #f5d0cd;
    padding-inline: 9px 12px;
}

.tab-button.active {
    color: #f00;
}

.widget-name .tab-button:first-child::before {
    content: '';
    display: inline-block;
    background: url(../images/pc/ico-widget.png) 0 0 no-repeat;
    width: 21px;
    height: 21px;
    margin-right: 10px;
}

.widget-name .tab-button:nth-child(2)::before {
    content: '';
    display: inline-block;
    background: url(../images/mb/ico-gold.png) 0 0 no-repeat;
    width: 24px;
    height: 21px;
    margin-right: 10px;
}

.widget-name .tab-button:nth-child(3)::before {
    content: '';
    display: inline-block;
    background: url(../images/mb/ico-rate.png) 0 0 no-repeat;
    width: 19px;
    height: 21px;
    margin-right: 10px;
}

.widget-content {
    overflow-y: scroll;
    border: 1px solid #ffe7e5;
    max-height: 310px;
}

.widget-swiper {
    overflow: visible;
}

.widget-swiper .swiper-button-prev,
.widget-swiper .swiper-button-next {
    left: unset;
    right: 5px;
    position: absolute;
    top: -12px;
    width: 20px;
    height: 20px;
    color: #f00;
    border: 1px solid #f00;
    border-radius: 3px;
}

.widget-swiper .swiper-button-prev {
    right: 30px;
}

.widget-swiper .swiper-button-next:after,
.widget-swiper .swiper-button-prev:after {
    font-size: 14px;
}

.tbl-striped-grey {
    font-size: 12px;
    width: 100%;
    border-collapse: collapse;
}

.tbl-striped-grey thead tr th {
    -webkit-box-shadow: inset 0px -1px #ffe7e5;
    box-shadow: inset 0px -1px #ffe7e5;
}

.tbl-striped-grey thead {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #f8f8f8;
    font-weight: bold;
}

.tbl-striped-grey th,
.tbl-striped-grey td {
    padding: 8px 10px;
}

.tbl-striped-grey tbody tr:nth-child(even) {
    background-color: #f8f8f8;
    height: 43px;
}

.tbl-striped-grey tbody td:first-child {
    font-weight: bold;
}

.tbl-striped-grey .h165 {
    height: 165px;
    overflow-y: scroll;
}

.tbl-striped-grey.head-grid thead tr {
    border-bottom: none;
}

.tbl-striped-grey.head-grid thead tr th.no-shadow-left {
    -webkit-box-shadow: inset 0 -1px #ffe7e5;
    box-shadow: inset 0 -1px #ffe7e5;
}

.tbl-striped-grey.head-grid thead th {
    -webkit-box-shadow: inset 1px -1px #ffe7e5;
    box-shadow: inset 1px -1px #ffe7e5;
}

.widget-swiper .slick-dots {
    top: -20px;
    right: 0;
}

.widget-swiper .slick-arrow {
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 30px;
    color: white;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
    font-size: 0px;
    border-radius: 3px;
    top: -30px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.widget-swiper .slick-arrow:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.widget-swiper .slick-prev {
    left: unset !important;
    right: 30px;
}

.widget-swiper .slick-next {
    right: 0px;
}

.widget-swiper .swiper-button-next.swiper-button-disabled,
.widget-swiper .swiper-button-prev.swiper-button-disabled {
    opacity: .5;
}

.scroll {
    scrollbar-width: thin;
}

.scroll::-webkit-scrollbar {
    width: 5px;
}

.scroll::-webkit-scrollbar-track {
    background: #f8f8f8c0;
}

.scroll::-webkit-scrollbar-thumb {
    background: #d7d7d7;
}

.scroll::-webkit-scrollbar-thumb:hover {
    background: #797979;
}

.bx-revnews {
    background-color: #ffe7e5;
    padding: 15px 10px;
    border: 1px solid #f5e5bf;
}

.rev-title {
    margin-bottom: 20px;
}

.rev-link {
    font-size: 25px;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: 'Playfair_Display_ExtraBold', sans-serif;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #f00;
}

.rev-link span {
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 400;
    color: #f00;
    position: relative;
}

.rev-link span::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f00;
    position: absolute;
    bottom: 5px;
    right: 2px;
}

.rev-content {
    overflow: hidden;
    position: relative;
}

.rev-container {
    margin: 0 -17px;
    overflow: hidden;
    position: relative;
    padding-bottom: 28px;
}

.bx-revnews .article-title {
    color: #000;
}

/* bx-topic */
.bx-topic {
    background-color: #ffe7e5;
    border-top: 1px solid #f00;
}

.topic-container {
    padding: 15px 9px;
    border-bottom: 1px solid #f3c9c5;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.topic-title {
    flex-grow: 0;
    flex-shrink: 0;
}

.topic-name {
    font-size: 30px;
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
    padding-left: 42px;
    background: url(../images/pc/ico-topic.png) top 3px left no-repeat;
}

.topic-name::first-letter {
    color: var(--main-color);
}

.topic-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 4px;
    padding-top: 8px;
}

.name-topic-link {
    background-color: #fff;
    padding: 4px 10px;
    border-radius: 32px;
    border: 1px solid #fadedc;
    font-size: 16px;
}

.topic-info {
    border-top: 1px solid #f6f0ef;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 15px;
    position: relative;
}

.login-topic {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: left;
}
.login-topic img {
    height: 22px;
}

#signupForm {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    position: relative;
    /* padding-bottom: 30px; */
}

#emailInput {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Lora', sans-serif;
    font-weight: 400;
    color: #000;
    border-radius: 4px;
}

#emailInput::placeholder {
    color: #bebebe;
}

.submit-register {
    padding: 10px 10px;
    font-size: 16px;
    font-family: 'Lora', sans-serif;
    font-weight: 400;
    color: #fff;
    border-radius: 4px;
    background-color: #ff5d53;
}

.privacy-policy {
    /* position: absolute;
    right: 0;
    bottom: 0; */
    z-index: 1;
    color: #626262;
    text-align: right;
}

.privacy-policy a {
    color: #ff5d53;
}

.layout-border {
    background: url(../images/pc/ruler1x1.png) top 0 left 850px repeat-y;
}

.bt-ebebeb {
    border-top: 1px solid #ebebeb;
}

.pr-32 {
    padding-right: 32px;
}

.bt-ebebeb .col-right {
    margin-top: 25px;
}

.bx-printer .bx-cat-name {
    text-transform: uppercase;
}

.bx-printer .article {
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
}

.bx-printer .article-image {
    width: 175px;
}

.bx-printer .article-image::before {
    padding-top: 141.2%;
}

.bx-printer .article-content {
    display: flex;
    flex-flow: column;
    row-gap: 10px;
    align-items: flex-start;
}

.bx-printer .article-paper {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Lora', sans-serif;
}

.bx-printer .article-read {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #ff5d53;
    border-radius: 4px;
    color: #fff;
    line-height: 1.3;
    padding: 5px 10px;

}

.bx-printer .article-title {
    text-transform: uppercase;
    line-height: 1.75;
}

/* category */
.bx-breadcrumb {
    padding-left: 20px;
    position: relative;
    display: block;
    padding-bottom: 12px;
}

.bx-breadcrumb::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    background-color: #b7b7b7;
    border-radius: 50%;

}

.bx-breadcrumb li,
.bx-breadcrumb li h1,
.bx-breadcrumb a {
    font-family: 'Loral', sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
}

.bx-breadcrumb li:not(:first-child)::before {
    content: '/';
    display: inline-block;
    font-family: 'Loral', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.bx-cat-breadcrumb {
    display: none;
}

.bx-cat-breadcrumb.active {
    display: block;
}

/* bx-themes */
.bx-themes {
    padding: 20px 0px;
    background-color: #ffe7e5;
    position: relative;
}

.theme-content,
.theme-title {
    display: inline-block;
}
.theme-title {
    position: absolute;
    top: 18px;
}
.theme-name {
    padding-left: 30px;
    font-size: 20px;
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 400;
    color: var(--main-color);
    background: url(../images/pc/ico-flash-topic.png) 0 2px no-repeat;
    margin-right: 15px;
}

.item-theme-link {
    font-size: 16px;
    line-height: 1.85;
    border-bottom: 1px solid #000;
    margin-right: 20px;
}
.theme-content .item-theme-link:first-child {
    margin-left: 115px;
}
.no-letter .bx-cat-name {
    text-transform: uppercase;
    font-size: 26px;
}

.no-letter .bx-cat-name::first-letter {
    color: initial;
}

/* .no-letter.bx-listing .article {
    padding-right: 32px;
} */

.no-letter .bx-cat-name::after {
    width: 100%;
    background-color: #ed1c24;
    max-width: 148px;
}

/* bx-readest  */
.bx-readest {
    margin-bottom: 10px;
    padding: 15px 0 22px;
    background-color: #fff8f7;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}

.bx-readest .bx-cat-title {
    border-bottom: 1px solid #ebebeb;
}

.bx-readest .readest-content {
    display: flex;
    column-gap: 60px;
    counter-reset: section;
    flex-shrink: 0;
    flex-grow: 0;
    flex-direction: column;
}

.bx-readest .article {
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
    flex-direction: row;
    column-gap: 20px;
}

.bx-readest .article:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.bx-readest .article::before {
    content: counter(section);
    counter-increment: section;
    font-family: 'Playfair_Display', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #dadada;
    line-height: 0.6;
    border-right: 1px solid #ebebeb;
    display: flex;
    padding-right: 18px;
}

.bx-readest .article-image {
    display: none;
}

.bx-readest .article-title {
    font-size: 16px;
    line-height: 1.625;
}

/* loading more */

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 48px auto 0;
}

.loader-ellips__dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

/* detail */
.article-detail-subtitle {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}

.article-detail-subtitle:empty {
    display: none;
}

.article-detail-title {
    font-size: 40px;
    line-height: 1.3;
    font-family: var(--font-main);
    font-weight: 700;
    margin-bottom: 15px;
}

.article-detail-meta {font-family: 'Roboto_Slab', sans-serif;font-size: 14px;display: flex;align-items: center;flex-wrap: wrap;padding-bottom: 15px;border-bottom: 1px solid #d7d7d7;gap: 10px;}

/* 
.article-detail-meta span:not(:first-child)::before {
    content: '|';
    padding: 0 15px 0 10px;
    color: #000;
} */

.article-author {
    color: var(--main-color);
    display: inline-block;
    border-bottom: 1px solid var(--main-color);
    text-transform: uppercase;
}
.article-author-info .author-image{width: 40px;height:40px;overflow: hidden;border-radius: 50%;background: #f1f1f1;}
.article-author-info .author-image img{min-height: 100%;object-fit: cover;min-width: 100%;}
.article-author-info .author-title{font-size: 14px;color: #0074bc;font-family: 'Inter-Bold', sans-serif;font-weight: 700;}
.article-author-info .author-email{font-size: 12px;color:#999;line-height: 1;display: none;}
.article-author-info > div:last-of-type{margin-left: 15px;}
.article-author-info .author-image:not(:first-child){margin-left: -15px;}
.article-author-info .author-image:nth-child(1){z-index: 3;}
.article-author-info .author-image:nth-child(2){z-index: 2;}
.article-author-info .author-image:nth-child(3){z-index: 1;}
.article-author-info .author-image:nth-child(4){z-index: 0;}
.article-author-info .author-link:not(:first-child)::before{content: '-';display: inline-block;margin: 0 5px;}
.article-detail-meta span.article-comment-ico::before {
    padding-right: 50px;
}
.article-author-info {display: flex;align-items: center;/* height: 40px; */}

.article-comment-ico {
    background: url(../images/pc/ico-comment.png) 30px 0 no-repeat;
    cursor: pointer;
}

.article-social {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: flex-start;
}

.ico-google-news {
    display: inline-block;
    background: url(../images/pc/ico-google-news.png) top 2px right 2px no-repeat;
    padding: 0 89px 0 0;
    font-size: 13px;
    color: #000;
}

.article-detail-desc {
    line-height: 1.8;
    font-family: 'Roboto_Slab', sans-serif;
    font-weight: 700;
    margin: 30px 0;
    font-size: 18px;
}

.article-detail-content {
    font-size: 18px;
    line-height: 1.75;
    font-family: Roboto_Slab, sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
}

#pdf-container {
    border: 1px solid #ebebeb;
    position: relative;
    margin-top: 55px;
}
#pdf-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}
#pdf-container::before {
    content: 'Toàn văn';
    position: absolute;
    left: -1px;
    top: -45px;
    line-height: 1.3;
    padding: 10px 15px;
    padding-left: 35px;
    background: url(../images/pc/ico-view.png) 10px center no-repeat;
    background-color: #fff;
    z-index: 5;
    border: 1px solid #ebebeb;
    border-bottom: 1px solid #fff;
    text-align: center;
}
div#pdf-container canvas {
    width: 100%;
}
.__MASTERCMS_CONTENT p {
    font-size: inherit;
    line-height: 1.6;
    margin: 15px 0px;
    color: rgb(0, 0, 0);
    word-break: break-word;
}
.__MASTERCMS_CONTENT ul,
.__MASTERCMS_CONTENT li,
.__MASTERCMS_CONTENT ol {
    word-break: break-word;
}
.__MASTERCMS_CONTENT .fancybox-button img {
    height: auto !important;
}

.__MASTERCMS_CONTENT p:empty,
.__MASTERCMS_CONTENT_MOBILE p:empty {
    display: none;
}
.__MASTERCMS_CONTENT .cms-caption {
    font-size: 16px;
    font-style: italic;
    font-family: inherit;
}
.__MASTERCMS_CONTENT ul,.__MASTERCMS_CONTENT_MOBILE ul {padding-left: 15px;list-style: disc;}
.__MASTERCMS_CONTENT ol,.__MASTERCMS_CONTENT_MOBILE ol{padding-left: 15px;list-style-type: decimal;}
.__MASTERCMS_CONTENT ul,.__MASTERCMS_CONTENT_MOBILE ul,
.__MASTERCMS_CONTENT ol,.__MASTERCMS_CONTENT_MOBILE ol,
.__MASTERCMS_CONTENT .__MASTERCMS_TABLE_DATA ul,.__MASTERCMS_CONTENT_MOBILE .__MASTERCMS_TABLE_DATA ul, .__MASTERCMS_CONTENT .__MASTERCMS_TABLE_DATA ol,.__MASTERCMS_CONTENT_MOBILE .__MASTERCMS_TABLE_DATA ol {
    margin-left: 5px !important;
}
.__MASTERCMS_CONTENT .hide-link {
    cursor: text;
    color: inherit;
}
.__MASTERCMS_CONTENT .hide-link:hover {
    pointer-events: none;
    color: inherit;
}
.__MASTERCMS_TABLE_SCROLL {
    width: 100%;
    overflow-x: scroll;
}
.MASTERCMS_TPL_TABLE tbody tr:nth-child(2n) td {
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 10px 0px 0px;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    font-style: italic;
    font-family: inherit;
}

.CHART-TBL.mb_embed_3rd_html {
    position: relative;
}

.CHART-TBL.mb_embed_3rd_html tr td:first-child {
    padding-top: 56.25%;
    display: block;
}
.CHART-TBL.mb_embed_3rd_html tr td:first-child {
    padding-top: 75%;
}
/* .mb_embed_3rd_html tr td:first-child iframe,  the mb_embed_3rd_html check chuan bai id11164*/
.CHART-TBL.mb_embed_3rd_html tr td:first-child iframe,
.video-container iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.___widget_video_article {
    position: relative;
}

.___widget_video_article::before {
    content: "";
    padding-top: 56.25%;
    display: block;
}

.___widget_video_article .jwplayer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
    height: 100% !important;
}

.__MASTERCMS_CONTENT .___widget_video_article video,
.__MASTERCMS_CONTENT_MOBILE .___widget_video_article video,
.___widget_video_article .jwplayer video {
    width: 100% !important;
    object-fit: fill !important;
    height: 100% !important;
    transform: none !important;
}

.__MB_ARTICLE_A {
    background-color: rgb(254, 241, 238);
    border-radius: 15px;
}

.__MB_ARTICLE_A td a {
    line-height: 1.4;
    color: rgb(0, 80, 158);
    position: relative;
    width: 100%;
    float: left;
    margin: 5px 0px;
    padding-left: 40px;
    padding-right: 10px;
    font-family: Lora, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.__MB_ARTICLE_A td:first-child a:first-child {
    margin-top: 20px;
}

.__MB_ARTICLE_A td:first-child a:last-child {
    margin-bottom: 20px;
}

.__MB_ARTICLE_A td a::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgb(194, 194, 194);
    content: "";
    position: absolute;
    top: 9px;
    left: 20px;
}
.post-source, .video-source {
    font-style: italic;
    font-size: 14px;
    color: #aaa;
  }
  
  .post-source {
    text-align: right;
    margin-top: 20px;
  }
  .post-source .link-wrapper {
    color: #333;
    background: #ebebeb;
    border-radius: 20px;
    display: inline-block;
    padding: 8px 15px 8px 15px;
    position: relative;
  }
  .post-source .link-wrapper:hover .full-url {
    opacity: 100;
    visibility: visible;
  }
  .post-source .short-url {
    cursor: pointer;
    font: 400 15px/14px 'Roboto_Slab';
  }
  .post-source .short-url .fa-external-link-alt {
    color: #999;
  }
  .post-source .full-url {
    position: absolute;
    width: 300px;
    text-align: left;
    bottom: calc(100% + 10px);
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
    opacity: 0;
  }
  .post-source .full-url .link {
    font: normal 11px/15px 'Roboto_Slab';
    color: #fff !important;
    display: block;
    margin-top: 5px;
  }
  .post-source .full-url > div span {
    color: rgba(255, 255, 255, 0.8);
    font: normal 10px/15px 'Roboto_Slab';
  }
  .post-source .full-url .text {
    float: left;
  }
  .post-source .full-url .icon-copy {
    float: right;
    cursor: pointer;
  }
  .post-source .full-url .icon-copy:hover {
    color: #fff;
  }
  .post-source .full-url::before {
    content: "";
    display: inline-block;
    position: absolute;
    border: 10px solid transparent;
    border-top-color: #333;
    bottom: -20px;
    right: 25px;
  }
  .post-source .full-url #copyURL {
    font-size: 1px;
    opacity: 0;
    position: absolute;
    color: transparent;
    background-color: transparent;
  }

.bx-related-cat .bx-cat-name::after {
    width: 100%;
    max-width: 100%;
}

.bx-related-cat .bx-cat-content {
    display: flex;
    flex-flow: row wrap;
    gap: 25px 32px;
}

.bx-related-cat .article {
    width: calc((100% - 35px) / 2);
}

.article-tags {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgb(235, 235, 235);
}

.article-tags span {
    display: inline-block;
    color: rgb(0, 0, 0);
    font-size: 21px;
    height: 40px;
    font-weight: 700;
    margin-right: 20px;
    float: left;
}
/* author */
.bx-author-info{margin-bottom: 15px;padding-bottom: 15px;border-bottom: 1px solid #e0e0e0;}
.bx-author-thumb{width: 100px;height:100px;float: left;overflow: hidden;border-radius: 100%;margin-right: 20px;background:#f5f5f5;}
.bx-author-thumb img{width: 100%;object-fit: cover;}
.bx-author-detail{padding-left: 120px;}
.bx-author-name{font-size: 16px;margin-bottom: 10px;}
.bx-author-content{margin-bottom: 10px;}
.bx-author-share{width: 100%;float: left;}
.bx-author-share a{display: inline-block;margin-left: 10px;background-image: url(../images/pc/ico-author-share.png);background-repeat: no-repeat;width: 20px;height: 20px;background-size: 94px;opacity: .4;}
.bx-author-share span{display: inline-block;height: 20px;line-height: 20px;float:left;}
.bx-author-email{background-position: -74px -27px;}
.bx-author-twitter{background-position: -25px -27px;}
.bx-author-facebook{background-position: 0 -27px;}
.bx-author-rss{background-position: -50px -27px;}
.bx-author-share a:hover{opacity: 1;}
.bx-author-email:hover{background-position: -74px 0;}
.bx-author-twitter:hover{background-position: -25px 0;}
.bx-author-facebook:hover{background-position: 0 0;}
.bx-author-rss:hover{background-position: -50px 0;}
/* .article-keyword { display: flex; flex-wrap: wrap; gap: 15px 5px; } */
.link-tags {
    background-color: rgb(240, 240, 240);
    border: 1px solid rgb(234, 234, 234);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 16px;
    color: rgb(0, 0, 0);
    display: inline-block;
    margin-bottom: 14px;
}

#user-comment .bx-cat-head span {
    display: inline-block;
    text-indent: -9999px;
}

#user-comment .bx-cat-title {
    display: block;
    margin-bottom: 40px;
}
#user-comment .title {
    float: none;
    width: 100%;
    margin-bottom: 30px;
}

#user-comment .title::after,
#user-comment .bx-cat-head::before {
    content: "Bình luận";
    font-family: Playfair_Display, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(235, 235, 235);
}
#user-comment .box-comment a.__MB_ACTION_POST_COMMENT:before {
    content: "gửi";
    text-indent: none;
    visibility: visible;
    background: #ff5d53;
    float: right;
    padding: 0 25px;
    color: #fff;
    font-family: 'Playfair_Display', serif;
    font-weight: 700;
}
#user-comment .bx-cat-link {
    padding-left: 0px;
}

#user-comment .bx-cat-link::before {
    content: unset;
}

.comments-reply,
.box-comment {
    padding-left: 65px;
}

.box-comment {
    background: url(../images/pc/ico-user.png) 9px 30px no-repeat rgb(238, 238, 238);
    padding: 20px 10px 20px 70px;
    border-radius: 4px;
}

#user-comment .box-comment textarea {
    border: 0px;
    border-radius: 5px;
    padding: 15px;
}

#user-comment button {
    text-transform: uppercase;
    padding: 11px 30px;
    border-radius: 3px;
    background: rgb(255, 93, 83);
    font-family: Playfair_Display, sans-serif;
    font-weight: 700;
}

#user-comment button:hover {
    background: rgb(0, 80, 158);
    cursor: pointer;
}

#user-comment .__comment::-webkit-input-placeholder {
    color: rgb(183, 183, 183);
}

#user-comment .__comment::placeholder {
    color: rgb(183, 183, 183);
}

.btnDislike>span,
.btnLike>span {
    margin-right: 3px;
}

/* search */
.results-title {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.results-title .keyword {
    font-size: 16px;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.results-title .info-key {
    font-size: 16px;
    color: var(--black-color);
    font-family: 'NotoSans-Bold', sans-serif;
    font-weight: 700;
    margin-left: 8px;
}

.results-title .result {
    font-size: 12px;
    color: #fff;
    height: 30px;
    padding: 6px 15px;
    background: var(--main-color);
    border-radius: 20px;
    margin-left: auto;
    font-family: 'NotoSans-Regular', sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
}

.highlight {
    background-color: yellow;
}
/* bx-video-cover */
.bx-video-cover .article {
    display: flex;
    flex-direction: column;
    /* column-gap: 30px; */
    row-gap: 0;
}

.bx-video-cover .article-image {
    width: 100%;
}

.bx-video-cover .article-title {
    font-size: 20px;
    line-height: 1.4;
}

.bx-video-cover .article-desc {
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.bx-video-cover .article-content {
    background-color: #ebebeb;
    padding: 10px 9px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.bx-video-cover .article-date {
    font-family: 'Roboto_Slab', sans-serif;
    font-weight: 400;
    padding-left: 24px;
    background: url(../images/pc/ico-calender.png) 0 0 no-repeat;
}
.video-source {
    font-style: italic;
    text-align: right;
}

.video-author {
    font-weight: 700;
    text-align: right;
}
.video-source:empty,
.video-author:empty {
    display: none;
}

.ico-player{
    width: 15px;
    height: 21px;
    display: block;
    position: absolute;
    left: 5px;
    bottom: 5px;
    z-index: 1;
    top:inherit;
    background: url(../images/pc/ico-play-s.png) center center no-repeat;
}
/* .article-video-title, 
.lastest-video .article-link {
    color: #fff;
} */
.ico-duration {
    font-size: 12px;
    color: #fff;
    padding: 4px 5px;
    background: rgba(0,0,0,0.6);
    position: absolute;
    z-index: 1;
    right: 5px;
    bottom: 5px;
    display: block;
    line-height: initial;
}
.ico-duration:empty {
    display: none;
}
.bx-video-cover .ico-player {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
/* bx-video-listing */
.bx-video-listing .bx-cat-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    align-items: flex-start;
}
.bx-video-listing .article {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc((100% - 25px) / 2);
}
.bx-video-listing .article-title {
    font-size: 16px;
    line-height: 1.4;
}
.bx-video-listing .article-desc {
    display: none;
}
.bx-video-detail .article {
    display: flex;
    flex-direction: column;
    row-gap: 0;
}

.bx-video-detail .article-video-title {
    font-size: 24px;
    line-height: 1.4;
}
.article-date + .count-view::before {
    content: '|';
    position: absolute;
    left: 0;
}
.count-view {background: url(../images/pc/ico-view.png) 7px 4px no-repeat;padding-left: 30px;position: relative;}
.bx-video-detail .article-content {
    background-color: #ebebeb;
    padding: 10px 9px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.bx-video-detail .article-date {
    font-family: 'Roboto_Slab', sans-serif;
    font-weight: 400;
    padding-left: 24px;
    background: url(../images/pc/ico-calender.png) 0 0 no-repeat;
}

.link-share-f {height: 20px;line-height: 21px;background: #1877f2;color: #fff;font-size: 11px;padding: 0 8px;border-radius: 3px;}
.link-share-f:hover {opacity: .8;}
.embed-video>div,
.embed-ifame iframe {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.embed-video,
.embed-ifame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
/* bx-epaper-list */
.bx-epaper-list .bx-cat-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    align-items: flex-start;
}
.bx-epaper-list .article {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc((100% - 25px) / 2);
}
.bx-epaper-list .article-title {
    font-size: 16px;
    line-height: 1.4;
}
.bx-epaper-list .article-desc {
    display: none;
}
/* error-page */
.article-error {
    padding: 36px 0 30px;
    text-align: center;
}
.article-error img {
    display: block;
    text-align: center;
    margin: 0 auto 30px;
}
.backToHomepage {
    margin-top: 20px;
    background-color: #00509e;
    display: inline-block;
    color: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    font-weight: 400;
}
/* mb-topic-detail */
.mb-topic-detail .bx-cat .bx-cat-title {border-top: 0;}
/* bx-printer-listing */
.bx-printer-listing .bx-cat-content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}
.bx-printer-listing .article {
    width: 100%;
}
.bx-printer-listing .article {
    column-gap: 20px;
    flex-direction: row;

}
.bx-printer-listing .article-image {
    width: 150px;
}
.bx-printer-listing .article-image::before {
    padding-top: 141.2%;
}
.mb-topic-detail .bx-printer-listing .bx-cat-content {
    row-gap: 20px;
}
.mb-topic-detail .bx-printer-listing .article:not(:first-child) {
    border-top: 1px dashed #ebebeb;
    padding-top: 20px;
}
.mb-topic-detail .bx-printer-listing .article-image::before {
    padding-top: 56.25%;
}
.bx-printer-listing .article-title {
    text-transform: uppercase;
    line-height: 1.7;
}
.bx-printer-listing .article-link {
    display: block;
}
.bx-printer-detail .article-content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
    margin-top: -5px;
}
.bx-printer-detail .article-title {
    text-transform: initial;
    line-height: 1.4;
}
.bx-printer-detail .article-desc {
    display: none;
}

.bx-statics p {
    margin-block: 15px;
    font-size: 18px;
    line-height: 1.75;
    font-family: 'Roboto_Slab', sans-serif;
}

.bx-statics p:first-child {
    margin-top: 0;
}

.bx-ic-podcast .article-link {
    padding-left: 28px;
    background: url(../images/pc/ico-podcast.png) 0 center no-repeat;
    background-size: 18px;
}
/* footer */
footer {
    margin-top: 30px;
}
.mb-home footer {
    margin-top: 0;
}
.footer-container {
    background-color: #f7f6f6;
    padding-block: 22px 30px;
}

.footer-content h3 {
    font-size: 22px;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
    display: block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.footer-content {
    font-size: 16px;
    line-height: 1.75;
}

.footer-links {
    display: flex;
    column-gap: 2px;
    margin-block: 15px;
}

.footer-links a {
    background-color: #ffe7e5;
    border: 1px solid #fadedc;
    border-radius: 2px;
    padding: 6px 15px;
    text-align: center;
}

.footer-links a:hover {
    background-color: #fadedc;
}

.footer-social {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 12px;
}

.ico-social {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: #e3e3e3;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 15px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ico-facebook {
    background-color: #eee;
}

.ico-twitter {
    background-color: #eee;
}

.ico-tiktok {
    background-color: #eee;
}

.ico-youtube {
    background-color: #eee;
}
.ico-facebook:hover {
    background-color: #1877F2;
}
.ico-twitter:hover {
    background-color: #000;
}

.ico-tiktok:hover {
    background-color: #010101;
}
.ico-youtube:hover {
    background-color: #FF0000;
}

.footer-cms a {
    font-size: 16px;
    position: relative;
    top: 13px;
}

@media screen and (max-width: 410px) {
    .multi-link {
        font-size: 28px;
        background-position-y: 16px;
        background-size: 24px;
        padding-right: 30px;
    }
    .bx-printer .article-paper {
        font-size: 20px;
    }
    .bx-printer .article-read {
        font-size: 16px;
    }
    .bx-printer .article-content {
        row-gap: 10px;
    }
    .article-detail-title {
        font-size: 28px;
    }
    .footer-content h3 {
        font-size: 20px;
    }
    
}

@media screen and (max-width: 360px) {

    .bx-cat-three .article-title,
    .pink-content .article-title,
    .bx-red .article-title,
    .bx-cat-one .article-title,
    .bx-cat-two .article-title,
    .bx-listing .article-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .bx-cat-one .article,
    .bx-cat-three .article,
    .bx-listing .article,
    .bx-hot .article,
    .pink-content,
    .bx-cat-two .bx-cat-content {
        column-gap: 15px;
    }

    .pink-content .article,
    .bx-cat-two .article {
        width: calc((100% - 15px) / 2);
    }

    .multi-title {
        column-gap: 10px;
    }

    .name-topic-link {
        padding: 5px 12px;
        border-radius: 33px;
        font-size: 15px;
    }

    .ico-google-news span {
        display: none;
    }
    .bx-printer .article-image {
        width: 150px;
    }
    .footer-content h3 {
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        row-gap: 2px;
        column-gap: 0;
    }

    .footer-links a {
        text-align: left;
    }
}

@media screen and (max-width: 320px) {
    .ico-bars {
        left: 9px;
    }

    .bx-cat-three .article-image,
    .bx-cat-one .article-image,
    .bx-red .article-image,
    .bx-listing .article-image {
        width: 132px;
    }

    .bx-red .article-image {
        margin-right: 15px;
    }

    .bx-cat-three .article-title,
    .pink-content .article-title,
    .bx-red .article-title,
    .bx-cat-one .article-title,
    .bx-cat-two .article-title,
    .bx-listing .article-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .bx-listing .article-cat {
        display: none;
    }

    .choise-name {
        font-size: 36px;
    }

    .meta-choise span {
        font-size: 14px;
    }

    .tech-link,
    .tech-link span {
        font-size: 28px;
    }

    .tech-link span {
        padding-inline: 5px;
    }

    .tech-link span::before {
        top: 3px;
    }
    .article-detail-content {
        font-size: 16px;
    }
    .footer-content h3 {
        font-size: 18px;
    }
}