.ft-share {
    padding-top: 10px;
    .share-icon {
        width: 42px;
        height: 42px;
        background-size: 42px 42px;
        background-repeat: no-repeat;
        background-color: transparent;
        margin-right: 13px;
        display: inline-block;
        position: relative;
        text-decoration:none;
        color:#000000;
        cursor:pointer;
        z-index: 1;

        &.share-facebook-custom {
            background-image: url('/images/icon-facebook.svg');
        }
        &.share-twitter-custom {
            background-image: url('/images/icon-twitter.svg');
        }
        &.share-email-custom {
            background-image: url('/images/icon-email.svg');
        }
    }
}

body:not(.mobile) {
    .ft-share {
        .share-icon {
            &:hover {
                -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
            }
        }
    }
}
