/* TO AVOID HORIZONTAL SCROLLBAR */

/* To hide username on Portal dropdown when it shrinks the rest of the header "too much" */
@media (min-width: 992px) and (max-width: 1199px) {
    .s-portal-nav .dropdown-toggle span {
        display: none;
    }
}
/* To align first CMS nav with "Dashbaord" heading in Portal */
.s-header .navbar-brand {
    flex-basis: 138px;
}
/* To give CMS nav more room by reducing size of logo */
.portal-logo {
    height: 30px;
}
/* To vertically center the logo which was shrunk */
.s-header .navbar-brand {
    display: grid;
    align-items: center;
}
/* To reduce width of social media icon links */
.c-footer .logos--social a {
    padding: 0.5em;
}


/* TO MAKE HEADER FONT CONSISTENT ON CMS & PORTAL */

/* TODO: Remove after TACC/Core-CMS#v4.25.1 */
.s-header {
    font-family: var(--global-font-family--sans--portal);
}
