#topBar.topbar-common {
    display: block;
    padding: 6px 0;
}

#topBar.topbar-common .topbar-inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

#topBar.topbar-common .topbar-left,
#topBar.topbar-common .topLink {
    flex: 0 0 30%;
    max-width: 300px;
}

#topBar.topbar-common .topbar-left {
    display: flex;
    justify-content: flex-start;
}

#topBar.topbar-common .top-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

#topBar.topbar-common .top-logo {
    display: block;
    height: 39px;
    width: auto;
    transform: translateY(3pt);
}

#topBar.topbar-common .top-title {
    flex: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#topBar.topbar-common .topLink {
    margin-top: 0;
    width: auto;
    justify-content: flex-end;
    gap: 20px;
}

#topBar.topbar-common .topLink.topLink-wide {
    flex-basis: 40%;
    max-width: 420px;
}

@media screen and (min-width: 1025px) {
    #topBar.topbar-common .topbar-inner {
        width: 92%;
    }
}

@media screen and (max-width: 768px) {
    #topBar.topbar-common .topbar-left,
    #topBar.topbar-common .topLink {
        flex-basis: 24%;
    }

    #topBar.topbar-common .top-logo {
        height: 27px;
    }

    #topBar.topbar-common .topLink.topLink-wide {
        flex-basis: 34%;
        max-width: 340px;
    }
}

