.farris-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    overflow: hidden;
    &-item{
        // position: relative;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        &-link{
            padding: .75rem 1rem;
            // border-bottom: 2px solid transparent;
            cursor: pointer;
            &-text{
                position: relative;
                font-size: 1rem;
                // color: rgba(0,0,0,0.65);
                font-weight: 400;
            }
        }
        // &.active{
        //     .farris-nav-item-link{
        //         border-color: #2A87FF;
        //         &-text{
        //             color: #2A87FF;
        //         }
        //     }
        // }
        // &.disabled{
        //     .farris-nav-item-link{
        //         &-text{
        //             color: rgba(0, 0, 0, 0.25);
        //         }
        //     }
        // }
        // &:hover:not(.disabled):not(.active){
        //     .farris-nav-item-link{
        //         &-text{
        //             color: #59a1ff;
        //         }
        //     }
        // }
        &-tag{
            position: absolute;
            right: -0.75rem;
            top: calc(10px - 100%);
            padding: 0 0.375rem;
            color: #fff;
            font-size: 0.75rem;
            line-height: 1.125rem;
            // background-color: #F24645;
            border-radius: 1.125rem;
        }
    }

    &.farris-nav-vertical{
        flex-direction: column;
        align-items: flex-start;
        .farris-nav-item{
            width: 100%;
        }
    }
}