/*--------------------------------------------------------------------------*\
    Link in menu item
\*--------------------------------------------------------------------------*/

.topbar__menu-link {
    /*box*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    height:100%;
    width: 100%;
    padding: 0px 10px;

    /*text*/
    text-align: center;
    font-size: var(--fs-tn);
    white-space: nowrap;

    /*transition*/
    -webkit-transition: border-bottom-color 0.3s;
    transition: border-bottom-color 0.3s;
}

/*--------------------------------------------------------------------------*\
        Is-active (common to all styles)
\*--------------------------------------------------------------------------*/

.topbar__menu-link.is-active {
    /*text*/
    font-weight: var(--fw-bold);
}