
.oly-floating-tiktok {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    min-width: 52px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background:
        radial-gradient(circle at 25% 25%, rgba(37,244,238,.13), transparent 42%),
        radial-gradient(circle at 78% 78%, rgba(254,44,85,.12), transparent 44%),
        #090a0e;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.42);
    transition:
        width .18s ease,
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.oly-floating-tiktok:hover {
    transform: translateY(-2px);
    border-color: rgba(37,244,238,.42);
    box-shadow:
        0 16px 38px rgba(0,0,0,.48),
        -2px 0 12px rgba(37,244,238,.12),
        2px 0 12px rgba(254,44,85,.12);
}

.oly-floating-tiktok-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.oly-floating-tiktok-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.oly-floating-tiktok-label {
    max-width: 0;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    transition:
        max-width .18s ease,
        opacity .18s ease,
        margin-left .18s ease;
}

@media (min-width: 761px) {
    .oly-floating-tiktok:hover {
        width: 120px;
        padding: 0 15px;
        justify-content: flex-start;
    }

    .oly-floating-tiktok:hover .oly-floating-tiktok-label {
        max-width: 62px;
        margin-left: 9px;
        opacity: 1;
    }
}

@media (max-width: 760px) {
    .oly-floating-tiktok {
        right: 14px;
        bottom: 76px;
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .oly-floating-tiktok-icon,
    .oly-floating-tiktok-icon svg {
        width: 20px;
        height: 20px;
    }

    .oly-floating-tiktok-label {
        display: none;
    }
}
