.nav--main {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    min-height: 10vh;
    padding-left: 3vw;
    padding-right: 3vw;
    background-color: rgba(1, 1, 1, 0.2);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

.nav--dropdown-menu {
    position: relative;
}

.nav--menu-btn {
    height: 3rem;
    /* change this stuff when we get the icon */
    width: 3rem;
    font-size: 3rem;
    border: none;
    background-color: transparent;
    color: white;
    outline: none;
}

.nav--menu-options {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 8rem;
    left: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 1);
    max-height: 0px;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}

.nav--menu-btn:hover+.nav--menu-options,
.nav--menu-options:hover {
    max-height: 600px;
}

.nav--menu-option {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem;
    font-size: 2rem;
    color: black;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    font-family: "sweet-sans-pro", sans-serif;
}

.nav--menu-option:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
    text-decoration: none;
}

.nav--menu-options:last-child {
    border-bottom: none;
}

.nav--menu-options > * {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.nav--force-show {
    max-height: 600px;
}

.nav--menu-search {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem;
    font-size: 2rem;
    color: black;
    text-decoration: none;
    width: 100%;
    font-family: "sweet-sans-pro", sans-serif;
}

.nav--menu-search input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 2rem;
    font-family: "sweet-sans-pro", sans-serif;
}

.nav--menu-option--search-result {
    background-color: rgba(0, 0, 0, 0.1);
}