.ph-share-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 240px;
    gap: 32px;
    background-color: var(--ph-color-5);
}

.ph-share-block-text {
    text-align: center;
}

.ph-share-block-links {
    display: flex;
    list-style-type: none;
    justify-content: center;
    background-color: var(--e-global-color-secondary);
    gap: 1px;
    padding: 0;
}

.ph-share-block-links li {
    position: relative;
}

.ph-share-block-copy-link-validate{
    position:absolute;
    color:white;
    background:rgba(0,0,0,0.7);
    padding:0.7rem 0.9rem;
    top:calc(100% + 1.5rem);
    left:50%;
    transform:translateX(-50%);
    white-space: nowrap;
    border-radius:0.5rem;
}

.ph-share-block-copy-link-validate:before{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:-0.7rem;
    width: 0; 
    height: 0; 
    border-left: 0.7rem solid transparent;
    border-right: 0.7rem solid transparent;
    border-bottom: 0.7rem solid rgba(0,0,0,0.7);
}