
.dropdown-content {
  display: none;
  padding: 0px 16px 16px;
  position: absolute;
  background-color: #f0f3ff;
  min-width: 280px;
  width: 390px;
  top: 50px;
  overflow: auto;
  /* border: 1px solid #ddd; */
  z-index: 1;
  max-height: 350px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.dropdown-content a:first-child {
  margin-top: 2px;
}

.dropdown-content a {
  text-decoration: none;
  font-weight: bold;
  display: block;
  font-size: 16px;
  color: #003b76;
  padding-bottom: 5px;
  margin-top: 15px;
}


.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#searchBox {
  border-radius: 20px;
  padding: 5px 10px;
  background: #f0f3ff;
  display: flex;
  align-items: center;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}
#searchBox.dropdownactive {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
#searchIcon {
  cursor: pointer;
}

#searchBox #searchIcon #close-icon {
  display: none;
}

#searchBox #searchIcon #search-icon {
  display: block;
}

#searchBox.active #searchIcon #close-icon {
  display: block;
}

#searchBox.active #searchIcon #search-icon {
  display: none;
}

input {
  font-size: 20px;
  width: 0px;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0px;
  transition: 1s;
}

.active input {
  width: 350px;
  padding: 0px 20px 0px 0px;
}

.active .mic-icon {
  width: 30px;
}

.dropdown-content p {
  font-size: 10px;
}

.search-item {
  background: #c1d8ee;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 15px;
}

.search-item:last-child{
  margin-bottom: 0px;
}

span.highlight {
    background: #2E5D8B;
    color: #fff;
    font-weight: bold;
    padding: 0px 2px;
}

.darkmode span.highlight {
  background: #fff;
  color: #1c1f2b;
}

.darkmode #searchBox {
  background-color: #fff;
  color: #000;
  box-shadow: 0px -1px 6px 3px rgba(255, 255, 255, 0.3);
}

.darkmode #searchBox svg path{
  fill: #2f2d44;
}

.darkmode #searchBox input{
  color: #2f2d44;
}

.darkmode .dropdown-content a{
  color: #fff;
}

.darkmode .dropdown-content {
  background-color: #fff;
  box-shadow: 0px 6px 3px 3px rgba(255, 255, 255, 0.3);
}

.darkmode .search-item {
    background: #2f2d44;
}