.news-social-share {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.news-social-share__item {
    display: inline-flex;
    align-items: center;
    border: 1px solid #E9E9E9;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 43px;
    height: 43px;
    padding: 0;
    justify-content: center;
    color: #1F1F1F;
    position: relative;
}

.news-social-share .news-social-share__item:hover,
.news-social-share .news-social-share__item:active {
    border-color: #E9E9E9;
}

.news-social-share .news-social-share__item--copy .news-social-share__icon {
    background-image: url('../images/social/coppy.svg');
    background-size: 19px 19px;
    background-position: center;
    background-repeat: no-repeat;
}

.news-social-share .news-social-share__item--email .news-social-share__icon {
    background-image: url('../images/social/mail.svg');
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
}

.news-social-share .news-social-share__item--facebook .news-social-share__icon {
    background-image: url('../images/social/facebook.svg');
    background-size: 12px 22px;
    background-position: center;
    background-repeat: no-repeat;
}

.news-social-share__label {
    display: none;
    pointer-events: none;
}

.news-social-share__item.active .news-social-share__label {
    display: block;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1F1F1F;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.news-social-share__item.active .news-social-share__label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1F1F1F;
}

.news-social-share .news-social-share__item {
    background: transparent !important;
}

.news-social-share__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-social-share__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.news-social-share__item--copy .news-social-share__icon {
    width: 19px;
    height: 19px;
}

.news-social-share__item--email .news-social-share__icon {
    width: 24px;
    height: 24px;
}

.news-social-share__item--facebook .news-social-share__icon {
    width: 12px;
    height: 22px;
}


@media only screen and (max-width: 991px) {
    .news-social-share {
        flex-direction: row;
    }
}