.fdm-search-wrapper {
  position: relative;
  margin: 0 10px;
  display: inline-block;
}

.fdm-search-inline-form {
  display: flex;
  align-items: center;
  position: relative;
}

.fdm-search-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  color: inherit;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.fdm-search-icon .fa {
  font-size: 16px;
  line-height: 1;
}

.fdm-search-input {
  border: 1px solid #ccd0d4;
  border-radius: 2px;
  background-color: #fff;
  color: #32373c;
  font-size: 13px;
  line-height: 1.5;
  height: 28px;
  box-sizing: border-box;
  padding: 0 8px 0 30px;
  margin-left: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: width 0.15s ease-out, opacity 0.15s ease-out;
}

.fdm-search-wrapper.is-open .fdm-search-input {
  width: 180px;
  opacity: 1;
  pointer-events: auto;
}

.fdm-search-input:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 1px #007cba;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
