.m-share-a {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 9rem;
}

.m-share-a__title {
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0
}

.m-share-a__items {
    display: flex;
    gap: 0.75rem;
}

.m-share-a__item {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #415243;
    cursor: pointer;
}

.m-share-a__item svg {
    user-select: none;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
}

.m-share-a__item.is-copied {
    background-color: var(--color-green);
}

.m-share-a__item.is-copied:after {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    background-position: center;
    background-size: 1.25rem;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 256 256'%3E%3Cpath d='M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
}

.m-share-a__item.is-copied svg {
    display: none;
}