.head {
  height: 9vh;
  width: 100%;
  padding: 1rem 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 9;
  border-bottom: var(--Border);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--Ani);
  & ion-icon {
    color: var(--Col-1);
  }
  & #CenterBox {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
}
.logo {
  height: 100%;
  display: flex;
  & img {
    height: 100%;
    width: 7.5rem;
  }
}
/* Menu-Header */
.Menu-Header {
  height: 100%;
  margin-left: 0.75rem;
}
.MH-ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.MH-item {
  padding: 0.25rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--Col-1);
  transition: var(--Ani-1);
  &:hover {
    color: var(--Col-0);
  }
}
.activeItem {
  color: var(--Col-0);
}
#CenterRight {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
/* Search */
.search-container {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  border: var(--Border);
  & input {
    height: 2.2rem;
    width: 12rem; /* 0rem */
    padding: 0.2rem 0.4rem;
    font-size: 0.9rem;
    color: var(--Col-1);
    display: flex;
    border: none;
    background: transparent;
    border-radius: 0.25rem 0 0 0.25rem;
    &:focus {
      outline: 2px solid var(--Col-0);
      border-radius: 0.25rem 0 0 0.25rem;
    }
  }
  & button {
    padding: 0.3rem 0.45rem;
    display: flex;
    border-left: var(--Border);
  }
}
/* Inbox */
.Inbox-container {
  display: flex;
  align-items: center;
  position: relative;
}
#inboxDropdown {
  height: auto;
  width: 26rem;
  display: none;
  position: absolute;
  top: 3rem;
  right: -3.5rem;
  z-index: 2;
  border-radius: 0.5rem;
  border: var(--Border);
  background: var(--Bg-1);
  box-shadow: var(--Shadow-2);
}
.HeadInbox {
  margin: 0.3rem 0;
  padding: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border-bottom: var(--Border);
  box-shadow: var(--Shadow-2);
}
.Mail {
  padding: 0.2rem;
  cursor: pointer;
  border-bottom: var(--Border);
  &:hover {
    background: var(--Bg-1);
    box-shadow: var(--Shadow-2);
  }
  & div {
    margin-bottom: 0.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
}
#inboxDetail {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  &.hidden {
    display: none;
  }
}
.WrapperInbox {
  height: max-content;
  width: 40rem;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  background: var(--Bg-1);
  border: var(--Border);
  & header {
    height: max-content;
    padding: 0.6rem;
    display: flex;
    justify-content: space-between;
    border-bottom: var(--Border);
    box-shadow: var(--Shadow-2);
    & div {
      width: 95%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.4rem;
    }
  }
  & main {
    padding: 0.3rem;
    display: flex;
    flex-direction: column;
  }
}
/* Dropdown - Profile */
#avatarDropdownWrapper {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 50%;
  border: var(--Border);
  & .user-icon {
    height: 2.4rem;
    width: 2.4rem;
    border-radius: 50%;
    cursor: pointer;
  }
}

/*  */
#login {
  position: relative;
}
#logoutBTN.hidden {
  display: none;
}
/* Avatar Dropdown */
.dropdown {
  width: 12rem;
  list-style: none;
  display: none;
  position: fixed;
  top: 4.3rem;
  right: 7rem;
  z-index: 11;
  border: var(--Border);
  border-radius: var(--Radius);
  transform: translateY(-10px);
  transition: var(--Ani-1);
  box-shadow: var(--Shadow-2);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;

  & ion-icon {
    font-size: 1.3rem;
  }
}
.dropdown.show {
  display: block;
  transform: translateY(0);
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.Drop_item {
  height: 100%;
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--Col-1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: var(--Border);
  &:hover {
    color: var(--Col-0);
    background: rgba(0, 0, 0, 0.2);
  }
}
/* Configurações */
