<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.MyLiveSearch div.DivHits {
	position: absolute; 
    left: -250px;
	width: 900px;
	top: 40px;
	min-height: 30px; 
	z-index: 100;  
	border: 1px solid silver; 
	#border-top: 0px;
	padding: 5px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); 
	box-sizing: border-box;
	display: none;
	font-size: 90%;
	text-align: left;
	border-radius: 3px;
	min-height: 100px;
	padding: 0px;
	background-color: white;
}

.MyLiveSearch div.DivHits .arrow-up {
    width: 0; 
	height: 0; 
	border-left: 10px solid transparent; 
	border-right: 10px solid transparent; 
	border-bottom: 10px solid silver; 
	position: absolute; 
	top: -10px; 
	left: calc(50%);
}

.MyLiveSearch div.DivHits div.SmallIconContainer {
    margin: 2px 0px;
	padding: 4px 0px;
	border-radius: 3px;
	cursor: pointer;
	width: 100%;
    box-sizing: border-box;
    flex-direction: row;
}

.MyLiveSearch div.DivHits div.SmallIconContainer &gt; div:nth-child(1) {
    width: 64px;
	padding: 5px;
}

.MyLiveSearch div.DivHits div.SmallIconContainer img {
    width: 100%;
}

.MyLiveSearch div.DivHits a {
    color: gray;
	#font-weight: bold;
}

.MyLiveSearch div.DivHits a:hover {
    color: orange;
	border-bottom: 1px dotted orange;
	transition: all .25s ease-out; 
}

.MyLiveSearch div.DivHits .active {
    background-color: rgb(223,233,243);
}

.MyLiveSearch div.DivHits .search-for-more {

    padding: 5px; 
	text-align: center; 
	background-color: rgb(235,235,235);
}
 
.MyLiveSearch input[name=keyword] {
    width: 100%; 
	border: none; 
	padding: 4px; 
	line-height: 27px; 
	background: none; 
	margin-left: 10px;
}

.MyLiveSearch input[name=keyword]:focus {		
	outline-width: 0;
}


.MyLiveSearch input[name=keyword]::placeholder {		
    color: silver;
    opacity: 1; /* Firefox */
}

.MyLiveSearch input[name=keyword]::-ms-input-placeholder { /* Edge 12 -18 */
  color: silver;
}

.MyLiveSearch div.search_delete {
	margin-right: 15px;
	color: #ffa4a4; 
	font-size: 90%; 
	cursor: pointer;
}

.MyLiveSearch div.SearchIcon {
	color: silver; 
	font-size: 120%; 
	width: 30px; 
	text-align: center; 
	margin-right: 10px;
}

.MyLiveSearch div.SearchIcon &gt; span {
   line-height: 35px; 
}
   
@media screen and (min-width: 0px) and (max-width: 800px) {
	
	.MyLiveSearch .left_column {		
		display: none;
	}
	
	.MyLiveSearch .right_column {
		grid-column: 1 / 12 !important;
	}
	
	.MyLiveSearch span.sku {
		display: none;
	}
	
}
@media screen and (min-width: 0px) and (max-width: 1023px) {
	
	.MyLiveSearch {
		
		font-size: initial;
		left: 0; 
		width: 100%;
		top: 48px;
	}
	
	.MyLiveSearch .SearchIcon {
		
		display: none;
	}
	
	.MyLiveSearch .search_delete {
		visibility: visible;
		font-size: 120% !important;
	}
	
	.MyLiveSearch input[type=text] { 
		font-size: 140% !important;
	}
	
	.MyLiveSearch div.DivHits {
		
		width: 100%;
		left: unset;
		top: 62px;
		font-size: 110%;
	}
	
}
</pre></body></html>