.app-header {
  background-color: white;
  padding: 12px 0;
  border-bottom: 1px solid #E4DED2;
}

.app-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.app-header__logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-header__logo {
  height: 66px;
  width: auto;
  display: block;
}

.app-header__logo--defende {
  width: 150px;
  height: auto;
}

.app-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.app-header__logout {
  margin: 0;
  padding: 6px 10px;
  background: transparent;
  border: none;
  color: rgb(75, 85, 99);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.app-header__logout-icon {
  display: block;
  width: 48px;
  height: 48px;
  color: rgb(75, 85, 99);
}

.app-header__logout:hover,
.app-header__logout:focus {
  background: transparent;
  background-color: rgb(209 213 219 / 0.8);
  outline: none;
}

@media only screen and (max-width: 767px) {
  .app-header__logo:not(.app-header__logo--defende) {
    height: 56px;
  }
}
