.container-filter .filter-head-title {
  width: 256px;
}

#fc_search_piece_autocomplete {
  border: none;
  padding: 15px;
}

#content-filter-fcsearch .filter-head-title {
  width: 100%;
  text-align: center;
  float: none;
  display: block;
  padding: 13px;
}

.twitter-typeahead {
  position: relative;
  display: block !important;
  width: 100%;
}
.twitter-typeahead .tt-hint,
.twitter-typeahead .tt-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.twitter-typeahead .tt-hint {
  color: #555555;
  z-index: 1;
  pointer-events: none;
  border-radius: 3px;
}
.twitter-typeahead .tt-input {
  z-index: 2;
  color: #555555;
}

.tt-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.tt-menu.tt-open {
  display: block;
}
@media (max-width: 768px) {
  .tt-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 8px 8px 0 0;
    max-height: 50vh;
    overflow-y: auto;
  }
}

.tt-suggestion {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
.tt-suggestion:hover, .tt-suggestion.tt-cursor {
  background-color: #f5f5f5;
  text-decoration: none;
}
.tt-suggestion:active {
  background-color: rgb(232.25, 232.25, 232.25);
}
.tt-suggestion:focus {
  outline: 2px solid #66afe9;
  outline-offset: -2px;
}
.tt-suggestion .tt-highlight {
  font-weight: bold;
  background-color: var(--theme-color-secondary);
  padding: 1px 2px;
  border-radius: 2px;
}

.tt-empty {
  padding: 8px 12px;
  color: #666;
  font-style: italic;
  text-align: center;
  background-color: #f9f9f9;
}

.tt-loading {
  position: relative;
}
.tt-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fc-search-container {
  position: relative;
}
.fc-search-container .twitter-typeahead {
  width: 100%;
}
.fc-search-container .form-control {
  padding-right: 30px;
}

#fc_search_piece_autocomplete .tt-suggestion,
#form_fc_search_piece_autocomplete .tt-suggestion {
  font-weight: 500;
}
#fc_search_piece_autocomplete .tt-suggestion strong,
#form_fc_search_piece_autocomplete .tt-suggestion strong {
  color: #2c3e50;
}

@media (max-width: 768px) {
  .tt-menu {
    font-size: 16px;
  }
  .tt-menu .tt-suggestion {
    padding: 12px 16px;
    font-size: 16px;
  }
}
@media (prefers-color-scheme: dark) {
  .tt-menu {
    background-color: #2c3e50;
    border-color: #34495e;
    color: #ecf0f1;
  }
  .tt-suggestion {
    color: #ecf0f1;
  }
  .tt-suggestion:hover, .tt-suggestion.tt-cursor {
    background-color: #34495e;
  }
  .tt-suggestion .tt-highlight {
    background-color: var(--theme-color-secondary);
    color: #fff;
  }
  .tt-empty {
    background-color: #34495e;
    color: #bdc3c7;
  }
}
@media print {
  .twitter-typeahead,
  .tt-menu {
    display: none !important;
  }
}

/*# sourceMappingURL=typeheader.css.map */
