.wrapper {
  position: relative;
}
.select-btn {
  display: flex;
  justify-content: space-between;
}
.select-btn ion-icon {
  transition: transform 0.3s linear;
}
.wrapper.active .select-btn ion-icon {
  transform: rotate(-180deg);
}
.content {
  display: none;
  padding: 20px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.wrapper.active .content {
  display: block;
  position: absolute;
  z-index: 50000;
  right: 0;
  left: 10px;
}
.content .search {
  position: relative;
}
.search ion-icon {
  top: 50%;
  right: 15px;
  color: #999;
  pointer-events: none;
  transform: translateY(-50%);
  position: absolute;
}
.search input {
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 15px;
  border-radius: 5px;
  padding: 0.625rem;
  border: 1px solid #b3b3b3;
}
.search input:focus {
  padding-left: 42px;
  border: 2px solid #4285f4;
}
.search input::placeholder {
  color: #bfbfbf;
}
.content .options {
  margin-top: 10px;
  width: 100%;
  overflow-y: auto;
  height: 350px;
  list-style: none;
  padding: 0px !important;
}

.content .options li {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.options::-webkit-scrollbar {
  width: 7px;
}
.options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}
.options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}
.options::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}
.options li {
  height: 50px;
  padding: 0 5px;
  font-size: 15px;
}
.options li:hover,
li.selected {
  border-radius: 5px;
  background: #f2f2f2;
}

.roundtrip-btn {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.response.md-hidden {
  display: none;
}
#content-ida-vuelta {
  display: none;
}
#content-ida-vuelta.active {
  display: block;
}
