.dyvix-select-wrapper {
  width: fit-content;
  height: fit-content;
  position: relative;
  z-index: 1;
}
.dyvix-select {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.dyvix-select-input {
  background-color: rgba(255, 255, 255, 0.02);
  border: 2px solid rgb(26, 27, 27);
  border-radius: 8px;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  min-width: 50px;
  padding: 0 12px;
  color: #b9f7ff;
  outline: none;

  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.15s cubic-bezier(0.2, 0.2, 0.65, 0.3);
}
.dyvix-select-input:hover {
  border: 2px solid rgb(194, 239, 255);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(185, 247, 255, 0.15);
  cursor: text;
}
.dyvix-select-input:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border: 3px solid rgb(168, 231, 254);

  border-color: #b9f7ff;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 12px rgba(185, 247, 255, 0.2);
}
.dyvix-select-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}
.dyvix-dropdown-select {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 2px 0 0 0;
  list-style: none !important;
  text-align: left;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  padding: 4px 0;
  border-radius: 8px;
  background: whitesmoke;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.dyvix-dropdown-select::-webkit-scrollbar {
  width: 5px;
}
.dyvix-dropdown-select::-webkit-scrollbar-track {
  background: transparent;
}
.dyvix-dropdown-select::-webkit-scrollbar-thumb {
  background-color: #06b6d4;
  border-radius: 25px;
}
.dyvix-dropdown-select li {
  background-color: transparent;
  color: #fff;
  border-bottom: 1px solid rgb(35, 40, 45);
  padding: 10px 12px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-left: 0;
}
.dyvix-dropdown-select li:active {
  background-color: #b2ebf2;
  color: white;
}
