.ha-news-content-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1em 3.5em;
}

.ha-news-content-footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    position: relative;
}

.ha-news-content-footer__left .share-options-wrapper {
    position: absolute;
    bottom: 100%;
    width: max-content;
    background-color: rgba(277, 277, 277, 0.9);
    padding: 20px;
}

.ha-news-content-footer__left .share-options-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out, visibility 0.25s;
    transform: translateY(20px);
}

.ha-news-content-footer__left .share-options-wrapper.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 99;
}

.ha-news-content-footer__left .share-options-wrapper .share-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-list a:hover {
    text-decoration: underline;
}

.share-list .js-share-facebook {
    background-image: url(../../asset/image/share-fb.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
}

.share-list .js-share-twitter {
    background-image: url(../../asset/image/share-x.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
}

.share-list .js-share-email {
    background-image: url(../../asset/image/share-email.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
}

.share-list .js-share-link {
    background-image: url(../../asset/image/share-link.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
}

.share-list .share-link-wrapper {
    position: relative;
}

.share-list .share-link-wrapper .js-share-link-prompt {
    position: absolute;
    bottom: 110%;
    left: 5%;
    background-color: rgb(68, 81, 104);
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 4px;
    color: white;
}

.ha-news-content-footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ha-news-content-footer__right__item {
    display: block;
    margin-left: 10px;
}

.ha-news-content-footer .btn-share {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: bold;
    color: #666666;
    border: 0;
    background-color: transparent;
    background-image: url(../../asset/image/button-share.svg);
    background-size: 43px 43px;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0;
    min-width: 43px;
}

.ha-news-content-footer .btn-print {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: bold;
    color: #666666;
    border: 0;
    background-color: transparent;
    background-image: url(../../asset/image/button-print.svg);
    background-size: 43px 43px;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0;
    min-width: 43px;
}