.atlassian-autocomplete {
  position: relative;
}
.atlassian-autocomplete .suggestions {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.atlassian-autocomplete .suggestions {
  max-width: 250px;
}
.atlassian-autocomplete .short-field ~ .suggestions {
  max-width: 75px;
}
.atlassian-autocomplete .medium-field ~ .suggestions {
  max-width: 165px;
}
.atlassian-autocomplete .long-field ~ .suggestions {
  max-width: 500px;
}
.atlassian-autocomplete .full-width-field ~ .suggestions {
  max-width: none;
}
.atlassian-autocomplete .suggestions {
  -webkit-box-shadow: 0 3px 6px rgba(111, 111, 111, 0.2);
  box-shadow: 0 3px 6px rgba(111, 111, 111, 0.2);
  background-color: var(--ds-surface, #ffffff);
  border: 1px solid var(--ds-border, #c1c7d0);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  margin-top: 1px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 12000;
}
.atlassian-autocomplete .suggestions ul {
  list-style: none;
  margin: 0;
  padding: 2px 0;
}
.atlassian-autocomplete .suggestions li {
  display: block;
  margin: 0;
  padding: 3px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.atlassian-autocomplete .suggestions li b {
  font-style: normal;
  font-weight: bold;
}
.atlassian-autocomplete .suggestions li > .yad {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.atlassian-autocomplete .suggestions .yui-ac-ft {
  display: block;
  margin: 0;
  padding: 3px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: italic;
}
.atlassian-autocomplete .suggestions li {
  color: var(--ds-text, #172b4d);
  text-decoration: none;
}
.atlassian-autocomplete .suggestions li > *:hover,
.atlassian-autocomplete .suggestions li > *:focus {
  text-decoration: none;
}
.atlassian-autocomplete .suggestions .active {
  background-color: #0065ff;
  color: #ffffff;
  text-decoration: none;
}
.atlassian-autocomplete .suggestions .syntax-help-container {
  list-style: none;
  margin: 0;
  padding: 2px 0;
  border-top: 1px solid var(--ds-border, #c1c7d0);
}
.atlassian-autocomplete .suggestions .terminology-help-container {
  list-style: none;
  margin: 0;
  padding: 2px 0;
  border-bottom: 1px solid var(--ds-border, #c1c7d0);
  border-top: 0;
}
.atlassian-autocomplete .suggestions .terminology-help-container .aui-button-link {
  padding-top: 0;
  padding-bottom: 0;
  line-height: inherit;
  height: auto;
  border: 0;
}
.atlassian-autocomplete .suggestions .syntax-help {
  display: block;
  margin: 0;
  padding: 3px 10px;
}
.atlassian-autocomplete .suggestions .esc-prompt {
  float: right;
  text-align: right;
  color: var(--ds-text, #707070);
}
