.header {
  background: #FFF;
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header h2 {
  color: #233060;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

.header h2::before {
  content: "";
  background-color: #D9D9D9;
  width: 2px;
  height: 40px;
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);

}

.navbar {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar a {
  color: #233060;
  font-size: 14px;
  padding: 4px 8px;
  text-decoration: none;
}

.navbar a.active {
  font-weight: bold;
}

.dropdown .dropbtn {
  font-size: 16px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  outline: none;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  margin-left: 24px;
  cursor: pointer;
}

.dropdown .dropbtn::after {
  content: url("/assets/images/icon-arrow-down.svg");
}

.dropdown .dropbtn div {
  background: #233060;
  border-radius: 50%;
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.dropdown .dropbtn div p {
  color: #FFF;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 12px;
  min-width: 210px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #646464;
  padding: 12px 16px;
  text-decoration: none;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #EFEFFF;
  color: #233060;
}

.dropdown-content a:active {
  background-color: #DCE1FF;
  color: #233060;
  font-weight: 600;
}

.show {
  display: block;
}

.icon, .info-user-mobile, .overlay-navbar, .btn-close-menu {
  display: none;
}

@media (max-width: 980px) {
  .header h2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {

  .header {
    padding: 16px;
    position: relative;
    height: 65px;
  }

  .header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo img {
    width: 58px;
  }


  .header>div:first-child h2 {
    display: none;
  }

  .navbar a,
  .navbar .info-user-mobile,
  .btn-close-menu {
    display: none;
  }

  .navbar .icon {
    display: block;
    color: #000000;
    font-size: 24px;
    padding: 0;
  }

  .navbar.responsive .icon {
    display: none;
  }

  .navbar.responsive .btn-close-menu {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    right: 12px;
    top: 8px;
    padding: 0;
  }

  .navbar {
    padding: 0;
    gap: 0;
  }

  .navbar.responsive {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #FFF;
    top: 0;
    left: 0;
    width: 80%;
    padding: 0;
    gap: 0;
    height: 100dvh;
    z-index: 999;
  }

  .navbar.responsive {
    left: 0;
}

  .navbar.responsive a {
    display: flex;
    border-radius: 0;
    font-size: 16px;
    padding: 20px 16px;
    border-top: 1px solid #D1D1D1;
    width: 100%;
  }

  .dropdown {
    width: 100%;
    margin-top: auto;

  }

  .navbar.responsive .dropdown .dropbtn {
    display: none;
  }

  .navbar.responsive .dropdown-content {
    display: block;
    width: 100%;
    position: unset;
  }

  .dropdown .dropbtn {
    display: none;
  }

  .dropdown-content {
    box-shadow: none;
    border: none;
  }

  .navbar.responsive .info-user-mobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 23px 32px;
  }

  .info-user-mobile div {
    width: 70px;
    height: 70px;
    background: #233060;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-user-mobile div p {
    font-size: 32px;
    font-weight: bold;
    color: #FFF;
  }

  .info-user-mobile>p {
    font-size: 20px;
    font-weight: bold;
  }

  body.no-scroll {
    overflow: hidden;
  }

  div.overlay-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .overlay-navbar.show {
    display: block;
    opacity: 1;
  }

  .navbar.responsive .overlay-navbar {
    display: block;
  }

}
