.header .user-capsule-wrapper {
  position: relative;
  display: inline-block;
}
.header .user-capsule-wrapper .user-dropdown {
  box-sizing: border-box;
  position: absolute;
  top: 112%;
  right: 0;
  background: var(--bg-dark);
  border: 1px solid var(--text-muted);
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  padding: 8px;
  width: 180px;
  list-style: none;
  cursor: pointer;
}
.header .user-capsule-wrapper .user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .user-capsule-wrapper .user-dropdown li {
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
}
.header .user-capsule-wrapper .user-dropdown li:hover {
  background: var(--bg-dark2);
}
.header .user-capsule-wrapper .user-dropdown li a {
  text-decoration: none !important;
  color: white;
  font-size: 15px;
}
.header .user-capsule-wrapper .user-dropdown li a span {
  width: 32px;
  text-align: left;
  font-size: 16px !important;
}
.header .user-capsule-wrapper .user-dropdown .logout-btn a {
  color: red !important;
}
.header .user-capsule-wrapper .user-dropdown .logout-btn a span {
  color: red !important;
}
.header .user-capsule-wrapper .user-capsule {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px;
  padding-right: 12px;
  margin: 0;
  border: 1px solid var(--text-muted);
  border-radius: 24px;
  background-color: var(--bg-dark);
  cursor: pointer;
}
.header .user-capsule-wrapper .user-capsule img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  object-fit: cover;
}
.header .user-capsule-wrapper .user-capsule p {
  margin: 0;
  font-size: 13px;
  color: white;
}
.header nav.small-only .user-capsule-2 {
  padding-right: 2px;
}
.header nav.small-only .user-capsule-2 a {
  color: var(--primary);
  text-decoration: none;
  user-select: none;
  height: 32px;
  padding-top: 7px;
}
.header nav.small-only .user-capsule-2 span.fal.fa-bell,
.header nav.small-only .user-capsule-2 span.fal.fa-cog,
.header nav.small-only .user-capsule-2 span.fal.fa-house {
  width: 28px;
  height: 100%;
  text-align: center;
  margin-left: 4px;
  color: white;
  font-size: 18px;
}
.header nav.small-only .user-capsule-2 span.fal.fa-house {
  position: relative;
  margin-left: 5px;
  font-size: 17.5px;
}
.header nav.small-only .user-capsule-2 .fal.fa-bell {
  position: relative;
}
.header nav.small-only .user-capsule-2 .fal.fa-bell.has-unread::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 6px;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  border: 1px solid white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.header nav.small-only .user-capsule-2 img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

@media (max-width: 640px) {
  .user-capsule-wrapper {
    margin-left: auto;
  }
  .user-capsule-wrapper .user-dropdown {
    top: 100%;
    margin-top: 0;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  user-select: none;
  backdrop-filter: blur(6px);
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
}
.header nav.large-and-medium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  width: 100vw;
  padding-right: 36px;
}
.header nav.large-and-medium h1 {
  color: white;
  font-size: 24px;
  margin: 0;
  user-select: none;
  background: transparent;
}
.header nav.large-and-medium ul.nav-items {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
}
.header nav.large-and-medium ul.nav-items li {
  color: white;
  cursor: pointer;
}
.header nav.large-and-medium ul.nav-items li a {
  text-decoration: none;
  color: white;
}
.header nav.large-and-medium ul.nav-items li a:hover {
  text-decoration: underline;
}
.header nav.large-and-medium ul.nav-items li a span.fal {
  font-size: 20px;
  color: white;
  transition-duration: 0.3s;
}
.header nav.large-and-medium ul.nav-items li a span.fal:hover {
  color: var(--primary);
}
.header nav.large-and-medium ul.nav-items li a .fal.fa-bell {
  position: relative;
}
.header nav.large-and-medium ul.nav-items li a .fal.fa-bell.has-unread::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.header nav.large-and-medium ul.nav-items .login-btn {
  background: var(--primary-dark);
  color: white;
  padding: 10px 32px;
  border-radius: 5px;
  transition: 0.3s ease;
}
.header nav.large-and-medium ul.nav-items .login-btn:hover {
  background: var(--primary-dark);
  text-decoration: none;
}
.header nav.small-only {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  min-width: 300px;
  width: 100vw;
}
.header nav.small-only span.menu-icon {
  font-size: 18px;
  padding: 6px 2px;
  border: 0.75px solid white !important;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  margin-top: 1.5px;
  min-width: 32px;
}
.header nav.small-only p.brand {
  margin-left: 16px;
  font-size: 22px;
  padding-bottom: 2px;
  user-select: none;
  color: white;
  font-weight: bold;
  font-family: "Lato", "Times New Roman", Times, serif;
}
.header nav.small-only .login-btn {
  background: var(--primary-dark);
  margin-left: auto;
  color: white;
  padding: 10px 28px;
  border: none;
  border-radius: 5px;
  transition: 0.3s ease;
  font-weight: bold;
  cursor: pointer;
}
.header nav.small-only .login-btn:hover {
  background: var(--primary-dark);
  text-decoration: none;
}
.header #mobileSidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
.header #mobileSidebar #sidebarContent {
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #171524;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.header #mobileSidebar #sidebarContent .close-icon {
  position: absolute;
  background-color: var(--bg-dark2);
  right: 12px;
  color: var(--text-muted);
  top: 12px;
  padding: 8px 6px;
  border-radius: 4px;
  z-index: 900;
  cursor: pointer;
  border: 1.5px solid var(--text-muted);
  box-shadow: 3px 8px 8px rgba(0, 0, 0, 0.55);
}
.header #mobileSidebar #sidebarContent .close-icon:hover {
  background-color: var(--bg-dark);
  transition: 0.3s ease;
}
.header #mobileSidebar #sidebarContent .close-icon span {
  font-size: 20px;
}
.header #mobileSidebar #sidebarContent img {
  width: 100%;
}
.header #mobileSidebar #sidebarContent ul {
  padding: 10px;
  padding-top: 12px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 170px);
  gap: 0;
}
.header #mobileSidebar #sidebarContent ul li {
  margin: 4px 0;
  padding: 12px 8px;
  border-radius: 8px;
  padding-left: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header #mobileSidebar #sidebarContent ul li.profile-box {
  margin: auto 4px 8px 4px !important;
  border: 0.5px solid var(--text-disabled);
  background: var(--bg-dark);
}
.header #mobileSidebar #sidebarContent ul li.profile-box .logout-icon {
  margin: 0 4px 0 auto;
  color: red;
  width: 24px;
  height: 100%;
  padding: 4px 0 0 0;
}
.header #mobileSidebar #sidebarContent ul li a {
  color: white;
  font-size: 16px;
  text-decoration: none;
}
.header #mobileSidebar #sidebarContent ul li a span {
  width: 36px;
  margin-right: 12px;
}
.header #mobileSidebar #sidebarContent ul li .navbar-profile-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 12px 0 0;
  object-fit: cover;
}
.header #mobileSidebar #sidebarContent ul li:hover {
  background-color: var(--bg-dark2);
}

@media screen and (min-width: 641px) {
  .small-only {
    display: none !important;
  }
  .header {
    padding: 0 22px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .large-and-medium {
    display: none !important;
  }
}
.image-container {
  position: relative;
  width: 100%;
  display: inline-block;
  height: 168.75px;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 168.75px;
  object-fit: cover;
}
.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: left;
  align-items: end;
  z-index: 700;
}
.image-container .overlay-text {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.image-container .overlay-text .navbar-mini-logo {
  width: 36px !important;
  min-height: auto;
  border: 0.5px solid var(--input-border);
  border-radius: 6px;
  height: 36px !important;
  margin-top: 4px;
}

.profile-container {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-left: 6px;
}
.profile-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 10;
  margin: 0;
}
.profile-container .wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  animation: wave-animation 3s forwards;
  opacity: 0;
}
@keyframes wave-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
.profile-container .wave:nth-of-type(1) {
  animation-delay: 0s;
}
.profile-container .wave:nth-of-type(2) {
  animation-delay: 1s;
}
.profile-container .wave:nth-of-type(3) {
  animation-delay: 2s;
}

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