/* Social icons left; phone and email right. */

body .topbar {
    display: block !important;
}

body .topbar-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

body .topbar-social {
    display: flex;
    min-width: 1px;
    align-items: center;
    gap: 8px;
}

body .topbar-social a {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

body .topbar-social a:hover,
body .topbar-social a:focus-visible {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

body .topbar-social svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

body .topbar-contact {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 22px;
}

body .topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

@media (max-width: 700px) {
    body .topbar {
        display: block !important;
    }

    body .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    body .topbar-contact {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 5px 14px;
    }
}
