.article-head-bar {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.article-sharing-bar-wrapper {
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: solid 1px var(--signature-line);
    position: relative;
}

header.fixed .article-sharing-bar-wrapper {
    margin-bottom: 10px;
}

header.fixed .article-head-bar {
   padding-top: 10px;
}

span.article-sharing-bar-title {
    font-size: 0.8rem;
    color: #ffffff;
    background: var(--signature-green);
    padding: 10px 6px;
    border-radius: 12px;
}

.article-sharing-bar-wrapper .share-icon {
    display: flex;
    text-decoration: none;
    align-items: center;
    margin: 0 3px;
}

.article-sharing-bar-wrapper .social-share-icon {
    width:28px;
    height:28px;
    background-size: 28px 28px;
    display: block;
}

.social-share-icon.sa-facebook {
    background:url(/public/resources/images/share/facebook.svg);
}

.social-share-icon.sa-threads{
    background:url(/public/resources/images/share/threads.svg);
}

.social-share-icon.sa-whatsapp {
    background:url(/public/resources/images/share/whatsapp.svg);
}

.social-share-icon.sa-telegram {
    background:url(/public/resources/images/share/telegram.svg);
}

.social-share-icon.sa-instagram {
    background:url(/public/resources/images/share/instagram.svg);
}

.social-share-icon.sa-x {
    background:url(/public/resources/images/share/x.svg);
}

.social-share-icon.sa-copy-share {
    background: url(/public/resources/images/share/link.svg);
    background-size: cover;
}

.copy-share-link-message.hidden {
    display: none;
}

.copy-share-link-message {
    position: absolute;
    bottom: -30px;
    left: 150%;
    transform: translateX(-150%);
    padding: 4px 8px;
    background: var(--signature-light-green);
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.9rem;
    letter-spacing: normal;
}


h1.article-page-main-title {
    margin: 0 0 5px 0;
}

.article-page-font-adjuster {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.article-page-font-adjuster img:nth-child(2) {
    margin: 0 5px;
}

.article-page-font-adjuster img:not(:nth-child(2)):hover {
    cursor: pointer;
}

.article-page-post-meta {
    margin-bottom: 10px;
}

.article-page-post-meta .post-meta {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.article-page-post-meta .post-meta .post_date_meta {
    color: grey;
    padding-right: 10px;
    border-right: solid 1px var(--signature-line);
}

.article-page-post-meta .post-meta .post_cat_meta{
    text-decoration: none;
    color:  var(--signature-green);
    padding-left:  10px;
    border-right: solid 1px var(--signature-line);
    padding-right: 10px;
}

.article-page-post-meta .post-meta img[alt="view"]{
    margin-left:10px;
    margin-right:3px;
}

.article_post_view_meta {
    color: var(--signature-green);
}

.article-page-post-content{
    padding: 10px 0px;
}

.emoji-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.emoji-item {
    margin: 0 10px;
}

.emoji-item:not(.disabled):hover{
    cursor: pointer;
}

.emoji-item.disabled:hover{
    cursor: not-allowed;
}

.emoji-item-img img {
    max-width: 100%;
}

.emoji-item-counter {
    text-align: center;
    line-height: 1.3;
    margin-top: 5px;
    height: 1.3rem;
}

.article-page-post-tag {
    border: solid 1px var(--signature-green);
    padding: 5px 10px;
    border-radius: 14px;
    margin: 5px 5px;
}

.article-page-post-tag:first-child{
    margin: 5px 5px 5px 0px;
}

.article-page-post-tag a {
    display: block;
    text-decoration: none;
    color: var(--signature-green);
}

.article-page-post-tags {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px 5px 0px;
}

.article-page-post-content figure{
    margin: 0 auto;
}


.article-page-post-content figure.wp-block-image.size-full {
    width: 100%;
}

.article-page-post-content figure.wp-block-image.size-large {
    width: 100%;
}

.article-page-post-content figure.wp-block-image.size-medium {
    width: 60%;
}

.article-page-post-content figure.wp-block-image.size-thumbnail {
    width: 150px;
}

.article-page-post-content figure.wp-block-image.is-style-portrait{
    width: 50%;
    max-width: 200px;
}



.article-audio-bar-wrapper.hidden{
    display: none;
}

.article-audio-bar-wrapper{
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    border-radius: 50px;
    background: #0E8637;
    max-width: 81px;
    min-width: max-content;
}

.article-audio-bar-title {
    background: #0E8637;
    padding: 7px 3px 7px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #ffffff;
}

.article-audio-bar-title:after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    border-left: solid 1px #ffffff;
    margin-left: 5px;
}

.article-audio-bar-wrapper .op-controls,
.article-audio-bar-wrapper .op-player__audio{
    background:none;
    position: relative;
}

.article-audio-bar-wrapper .op-player__audio{
    display: flex;
    align-items: center;
    flex: 1;
}

.article-audio-bar-wrapper .op-controls button{
    padding: 0;
    display: flex;
    align-items: center;
}


.article-page-gallery-wrapper {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    width: 100%;
    max-width: 700px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.article-page-gallery-wrapper .article-page-gallery-item{
    padding:3px;
}

.article-page-gallery-wrapper .article-page-gallery-item:hover{
    cursor: pointer;
}

.article-page-gallery-wrapper  .article-page-gallery-item-img{
    position: relative;
    padding-bottom: 52.33%;
    overflow:hidden;
}

.article-page-gallery-wrapper.square-layout  .article-page-gallery-item-img{
    padding-bottom: 100%;
}

.article-page-gallery-wrapper  .article-page-gallery-item-img img{
    width: 100%;
    height:auto;
    position:absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
}


.article-page-gallery-wrapper.size-1 .article-page-gallery-item:first-child{
    flex: 0 0 100%;
    max-width:100%;
    width:100%;
}

.article-page-gallery-wrapper.size-2 .article-page-gallery-item:first-child,
.article-page-gallery-wrapper.size-2 .article-page-gallery-item:nth-child(2),
.article-page-gallery-wrapper.size-4 .article-page-gallery-item:first-child,
.article-page-gallery-wrapper.size-4 .article-page-gallery-item:nth-child(2),
.article-page-gallery-wrapper.size-4 .article-page-gallery-item:nth-child(3),
.article-page-gallery-wrapper.size-4 .article-page-gallery-item:nth-child(4),
.article-page-gallery-wrapper.size-5 .article-page-gallery-item:first-child,
.article-page-gallery-wrapper.size-5 .article-page-gallery-item:nth-child(2)
{
    flex: 0 0 50%;
    max-width:50%;
    width:50%;
}

.article-page-gallery-wrapper.size-3 .article-page-gallery-item:first-child,
.article-page-gallery-wrapper.size-3 .article-page-gallery-item:nth-child(2),
.article-page-gallery-wrapper.size-3 .article-page-gallery-item:nth-child(3),
.article-page-gallery-wrapper.size-5 .article-page-gallery-item:nth-child(3),
.article-page-gallery-wrapper.size-5 .article-page-gallery-item:nth-child(4),
.article-page-gallery-wrapper.size-5 .article-page-gallery-item:nth-child(5)
{
    flex: 0 0 33.333%;
    max-width:33.333%;
    width: 33.333%;
}

.article-page-gallery-item-more-counter {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.1rem;
}