.search-toggle {
  align-self: center;
  display: block;
}
@media (min-width: 992px) {
  .search-toggle {
    margin-right: var(--size-2);
  }
}
.search-toggle button {
  -webkit-appearance: none;
  align-items: center;
  align-self: center;
  background: none;
  border: none;
  display: flex;
  height: 28px;
  justify-content: center;
  padding: 0;
  width: 28px;
}
.search-toggle button svg {
  transition: 0.25s opacity;
  height: 19px;
  width: 19px;
}
.search-toggle button svg path {
  fill: var(--color-navy);
}

#views-exposed-form-acquia-site-search-acquia-search-block {
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
  justify-content: flex-end;
}
#views-exposed-form-acquia-site-search-acquia-search-block .form-item__label {
  display: none;
}

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
@media (min-width: 992px) {
  .search-overlay {
    z-index: 1;
  }
}

.search-overlay.active {
  display: block;
}

input.button[type=submit]:focus {
  outline: 1px solid white;
  outline-offset: 1px;
}

.close-search-button {
  position: absolute;
  right: 56px;
  bottom: 18px;
  height: 30px;
  width: 30px;
  background-color: var(--color-navy);
  border: none;
  color: white;
  font-size: var(--scale-3);
  line-height: var(--scale-3);
}
.close-search-button:focus {
  outline: 1px solid white;
  outline-offset: 1px;
}
@media (min-width: 992px) {
  .close-search-button {
    right: 125px;
    bottom: 60px;
  }
}