.wishlist_dropdown__button {
  position: relative;
}
.wishlist_dropdown {
  position: absolute;
  width: 230px;
  max-height: 400px;
  top: 40px;
  right: 50%;
  transform: translateX(50%);
  background-color: rgb(var(--color-page-background));
  border: 1px solid rgb(var(--color-border));
  border-radius: 0px;
  padding: 8px;
  z-index: var(--z-index-dropdown);
  display: none;
  font-family: var(--body-font);
  font-weight: var(--body-font-weight);
  box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 20px 3px;
  color: #212d56;
}
.wishlist_dropdown.active {
  display: block;
}
.wishlist_dropdown a {
  display: block;
  color: #fff !important;
  text-decoration: none;
  background-color: #212d56;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 400;
  padding: 10px 0px;
}
.wishlist_dropdown a:hover {
  background-color: #182142;
  transition: all 0.3s ease;
}
.wishlist_dropdown p {
  font-weight: 600;
}

.login__required__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
}

.empty__wishlist__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
}

.empty__wishlist__wrapper p {
  text-align: center;
  font-size: small;
  padding: 10px;
  color: #adacac;
  font-weight: 400;
}
