.companion-search-input-container {
  position: absolute;
  left: 0; }

.companion-search-input-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  margin: 0 auto;
  transition: 0.3s ease;
  display: flex;
  align-items: flex-start;
  z-index: 99;
  overflow: hidden; }
  .companion-search-input-wrapper.layout--boxed {
    max-width: 1170px; }
  .companion-search-input-wrapper .companion-search-input {
    font-family: var(--body_font_family);
    background-color: #FFFFFF;
    padding: 0 30px;
    border: none;
    transition: 0.3s ease;
    height: 100% !important; }
  .companion-search-input-wrapper.show {
    height: 80px; }

.companion-search-btn {
  font-family: var(--body_font_family);
  transition: 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  line-height: 24px;
  color: var(--secondary_variant_color);
  display: inline-flex;
  align-items: center; }
  .companion-search-btn i {
    font-size: 20px;
    transition: 0.3s ease;
    margin-right: 10px; }
