/*START share buttons*/
/*add style to degardc-post-bar located in rightsidebar of posts*/
.degardc-post-bar i {
    display: flex;
    color: #dcdcdc;
    font-size: 25px;
	margin: 5px 0;
	transition: 0.5s;
}
.degardc-post-bar i:before {
    margin-left: 10px;
}
.degardc-post-bar i.fas.fa-heart:hover {
    color: #fe597b;
}
.degardc-post-bar i.fas.fa-comments:hover {
    color: #4aaefe;
}
.degardc-post-bar i.fab.fa-linkedin-in:hover {
    color: #017ab5;
}
.degardc-post-bar i.fab.fa-twitter:hover {
    color: #00abf0;
}
.degardc-post-bar i.fab.fa-whatsapp:hover {
    color: #24cc63;
}
.degardc-post-bar i.fab.fa-telegram-plane:hover {
    color: #36ade1;
}
.degardc-post-bar i.fab.fa-facebook-f:hover {
    color: #3a579a;
}

a.degardc-post-bar:before
{
	pointer-events: none;
    border-style: solid;
    border-width: 4px 5px 0;
    border-color: #fff transparent transparent;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
    top: -10px;
    margin: 0 auto 4px;
    right: 8px;
    z-index: 2;
    transition: all 0.3s;
}
a.degardc-post-bar:hover:before
{
    opacity: 100%;
}

a.degardc-post-bar:after
{
	pointer-events: none;
    line-height: 1.8;
    font-size: 13px;
    -webkit-box-shadow: 0 5px 30px rgb(0 0 0 / 8%);
    box-shadow: 0 5px 30px rgb(0 0 0 / 8%);
    padding: 6px 12px 5px;
    color: #817f84;
    text-align: center;
    background-color: #fff;
    border-radius: 3px;
    white-space: nowrap;
    right: -12px;
    position: absolute;
    opacity: 0;
    top: -43px;
    margin-bottom: 8px;
    content: attr(data-tooltip);
    transition: all 0.3s;
	z-index: 1;
}
a.degardc-post-bar:hover:after
{
    opacity: 100%;
}
i.fab.fa-facebook-f {
    margin-right: 5px;
}
/*END share buttons*/