.ddl-select {
  visibility: hidden;
}

.ddl {
  position: relative;
  height: 70px;
  width: 100%;
  text-align: initial;
}
.ddl::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 20px;
  width: 12px;
  height: 2px;
  background: #000;
  z-index: 99;
  transform: rotate(-40deg);
  transition: 0.5s;
}
.ddl::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 29px;
  width: 12px;
  height: 2px;
  background: #000;
  z-index: 99;
  transform: rotate(40deg);
  transition: 0.5s;
}
.ddl.active::after {
  right: 28px;
}
.ddl.active::before {
  right: 20px;
}
.ddl-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 10px;
  padding: 35px 20px !important;
  outline: none;
  background: #fff;
  border: 1px solid #e9e9e9;
}
.ddl.active .ddl-options {
  visibility: visible;
  opacity: 1;
}
.ddl .ddl-options {
  position: absolute;
  width: 100%;
  top: 75px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 999 !important;
  border: 1px solid #cacaca;
}
.ddl .ddl-options > div {
  padding: 10px 20px;
  cursor: pointer;
}
.ddl .ddl-options > div:hover {
  background: var(--bs-primary);
  color: #000;
  font-weight: 600;
  transition: 0.25s;
}

.ddl-options-list :first-child {
  display: none;
}
