/* Search Wrapper Styling */
.mobile-search-wrapper {
  position: relative;
}

.search-icon {
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Search Box Styling */
.search-box {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #003300;
  padding: 10px;
  width: 100vw;
  z-index: 1000;
}

.search-box input {
  width: 80%;
  padding: 8px;
  border: none;
  outline: none;
  background: white;
  color: black;
}

.close-icon {
  font-size: 20px;
  background: transparent;
  color: white;
  border: none;
  margin-left: 10px;
}

/* Only show on mobile */
@media (min-width: 769px) {
  #mobile-search-toggle {
    display: none;
  }
}
