.selected-search {
  position: relative;
  width: 100%;
}

.selected-search .floating-label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #08354a66;
  pointer-events: none;
  transform-origin: left center;
  z-index: 10;
}
.selected-search .button {
  width: 100%;
  padding: 14px 10px;
  font-size: 0.875rem;
  border-radius: 8px;
  background: #f1f9fc;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
  justify-content: space-between;
  gap: 5px;
}

.selected-search .button.active {
  color: #08354a66;
}
.selected-search .button {
  color: transparent;
}
.selected-search .button svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--Text-Body-DarkBlue-100, #08354a);
}
.menu-selected-search {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  border-radius: 0.75rem 0.75rem 0 0;
  border: 1px solid #00000015;
}
.menu-selected-search header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.62rem 1rem;
  border-bottom: 1px solid rgba(22, 22, 22, 0.2);
}
.menu-selected-search header .button-close {
  background: rgba(17, 17, 100, 0.1);
  border-radius: 100%;
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-selected-search header .button-close svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--Blue-Dark-60, rgba(4, 24, 33, 0.6));
}
.menu-selected-search main {
  padding: 0.62rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.menu-selected-search header h1 {
  color: var(--Brand-Blue, #1991c7);
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: -0.01125rem;
  padding-top: 2px;
}

.menu-selected-search .item {
  display: flex;
  padding: 0.75rem;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  cursor: pointer;
  border-radius: 0.5rem;

  color: var(--Text-Body-DarkBlue-100, #08354a);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.05rem */
  letter-spacing: -0.00875rem;
}

.menu-selected-search .item:hover {
  background-color: rgba(25, 145, 199, 0.08);
}
.menu-selected-search .item.active {
  background-color: rgba(25, 145, 199, 0.08);
}

.menu-selected-search .search-selected {
  position: relative;
  border-radius: 0.5rem;
  background: #f6f6f6;
  display: flex;
  height: 3.0625rem;
  padding: 0.75rem;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
}
.menu-selected-search .search-selected svg {
  width: 1.125rem;
  height: 1.125rem;
}
.menu-selected-search .search-selected input {
  width: 100%;
}
.menu-selected-search .search-selected input::placeholder {
  color: var(--Text-Body-40, rgba(22, 22, 22, 0.5));
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
}

@media (max-width: 640px) {
  .menu-selected-search header h1 {
    font-size: 0.875rem !important;
  }
  .menu-selected-search header .button-close{
    width: 1.5rem;
    height: 1.5rem;
  }
  .selected-search .button svg{
    width: 1rem;
    height: 1rem;
  }
}