.live-search {
    width: 100%;
    position: absolute;
    z-index: 1000;
    padding: 5px 0px;
    margin-top: 40px;
    background-color: #FFF;
    border: 1px solid #DDD;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 2px 2px #DDDDDD;
    left: 0;
    display: none;
    padding-bottom: 42px;
}

.live-search ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    max-height: 300px;
    overflow-y: auto;
}

.live-search ul::-webkit-scrollbar {
    width: 6px;
}

.live-search ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.live-search ul::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.live-search ul::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
}

.live-search ul li {
    cursor: pointer;
    padding: 10px 5px;
    margin: 0px 5px;
    background-color: #FFF;
    min-height: 90px;
    clear: both;
}

.live-search ul li:nth-child(even) {
    background-color: #FAFAFA;
}

.live-search ul li:hover {
    background-color: #f1f1f1;
}

.live-search ul li a {
    text-decoration: none;
    display: block;
}

.live-search .product-image {
    float: left;
    margin-right: 5px;
}

.live-search .product-name {
    font-weight: bold;
    float: left;
    width: 58%;
    font-size: 16px;
}

.live-search .product-name p {
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    color: #555555;
    margin: 0px;
    padding: 0px;
}

.live-search .product-price {
    text-align: right;
    font-size: 12px;
    font-weight: bold;
    float: right;
    margin-top: 10px;
    width: 25%;
}

.live-search .product-price .price {
    color: #333333;
    display: block;
}

.live-search .product-price .special {
    color: #f70000;
    text-decoration: line-through;
    display: block;
}

.live-search .product-price > .special {
    margin-top: -5px;
}

.live-search .result-text {
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    color: #555555;
    background-color: #f3f3f3;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.live-search .view-all-results {
    color: #23a1d1;
}

.live-search .view-all-results:hover {
    color: #23527c;
}

.message-style {
    text-align: center;
    color: #999999;
    font-size: 14px;
    padding: 10px;
    background-color: #f9f9f9;
    margin: 10px 0;
    border-radius: 5px;
}