#quickLinksMainButton {
    z-index: 1;
    position: absolute;
    top: 2rem;
    left: 2rem;

    background-color: var(--primaryButton);
    border-radius: 0.5rem;

    width: 10rem;
    height: 3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: large;
    color: var(--primaryWhite);

    padding: 0.5rem;

    user-select: none;
}

#quickLinksMainButton p {
    margin: 0 0.5rem 0 0;
}

#quickLinksList {
    width: 450px;
    /*height: 100px;*/
    max-width: 70vw;
    background-color: rgba(var(--greyishColorT1));

    border-radius: 0.5rem;

    z-index: 1;
    position: absolute;
    visibility: hidden;

    padding: 0.5rem;
}

#quickLinksHeader {
    background-color: rgba(var(--greyishColorT2));
    border-radius: 0.5rem;
    padding: 0;
    margin-bottom: 1rem;
}

#quickLinksHeader button {
    min-width: 3rem;
    max-width: 3rem;
    padding: 0;
}

#quickLinksHeader button:active, #quickLinksHeader button:focus {
    outline: none !important;
   box-shadow: none !important;
}

#quickLinksHeader h3 {
    margin: 0;
    font-weight: bold;
}

.quickLinkListChild {
    transition: background-color 0.5s, height 0.5s;
    height: 30px;
    overflow: hidden;
}

.quickLinkListChild h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.quickLinkListChild p {
    font-weight: normal;
}

.quickLinkListChild:hover {
    background-color: rgba(var(--greyishColorT2));
    border-radius: 0.5rem;
    height: 4rem;
}
