.search-widget__autocomplete{
    display: none;
    top: 33px;
    z-index: 900;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
}
.search-widget__autocomplete.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border-radius: 0;
    background-color: #F5F5F5;
}
.search-widget__autocomplete.scrollbar::-webkit-scrollbar{
    width: 12px;
    background-color: #F5F5F5;
}



.search-widget__autocomplete.scrollbar::-webkit-scrollbar-thumb{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}



.search-widget__autocomplete-item{
    background-color: #fdfdfd;
    clear: left;
    height: 76px;
    display: flex;
    align-items: center;
}
.search-widget__autocomplete-item:hover{
    background-color: #f2f2f2;
}

.search-widget__autocomplete-item-image{
    padding: 5px 10px;
    width: 115px;
    height: 100%;
    object-fit: cover;
}
.search-widget__autocomplete-item-title{
    color: #555;
    font-size: 14px;
    font-family: SFProText-medium;
}




.search-widget__input{
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 13px;
    height: 35px;
    padding: 6px 12px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    font-family: SFProText-light;
}
.search-input:focus{
    outline: none;
}
.search-widget{
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-widget__button-container{
    position: relative;
    font-size: 14px;
    left: -1px;
}
.search-widget__button{
    background-color: #fff;
    border: 1px solid #CCCCCE;
    background-position: center;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #2AC8C6;
    cursor: pointer;
    font-size: 13px;
    padding: 6px;
}
.search-widget__button:focus{
    outline: none;
}