<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Dummy Suggest CSS
 * 
 * Please modify/replace like needed
 */

#searchparamUnderlay {
    border: none;
    box-shadow: none;
    color: #ccc;
    position: absolute;
}

#suggestLayer {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    padding: 0 15px;
    z-index: 999;
    width: 100%;
    display: none;
}

ul.suggestLayerList, ul.suggestLayerBlock, div.suggestLayerBlock {
    right: 0;
    background-color: white;
    border: 5px solid #efefef;
    border-collapse: separate;
    box-shadow: 0 4px 3px #c2c4c6;
    color: #58585a;
    cursor: pointer;
    font-size: 11px;
    list-style: outside none none;
    padding: 15px 0;
    margin: 0;
}
ul.suggestLayerList li, ul.suggestLayerBlock li, ul.suggestLayerBlockText li, ul.suggestLayerBlockImage li {
    display: block;
    list-style: outside none none;
}
.suggestLayerBlockImage, .suggestLayerBlockText {
    margin: 0;
}

li.suggestHeader {
    border-bottom: 1px solid #d7d7d7;
    color: #b0b1b3;
    font-size: 10px;
    font-weight: normal;
    padding: 3px 10px 3px 5px;
}
.suggestLayerBlock ul.noborder {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color;
    border-image: none;
    border-style: none;
    border-width: medium medium medium 0;
    padding-left: 0;
}
li.suggestRow {
    padding: 6px;
}
li.suggestRowWithImage {
    height: 40px;
    line-height: 40px;
}
span.suggestTextQuery {
    font-weight: bold;
}
span.suggestTextQueryTyped {
    color: #009EC0;
    text-decoration: underline;
}
span.suggestTextType {
    float: right;
    font-size: 10px;
    padding-left: 20px;
}
span.suggestTextAmount {
    float: right;
    font-size: 10px;
    padding-left: 10px;
    text-align: right;
    width: 70px;
}
span.suggestParentCategory {
    color: #b0b1b3;
    font-size: 10px;
    padding-left: 10px;
}
li.suggestHighlight {
    background-color: #eee;
    /*color: #fff;*/
}
li.suggestHighlight .suggestParentCategory {
    color: #000;
}
span.suggestImage {
    float: left;
    height: 40px;
    padding-right: 20px;
}
span.suggestImage img {
    max-height: 40px;
    max-width: 120px;
}


@media (min-width: 768px) {
    div.suggestLayerBlock ul {
        border-left: 1px solid #d7d7d7;
    }
    div.suggestLayerBlock ul:first-child {
        border-left: none;
    }
}

@media (min-width: 992px) {
    #suggestLayer {
        width: 875px;
        right: 15px;
    }
    ul.suggestLayerList, ul.suggestLayerBlock, div.suggestLayerBlock {
        position: absolute;
    }
}</pre></body></html>