.autocomplete-suggestions {
    left: 0 !important;
    right: 0 !important;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    border: 1px solid #c4c4c4;
    background: #FFF;
    overflow: auto;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 15px;
    grid-gap: 5px;
}

.autocomplete-suggestion {
    font-size: 14px;
    line-height: 1;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    cursor: pointer;
}

.autocomplete-suggestion strong {
    font-weight: normal !important;
    color: #000 !important;
}

.suggPrice {
    display: block;
    padding-top: 7px;
    font-size: 13px;
    color: #ff7a00;
}
.suggPrice .price-discount {
    display: none;
}
.suggPrice .price-old {
    text-decoration: line-through;
}

.suggModel {
    display: block;
    padding-top: 7px;
    font-size: 13px;
}

.autocomplete-suggestion a {
    text-decoration: none;
    color: #585858;
}

.autocomplete-suggestion a img {
    margin-right: 8px;
    max-width: 100px;
    max-height: 100px;
    float: left;
}

.autocomplete-no-suggestion {
    padding: 4px 7px;
}

.autocomplete-selected {
    background: #eee;
}

.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: block;
    border-bottom: 1px solid #000;
}

.vertical-align {
    display: flex;
    align-items: center;
}

/*FULLSCREEN VIEW*/
.search_suggest_fullscreen .autocomplete-suggestions {
    border: none;
    box-shadow: none;
    margin-top: 30px;
}

#search_suggest_full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    display: none;
}
.search_suggest_full_wrapper {
    margin: 20px;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}
#search_suggest_full .logo {
    margin-top: 10px;
    margin-bottom: 10px;
}
#search_suggest_full img.logo {
    max-height: 80px;
}
#search_suggest_full input {
    border: none;
    box-shadow: none;
    text-align: center;
    font-size: 60px;
    height: 70px;
    color: #ff7a00;
}
#search_suggest_full .search-box-form .input-group-btn {
    display: none;
}
#search_suggest_full .search-box-form .input-group {
    width: 100%;
}
#search_suggest_full .search_suggest_close {
    font-size: 40px;
    cursor: pointer;
}
#search_suggest_full hr {
    margin-bottom: 20px;
    margin-top: 10px;
}
/*FULLSCREEN VIEW*/


/* xs */
@media (max-width: 767px) {
    .autocomplete-suggestion a img {
        max-width: 100px;
        max-height: 60px;
    }
    .autocomplete-suggestion {
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-top: 5px;
    }
    #search_suggest_full input {
        font-size: 30px;
        height: 40px;
    }
}
/* lg */
@media (min-width: 1200px) {
    .autocomplete-suggestions {
        width: 1140px;
    }
} 