@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500&display=swap");
:root {
  --blue: #9ab3f5;
  --purple: #9a1663;
  --white: #ffffff;
  --teal: #009688;
  --shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
 * {
   /* margin: 0; */
  padding: 0; 
  /* box-sizing: border-box;
  list-style-type: none; */
  /* font-family: "Montserrat", sans-serif; */
} 

 /* body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  background-color: var(--blue); 
}   */

.search_bar {
  display: flex;
  align-items: center;
  min-width: 100%;
  border-radius: 50px;
  background-color: #009688;
  padding: 2px;
}

.dropdown {
  position: relative;
  width: 280px;
  border-radius: 50px;
  background-color: var(--purple);
  border: 1px solid var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.dropdown-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
  padding: 1rem 1.5rem;
  color: var(--white);
  white-space: nowrap; /* Impede que o texto quebre em várias linhas */
}

.dropdown-list {
  display: block;
  position: absolute;
  top: 4.5rem;
  left: 0;
  width: 100%;
  border-radius: 15px;
  max-height: 0;
  overflow: hidden;
  background-color: var(--purple);
  transition: max-height 0.5s;
  overflow-y: auto;
  z-index: 3;
}

.dropdown-list-item {
  font-size: 14px;
  font-weight: 500;
  border-radius: 15px;
  padding: 1rem 0 1rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.3s ease, margin-left 0.2s ease;
  color: var(--white);
}

.dropdown-list-item:hover {
  margin-left: 0.5rem;
  color: var(--teal);
}

#list.show {
  max-height: 400px;
}

.search-box {
  display: flex;
  align-items: center;
  padding-right: 1rem;
  width: 100%;
  color: var(--purple);
}

.search-box input {
  padding: 1rem;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent !important;
}

.search-box i {
  font-size: 1.3rem;
  cursor: pointer;
}

.search-box input::placeholder {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}
.search_bar .search-box .btn{
	right: -10px;
	border-radius: 50%;
  width: 45px;
	height: 45px;
  background-color: var(--purple);
}