.disclosure-nav {
    background-color: #fff;
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.disclosure-nav ul {
    background-color: #fff;
    border-radius: var(--q-border-radius);
    box-shadow: var(--q-box-shadow-small);
    display: none;
    flex-direction: column;
    align-items: start;
    list-style-type: none;
    position: absolute;
    top: 100%;
}

.list-separator li {
    display: flex;
    width: 100%;
    padding: 8px 16px;
    &:not(:first-child) {
        border-top: 1px solid rgba(0, 0, 0, 0.12);
    }
}

.disclosure-nav > li {
    display: flex;
    position: relative;
}

.disclosure-nav button,
.disclosure-nav .main-link {
    align-items: center;
    background-color: transparent;
    display: flex;
    padding: 4px 16px;
}

.disclosure-nav button span {
    pointer-events: none;
}

@media screen and (max-width: 990px) {
    .disclosure-nav ul {
        z-index: 1;
    }
}

@media screen and (max-width: 600px) {
    .disclosure-nav button {
        padding: 4px 6px;
    }
}