.widget-sharing{
    padding: 4px 25px;
    border-radius: 16px;
    background: #EDEFF7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 30px;
    transition: all .1s ease-in;
}
.widget-sharing .sharing-counter{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.widget-sharing svg{
    width: 14px;
    height: 16px;
}
.widget-sharing span, .widget-sharing p{
    color: #625B71;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.5px;
    margin: 0;
}
.widget-sharing .sharing-socials-list{
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.widget-sharing .sharing-socials-list a{
    width: 30px;
}
.widget-sharing .sharing-socials-list a img{
    width: 100%;
}
.widget-sharing.show-share{
    gap: 15px;
    background: transparent;
    padding: 0;
}
.widget-sharing.show-share .sharing-counter{
    display: none;
}
.widget-sharing.show-share p{
    cursor: default;
}
.widget-sharing.show-share .sharing-socials-list{
    display: flex;
}

@media (max-width: 767px){
    .widget-sharing span, .widget-sharing p{
        font-size: 12px;
        line-height: 18px;
    }
    .widget-sharing svg{
        width: 10px;
        height: 12px;
    }
    .widget-sharing{
        padding: 4px 12px;
    }
    .widget-sharing .sharing-socials-list a{
        width: 24px;
    }
    .widget-sharing.show-share{
        gap: 10px;
    }
}