.topbar
{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: calc(100dvw - 50px);
    margin-left: 50px;
    height: 50px;
    background-color: var(--secondaryColour);
    z-index: 50;
}

.topbarSearch
{
    box-sizing: content-box;
    width: 300px;
    max-width: 150px;
    height: 20px;
    margin: 10px 0px 0px 10px;
    padding: 5px 10px;
    border-radius: 20px;
    transition: 0.2s ease-in;
}

.topbarSearch:focus
{
    max-width: 300px;
}

.topbarEnd
{
    display: flex;
    width: fit-content;
    height: 50px;
    justify-content: end;
    margin-right: 20px;
}

.topbarGreeting
{
    height: 50px;
    color: var(--secondaryTextColour);
    font: 14px;
    line-height: 50px;
}

.topbarIcon
{
    display: flex;
    align-items: center;
    height: 50px;
    gap: 5px;
    font-size: 22px;
    line-height: 50px;
    color: var(--secondaryTextColour);
}

.topbarIcon .topbarNumber
{
    height: 50px;
    font-size: 20px;
    line-height: 50px;
}