nav {
    background-color: var(--navBackColor);
    display: flex;
    color: var(--navTextColor);
    width: 100vw;
    height: 5rem;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 999;
}
.navItems {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navLogoArea {
    margin-left: 3rem;
    width: 15vw;
    display: flex;
    justify-content: center;
}
.navItem {
}
.navLogo {
}
.navLogoImg {
}
.navLinkDivs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 2rem;
    line-height: 100%;
}

.navLinks {
    display: flex;
    align-items: center;
    width: 75vw;
}
.navLink {
    text-decoration: none;
    color: var(--navTextColor);
    font-size: 1.4rem;
    transition: 500ms;
}

.navLink:hover {
    color: var(--secondaryTextColor);
    font: bolder;
    transition: 500ms;
}
.navLink:hover ~ .navLinkLine {
    width: 100%;
    background-color: var(--secondaryTextColor);
}
.navLinkLine {
    margin-bottom: 0.3rem;
    margin-top: 0.15rem;
    width: 0px;
    height: 0.1rem;
    background-color: var(--navTextColor);
    transition: 500ms;
}

/* 
 */
.navProducts {
    position: relative;
}

.navProducts:hover > .navProductsDiv {
    height: auto;
    visibility: visible;
    display: flex;
    width: 160%;
}
.navProducts:hover > .navProductsDiv > .navProductDiv {
    min-height: 2rem;
    height: auto;
    visibility: visible;
}
.navProductsDiv {
    visibility: hidden;
    transition: 1000ms;
    position: absolute;
    height: 0px;
    display: none;
    top: 100%;
    min-width: 100%;
    max-width: 160%;
    justify-content: center;
    border: 2px solid var(--secondaryTextColor);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--navBackColor);
    z-index: 10;
}
.navProductDiv {
    transition: 600ms;
    visibility: hidden;
    margin: 0.2rem 0.4rem;
    height: 0px;
    min-height: 75%;
    line-height: 2rem;
    width: 100%;
    text-align: center;
}
.navProductDiv:hover > .navProducLink {
    border-bottom: 2px solid var(--secondaryTextColor);
}

.navProducLink {
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    width: 100%;
    color: var(--navTextColor);
}

/********************************/

.navSubProducts {
    position: relative;
}

.navSubProducts:hover > .navSubProductsDiv {
    height: auto;
    visibility: visible;
    display: flex;
    width: 160%;
}
.navSubProducts:hover > .navSubProductsDiv > .navSubProductDiv {
    min-height: 2rem;
    height: auto;
    visibility: visible;
}
.navSubProductsDiv {
    visibility: hidden;
    transition: 1000ms;
    position: absolute;
    height: 0px;
    display: none;
    min-width: 100%;
    max-width: 160%;
    top: -0.3rem;
    justify-content: center;
    border: 2px solid var(--secondaryTextColor);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--navBackColor);
    z-index: 10;
    margin-left: 100%;
}
.navSubProductDiv {
    transition: 600ms;
    visibility: hidden;
    margin: 0.2rem 0.4rem;
    height: 0px;
    min-height: 75%;
    line-height: 2rem;
    width: 100%;
    text-align: center;
}
.navSubProductDiv:hover > .navSubProducLink {
    border-bottom: 2px solid var(--secondaryTextColor);
}

.navSubProducLink {
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    width: 100%;
    color: var(--navTextColor);
}
/*********************************/
/*  */
.navLangAndThemaDiv {
    display: flex;
    flex-direction: column;
}
.navSelectLangDiv {
    margin-right: 1rem;
    width: 10vw;
    height: 100%;
    display: flex;
    align-items: center;
}
.navLangSelector {
    width: 2rem;
    height: 1.5rem;
    color: var(--navTextColor);
    border: none;
    background: none;

    transition: 500ms;
    /* ***** */
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
}
.navLangSelector:hover {
    background-color: var(--navTextColor);
    color: var(--navBackColor);
}
.navThemaDiv {
}
.navThemaImage {
    font-size: 1.2rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}
.navThemaDiv > input[type="checkbox"] {
    visibility: hidden;
}
.navLanguages {
    background-color: var(--navBackColor);
    text-align: center;
    color: var(--navTextColor);
    border: none;
}

.navLangSelectIcons {
    width: 2vw;
    height: 2vw;
    margin-right: 0.4rem;
}
