.topbar {
    display: flex;
    width: 100%;
    height: fit-content;
    background: var(--secondary);
    color: var(--lightAlt);
    font-size: 0.875rem;
    line-height: 100%;
}

.topbarWrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1512px;
    margin: auto;
    min-height: 3rem;
    padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
    .topbarWrapper {
        padding-right: 3rem;
        padding-left: 3rem;
        justify-content: space-between;
   }
}

@media (min-width: 1500px) {
    .topbarWrapper {
        padding-right: 5rem;
        padding-left: 5rem;
   }
}

.topbar .contactItem {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.33rem;
    color: inherit;
}

.topbar .contactItem span {
    display: none;
}

@media (min-width: 768px) {
    .topbar .contactItem span {
        display: inline-block;
   }
}

.topbar .contactItem svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: var(--primary);
}
