/* Afton corporate specific styling */

/* top bar */
.top-bar-links {
    display: flex;
    height: 35px;
    align-items: center;
    min-width: fit-content;
}

.top-bar-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-bar-links li .top-bar-link {
    text-transform: uppercase;
    font-family: var(--topbar-font-family);
    font-size: 15px;
    transition: all ease-in-out 0.3s;
    padding: 6px 10px;
}

.top-bar-links .top-bar-link:hover {
    background-color: var(--link-bg-hover);
    color: var(--link-bg-hover-alt);
}

@media only screen and (max-width: 479px) {
    .top-bar-links {
        display: none;
    }
}

@media only screen and (max-width: 1179px) {
    .top-bar-right-container {
        margin-right: 1rem;
    }
}