button.share-url {
  position: relative;
  text-indent: initial !important;
  border:none;
  background-color: transparent;
  background-image: none !important;
  padding: 0;

  
}
button.share-url span {
  background-image: url(images/);
  background-image: url(img/share-url.svg);
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
}
.row-single .single-side .side-share .share-url span.share-url-copied {
  -webkit-animation: my-animation 1s ease;
          animation: my-animation 1s ease;
}
@-webkit-keyframes my-animation {
  from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(720deg);
    }
}
@keyframes my-animation {
  from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(720deg);
    }
}
.share-url:before {
  content: '';
  display: none;
  position: absolute;
  z-index: 9998;
  top: 45px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.5);
}
.share-url:after {
  content: 'Copy URL';
  display: none;
  position: absolute;
  z-index: 9999;
  top: 50px;
  left: -30px;
  width: 100px;
  height: 30px;
  color: #fff;
  font-size: 10px;
  line-height: 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  transition: all 1s linear;
}

.share-url:hover:before, .share-url:hover:after {
  display: block;
}
.share-url:active, .share-url:focus {
  outline: none;
}
.share-url:active:after, .share-url:focus:after,
.share-url.share-url-clicked:after {
  content: 'Copied!';
}