.header{
    padding: 1em;
    width: 100%;
    height: calc(50px + 2em);
    background-color: var(--darkblue-color);
    display: flex;
    justify-content: flex-end;
}

.header .profile{
    width: 100%;
    max-width: 100%;
    min-width: 200px;
    height: 50px;
    max-height: 50px;
    min-height: 50px;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: space-between;
}

.header .profile__photo{
    width: 50px;
    height: 50px;
    position: relative;
}

.header .profile__photo img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.obtions__user{
    width: 230px;
    height: 100px;
    background-color: var(--darkblue-color);
    color: var(--white-color);
    position: absolute;
    bottom: -116px;
    right: -16px;
    z-index: 1000;   
    transition: all ease-in-out .3s;
}

.obtions__user--hidden{
    width: 230px;
    height: 0;
    background-color: var(--darkblue-color);
    color: var(--white-color);
    position: absolute;
    bottom: -16px;
    right: -16px;
    z-index: 1000;   
    overflow: hidden;
    transition: all ease-in-out .3s;
}

.obtions__user #my-account, .obtions__user #logout-button{
    width: 100%;
    height: auto;
    background-color: var(--darkblue-color);
    color: var(--white-color);
    list-style: none;
    margin: 0;
    padding: 1em;
    transition: all ease-in-out .3s;
    display: flex;
    gap: 1em;
    overflow: hidden;
}

.obtions__user #my-account:hover, .obtions__user #logout-button:hover{
    width: 100%;
    height: auto;
    background-color: var(--white-color);
    color: var(--darkblue-color);
    list-style: none;
    margin: 0;
    padding: 1em;
    cursor: pointer;
    display: flex;
    gap: 1em;
    transition: all ease-in-out .3s;
    overflow: hidden;
}

.obtions__user #my-account:hover .icon__account__profile > svg, .obtions__user #logout-button:hover .icon__logout > svg{
    fill: var(--darkblue-color);
    transition: all ease-in-out .3s;
}

.profile__account{
    display: flex;
    gap: 1em;
    justify-content: space-between;
    width: calc(100% - (50px + 1em));
}

.header .profile__account .profile__user__account{
    color: var(--white-color);
    font-weight: bold;
}

.header .profile__account .profile__role__account{
    color: var(--white-color);
    font-weight: bold;
}

.business__and__category{
    display: flex;
    flex-direction: column;
    gap: .3em;
}

.business__and__category .profile__business__account{
    color: var(--white-color);
    font-weight: bold;
}

.names__and__email{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .3em;
}

.names__and__email .profile__email__account{
    color: var(--white-color);
}
