/**
 * Custom CSS per la ricerca live
 * @version 1.0 
 */
 .search-overlay {
    top: 105px;
    right: 40px;
    z-index: 999;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 400px;
    height: auto;
    background:#eaeaea;
    transform: scale(1.09);
    transition: opacity .3s, transform .3s, visibility .3s;
 }
 .search-overlay--active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .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;
}