ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
form {
  margin-top: 0 !important;
  width: auto !important;
}
.bg-color {
  background-color: #140A17 !important;
}
.navBar-container {
  padding: 2vh 6vw;
  max-width: 1600px;
}
.navBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  transition: 0.5s ease;
}
.navBar-logo {
  width: 76px;
  cursor: pointer;
}
.navBar-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.navBar-links {
  display: flex;
  align-items: center;
  gap: 1.8vw;
}
header li {
  position: relative;
  color: #FFF;
  font-size: 16px;
  text-align: center;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  cursor: pointer;
  transition: 0.5s ease;
}
header .disabled {
  color: #888;
  cursor: default;
}
header .disabled:hover {
  font-weight: 300;
}
header li .line, header li .line-active {
  display: block;
  width: 100%;
  height: 2px;
  transition: 0.5s ease;
}
header li:hover .line, header li .line.active {
  background: #606;
}
header li .line-active {
  background: #6600667a;
}
header .disabled:hover .line {
background: none;
}
.navBar-user-and-search {
  display: flex;
  gap: 24px;
  align-items: center;
}
.navBar-user-and-search input {
  height: 30px;
  border-radius: 30px;
  border: 2px solid #FFF4F4;
  background: transparent;
  padding: 0;
  padding-left: 16px;
  color: #FFF;
  transition: 0.2s ease;
}
.navBar-user-and-search input:focus-visible {
  border-color: #606;
  outline: 2px solid #66006657;
}
.navBar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.navBar-user img {
  width: 40px;
  border-radius: 4px;
}
.navBar-toggle {
  display: none;
}
.navBar-toggle span {
  color: #FFF;
  font-size: 32px;
}

.navBar-dropdown-menu {
  display: none;
  position: absolute;
  width: 300px;
  height: 1px;
  right: 2rem;
  top: 90px;
  opacity: 0;
  background-color: rgba(102, 0, 102, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  overflow: hidden;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.account-dropdown, .desktop-dropdown {
  display: none; 
  position: absolute;
  width: 120px;
  height: 1px;
  opacity: 0;
  right: 2rem;
  color: #FFF;
  font-size: 18px;
  line-height: 40px;
  top: 491px;
  background-color: rgba(102, 0, 102, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 8px;
  overflow: hidden;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.account-dropdown, .desktop-dropdown span {
  cursor: pointer;
}
.desktop-dropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 56px;
  right: 0;
}
.navBar-dropdown-menu.open {
  height: 400px;
  overflow-y: auto;
  opacity: 1;
}
.account-dropdown.open, .desktop-dropdown.open {
  height: 100px;
  opacity: 1;
}
.navBar-live-dropdown, .navBar-live-dropdown-content {
  position: absolute;
  left: -62px;
  width: 150px;
  height: 1px;
  opacity: 0;
  background-color: rgba(102, 0, 102, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  overflow: hidden;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.navBar-links .navBar-live-dropdown.open {
  opacity: 1;
  height: auto;
}
.navBar-live-dropdown-content {
  left: 90px;
  top: 84px;
  overflow: auto;
}
.navBar-live-dropdown-content.open {
  opacity: 1;
  height: 335px;
}

@media (max-width: 1200px) {
  .navBar-links, .navBar-user-and-search, .desktop-dropdown {
    display: none;
  }
  header li {
    font-size: 18px;
  }
  .navBar-dropdown-menu {
    display: block;
  }
  .account-dropdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .navBar-links.dropdown-active {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .navBar-user-and-search.dropdown-active {
    display: flex;
    justify-content: center;
    margin: 16px 0;
  }
  .navBar-toggle {
    display: block;
  }
  .navBar-links .navBar-live-dropdown.open {
    height: 300px;
  }
  .navBar-live-dropdown {
    left: -105px;
    width: 260px;
    background-color: rgb(102 0 102);
    overflow: auto;
  }
  header li .line-active {
    background: #730073;
  }
  .navBar-live-dropdown-content {
    width: 260px;
    left: -105px;
    top: 126px;
  }
  .navBar-live-dropdown-content.open {
    height: 200px;
    overflow: auto;
  }
}
@media (max-width: 500px) {
  .navBar-dropdown-menu {
    left: 2rem;
    width: unset;
  }
}