.profile-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 20px;
  right: 0;
  min-width: 220px;
  padding: 20px;
  border-radius: 8px;
  background-color: #181818;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transform: translateY(100px) scale(0);
  transition: all 0.21s ease-in-out;
}
.profile-dropdown .profile-dropdown-link {
  display: flex;
  gap: 15px;
  padding: 10px;
}
.profile-dropdown .profile-dropdown-link__icon {
  display: block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.profile-dropdown .profile-dropdown-link__title {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.profile-dropdown .profile-dropdown-link--edit-account {
  order: 0;
}
.profile-dropdown .profile-dropdown-link--edit-account .profile-dropdown-link__icon {
  background-image: url("../img/small-user-white.svg");
}
.profile-dropdown .profile-dropdown-link--wishlist {
  order: 1;
}
.profile-dropdown .profile-dropdown-link--wishlist .profile-dropdown-link__icon {
  background-image: url("../img/small-heart-white.svg");
}
.profile-dropdown .profile-dropdown-link--orders {
  order: 2;
}
.profile-dropdown .profile-dropdown-link--orders .profile-dropdown-link__icon {
  background-image: url("../img/small-list-white.svg");
}
.profile-dropdown .profile-dropdown-link--discount {
  order: 3;
}
.profile-dropdown .profile-dropdown-link--discount .profile-dropdown-link__icon {
  background-image: url("../img/small-discount-white.svg");
}
.profile-dropdown .profile-dropdown-link--customer-logout {
  order: 4;
}
.profile-dropdown .profile-dropdown-link--customer-logout .profile-dropdown-link__icon {
  background-image: url("../img/small-logout-white.svg");
}
.profile-dropdown .profile-dropdown-link--current .profile-dropdown-link__title {
  color: #ff9309;
}
.profile-dropdown .profile-dropdown-link--current.profile-dropdown-link--edit-account .profile-dropdown-link__icon {
  background-image: url("../img/small-user-primary.svg");
}
.profile-dropdown .profile-dropdown-link--current.profile-dropdown-link--wishlist .profile-dropdown-link__icon {
  background-image: url("../img/small-heart-primary.svg");
}
.profile-dropdown .profile-dropdown-link--current.profile-dropdown-link--orders .profile-dropdown-link__icon {
  background-image: url("../img/small-list-primary.svg");
}
.profile-dropdown .profile-dropdown-link--current.profile-dropdown-link--discount .profile-dropdown-link__icon {
  background-image: url("../img/small-discount-primary.svg");
}
.profile-dropdown .profile-dropdown-link--current.profile-dropdown-link--customer-logout .profile-dropdown-link__icon {
  background-image: url("../img/small-logout-primary.svg");
}
.profile-dropdown .profile-dropdown-link:hover .profile-dropdown-link__title {
  color: #ff9309;
}
.profile-dropdown--active {
  visibility: visible;
  opacity: 1;
  z-index: 1050;
  transform: translateY(0) scale(1);
}

/*# sourceMappingURL=profile-dropdown.css.map */
