/* -------------------------------------------------- */

#tiktok-nav-wrapper {
    z-index: 10;
    position: sticky;
    top: 0;
    background: var(--color-bg);
    border-bottom: solid 1px hsla(0, 0%, 50%, 0.3);
}

#tiktok-nav {
    display: flex;
    flex-direction: row;
    position: relative;
}

#tiktok-nav button {
    flex: 1;
    padding: 16px 0;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    transition: all ease 0.3s;
    color: hsl(0, 0%, 65%);
}

#tiktok-nav button.active {
    color: hsl(0, 0%, 95%);
}

#tiktok-tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: hsl(0, 0%, 80%);
    width: 20%;
    transition: all ease 0.3s;
}

/* -------------------------------------------------- */

#tiktok-viewport {
    width: 100%;
    overflow: hidden;
    transition: all ease 0.3s;
}

#tiktok-track {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    transition: all ease 0.3s;
}

.tiktok-tab-content {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

/* -------------------------------------------------- */