@charset "utf-8";
/* CSS Document */

a {
    color: var(--brand-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav-link {
    color: var(--brand-link);
}

.nav-link:hover {
    text-decoration: underline;
}

.text-nowrap {
    white-space: nowrap;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
}