﻿.nav-header-container {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.nav-header-button-container {
}

.nav-header-button {

}
nav-header-button-mobile {

}

.nav-header-image-container {
    width: 100px;
    height: 100px;
}

.nav-header-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.hover-highlight-menu-items:hover {
    color: #2dce89;
}

.autocomplete-icon {
    border-radius: 50%;
    text-align: center;
    display: inline-block;
}

.item-icon {
    border-radius: 50%;
    text-align: center;
    margin: auto;
    display: flex;
}

.autocomplete-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.dialog-content {
    max-height: calc(90vh - 100px);
    overflow-y: scroll;
    padding: 8px 16px;
}

@media (max-width: 600px) {
    .nav-header-button {
        display: none;
    }
}
@media (min-width: 601px) {
    .nav-header-button-mobile {
        display: none;
    }
}