/* Wrapper */
.custom-search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  margin: 0px auto;
  background: #F7F7F7;
  padding: 5px 5px 5px 20px;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
}

/* Input */
.custom-search-form input[type="search"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 1px 1px;
  font-size: 14px;
  font-weight: 400;
  text-transform: normal;
  color: #3D3D3D;
}

/* Placeholder */
.custom-search-form input[type="search"]::placeholder {
  color: #3D3D3D;
  opacity: 1;
}

/* Button */
.custom-search-form button {
  background: #000000;
  color: #F7F7F7;
  border: none;
  border-radius: 30px;
  padding: 5px 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-left: 6px;
}

/* Hover */
.custom-search-form button:hover {
  opacity: 0.85;
}

/* Synlighetstoggle.
   Forutsetter at #searchbox får class "visible" for å vises.
   Hvis du allerede har CSS for dette annet sted, fjern disse reglene. */
#searchbox { display: none; }
#searchbox.visible { display: block; }
