.dropdownList {
  padding: 16px 20px;
  border-radius: var(--border-radius-16);
  background-color: var(--white);
  box-shadow: 0 5px 12px 0 #00000014;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s linear, visibility 0.3s linear, transform 0.3s linear;
}

.dropdownList__item:not(:last-child) {
  margin-bottom: 4px;
}

.dropdownList__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdownList__item > span {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
}

.dropdownList__link {
  display: inline-block;
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 16px 12px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  transition: color 0.3s linear;
}

.dropdownList__link:hover {
  color: var(--blue-sky-600);
  cursor: pointer;
}

.dropdownList .icon {
  width: 20px !important;
  height: 20px !important;
}
