:host {
    display: flex;
    height: 100%;
    flex-direction: column;

    .lookup-tabs-nav {
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        margin: 0;
        padding-left: 0;
        list-style: none;
        transition: transform .3s cubic-bezier(.645,.045,.355,1);
        .nav-item {
            position: relative;
            display: inline-block;
            text-decoration: none;
            box-sizing: border-box;
            padding: 0.625rem 0.8125rem;
            color: inherit;
            cursor: pointer;
        }
        .nav-item-selected {
            color: #1890ff;
        }
        .tabs-ink-bar {
            position: absolute;
            bottom: 1px;
            left: 0;
            z-index: 1;
            box-sizing: border-box;
            height: 2px;
            background-color: #1890ff;
            transform-origin: 0 0;
        }
        .tabs-ink-bar-animated {
            transition: transform .3s cubic-bezier(.645,.045,.355,1),width .3s cubic-bezier(.645,.045,.355,1),left .3s cubic-bezier(0.71, 0.03, 0.35, 1);
        }
    }
    .lookup-tabs-content {
        flex: 1;
        border-top: 1px solid #cecece;
        position: relative;
        top: -2px;
    }
}

