.share_results {
    position: absolute;
    margin-left: 96%; 
    margin-top: 47%;
}

.share_results :is(.share_button, .link) {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    background-color:#fff;
    color:#151515;
    border-radius:50%;
}

.share_button {
    position:absolute;
    border:none;
    cursor:pointer;
    z-index:10;
    transition: outline  .25s;
}

.active .share_button {
outline:2px solid #af0034;
outline-offset: -4px;
}

.list_item {
    position:absolute;
    list-style:none;
    transition: transform .5s;
    transition-delay: var(0.5s);
}

.list_item a {
    text-decoration: none;
}

.share_results.active .list_item:nth-child(1) {
    transform:translateX(-90px);
}

.share_results.active .list_item:nth-child(2) {
    transform:translateY(-90px);
}

.share_results.active .list_item:nth-child(3) {
    transform:translate(-45px, -45px);
}