/*----------------top header----------------*/
.topHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:var(--color1);
    height: 75%;
    padding: 0px 30px;
}

.divCompanyLogo{
    width: 33.33%;
}
.companyLogo{
    height: 60px;
}

.divTitle{
    width: 33.33%;
    text-align: center;
}

.divUserLogged{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 33%;
}

.iconUser{
    font-size: 25px;
    color: var(--color2);
}

.userLogged{
    display: flex;
    row-gap: 10px;
    flex-direction: column;
    align-items: center;
    color: var(--color2);
}

.userLoggedName{
    font-size: 13px;
    display: flex;
    column-gap: 8px;
}
.logout{
    color: var(--color2);
    text-decoration: none;
    font-size: 14px;
}


/*----------------bottom header----------------*/
.bottomHeader{
    display: flex;
    justify-content:center;
    column-gap: 70px;
    height: 25%;    
    position: relative;
    background-color:var(--color3);
}

.itemsMenu{
    position: relative;
    display: flex;
    align-items: center;    
    justify-content: center;
    column-gap: 5px;
}

.showSubitems{
    font-size: 13px;
}

.subItems{
    position: absolute;
    top:100%;
    background-color: white;
    display: none;
    flex-direction: column;
    width: 150px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.itemHeaderMenu{
    font-size: 15px;
    cursor: pointer;
}

/* .refItemHeaderMenu{
    color: var(--color2);
} */

.subitemHeaderMenu{
    font-size: 13px;
    width: 100%;
    text-align: center;
    padding: 7px 0px;
}

.itemHeaderMenu:hover a{
    font-weight: bold;
    /* color:var(--color3); */
}

.subitemHeaderMenu:hover{
    font-weight: bold;
    background-color:rgb(213, 212, 212);
}

.selectedItem{
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(97, 95, 95, 0.7)
}

.goToMainMenu{
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    right: 30px;
    font-size: 14px;
    column-gap: 5px;
    cursor: pointer;
}

.goToMainMenu:hover{
    font-weight: bold;
}

.headerSeason{
    position: absolute;
    height: 100%;
    left: 30px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

