.dropdown {
  position: relative;
}

.dropdown.open .dropdown-container {
  display: block;
}

.dropdown-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gc-primary-low);
  border-radius: 25px;
  padding: 0px 29px;
  height: 50px;
  transition: all 0.1s ease-in-out;
}

.dropdown-button:hover {
  border: 1px solid var(--gc-secondary-blue);
  cursor: pointer;
}

.dropdown-container {
  display: none;
  position: absolute;
  left: 0px;
  border-radius: 25px;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  z-index: 1;
  border: 1px solid var(--gc-secondary-blue);
  padding: 5px 29px;
  list-style: none;
  margin-top: 5px;
}

.dropdown-up {
  bottom: 100%;
  margin-bottom: 5px;
}

.dropdown-item {
  padding: 5px 0px;
  color: #000064;
  line-height: normal;
  cursor: pointer;
}

.dropdown-item.active,
.dropdown-item:hover {
  color: var(--gc-secondary-blue);
  text-decoration: none;
}
