/* =Fixed Social Bar 
-----------------------------------------------------*/
.fixed.social-bar {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    height: 0;
    max-width: none;
    position: fixed;
    z-index: 884000000000;
    animation: smoothScroll 0.4s forwards;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 20%);
    display: none;
}
body.nav-overlay-open .fixed.social-bar{
    display: none !important;
}
@media screen and (max-width:780px) {
    .fixed.social-bar.visible {
        display: block;
        text-align: center;
        height: 74px;
        animation: smoothScrollbtm 0.4s ease;
    }
    .fixed.social-bar a, .fixed.social-bar span {
        width: 20%;
        height: 100%;
        display: inline-block;
        background-image: url("../images/bookmark-grey.svg");
        background-size: auto 20px;
        text-indent: -9999px;
        background-position: center center;
        background-repeat: no-repeat;
        line-height: 74px;
        float: left;
        color: var(--grey);
    }
    .fixed.social-bar a.active {
        background-image: url("../images/bookmark-grey-full.svg");
    }
    .fixed.social-bar a.facebook {
        background-image: url("../images/fb-grey.svg");
        background-size: auto 18px;
    }
    .fixed.social-bar a.twitter {
        background-image: url("../images/x-logo-dark-grey.svg");
        background-size: auto 16px;
    }
    .fixed.social-bar a.facebook:hover {
        background-image: url("../images/fb-blue.svg");
    }
    .fixed.social-bar a.twitter:hover {
        background-image: url("../images/x-logo-black.svg");
    }
    .fixed.social-bar span.comments, .fixed.social-bar a.fav{
                text-indent: 35px;
        text-align: center;
         background-position: 38% center;
    } 
    .fixed.social-bar span.comments {
        background-image: url("../images/comments-grey-new.svg");
        background-size: auto 18px;
        background-position: 38% 52%;
    }
    .fixed.social-bar a.fav {
        background-image: url("../images/claps-grey.svg");
        background-size: auto 22px;
    }
    .fixed.social-bar a.fav.active {
        background-image: url("../images/claps-grey-full.svg");
    }
    #post-page #wrapper {
        padding-bottom: 74px;
    }
}
@keyframes smoothScrollbtm {
    0% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}
body.dark-mode .fixed.social-bar {
    background-color: #252525;
}
body.dark-mode .fixed.social-bar a {
    background-image: url("../images/bookmark.svg");
    color: #fff;
}
body.dark-mode .fixed.social-bar a.facebook {
    background-image: url("../images/fb-icon-white.svg");
}
body.dark-mode .fixed.social-bar a.twitter {
    background-image: url("../images/x-logo-white.svg");
}
body.dark-mode .fixed.social-bar a.fav {
    background-image: url("../images/claps.svg");
}
body.dark-mode .fixed.social-bar a.active {
    background-image: url("../images/bookmark-full.svg");
}
body.dark-mode .fixed.social-bar span.comments {
    background-image: url("../images/comments-new.svg");
    color: #fff;
}
body.dark-mode .fixed.social-bar a.fav.active {
    background-image: url("../images/claps-full.svg");
}