.live-search {
    width: 45%;
    position: absolute;
    z-index: 1000;
    /* margin: 26px 0 0 -27px; */
    margin: 26px 27px 0px -27px;
    background-color: #FFF;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
	box-shadow: 0 29px 10px 4px rgba(0, 0, 0, 0.05);
    display: none;
}

.live-search .loading {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.live-search ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.product-name a {
    font-family: main;
}

.live-search ul li {
    cursor: pointer;
	margin-top: 1px;
    padding: 9px;
    background-color: #FFF;
	border-top: solid 1px rgba(39, 25, 42, 0.1);
	font-size: 14px;
    clear: both;
    transition: .15s;
}

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

.live-search ul li:hover {
	box-shadow: inset 0 2px 9px 1px rgba(0, 0, 0, .1);
	transform: translateY(1px);
}

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

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

.live-search ul li .product-name p {
    font-weight: normal;
    font-style: italic;
    font-size: 10px;
    color: #555555;
    margin: 0;
    padding: 0;
}

.live-search ul li .product-name {
    color: #27192a;
    font-weight: bold;
    float: left;
    width: 80%;
}

.product-name a {
	color: #5b535d;
}

.live-search ul li .product-add-cart {
    float: right;
    padding: 7px;
}

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

.live-search ul li .product-price .price {
    color: green;
    display: block;
}

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

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

.live-search .result-text {
    text-align: center;
    font-size: 10px;
    line-height: 25px;
    color: #555555;
    background-color: rgb(185, 77, 203);
    position: absolute;
    width: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

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

.live-search .view-all-results {
    color: white;
    font-size: 1.5em;
}

.live-search .product-image {
    width: auto;
}

.live-search .product-image img {
    width: auto;
}

li.search-element.nofound {
	font-size: 16px;
	color: #27192a;
	text-align: center;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

li.search-element.nofound:hover {
	box-shadow: none;
	transform: translateY(0);
}

@-moz-document url-prefix() {
    .live-search {
        margin: 26px 26.5px 0 0 !important;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .live-search {
        margin: 48px 36px 0 -45%;
    }
    
}