.MainNav {
    flex-direction: row;
    display: flex;
    height: 40px;
    background-image: linear-gradient(to bottom, #fcf5ec 20%, rgb(247 232 211));
    align-items: center;
    box-shadow: 0px 2px 2px #d4cdc4;
    z-index: 1;
    /* margin-bottom: 2px;*/
}

.logoDiv {
    display: flex;
    align-items: center;
}

ul {
    list-style: none;
}

.divSideBar {
    background-color: #fdf7de;
    z-index: 0;
    width: 25vw;
    padding: 5px;
}

.map-container {
    flex-grow: 1;
}

body {
    background-color: #defdde;
}

header {
    position: relative;
    z-index: 10;
}

main {
    /*box-shadow: 0px 2px 2px inset #d4cdc4;*/
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    height: 100%;
    z-index: 1;
}

.navItem {
    width: 150px;
    height: 32px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    font-family: NunitoSans;
    font-size: 16px;
    color: #1E2B4E;
}

.MoreNavUL .navItem {
    justify-content: flex-end;
    min-width: 50px;
    max-width: 150px;
    width: auto;
    margin: 0 5px 0 5px;
}

.navItem img {
    width: 25px;
    height: 25px;
    margin: 5px;

}

button {
    all: unset;
}


.loginBtn {}

.MainNavUL {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    margin: 0 75px 0 75px;
    padding: 0px;
}

.MoreNavUL {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    margin: 0 50px 0 0;
    padding: 0px;
}

@font-face {
    font-family: NunitoSans;
    /* set name */
    src: url(assets/fonts/NunitoSans.ttf);
    /* url of the font */
}

.navItemA {
    all: unset;
    text-decoration: none;
    color: inherit;
    display: flex;
}

.navItem:hover {
    color: #939cb9;
}

.bottomInfoPanel {
    position: absolute;
    margin-bottom: 50px;
    height: 100px;
    bottom: 0px;
    align-self: center;
    width: 350px;
    z-index: 10;
    background-image: linear-gradient(to bottom, #fdf7de, #faddb7);
    border-radius: 25px;
    box-shadow: 0px 2px 5px #d3bb9c;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    display: none;
    gap: 5px;
    grid-template-columns: auto auto auto;

}

.sidPanelRoute {
    margin-bottom: 50px;
    height: 100px;
    bottom: 0px;
    align-self: center;
    width: 350px;
    z-index: 10;
    background-image: linear-gradient(to bottom, #fdf7de, #faddb7);
    border-radius: 25px;
    box-shadow: 0px 2px 5px #d3bb9c;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    display: none;
    gap: 5px;
    grid-template-columns: auto auto auto;

}

.map-top-bar {
    position: absolute;
    width: 100%;
    height: 25px;
    z-index: 10;
    background-color: white;
    display: flex;
    flex-direction: row;
    /*justify-content: center;*/
    align-content: center;
    align-items: center;
}

.map-top-bar-item {
    height: 25px;
    min-width: 100px;
    max-width: 250px;
    background-color: beige;
    margin: 10px;
}

.bottomInfoPanelName {
    grid-column: 1 / span 2;
    background-color: #1E2B4E;
}


.panelLoginRegister {
    position: absolute;
    height: 500px;
    align-self: center;
    width: 350px;
    z-index: 11;
    background-image: linear-gradient(to bottom, #fdf7de, #faddb7);
    border-radius: 25px;
    box-shadow: 0px 2px 5px #d3bb9c;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    padding: 10px;
}

[popover] {
    margin: unset;
    /* Removes default auto-centering */
    padding: unset;
    /* Removes default padding */
    border: none;
    /* Removes default border */
    background-color: unset;
    /* Removes default background */
    color: unset;
    /* Removes default text color */
    max-width: none;
    /* Removes size constraints */
    max-height: none;
}

.mode-dropdown {
    position: absolute;
    top: 50px;
    height: 600%;
    min-width: 100px;
    max-width: 250px;
    border-radius: 20px;
    background-color: white;
    visibility: hidden;
}

.mode-current {
    top: 10px;
    position: absolute;
    background-color: white;
    border-radius: 15px;
    min-width: 100px;
    max-width: 250px;
    height: 100%;
    text-align: center;
    align-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.mode-current {
    top: 10px;
    position: absolute;
    cursor: pointer;
}

.mode-current:hover+.mode-dropdown,
.mode-dropdown:hover {
    visibility: visible;
}

.profile-button:hover+.mode-dropdown,
.mode-dropdown:hover {
    visibility: visible;
}

.mode-dropdown::before {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    bottom: 100%;

    height: 15px;
    /* same size as the gap */
}

.mode-option {
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 20px;
}

.mode-option:hover {
    background: #f1f1f1;
}

Input {
    all: unset;
    text-decoration: none;
    color: inherit;
    display: flex;
    border-radius: 25px;
    background-color: white;
    color: #939cb9;
    padding-left: 10px;
    margin-bottom: 10px;
}