.dropDown .drop-btn span {
  margin-right: 5px;
  color: #000;
  font-family: MiSans;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.3px;
}
.dropDown .drop-btn .drop-icon {
  transition: transform 0.3s;
}
.dropDown .drop-btn .drop-icon-reverse {
  transform: rotate(180deg);
}
.dropDown .dropdown-menu {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 122px;
  padding: 4px 0px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  margin: 12px 0 0 -4px;
  overflow: hidden;
}
.dropDown .dropdown-menu .dropdown-item {
  display: flex;
  padding: 7px 12px;
  align-items: center;
  justify-content: space-between;
  width: 100px;
}
.dropDown .dropdown-menu .dropdown-item-selected {
  color: rgb(0, 119, 250);
}
.dropDown .dropdown-menu .dropdown-item-selected::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("./dropdownSelected.svg");
}

.drop-enter-active,
.drop-leave-active {
  transition: transform 0.2s;
}

.drop-enter-from,
.drop-leave-to {
  transform: translateY(-50%) scaleY(0);
}