/* ----- NAVBAR ----------------------------------------------------------------------------------- */
.navbar {
  padding: 5px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  background-color: var(--COLORE-1);
  height: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar .utente .logout-input-img {
  outline: none;
}

.navbar .img-logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.navbar .img-logo img {
  max-height: 80px;
}

.navbar .utente {
  margin-right: 50px;
  justify-content: center;
}

.navbar .utente #nome-utente {
  margin: auto;
  margin-right: 15px;
  color: white;
  font-size: 18px;
}

.navbar .utente .img_exit {
  margin-left: 20px;
}

.navbar .utente .img_exit:hover {
  cursor: pointer;
}

.navbar .all-language {
  margin: auto 10px;
}

.navbar .all-language:hover {
  cursor: pointer;
}


@media screen and (max-width: 800px) {
  .navbar .img-logo {
    left: 10px;
    transform: translate(0);
  }

  .navbar .img-logo img {
    max-width: 170px;
  }

  .navbar .utente {
    margin: 10px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
  }
}

@media screen and (max-width: 500px) {
  .navbar {
    height: 60px;
    padding: 5px;
  }

  .navbar .img-logo img {
    max-height: 50px;
    max-width: 100px;
  }

  .navbar .utente #nome-utente {
    font-size: 15px;
  }

  .navbar .utente .logout-input-img {
    height: 25px;
  }

  .navbar .all-language img {
    height: 25px;
  }
}