.a-navbar-parent {
    list-style: none;
    padding: unset;
    margin-bottom: 0px;
    
    ul {
        list-style: none;
        padding: unset;
    }
}

.a-navbar {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 100%;
    background-image: linear-gradient(white,#DFDFDF);
    min-height: 32px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid #a2a2a2;
}

.a-navbar-icon {
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

.a-navbar-toggle {
    font-size: 14pt;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    display: none;
}

.a-navbar-icon-container {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.a-navbar-icon > img {
    max-height: 28px;
}

.a-navbar-parent-items {
    display: flex;
}

.a-navbar-item-info {
    min-height: 26px;
    display: flex;
    text-decoration: none !important;
    color: inherit !important;
    font-size: 10pt;
    padding-left: 8px;
    padding-right: 8px;
    user-select: none;
}

.a-navbar-item-info:hover {
    background-color: #2fa4e7;
    color: white !important;
    cursor: pointer;
}

.a-navbar-item-parent > .a-navbar-item-info {
    min-height: 32px;
}

.a-navbar-item-parent > .a-navbar-item-info:hover {
    background-color: #ffffff88;
    color: inherit !important;
}

.a-navbar-popup-bg {
    position: absolute;
    min-width: 100%;
    min-height: 100vh;
    z-index: 200;
    top: 100%;
    left: 0;
    display: none;
}

.a-navbar-item-groups {
    position: absolute;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    z-index: 1000;
    display: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.a-navbar-item-groups-parent {
    min-width: 100%;
    border-radius: 0 0 4px 4px;
}

.a-navbar-item-group:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.a-navbar-item {
    position: relative;
}

.a-navbar-item-icon {
    text-align: center;
    min-width: 24px;
    max-width: 24px;
    justify-content: center;
    flex-basis: 0;
    display: flex;
    align-items: center;
}

.a-navbar-item-title {
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-left: 4px;
    padding-right: 4px;
}

.a-navbar-item-arrow {
    min-width: 16px;
    max-width: 16px;
    justify-content: center;
    flex-basis: 0;
    display: flex;
    align-items: center;
}

.a-navbar-parent-items-left {
    flex-grow: 1;
    flex-wrap: wrap;
}

.a-navbar > * > .a-navbar-zoom {
    display: none;
}

.a-navbar-items-container {
    display: flex;
    flex-grow: 1;
}

@media (max-width: 900px) {
    .a-navbar-item-groups {
        position: unset;
    }
    
    .a-navbar-popup-bg {
        display: none !important;
    }
    
    .a-navbar-parent-items {
        flex-direction: column;
    }
    
    .a-navbar {
        flex-direction: column;
        align-items: flex-start;
        z-index: 1000;
    }
    
    .a-navbar-parent-items-left, .a-navbar-parent-items-right {
        width: 100%;
    }
    
    .a-navbar-item-groups {
        border: unset;
        background-color: unset;
        box-shadow: unset;
        margin-left: 8px;
    }
    
    .a-navbar > * > .a-navbar-zoom {
        display: block;
    }
    
    .a-navbar-icon {
        padding-left: 0;
    }
    
    .a-navbar-items-container {
        flex-direction: column;
        width: 100%;
        display: none;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
        margin-top: 4px;
        padding-top: 4px;
    }
    
    .a-navbar-items-container-active {
        display: flex;
    }
    
    .a-navbar-icon-container {
        width: 100%;
    }
    
    .a-navbar-toggle {
        display: flex;
    }
}