/**
 * Supplemental social icons (Font Awesome Pro 5.8 does not include newer brands, e.g. TikTok).
 *
 * Usage in Basic Settings → Social Medias → Icon field:
 *   social-custom social-custom-tiktok
 *
 * Add more brands: drop an SVG in ../img/icons/social/ and add a modifier class below
 * (same pattern: social-custom social-custom-<name>).
 */

.social-custom {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    font-style: normal;
    line-height: 1;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.social-custom-tiktok {
    -webkit-mask-image: url("../img/icons/social/tiktok.svg");
    mask-image: url("../img/icons/social/tiktok.svg");
}
