.header {
  /* height: 96px; */
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 8px 8px -4px var(--style);
  font-family: "Inter", sans-serif;
}

.header-content {
  width: 100%;
  padding: var(--header-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-size: 20px;
  color: var(--black);
}

.header-logo {
  display: none;
  height: 40px;
}

.help-link img {
  width: 32px;
  height: 32px;

  &:hover {
    transform: scale(1.2);
  }
}

.user-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-button {
  width: 56px;
  height: 56px;
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--light-blue);
  cursor: pointer;
  transition: all 0.125s ease-in-out;

  &:hover {
    background-color: var(--style);
  }
}

.user-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-color: transparent;
  z-index: 10;
}

.user-menu-overlay.hidden {
  display: none;
}

.wrapper-user-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100vh;
  z-index: 10;
  /* pointer-events: none; */
  overflow-x: hidden;

  &.hidden {
    display: none;
  }
}

.user-menu {
  position: absolute;
  top: 96px;
  right: -170px;
  background-color: var(--primary-color);
  font-size: 16px;
  border-radius: 20px 0 20px 20px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: all 0.125s ease-in-out;
  z-index: 1000;

  &.show {
    right: 16px;
  }

  & a {
    color: var(--white);

    &:hover {
      color: var(--light-blue);
    }
  }

  & .logout-btn {
    background-color: transparent;
    color: var(--white);
    border: none;
    display: flex;
    font-size: 16px;
    cursor: pointer;

    &:hover {
      color: var(--light-blue);
    }
  }
}

.user-menu-help-item {
  display: none;
}


@media (max-width: 980px) {
  :root {
    --header-padding: 20px 32px;
  }
}

@media (max-width: 750px) {
  :root {
    --header-padding: 20px 40px;
  }

  .user-button {
    width: 40px;
    height: 40px;
  }

  .user-menu {
    top: 80px;
  }
}

@media (max-width: 475px) {
  :root {
    --header-padding: 20px 16px;
  }
}