.single-cliverse_news .entry-content{
    position: relative;
    padding-left: 60px;
}
.cliverse-news-share-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
}
.cliverse-news-share-wrapper .mobile-share-button{
    background: #FFFFFF;
    box-shadow: 0px 5px 18px rgba(102, 102, 102, 0.15);
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.cliverse-news-share{
    background: #FFFFFF;
    box-shadow: 0px 9px 26px rgba(198, 198, 198, 0.25);
    border-radius: 10px;
    padding: 8px 6px;
    width: 44px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
}
.cliverse-news-share .cliverse-news-share-text{
    font-weight: 600;
    font-size: 12px;
    line-height: 105.8%;
    text-align: center;
    color: #B6B6B6;
    margin-bottom: 8px;
    display: block;
}
.cliverse-news-bottom-share{
    border-top: 2px solid #D6D6D6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-left: 60px;
    padding: 24px 0;
}

@media screen and (max-width: 767px) {
    .single-cliverse_news .entry-content{
        padding-left: 0;
    }
    .cliverse-news-share-wrapper{
        position: fixed;
        top: auto;
        left: auto;
        bottom: 60px;
        right: 10px;
    }
    .cliverse-news-share-wrapper .mobile-share-button{
        display: flex;
    }
    .cliverse-news-share{
        display: none;
        width: 50px;
    }
    .cliverse-news-share.active{
        display: block;
        margin-bottom: 10px;
    }
    .cliverse-news-bottom-share{
        margin-left: 0;
    }
}