.search-form-container {
   display: inline;
   overflow: hidden;
   position: relative;
}

.search-widget {
    position: relative;
}

.search-input-container {
  overflow: hidden;
}

.search-input {
    position: relative;
    bottom: -15px;
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: text;
    width: 100%;
    height: 54px;
    display: block;
    padding: 8px 8px 8px 8px;
    font-size: 14px;
    border: 1px solid black;
    margin-bottom: 0;
    color: black; /* caret color */
    white-space: pre;
    word-wrap: normal;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

/* Adds placeholder attribute to content editable */
[contenteditable=true].search-input:empty:before{
  content: attr(placeholder);
  display: block; /* For Firefox */
  color: #777;
  text-shadow: none;
}

[contenteditable="true"].search-input:focus {
   text-overflow: inherit;
   outline: none;
}

.search-btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.suggested-search-word {
    background-color: #777;
    color: white;
    border-radius: 4px;
}

.suggested-item-badge {
    display: relative;
    min-width: 10px;
    padding: 3px 5px;
    font-size: 12px;
    font-weight: bold;
    color: black;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #ccc;
    border-radius: 10px;
}

.suggested-items-list-container {
  position: inherit;
  width: initial;
}

.suggested-items-list {
     position: absolute;
     z-index: 2;
     width: 100%;
}

.suggested-item {
    background: #ebebeb;
    padding: 4px 5px;
    font-size: 12px;
    font-weight: bold;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #dadada;
    display: block;
    text-decoration: none;
    color: #343434;
    cursor: pointer;
}

.suggested-item:hover, .suggested-item:focus {
    background: #f5f5f5;
    color: #4b00a3;
    outline: none;
}
