.header {
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #d1d5dc;
  background: #FFFFFF;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header a {
  text-decoration: none;
}
.header__container {
  width: 100%;
  height: 100%;
  padding: 0 64px;
  box-sizing: border-box;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.header__logo {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__logo-link {
  display: flex;
  align-items: center;
}
.header__logo-img {
  height: 32px;
  width: 187px;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 16px;
  height: 100%;
  flex-shrink: 0;
}
.header__tab {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6a7282;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: "Poppins", sans-serif;
}
.header__tab-btn:hover {
  background: #f3f4f6;
  color: #101828;
}
.header__tab-btn[aria-expanded=true] {
  background: #f3f4f6;
  color: #101828;
}
.header__tab-btn[aria-expanded=true] .header__tab-chevron {
  transform: rotate(180deg);
}
.header__tab-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: currentColor;
}
.header__tab-label {
  white-space: nowrap;
}
.header__tab-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: currentColor;
  transition: transform 0.2s ease;
}
.header__tab-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #d1d5dc;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
  padding: 16px;
  min-width: 340px;
  z-index: 2000;
  display: none;
}
.header__tab-dropdown--open {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header__tab-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}
.header__tab-item:hover {
  background: #f9fafb;
}
.header__tab-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__tab-item-icon svg {
  width: 24px;
  height: 24px;
  color: #101828;
}
.header__tab-item-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.header__tab-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.header__tab-item-label {
  color: #101828;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header__tab-item-desc {
  color: #4a5565;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header__profile {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6a7282;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0px;
  transition: color 0.2s ease;
  font-family: "Poppins", sans-serif;
}
.header__profile-btn:focus {
  outline: none;
}
.header__profile-btn:focus-visible {
  outline: 2px solid #d5ebff;
  outline-offset: 2px;
}
.header__profile-btn:hover {
  color: #101828;
}
.header__profile-btn[aria-expanded=true] {
  color: #101828;
}
.header__profile-btn[aria-expanded=true] .header__profile-chevron {
  transform: rotate(180deg);
}
.header__profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 1000px;
  background: #d5ebff;
  color: #0049fa;
  font-size: 12px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.header__profile-chevron {
  width: 16px;
  height: 16px;
  color: currentColor;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.header__profile-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  width: 300px;
  background: #FFFFFF;
  border: 1px solid #d1d5dc;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
  padding: 16px;
  z-index: 2000;
  display: none;
}
.header__profile-dropdown--open {
  display: block;
}
.header__profile-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.header__profile-dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 1000px;
  background: #d5ebff;
  color: #0049fa;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  border: 1px solid #d1d5dc;
}
.header__profile-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  width: 100%;
  text-align: center;
}
.header__profile-name {
  color: #101828;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0px;
  line-height: 1.5;
}
.header__profile-email {
  color: #6a7282;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0px;
  line-height: 1.5;
}
.header__profile-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  color: #101828;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0px;
  text-decoration: none;
  transition: background 0.15s ease;
  width: 100%;
}
.header__profile-link:hover {
  background: #f9fafb;
  color: #101828;
}
.header__profile-logout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  color: #c10007;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: "Poppins", sans-serif;
  transition: background 0.15s ease;
}
.header__profile-logout svg {
  width: 20px;
  height: 20px;
  color: #c10007;
  flex-shrink: 0;
}
.header__profile-logout:hover {
  background: #fef2f2;
}

/*# sourceMappingURL=header.css.map */
