.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px 20px 280px;
  background: var(--text-color-white);
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 0.1);
}

.title {
  width: 100%;
}

.headerWrapper {
  display: flex;
  max-width: 1920px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logoMobile {
  display: none;
}

.headerMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  gap: 16px;
}

h4 {
  font-weight: var(--font-weight-400);
}

.popupMenu {
  position: absolute;
  display: none;
  top: 82px;
  right: 0;
  flex-direction: column;
  padding: 10px;
  background: var(--main-color-darkblue);
  border-radius: 20px 0 20px 20px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.popupMenu a {
  display: flex;
  color: var(--text-color-gray);
  padding: 8px 16px 8px 16px;
  gap: 8px;
}

.userInitialsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  border: 3px solid var(--main-color-darkblue);
}

.userInitialsContainer:hover {
  background-color: var(--hover-color-blue);
}

.userInitials {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  color: var(--main-color-lightblue);
  box-sizing: border-box;
  font-weight: var(--font-weight-700);
}

.helpIcon:hover {
  transform: scale(1.15);
}
