#copyLinkButton {
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: -1.2em;
    padding: 0;
    overflow: visible;
    transition: color .1s,box-shadow .1s;
    background: 0 0;
    font-family: monospace;
    cursor: pointer;
    justify-self: end;
    --close-size: 44px;
    border: 0;
    border-radius: 8px;
    color: var(--tgs-secondary);
    height: var(--close-size);
    right: 68px;
    top: 484px;
    user-select: none;
    width: var(--close-size);
    z-index: 100;
    background-color: var(--clr-dark-lighter);
    transform: translateY(28px);
    position: absolute;
}
#copyLinkButton:before, 
#copyLinkButton::after {
    transition: all 0.3s;
}
 #copyLinkButton:before {
    color: var(--tgs-dark);
}
.close-btn__icon path {
    fill: #222;
}
html.dark .close-btn__icon path {
    fill: #fff;
}
#copyLinkButton:before {
    content: "Ссылка на товар скопирована";
    position: absolute;
    width: 231px;
    right: 58px;
    background-color: var(--tgs-white);
    padding: 7px 13px;
    border-radius: 8px;
    text-align: center;
    font-family: SF Pro Display,sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
    pointer-events: none;
    z-index: 2;
}
#copyLinkButton::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    right: 53px;
    z-index: 1;
    transform: rotate(45deg);
    background-color: var(--tgs-white);
}
#copyLinkButton:before {
    right: 0px;
        opacity: 0;

}
#copyLinkButton::after {
    right: 0px;
        opacity: 0;
}
#copyLinkButton.copyLinkButtonNoti:before {
    right: 58px;
    opacity: 1;
}
#copyLinkButton.copyLinkButtonNoti::after {
    right: 53px;
    opacity: 1;
}
button#copyLinkButton svg.close-btn__icon {
    width: 100px;
    left: 0;
    overflow: visible;
    margin-top: -5px;
    margin-left: -3px;
    opacity: 0.6;
}
html.dark body button#copyLinkButton {
    box-shadow: 8px 8px 13px -3px var(--itg-box-shadow-btn),-6px -4px 6px 0 rgb(0 0 0 / 11%);
}