/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 #search-header{
    background-color: transparent;
    border-bottom: 1px solid #fff;
 }
 #search-live::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
#search-live::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
.search-head .autocomplete-icon{
    background-color: #0066cc;
}
.search-head{
    background: none;
    border: none;
}
 .search-overlay {
    top: 45px;
    right: 0px;
    position: absolute;
    background:#fff;
    list-style-type: none;
    text-decoration: none;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    width: 300px;
    height: auto;
    transform: scale(1.09);
    transition: opacity .3s, transform .3s, visibility .3s;
    padding: 20px 0px;
 }
#default-text{
    color: #455b71;
    text-decoration: none;
    font-variant: small-caps;
    font-weight: bold;
}

.autocomplete-search-text {
    text-decoration: underline;
    margin-left: 8px;
}

.autocomplete-search-text-pt {
    font-style: normal;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
}

#wrapper-lis-search >li > a {
    color: #455b71;
    text-decoration: none;
}
#wrapper-lis-search >li >a:hover{
    color: #06c;
}


 .search-overlay--active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }

  #search-live{
    width: 300px;
    background: #06c;
    border-color: #fff;
}

.spinner-loader {
   
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 0.25rem solid rgba(0, 0, 0, 0.2);
    border-top-color: #313131;
    -webkit-animation: spin 1s infinite linear;
            animation: spin 1s infinite linear;
  }
  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }

  .thumb-search-live{
      display: inline-block;
  }

  .thumb-search-live img{
    width: 50px;
    height: auto;
    border-radius: 50%;
  }
  .text-search-live{
    display: inline-block;
    margin-left: 5px;
  }
  #search-overlay__results a{
      background: none !important;
  }
#search-overlay__results li{
    list-style: none;
}

.autocomplete-list-pt {
    font-style: normal;
    text-transform: uppercase;
    font-size: .75rem;
    color: #435a70;
    font-weight: 600;
    letter-spacing: .1em;
    }

.autocomplete-list-link {
    text-decoration: underline;
}

.autocomplete-search a {
    padding: 12px 24px;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #455b71;
    line-height: 1.2;
}

.avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: -webkit-filter .2s;
    transition: filter .2s;
    transition: filter .2s,-webkit-filter .2s;
    border-radius: 50%;
}
.bs-it-sticky-wrapper #box-live-search{
    display: none;
}

.autocomplete-search a .avatar, .autocomplete-search a .icon {
    margin-right: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.it-search-wrapper {
    width: 300px;
  }



  @media screen and (max-width: 740px){
    .it-search-wrapper {
        display: none ;
    }

}