.header-search-form-box {
  background: $white;
  height: $fixed-nav-tablet;
  opacity: 0;
  position: absolute;
  top: $fixed-nav-mobile;
  transition: all linear 0.2s;
  visibility: hidden;
  width: 100%;
  z-index: 9900;
	&.visible {
		box-shadow: $box-shadow-level-3;
		opacity: 1;
		visibility: visible;
	}
}

.header-search-form {
  background: $white;
  display: flex;
  height: 0;
  transition: all linear 0.2s;
  width: 0;
  .header-search-field,
  .header-search-submit {
    background: transparent;
    border-radius: 0;
    border: 0;
    display: inline-flex;
    height: 0;
    padding: 0 8px;
    width: 0;
  }
  .header-search-submit {
    background: $heather;
    color: $shark;
    display: block;
    letter-spacing: 3px;
    text-align: center;
    &:hover {
      background: $pewter;
    }
  }
}
&.visible {
  opacity: 1;
  visibility: visible;
  .header-search-form {
    height: $fixed-nav-tablet;
    right: 16px;
    transition: all linear 0.2s;
    width: 100%;
    .header-search-field {
      height: initial;
      width: 100%;
    }
    .header-search-submit {
      background: transparent;
      height: initial;
      width: $fixed-nav-mobile;
    }
  }
}