.author-wrapper {
    --avatar: 130px;
    display: grid;
    grid-template-columns: calc(100% - var(--avatar)) var(--avatar);
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    margin-top: 24px;
    color: #595959;
    font-size: 16px;
}

.author-title {
    font-size: 27px;
    text-transform: capitalize;
    color: var(--pr-color-primary);
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.author-box-right {
    width: 100%;
}

.author-description {
    margin-top: 16px;
    margin-bottom: 10px;
    max-height: 80px;
    overflow: hidden;
    position: relative;
}

.author-description::after {
    content: '';
    width: 100%;
    height: 26px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.8) 75.52%);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 222ms ease-in-out;
}

.author-description.has-extra-content::after {
    opacity: 1;
}

.author-description.showall-content::after {
    opacity: 0;
}

.author-description-content>*:first-child {
    margin-top: 0;
}

.author-description-content>*:last-child {
    margin-bottom: 0;
}

.author-showmore {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 222ms ease-in-out;
}

.author-showmore span {
    display: block;
    background-color: #fff;
    padding: 2px 12px;
    font-family: var(--pr-font-family);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.author-showmore span:hover {
    text-decoration: underline;
}

.author-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    grid-gap: 10px;
}

#posts-wrapper .list-posts-category {
    grid-template-areas: 'listTitle listTitle' 'bMain bSidebar';
}

.lastest-frorm {
    grid-area: listTitle;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    color: var(--pr-color-primary);
}

.autho-social-item {
    display: block;
}

.author-description.has-extra-content .author-showmore {
    pointer-events: all;
    opacity: 1;
}


.author-image {
    width: 100%;
    display: block;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.author-image::after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.author-image img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

b,strong {
    font-weight: 500;;
}
#blog-header {
    padding: 0 2rem;
    position: relative;
    width: 100%;
    background-color: var(--whie);
    box-shadow: 0 0 5px var(--flash);
}

/* #blog-header */


#blog-header .navigation-wrapper {
    border: none;
}

.blog-search {
    position: relative;
    max-width: 360px;
}

.blog-logo img {
    height: 50px
}

.site-w,
.md-product-viewed-content {
    max-width: 1300px !important;
    margin: 0 auto;
}

.site-footer .site-w {
    max-width: 1500px !important;
}

.site-w {
    margin-top: 40px;
}

.md-product-viewed-content {
    margin: 32px auto 64px !important;
}

#posts-wrapper {
    font-weight: 400;
    margin-bottom: 3rem;
}


#posts-wrapper iframe {
    border: none;
    background-color: var(--light);
}

.featured-post-header,
.top-stories-wrapper {
    margin-bottom: var(--large-padding);
    padding-bottom: var(--large-padding);
    border-bottom: 1px solid var(--flash);
}

.rt-label {
    margin-left: 4px;
}

.blog-heading {
    font-size: 1.5rem;
    position: relative;
    font-weight: 400;
}

.blog-heading::after {
    content: "";
    height: 1px;
    width: 5rem;
    display: block;
    background-color: var(--secondary);
    margin-top: var(--small-padding);
}

.feature-post-list {
    margin: 0 auto;
    padding: 0;
    list-style: none
}

.entry-thumbnail {
    display: block;
    margin-bottom: 0.75rem;
    border-radius: 5px;
    overflow: hidden;
}

.post-categories {
    margin: 0 var(--small-padding) 0 0;
    font-weight: 400;
    text-transform: capitalize;
}

.post-categories svg {
    width: 16px;
    min-width: 16px;
    margin-right: 4px;
    color: var(--dark)
}

.meta-time {
    line-height: 1.1;
    margin-top: auto;
}

.meta-time::first-letter {
    text-transform: capitalize;
}

.top-stories-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: var(--large-padding);
    margin: 0;
    padding: 0;
    list-style: none;
}

.entry-title {
    width: 100%;
    margin-bottom: var(--small-padding);
    font-weight: 500;
}

.top-stories-item .entry-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 55px;
    text-transform: capitalize;
}

.blog-item+.blog-item {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--flash);
}

.blog-item .blog-title {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.3;
    margin-top: var(--small-padding);
}

.blog-image {
    background-color: var(--light);
}


.blog-date-post {
    margin-left: 6px;
}

.blog-date-post::before {
    content: "/";
    margin: 0 3px;
    color: var(--gray);
    font-weight: 100;
}

.loadmore-item {
    color: var(--pr-color-darkness);
    width: auto;
    position: relative;
    z-index: 10;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--pr-color-white);
    border-radius: 32px;
    font-size: var(--pr-font-size-display3);
    cursor: pointer;
    padding: var(--pr-spacing-03) var(--pr-spacing-09);
    border: 2px solid var(--pr-color-secondary);
    margin: var(--pr-spacing-07) auto;
}

.loadmore-item:hover .loadmore-text {
    color: var(--secondary);
}

.loading-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-icon::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    border-width: 2px;
    border-style: solid;
    border-color: #666 #666 #aaa;
    border-radius: 32px;
    animation: search-icon 800ms linear infinite;
    margin-right: 4px;
}

.loading-text {
    display: none;
    pointer-events: none;
}

.blog-short-description {
    display: none;
}


/* post details */
.blog-detail-content {
    position: relative;
}

.social-link span {
    transition: var(--trans);
    position: absolute;
    left: 100%;
    height: 24px;
    top: calc(50% - 12px);
    font-size: 0.7rem;
    line-height: 1.3;
    padding: 4px 6px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 2px;
    opacity: 0;
    z-index: -9;
    transform: translateX(-10px);
    pointer-events: none;
}

.social-link span::after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-right-color: #000;
    border-width: 4px;
    margin-top: -4px;
    pointer-events: none;
}

.article-category {
    text-transform: capitalize;
    font-weight: 300;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.article-category a {
    color: var(--secondary);
}

.article-category a:hover {
    text-decoration: underline;
    text-decoration-style: solid;
}

.post-heading {
    font-weight: 400;
    text-align: left;
}

.article-body img {
    height: auto;
    max-width: 100%;
    width: fit-content;
    width: -moz-fit-content;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.author-container {
    margin: 2rem 0 3rem;
    border-top: 1px solid var(--flash);
    padding-top: 2rem;
    position: relative;
}

.author-container .backpage {
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--flash);
    background-color: var(--white);
    height: 2rem;
    position: absolute;
    top: -1rem;
    left: 1rem;
    cursor: pointer;
    user-select: none;
}

.author-container .backpage:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.arrow-left {
    height: 24px;
    min-width: 24px;
    width: 24px;
    margin-right: 6px;
}

.official-avatar {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 64px;
}

.official-avatar img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.author-avatar {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light);
    color: var(--gray);
    border-radius: 64px;
    overflow: hidden;
}

.author-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 64px
}

.author-body {
    width: calc(100% - 64px);
    padding-left: 1rem;
}

.title-author {
    margin: 0 0 1rem;
    position: relative;
    font-size: 1.25rem;
    text-transform: capitalize;
}

.title-author::after {
    content: "";
    height: 1px;
    width: 4rem;
    display: block;
    background-color: var(--secondary);
    position: absolute;
    bottom: -0.4rem;
    left: 0;
}

.author-official-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    overflow: hidden;
}

.author-official-avatar+.author-body {
    width: calc(100% - 80px);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.official-image {
    background-color: var(--secondary);
}

.author-official-avatar img {
    border-radius: 80px;
    width: 80px;
    height: 80px;
}

.official-image img {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    filter: brightness(0) invert(1);
}

.author-description-content>*:first-child {
    margin-top: 0;
}

.author-description-wrapper:not(.expand-content) {
    max-height: 110px;
    overflow: hidden;
    position: relative;
}

.collapse-content:after {
    position: absolute;
    bottom: 0;
    height: 80px;
    width: 100%;
    content: "";
    display: block;
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0)), to(#fff));
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff);
}

.author-description-showmore {
    padding: 1rem 0;
    display: none;
}

.product-more-text,
.product-less-text {
    position: relative;
    z-index: 2;
    padding: var(--small-padding) var(--middle-padding);
    cursor: pointer;
    user-select: none;
    border-radius: 36px;
    border: 2px solid var(--light);
    transition: var(--trans);
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    width: fit-content;
    max-width: -moz-fit-content;
    justify-content: center;
    align-items: center;
    height: 41px;
}

.noresult-wrap {
    margin-bottom: 3rem;
}

.noresult-title,
.searchhelp {
    font-weight: 400;
    margin-top: 0.5rem
}

.noresult-title span {
    font-weight: 500
}

.blog-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 500;
    list-style: none;
}

.blog-menu-link {
    padding: 0.5rem 1rem;
}

.search-text {
    padding-right: 46px;
}

.post-meta {
    color: var(--darkness);
}

.post-meta::first-letter {
    text-transform: capitalize;
}

.post-meta span {
    color: var(--black);
    text-transform: capitalize;
}


@keyframes search-icon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

table {
    border: none;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1.5rem;
}

table tr {
    border-collapse: collapse;
}

table th,
table td {
    padding: 6px;
    border-collapse: collapse;
    font-size: 15px;
}

table th {
    background-color: var(--light);
    font-weight: 500;
}

table td {
    border: 1px solid var(--flash);
}

table p {
    margin: 2px 0;
}

.button-add-to-cart {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-family: inherit;
    -webkit-appearance: none;
    line-height: 1;
    cursor: pointer;
    outline: none;
    background-color: #f1f1f1;
    color: #313131;
    font-weight: 500;
    font-family: 15px;
    min-width: 10px !important;
}

.blog-detail-cover img {
    display: block;
    margin: 0 auto;
}

.list-same-category-post {
    margin: 0;
    padding: 0;
    list-style: none;
}

.meta-author a {
    text-transform: capitalize;
}


#article-content b {
    font-weight: 400 !important;
}

#article-content img {
    margin: 0 auto;
    height: auto;
}

#article-content a {
    color: var(--pr-color-secondary);
}

#article-content a:hover {
    text-decoration: underline;
}

.mini-cart-drawer {
    display: none;
}


/*Re-design blog*/

.news-breadcrumb {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-dark);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    line-height: 1.1
}

.news-breadcrumb li+li::before {
    content: "/";
    font-size: 13px;
    font-weight: 400;
    color: var(--pr-color-dark);
    margin: 0 var(--pr-spacing-01)
}

.news-breadcrumb li {
    padding-right: var(--pr-spacing-02)
}

.news-breadcrumb .breadcrumb__text {
    font-weight: 400 !important;
    font-size: 15px;
}

.news-breadcrumb .breadcrumb__item.breadcrumb__item--current {
    font-size: 21px
}

.news-breadcrumb .breadcrumb__item--completed span,
.news-breadcrumb .breadcrumb__item--current span {
    font-weight: 400 !important;
    color: var(--secondary)
}

.news-breadcrumb .breadcrumb__item--completed a {
    font-weight: 400 !important;
    color: var(--secondary);
}

.news-breadcrumb .breadcrumb__item--completed a:hover {
    color: var(--secondary)
}

.navigation-category {
    display: flex;
    list-style: none;
    margin: 32px 0 30px;
    padding: 0;
    align-items: flex-end;
    justify-content: center;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    align-items: center;
}
.navigation-category::-webkit-scrollbar-thumb {
    background-color: transparent
}

.navigation-category:hover::-webkit-scrollbar-thumb {
    background-color: #f1f1f1
}


.navigation-category .nav-cat-item {
    text-transform: uppercase;
    padding: 0 20px;
}

.navigation-category .nav-cat-item.active a,
.navigation-category .nav-cat-item a:hover {
    color: var(--pr-color-secondary);
    border-bottom: 1px solid var(--pr-color-secondary);
}

.navigation-category .nav-cat-item a {
    font-weight: var(--pr-font-weight-heading);
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
}

.feature-posts-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: var(--pr-spacing-07);
    grid-template-areas:
        "post-feature post-feature post-feature feature-row-1"
        "post-feature post-feature post-feature feature-row-2"
        "post-feature post-feature post-feature feature-row-3"
        "feature-col-1 feature-col-2 feature-col-3 feature-col-4";
    margin-bottom: var(--pr-spacing-09);
}

.feature-row-1 {
    grid-area: feature-row-1;
}

.feature-row-2 {
    grid-area: feature-row-2;
}

.feature-row-3 {
    grid-area: feature-row-3;
}

.feature-col-1 {
    grid-area: feature-col-1;
}

.feature-col-2 {
    grid-area: feature-col-2;
}

.feature-col-3 {
    grid-area: feature-col-3;
}

.feature-col-4 {
    grid-area: feature-col-4;
}

.post-feature {
    grid-area: post-feature;
}

.post-feature .description {
    margin-top: var(--pr-spacing-03);
}

.item-feature .entry-title a {
    font-size: var(--pr-font-size-display4);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
    word-break: normal;
    white-space: normal;
}

.item-feature .entry-thumbnail {
    width: 100%;
    padding-top: 56.25%;
    /*16:9*/
    position: relative;
    overflow: hidden;
}
.item-normal .entry-thumbnail {
    padding-top: 48% !important;
}

.item-feature .entry-thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    object-position: center;
}
@media (min-width: 1024px){
    .item-bottom  {
        padding-top: 24px;
    }
}
.item-feature-list {
    position: relative;
}

.item-feature-list .meta-author {
    display: none;
}

.item-feature-list .entry-thumbnail {
    position: relative;
}

.text-url {
    word-break: break-word;
}


span.btn-see-more-content,
span.btn-see-less-content,
span.btn-see-more-toc,
span.btn-see-less-toc {
    height: 46px;
    line-height: 44px;
    border: 2px solid var(--pr-color-primary);
    padding: 0 30px;
    border-radius: 46px;
    color: var(--pr-color-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--pr-trans-standard)
}

span.btn-see-more-content:hover,
span.btn-see-less-content:hover,
span.btn-see-more-toc:hover,
span.btn-see-less-toc:hover {
    background-color: var(--pr-color-primary);
    color: #fff
}

.action-more-list,
.action-more-toc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 32px
}

span.btn-see-less-content,
span.btn-see-less-toc {
    display: none
}

.action-more-list.more span.btn-see-more-content,
.action-more-toc.more span.btn-see-more-toc {
    display: none
}

.action-more-list.more span.btn-see-less-content,
.action-more-toc.more span.btn-see-less-toc {
    display: block
}

.feature-post-sidebar .list-post.new-post-list,
.toc-wrap .toc-outer-height {
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: var(--pr-trans-standard);
}

.toc-wrap .toc-outer-height.short-content {
    height: auto;
}


.feature-post-sidebar .list-post.new-post-list:after,
.toc-wrap .toc-outer-height:after {
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 0;
    height: 70%;
    width: 100%;
    z-index: 1;
    background-image: -webkit-gradient( linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#ffffff) );
    background-image: linear-gradient(180deg,hsla(0,0%,100%,0),#ffffff);
    pointer-events: none;
    transition: opacity 300ms ease-in-out
}

.toc-wrap .toc-outer-height:after {
    background-image:-webkit-gradient( linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#eff9ff) );
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #eff9ff);
}
.toc-wrap .toc-outer-height.short-content:after {
    content: none;
}

.feature-post-sidebar .list-post.new-post-list.active,
.toc-wrap .toc-outer-height.active {
    height: auto
}

.feature-post-sidebar .list-post.new-post-list.active:after,
.toc-wrap .toc-outer-height.active:after {
    display: none
}

@media (min-width: 1024px) {
    .item-feature-list .entry-thumbnail:after {
        content: '';
        background: #fff;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 50px;
        z-index: 1;
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .item-feature-list .entry-box {
        position: absolute;
        bottom: 30%;
        left: 10px;
        z-index: 2;
    }
    .main-posts-category .item-feature {
        display: flex;
        flex-direction: column;
    }
    .main-posts-category .blog-item-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .main-posts-category .entry-title {
        height: 47px;
    }
}

.meta-time svg,
.cat-post svg {
    margin-right: 10px;
}

.list-posts-category {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 'bMain bSidebar';
}

.main-posts-category .list-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--pr-spacing-07);
    grid-area: bMain;
}
.main-posts-category .meta-time {
    margin-top: 0;
    font-size: 15px;
}
.main-posts-category .meta-author {
    line-height: 1;
}

.sidebar-posts-category {
    grid-area: bSidebar;
    padding-left: var(--pr-spacing-09);
}

.feature-post-sidebar {
    margin-bottom: var(--pr-spacing-09);
}

.cat-post {
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-secondary);
    text-transform: capitalize;
    margin-bottom: var(--pr-spacing-03);
}

.post-detail-description {
    margin-bottom: var(--pr-spacing-04);
}

.title-post {
    background: var(--pr-color-light);
    padding: var(--pr-spacing-03) var(--pr-spacing-04);
    font-size: 20px;
    color: var(--pr-color-primary);
    font-weight: var(--pr-font-weight-heading);
    margin-bottom: 12px;
}

.pagination li span {
    font-size: 16px;
}

.pagination li.current span {
    color: var(--pr-color-secondary);
}

.pagination {
    justify-content: center;
}

.pagination li a,
.pagination li span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    background: var(--pr-color-flash);
    padding: 0;
    margin: 0 10px;
    font-weight: var(--pr-font-weight-heading);
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-post {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
}

.list-post .item-feature {
    --sidebarImg: 120px;
    display: grid;
    grid-template-areas: "iImage iTitle";
    grid-template-columns: var(--sidebarImg) calc(100% - var(--sidebarImg) - 10px);
    grid-gap: 10px;
    margin-bottom: 16px;
}

.entry-description {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    margin-bottom: 8px;
    height: 36px;
}

.list-post .item-feature .entry-thumbnail {
    padding-top: 56.25%;
    /*16:9*/
    position: relative;
    overflow: hidden;
}

.feature-product-sidebar .list-post .item-feature {
    --sidebarImg: 90px;
}

.feature-product-sidebar .list-post .item-feature .entry-thumbnail {
    padding-top: 100%;
}

.list-post .item-feature .entry-thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    object-position: center;
}

.list-post .item-feature .entry-title a {
    font-size: 16px;
}

.list-post .item-feature .product-price {
    font-weight: var(--pr-font-weight-heading);
    font-size: var(--pr-font-size-body);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--pr-color-price);
}

.list-post .item-feature .product-high-price {
    font-weight: var(--pr-font-weight-body);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: line-through;
    color: var(--pr-color-gray);
    margin-left: 6px;
    font-size: var(--pr-font-size-display6);
}


.article-container-sidenav .sidebar-posts-category {
    padding-left: 0;
}

.toc-wrap {
    background-color: #eff9ff;
    padding: var(--pr-spacing-03) 0;
    font-size: 100%;
    margin-bottom: var(--pr-spacing-03);
    border-radius: 12px;
}

.toc-wrap.close-toc .toc-more-less .more {
    display: none;
}

.toc-wrap.close-toc .toc-more-less .less {
    display: block;
}
.toc-wrap.close-toc .action-more-toc {
    display: none;
}

/* .toc-wrap #toc {
    height: auto;
    overflow: hidden;
    transition: var(--pr-trans-standard);
    margin: 0;
    padding-bottom: var(--pr-spacing-04);
} */

.toc-wrap.close-toc .toc-outer-height {
    height: 0;
    transition: var(--pr-trans-standard);
    padding-bottom: 0;
}

.toc-title {
    position: relative;
    padding: var(--pr-spacing-03) var(--pr-spacing-04);
    font-weight: var(--pr-font-weight-heading);
}

.toc-title>svg {
    margin-right: var(--pr-spacing-04);
}

.toc-title span.toc-more-less {
    position: absolute;
    z-index: 9;
    right: var(--pr-spacing-04);
    top: var(--pr-spacing-03);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-items: center;
}

.toc-title span.toc-more-less .less {
    display: none;
}

.toc-title span.toc-more-less .more {
    display: block;
}

.toc-more-less {
    float: right;
    width: 30px;
    height: 25px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    font-weight: 700;
}

.toc-wrap ol {
    counter-reset: item;
    list-style: none;
}

.toc-wrap ol li:before {
    counter-increment: item;
    content: counters(item, ".")". ";
}

.related-list-post,
.most-list-post {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--pr-spacing-07) var(--pr-spacing-04);
}

.related-list-post .entry-title {
    margin-bottom: 4px;
}

.sidenav-category-name {
    text-transform: capitalize;
}

.related-articles {
    margin-bottom: var(--pr-spacing-07);
}

.social-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    margin: 15px 0;
    border: 1px solid #bba;
    border-radius: 3px;
}

.social-header {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
}

.social-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.share-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
}

.share-social-icon img {
    display: inline-block;
    max-width: 100%;
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.like-wrapper .social-header {
    text-align: right;
    justify-content: flex-end;
}

.like-list {
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.likethis-item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 1;
    transition: background-color .3s ease-in-out;
}

.likethis-facebook {
    background-color: #1678f7;
}

.likethis-youtube {
    background-color: #e92018;
}

.likethis-item svg {
    margin: 5px 5px 5px auto !important;
    width: 16px;
    height: 16px;
}

.author-area {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px solid #d1d1d1;
    border-radius: 3px;
    margin: 7px 0;
    width: 100%;
    padding: 7px 15px;
    background-color: #fff;
}

.author-avatar {
    width: 100px;
    padding: 7px;
    height: 100px;
}

.author-avatar img {
    width: 100%;
    margin: 0;
    height: auto;
    object-fit: contain;
}

.author-desc {
    width: calc(100% - 100px);
    padding: 7px 10px 7px 15px;
}

.author-name {
    margin-bottom: 10px;
    font-size: 15px;
}

.social-item {
    width: 20px;
    min-width: 20px;
    height: 20px;
    display: block;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    margin: 5px;
}

.social-item.facebook {
    background-color: #333;
    mask-image: url(/images/social/facebook-trans.svg);
    -webkit-mask-image: url(/images/social/facebook-trans.svg);
}

.social-item.twitter {
    background-color: #333;
    mask-image: url(/images/social/twitter-trans.svg);
    -webkit-mask-image: url(/images/social/twitter-trans.svg);
}


.social-item.pinterest {
    background-color: #333;
    mask-image: url(/images/social/pinterest-trans.svg);
    -webkit-mask-image: url(/images/social/pinterest-trans.svg);
}


.social-item.facebook:hover {
    background-color: var(--pr-color-secondary) !important;
}

.info-article {
    margin-bottom: 15px;
}

.info-right .meta-item {
    margin-right: 15px;
}

.info-right .meta-item svg {
    margin-right: 5px;
}

.info-right .meta-item .author {
    margin-left: 5px;
    font-weight: 500;
}

.article-responsive-table {
    overflow-x: auto;
    overflow-y: hidden;
}

.info-left > * + * {
    margin-left: 10px;
}

.info-left svg,
.info-left img {
    margin-right: 6px;
}

.info-right svg {
    margin-right: 6px;
}

.info-article .post-share {
    padding: 4px 0;
    color: var(--pr-color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-article .post-share:hover {
    color: var(--pr-color-primary);
}

.post-faq-answer{
    overflow: hidden;
    height: 0px;
}

.post-faq-question-text{
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-faq-question-text svg{
    margin-right: 5px;
}

.post-faq-group .post-faq-item{
    margin-top: 10px;
}

.post-faq-question{
    cursor: pointer;
    border-radius: 5px;
    background: var(--pr-color-light);
    padding: var(--pr-spacing-03) var(--pr-spacing-04);
    color: var(--pr-color-primary);
    font-weight: bold;
}

.post-faq-answer .post-faq-answer-wrap{
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    
}

.post-faq-question .more-content svg {
    transform: rotate(0deg);
    transition: transform 300ms ease-in-out;
}
.post-faq-question.effect-show .more-content svg {
    transform: rotate(180deg);
    transition: transform 300ms ease-in-out;
}

@media (min-width: 1000px) and (max-width: 1300px) {
    .article-responsive-table {
        max-width: calc(100vw - 390px);
    }
}
@media (min-width: 1000px) {
    .blog-detail-content .article-container-sidenav {
        width: 360px;
    }
    .blog-detail-content .article-container-article {
        width: calc(100% - 360px);
    }
    .full-width .blog-detail-content .article-container-article {
        width: 100%;
        flex: 1
    }

    .article-responsive-table {
        margin: 0 auto;
    }
}

@media (max-width: 1023px) {
    .item-feature-list .entry-box {
        display: none;
    }

    .list-posts-category {
        grid-template-columns: 3fr 2fr;
    }

    .blog-detail-content .article-container-article {
        flex: 0 0 100%;
    }

    .article-responsive-table {
        max-width: calc(100vw - 30px);
    }
}

@media (min-width: 768px) {
    .blog-detail-content .article-container-article {
        padding-left: 0;
        border: none;
    }

    .blog-detail-content .article-container-sidenav {
        padding-left: var(--pr-spacing-09);
        padding-right: var(--pr-spacing-03);
    }
}

@media (max-width: 1023px) {

    .post-feature .description {
        display: none;
    }

    .blog-item-content {
        padding: 0 0 16px;
    }

    .blog-item-content .entry-title a {
        font-size: var(--pr-font-size-display4);
    }

    .feature-post-list li+li {
        margin-top: 0;
    }

    .pagination li a,
    .pagination li span {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin: 0 3px;
    }
}

@media (max-width: 960px) {
    .feature-posts-list .slick-disabled {
        box-shadow: none !important;
        opacity: 0.5;
    }
    #posts-wrapper h2.most-articles-title {
        padding: var(--pr-spacing-03) 0;
        font-size: 20px;
        color: var(--pr-color-primary);
        font-weight: var(--pr-font-weight-heading);
    }
}

@media (max-width: 767px) {
    .lastest-frorm {
        padding: 0 16px;
    }
    .feature-posts-list {
        display: block;
        margin-bottom: 0;
        position: relative;
    }

    .feature-posts-list .slick-list.draggable {
        padding-right: 0;
    }

    .item-feature-list .entry-box {
        display: block;
    }

    .news-breadcrumb {
        white-space: revert;
        display: inline-block;
    }

    .news-breadcrumb li {
        display: inline-flex;
    }

    .info-article {
        flex-wrap: wrap;
    }

    #article-content img {
        max-width: 100%;
    }

    .share-wrapper,
    .like-wrapper {
        flex: 0 0 100%;
    }

    .social-header {
        text-align: center !important;
    }

    .social-list {
        justify-content: center;
        margin-bottom: 16px;
    }

    .like-list {
        justify-content: center;
        text-align: left;
    }

    .likethis-item {
        margin-left: 0;
        margin-right: 16px;
    }

    .author-area {
        flex-wrap: wrap;
        justify-content: center;
    }

    .author-desc {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .author-social ul {
        justify-content: center;
    }

    .related-list-post,
    .most-list-post {
        grid-template-columns: repeat(1, 1fr);
    }

    .info-right {
        justify-content: space-between;
        width: 100%;
    }

    .toc-wrap #toc {
        padding-right: var(--pr-spacing-04);
        padding-left: var(--pr-spacing-07);
    }

    .related-articles {
        margin-bottom: var(--pr-spacing-07);
        margin-top: var(--pr-spacing-07);
    }

    .list-posts-category {
        display: block;
    }

    .main-posts-category .list-main {
        grid-template-columns: repeat(1, 1fr);
    }

    #posts-wrapper h2.blog-heading {
        margin-bottom: 24px;
        padding: 0;
        margin-top: 32px;
    }

    .sidebar-posts-category {
        padding: 0;
    }

    .related-list-post .item-feature,
    .most-list-post .item-feature {
        display: grid;
        grid-template-columns: 100px calc(100% - 110px);
        grid-gap: 10px;
    }

    .main-posts-category .list-main .item-feature+.item-feature {
        display: grid;
        grid-template-columns: 150px calc(100% - 160px);
        grid-gap: 10px;
    }

    .main-posts-category .list-main .item-feature+.item-feature .entry-title a {
        font-size: 16px;
    }

    .feature-product-sidebar .list-post .item-feature {
        display: block;
        padding: 6px;
        margin: 0;
        background-color: #fff;
        border-radius: 5px;
        transition: var(--pr-trans-standard);
        min-width: 170px;
        width: 170px;
    }

    .feature-product-sidebar .list-post {
        display: flex;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 12px;
    }

    .feature-product-sidebar .list-post .item-feature .entry-thumbnail {
        padding-top: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 5px;

    }

    .feature-product-sidebar .list-post .item-feature .entry-title a {
        font-size: 13px;
        -webkit-line-clamp: 1 !important;
        font-weight: 500;
        line-height: 18px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-bottom: 6px;
        -webkit-box-orient: vertical;
        width: 100%;
    }

    .feature-post-sidebar .list-post .item-feature:first-child {
        display: block;
    }

    .main-posts-category .meta-author {
        font-size: 15px;
        margin-top: 4px;
    }

    #posts-wrapper {
        margin-bottom: 0;
    }
    #product-viewed-content.section-product-page {
        margin-top: 0; 
    }
}

.feature-posts-list .slick-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 30%;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: 0 1px 3px -1px rgb(0 0 0 / 20%), 0 3px 6px 0px rgb(0 0 0 / 14%), 0 1px 6px 0px rgb(0 0 0 / 10%);
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    z-index: 1;
}

.feature-posts-list .slick-next {
    right: 8px;
}

.feature-posts-list .slick-prev {
    left: 8px;
}

.posts-title {
    text-align: center;
    text-transform: capitalize;
    color: var(--pr-color-primary);
}

.tags-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tags-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tags-wrapper ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0px;
}

.tag {
    background: #f5f5f5;
    border-radius: 3px;
    display: inline-block;
    padding: 0 10px;
    line-height: 28px;
    position: relative;
    text-decoration: none;
    font-size: 15px;
    margin: 3px;
}

.tag:hover {
    text-decoration: none !important;
}

.best-selling-image {
    object-fit: contain !important;
}

.sidenav-articles-list {
    margin-left: 24px;
}

.sidenav-articles-list a {
    padding: 4px;
}

.article-container-sidenav {
    position: relative;
}

.article-container-sidenav .sidenav-content {
    position: relative;
    top: 0;
    z-index: 1;
}


@media (min-width: 768px) {

    .blog-logo {
        min-width: 250px;
    }

    .form-blog-searchbox {
        overflow: hidden;
        border-radius: 3rem;
        transition: var(--trans);
        width: 115px;
    }

    .form-blog-searchbox.blog-focus {
        width: 320px;
    }

    #blog-header .header-content {
        width: 100%;
        justify-content: flex-end;
        align-items: center;
    }

    #blog-header .form-search .search-button {
        height: 44px;
        top: 3px;
        right: 3px;
        width: 44px;
    }

    .form-blog-searchbox:not(.blog-focus) #blog-search-button {
        pointer-events: none;
        cursor: default;
    }

    .form-blog-searchbox.blog-focus #blog-search-button {
        background-color: transparent;
    }

    #blog-header .search-text {
        overflow: hidden;
        cursor: default;
        height: 46px;
        border-radius: 30px;
    }

    #blog-header .form-blog-searchbox.blog-focus .search-text {
        word-spacing: inherit;
        cursor: text;
    }

    #blog-header .form-search .search-text:focus {
        width: 100%;
    }

    /* .page-wrapper {
        margin-top: var(--large-padding);
    } */

    .feature-post-list {
        display: grid;
        grid-template-columns: 2.5fr 1fr;
        grid-gap: 1.5rem;
        grid-template-areas:
            "feature-item smallItem"
            "feature-item smallItem2"
    }

    .feature-post-list li:first-child {
        grid-area: feature-item;
    }

    .feature-post-list li:nth-of-type(2) {
        grid-area: smallItem;
    }

    .feature-post-list li:nth-of-type(3) {
        grid-area: smallItem2;
    }

    .feature-post-list .entry-title a {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .blog-image {
        order: 2;
        width: 200px;
        height: 140px;
        margin-left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .blog-content {
        width: calc(100% - 200px);
        padding-right: 2rem;
    }

    .blog-content {
        order: 1
    }

    .blog-short-description {
        display: block;
    }

    .blog-detail-cover {
        max-width: 1300px !important;
        margin: 0 auto;
        padding-left: var(--middle-padding);
        padding-right: var(--middle-padding);
    }

    .article-body {
        max-width: 86%;
        margin: 3rem auto;
    }

    .blog-detail-social {
        position: relative;
        margin: 4rem auto;
    }

    .blog-detail-social-list-icon {
        position: sticky;
        top: 30px;
        left: 60px;
        max-width: 220px;
    }

    .social-link {
        display: block;
        width: 48px;
        height: 48px;
        border-radius: 48px;
        position: relative;
        background-color: transparent;
    }

    .social-link:hover span {
        opacity: 1;
        z-index: 1;
        transform: translateX(6px);
    }

    .social-link+.social-link {
        margin-top: 0.5rem;
    }

    .social-link img {
        width: 46px;
        height: 46px;
        filter: grayscale(1);
        transition: var(--trans);
        opacity: 0.5;
        object-fit: contain;
    }

    .social-link:hover img {
        filter: grayscale(0);
        opacity: 1;
    }
}


@media (min-width: 768px) and (max-width: 819px) and (orientation:portrait) {
    #blog-header .header-content {
        justify-content: flex-start !important;
    }
    .more-list-category .list-menu-hidden {
        display: block !important;
        opacity: 1 !important;
        pointer-events: all !important;
        transform: none !important;
    }
    .more-list-category {
        order: 4;
        width: 100%;
    }
    .more-list-category .see-more {
        display: none !important;
    }
    .more-list-category .list-more-menu-content {
        padding: 0 !important;
        display: block !important;
        box-shadow: none !important;
    }
    .list-menu-item .child-link {
        display: block !important;
        padding: 8px 0 !important;
        marign: 0 !important;
    }
    .has-blog-sub-menu .navigation-lev2-list {
        min-height: 0 !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        padding-bottom: 0 !important;
        padding-left: 16px !important;
    }
    
}

@media (min-width: 760px) and (orientation:portrait) and (max-width: 1366px) {
    .blog-logo {
        min-width: 100px !important;
        max-width: 150px !important;
    }
    .close-blog-menu {
        display: none;
    }
   
    .list-menu-hidden {
        width: 70vw !important;
    }
}


@media (min-width: 760px) and (orientation:landscape) and (max-width: 1366px) {
    .blog-logo {
        min-width: 100px !important;
        max-width: 150px !important;
    }
    
    .feature-post-list {
        display: grid;
        grid-template-columns: 2.5fr 1.5fr;
        grid-gap: 1.5rem;
        grid-template-areas:
            "feature-item smallItem"
            "feature-item smallItem2"
    }

    .top-stories-list .blog-item-content .entry-title+.flex-b {
        flex-wrap: wrap;
    }

    .post-categories {
        margin: 0 0 0.5rem 0;
        width: 100%;
    }

    .more-list-category .list-more-menu-content {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-gap: 16px;
    }

}


@media (min-width: 760px) and (max-width: 1024px) {
    .feature-post-list {
        grid-template-columns: 2.6fr 1.5fr;
    }

    .blog-item-content .entry-box {
        flex-wrap: wrap;
        grid-gap: 6px;
    }

    .top-stories-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
    }

    .blog-short-description {
        display: none
    }

    .feature-post-list li:nth-of-type(1) .entry-title a {
        display: block;

    }

    .feature-post-list li:nth-child(n + 2) .entry-title {
        font-size: 1.3rem;
    }

    .blog-detail-content {
        flex-wrap: wrap;
    }

    .blog-detail-social {
        order: 4;
        width: 100%;
    }

    .article-body,
    .blog-detail-social-list-icon {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    .list-same-category-post {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        grid-gap: 12px;
    }
    .info-left > * + * {
        margin-left: 0px;
    } 
    .info-left {
        flex-wrap: wrap;
        grid-gap: 2px 8px;
    }
}

@media (min-width: 992px) {
    .article-body {
        max-width: 70%;
    }
}

@media (min-width: 1025px) {
    .top-stories-list {
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    }
}

@media (max-width: 768px),
(max-width: 1000px) and (orientation:landscape) {
    #blog-header {
        padding: 0.5rem 0
    }

    .blog-nav-icon {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 0 10px 0 auto;
        transition: var(--trans);
    }

    .blog-nav-icon span {
        width: 28px;
        height: 2px;
        border-radius: 2px;
        background-color: var(--darkness);
        display: block;
        margin: 4px 0;
    }

    .header-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        margin: 0;
        padding: 2rem 1rem;
        z-index: 1234;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        z-index: -1111;
        visibility: hidden;
        pointer-events: none;
        transition: var(--trans);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .open-blog-menu {
        overflow: hidden;
    }

    .open-blog-menu .header-content {
        opacity: 1;
        z-index: 1234;
        visibility: visible;
        pointer-events: auto;
    }

    .blog-search,
    .form-blog-searchbox.blog-focus,
    .form-blog-searchbox {
        width: 100%;
        max-width: 100%;
    }

    #blog-header .search-text {
        word-spacing: 0;
        height: 46px;
        border-radius: 30px;
    }

    .blog-search {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .form-search {
        width: 100%
    }

    .close-blog-menu {
        width: 40px;
        min-width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .close-blog-menu svg {
        width: 36px;
        height: 36px;
    }

    .blog-menu {
        order: 3;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 2rem;
        width: 100%;
    }

    .blog-menu-link {
        padding: 1rem;
        display: block;
        width: 100%;
    }
    .blog-menu li {
        width: 100%;
    }
    .blog-menu a {
        margin: 0 !important;
    }
    .sub-blog-menu.show-child-menu {
        display: block;
        opacity: 1;
        pointer-events: all;
        transform: none;
        list-style: none;
    }
    .sub-blog-menu.show-child-menu a {
        font-weight: normal;
    }
}


@media (max-width: 760px) {
    #blog-header .blog-logo {
        margin-left: 10px;
    }

    #article-content img {
        height: auto;
    }

    #posts-wrapper .site-w {
        display: flex;
        padding: 0;
        flex-direction: column;
        margin-top: 10px;
    }

    #posts-wrapper .blog-detail-content.site-w {
        padding: 0 15px;
    }

    .featured-post-header {
        border-bottom: none;
        padding-bottom: 0;
    }

    .featured-post-header img {
        height: 210px;
        width: 100%;
        object-fit: cover;
    }

    .top-stories-item img {
        height: 210px;
        width: 100%;
        object-fit: cover;
    }


    .top-stories-item .entry-title a .flex-b {
        line-height: 1
    }

    .feature-post-list li+li {
        margin-top: var(--large-padding)
    }

    .blog-item {
        padding: 0 1rem;
    }

    .blog-image {
        width: 120px;
        height: 100px;
        order: 2;
        overflow: hidden;
    }

    .blog-image img {
        object-fit: cover;
    }

    .blog-item .blog-title {
        font-size: 1.35rem;
    }

    .blog-content {
        width: calc(100% - 120px);
        padding-right: 1rem;
    }

    .blog-content>.flex-b {
        flex-direction: column;
        align-items: flex-start;
        font-weight: 400;
        font-size: 0.9rem;
    }

    .blog-date-post {
        margin-left: 0;
    }

    .blog-date-post::before {
        display: none;
    }

    .blog-detail-content {
        padding-left: 1rem;
        padding-right: 1rem;
        display: block;
    }

    .blog-detail-social {
        width: 88%;
        margin: 2rem auto 0.5rem;
        order: 2;
    }

    .social-link span {
        display: none;
    }

    .blog-detail-social-list-icon {
        width: 100%;
        flex-direction: row;
    }

    .article-body {
        width: 88%;
        text-align: justify;
        margin: 0 auto;
    }

    .blog-detail-cover {
        width: 100%;
    }

    .social-link {
        width: 36px;
        height: 36px;
        margin-right: 0.5rem
    }

    .social-link img {
        height: 34px;
        width: 34px;
    }

    .author-container {
        padding: 2rem 1rem
    }

    .post-heading {
        font-size: 1.75rem
    }

    #posts-wrapper iframe {
        width: 100%;
        height: auto;
    }

    #posts-wrapper h1.posts-title {
     padding: 0 16px;   
    }

    #posts-wrapper h1,
    #posts-wrapper h2,
    #posts-wrapper h3,
    #posts-wrapper h4,
    #posts-wrapper h5,
    #posts-wrapper h6 {
        text-align: left;
        font-weight: 400;
        line-height: 1;
    }

    #posts-wrapper h2 {
        font-size: 1.45rem;
        margin-bottom: 0.5rem
    }

    #posts-wrapper h3 {
        font-size: 1.35rem;
    }

    #posts-wrapper h4 {
        font-size: 1.25rem;
    }

    #posts-wrapper h5 {
        font-size: 1.15rem;
    }

    #posts-wrapper h6 {
        font-size: 1.05rem;
    }

    .article-responsive-table table {
        border-color: var(--gray) !important;
    }

    .article-responsive-table td {
        min-width: 120px;
        font-size: 13px;
        text-align: left;
        border-color: var(--gray) !important;
    }

    .top-stories-item .entry-title a {
        min-height: 1px;
        display: block;
    }

    .noresult-wrap {
        padding-left: 1rem;
        padding-right: 1rem
    }

    #posts-wrapper h3 a {
        font-size: 1.1rem;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .author-box {
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .author-body .blog-heading {
        padding: 0
    }

    #search {
        margin-top: 1rem
    }

    .loadmore-item {
        font-size: var(--pr-font-size-display5);
    }

    .navigation-category {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        align-items: center;
    }

    .navigation-category .nav-cat-item {
        padding: 0 12px;
    }

    .navigation-category .nav-cat-item a {
        padding-bottom: 0;
        display: block;
    }

    .item-feature.item-feature-list .blog-item-content {
        padding: 0 16px;
    }

    .list-main .item-feature .blog-item-content {
        padding: 0;
    }

    .list-posts-category .main-posts-category,
    .list-posts-category .sidebar-posts-category {
        overflow-x: hidden;
    }

    .author-description {
        max-height: 72px;
    }
    
    .author-wrapper > *,
    .list-posts-category > * {
        padding-left: 16px;
        padding-right: 16px;
    }

    .item-feature:nth-child(n + 2) .blog-item-content {
        display: flex;
        flex-wrap: wrap;
    }

    .item-feature:nth-child(n + 2) .blog-item-content .entry-box {
        margin-top: auto;
    }

    .item-feature:nth-child(n + 2) .entry-thumbnail {
        margin: 0;
    }

    .list-posts-category .main-posts-category .item-feature:first-child,
    .list-posts-category .sidebar-posts-category .item-feature:first-child {
        margin-left: 0;
        margin-right: 0px;
        margin-bottom: 0;
        background-color: transparent;
    }
  

    .entry-box {
        flex-wrap: wrap;
        grid-gap: 6px;
    }

    .feature-posts-list {
        overflow: hidden;
    }

    .feature-posts-list.swiper-initialized .swiper-button-next,
    .feature-posts-list.swiper-initialized .swiper-button-prev {
        display: block !important;
    }
    .item-feature.post-feature .blog-item-content{
        padding: 0 16px;
    }
    .navigation-category {
        justify-content: flex-start;
    }
    .navigation-category .nav-cat-item a {
        white-space: nowrap;
    }

    .news-breadcrumb {
        padding: 0 16px;
        display: flex;
    }
    .article-image-detail{
        margin-bottom: 12px;
    } 
    .content-left {
        font-size: 13px;
        flex-wrap: wrap;
    }
    .info-right .meta-item .author {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .feature-post-sidebar .list-post.new-post-list {
        height: 500px;
    }
    .info-right .meta-item .author {
        margin-left: 0;
    }

    li.breadcrumb__item.breadcrumb__item--blank span {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
    .news-breadcrumb li+li::before {
        padding: 1px 4px;
    }

    .author-area {
        display: grid;
        grid-template-areas:
            "aAvatar aName"
            "aAvatar aSocial"
            "aDescription aDescription";
        grid-template-columns: 64px calc(100% - 76px);
        grid-gap: 12px;
    }

    .author-avatar {
        grid-area: aAvatar;
        width: 64px;
        height: 64px;
    }
    .author-name {
        grid-area: aName;
        margin-bottom: 0;
    }
    .author-social {
        grid-area: aSocial;
        justify-content: flex-start;
    }
    .author-description {
        grid-area: aDescription;
    }
    .author-description p {
        margin: 0;
    }
}

/*blog menu*/
.sub-blog-menu {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.blog-menu a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--pr-spacing-03) 0;
    font-weight: 500;
    font-size: var(--pr-font-size-body);
    margin: 0 16px;
}
.has-blog-sub-menu {
    position: relative;
}
.has-blog-sub-menu .has-child-icon {
    margin-left: 4px;
}
.has-blog-sub-menu .has-child-icon img {
    filter: grayscale(1);
    transition: all .3s ease-out;
}
@media (min-width: 991px){
    .has-blog-sub-menu:hover .sub-blog-menu {
        padding: 0;
        position: absolute;
        top: 100%;
        left: calc(50% - 100px);
        padding: 0;
        width: 210px;
        border-radius: 0 0 4px 4px;
        transition: transform .3s ease-in-out,opacity .3s ease-in-out;
        display: block;
        transition-delay: .2s;
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
        z-index: 99;
    }
}

.has-blog-sub-menu .navigation-lev2-list {
    position: relative;
    width: 100%;
    background-color: var(--white);
    background-color: #fff;
    border-radius: 4px;
    min-height: 240px;
    margin-top: 15px;
    box-shadow: var(--pr-shadow-500);
}

.has-blog-sub-menu .navigation-lev2-list a {
    font-weight: normal;
}

.more-list-category .see-more {
    color: var(--pr-color-dodgerblue);
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px 0 0;
    cursor: pointer;
}

.blog-menu a span:first-letter {
    text-transform: uppercase;
}

.blog-menu a:hover,
.blog-menu a:focus {
    color: var(--pr-color-secondary);
    text-decoration: none;
}

.has-blog-sub-menu:hover .has-child-icon img {
    filter: grayscale(0);
    transform: rotate(180deg);
}
.more-list-category {
    position: relative;
}
.more-list-category .list-menu-hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.more-list-category:hover .list-menu-hidden {
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 0;
    width: 50vw;
    border-radius: 0 0 4px 4px;
    transition: transform .3s ease-in-out,opacity .3s ease-in-out;
    display: block;
    transition-delay: .2s;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index: 99;
}

.more-list-category .list-more-menu-content {
    position: relative;
    width: 100%;
    background-color: var(--white);
    background-color: #fff;
    border-radius: 4px;
    margin-top: 15px;
    box-shadow: var(--pr-shadow-500);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: flex-start;
    grid-template-rows: max-content;
    grid-gap: 16px;
}
.list-menu-item .child-link {
    display: block;
    
}
.list-menu-item .child-link:not(.child-header) {
    margin-bottom: 5px;
}

.list-menu-item .child-link.child-header {
    font-weight: 500;
    font-size: var(--pr-font-size-body);
}

.list-child .child-link {
    font-size: 14px;
}
.list-menu-item .child-link:first-letter {
    text-transform: uppercase;
}

@media (min-width: 770px) and (max-width: 840px) and (orientation:portrait) {
    .header-content {
        display: none;
    }
    .header-content.show-header {
        display: flex;
    }
    .list-more-menu-content .sub-blog-menu {
        display: block;
        opacity: 1;
        pointer-events: all;
        transform: none;
    }    
    .list-more-menu-content .has-child-icon {
        display: none;
    }
    .list-more-menu-content .blog-menu-link {
        font-weight: 500;
        font-size: var(--pr-font-size-body);
        padding: 0;
    }
    .more-list-category .list-more-menu-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

input.link-to-copy {
    display: none;
}
.heading-post-wrapp {
    display: flex;
    grid-gap: 8px;
}
.heading-post-wrapp h2,
.heading-post-wrapp h3,
.heading-post-wrapp h4 {
    margin-bottom: 0;
}
.heading-post-wrapp:hover .copy-icon {
    opacity: 1;
}
.copy-icon {
    opacity: 0;
    background: transparent;
    font-size: 20px;
    border: none;
    color: var(--pr-color-primary);
    cursor: pointer;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .blog-detail-content .article-container-sidenav {
        padding: var(--pr-spacing-09) 0 0;
    }
}

@media (max-width: 767px) {
    .copy-icon {
        opacity: 1;
    }
    .form-search .search-button {
        background-color: var(--white);
        height: 42px;
    }
}

.copy-alert {
    position: fixed;
    bottom: -300px;
    right: 10px;
    background: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    box-shadow: var(--pr-shadow-500);
    max-width: 100%;
    width: auto;
    font-weight: 500;
    color: var(--pr-color-primary);
    transition: var(--pr-trans-standard);
}

.copy-alert.show {
    bottom: 10px;
    transition: var(--pr-trans-standard);
}

blockquote{
    margin:24px auto;
    color: #555555;
    padding:1.2em 30px 1.2em 40px;
    border-left:8px solid var(--pr-color-secondary) ;
    line-height:1.6;
    position: relative;
    background:#f1f1f1;
  }
  
  blockquote::before{
    content: "\201C";
    color: var(--pr-color-secondary);
    font-size:4em;
    position: absolute;
    left: 10px;
    top:-10px;
  }
  
  blockquote::after{
    content: '';
  }
  
  blockquote span {
    display:block;
    color:#333333;
    font-style: normal;
    margin-top:1em;
  }