.article-page-tag-posts-header-title {
    display: flex;
    align-items: center;
    color: var(--signature-green);
}

.article-page-tag-posts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.article-page-tag-posts-header-tags {
    display: flex;
    align-items: center;
    max-width: 100%;
}

.article-page-tag-posts-header-tag {
    margin-left: 10px;
    border: solid 1px var(--signature-green);
    color: var(--signature-green);
    padding: 5px 10px;
    border-radius: 14px;
    width: auto;
}

.article-page-tag-posts-header-tag:hover {
    cursor: pointer;
}

.article-page-tag-posts-header-tag.active {
    color: #ffffff;
    background: var(--signature-green);
}

.article-page-tag-posts-list {
    display: none;
}

.article-page-tag-posts-list.active {
    display: block;
}

.tag-post-item {
    padding: 10px 0px;
    border-bottom: solid 1px var(--signature-line);
    display: flex;
}

.tag-post-item a {
    display: block;
    text-decoration: none;
    flex: 1;
}

.tag-post-title {
    color: #000000;
    margin-bottom: 5px;
    font-weight: bold;;
}

body.darkmode .tag-post-title {
    color: #a9a9a9;
}

.tag-post-item .post_date_meta {
    color: grey;
    font-size:0.9rem;
}

.tag-post-item:before {
    content: '';
    width: 16px;
    height: 16px;
    background: url(/public/resources/images/greendot.svg);
    display: inline-block;
    margin-right: 5px;
}

.recommend-post {
    padding: 20px 0px;
    border-bottom: solid 1px var(--signature-line);
}

#swiper_article_page_reels_widget_items_list {
    width: 100%;
    height: 100%;
}

/** ARTICLE GALLERY STYLE **/
.viewer-title {
    font-size: 1rem;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    margin: 5px 30px;
    align-items: flex-start;
    word-break: break-all;
    white-space: normal;
}

.viewer-canvas {
    background: #000000;
}

.viewer-title img {
    width: calc(1.2rem * 1.2);
    height: calc(1.2rem * 1.2);
    min-width: calc(1.2rem * 1.2) !important;
    margin-right: 10px;
    display: inline-block;
    filter: brightness(1) invert(1);
}

.viewer-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.viewer-prev, .viewer-next{
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
}

.viewer-prev.hidden, .viewer-next.hidden{
    opacity: 0;
}

.viewer-button.viewer-close{
    height: 35px;
    right: 0;
    top: 0;
    width: 35px;
}

.viewer-button.viewer-close:before{
    background-image: url(/public/resources/images/whitecross.svg);
    background-size: 35px 35px;
    height: 35px;
    width: 35px;
    bottom: 0;
    left: 0;
    background-position: center;
}

/** ARTICLE GALLERY STYLE END**/