.share_button {
    flex-shrink: 0;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 100px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.share_button:hover {
    background: #f9f9f9;
}

.share_popup {
    display: none;
    position: absolute;
    width: max-content;
    z-index: 1;
    top: 100%;
    right: 0;
}

.share_button_wrap {
    position: relative;
}

.share_button_wrap.active .share_popup {
    display: block;
}

.share_popup ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    padding: 12px 8px;
    margin: 10px 0 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 2px rgb(0 0 0 / 5%), 0 4px 16px rgb(0 0 0 / 20%);
}

.share_popup ul li {
    margin: 0;
}

.share_popup svg {
    color: #222;
    fill: #222;
}

.share_popup button,
.share_popup a {
    padding: 0 8px;
    line-height: 1;
    cursor: pointer;
}


@media screen and (min-width: 768px) {
    .share_button {
        width: 44px;
        height: 44px;
    }

    .share_popup {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
