/*
 * Dummy Suggest CSS
 * 
 * Please modify/replace like needed
 */

/* reset positioning of .searchBox and apply it to searchWrapper instead */
/*.searchWrapper div.searchBox {*/
    /*position: static;*/
    /*right: auto;*/
    /*top: auto;*/
/*}*/

/*.searchWrapper {*/
    /*position: absolute;*/
    /*right: 75px;*/
    /*top: 73px;*/
/*}*/

@media (max-width: 420px) {
    #suggestLayer {
        position: absolute;
        left: -106%;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100vw;
        height: 90vh;
    }

    .suggestLayerBlock {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 421px) {
    #suggestLayer {
        position: absolute;
        z-index: 999;
        width: 415px;
    }
}



ul.suggestLayerList, ul.suggestLayerBlock, div.suggestLayerBlock {
    position: absolute;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #efefef;
    border-collapse: separate;
    color: #000000;
    cursor: pointer;
    font-size: 11px;
    list-style: outside none none;
    padding: 10px;
    top: 1px;
    margin: 0 auto;
}

ul.suggestLayerList li, ul.suggestLayerBlock li, ul.suggestLayerBlockText li, ul.suggestLayerBlockImage li {
    display: inline-block;
    width: 100%;
    list-style: outside none none;
}
.suggestLayerBlockImage, .suggestLayerBlockText {
    padding: 5px;
}


.suggestLayerBlockText {
    width: 100%;
}

div.suggestLayerBlock ul {
    padding: 10px;
}

li.suggestHeader {
    border-bottom: 1px solid #d7d7d7;
    color: #000000;
    font-size: 12px;
    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: 50px;
    line-height: 35px;
}
span.suggestTextQuery {
    /*font-weight: bold;*/
}
span.suggestTextQueryTyped {
    color: #099EDF;
    font-weight: bold;
}
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: #EEEEEE;
    color: #000000;
}
li.suggestHighlight .suggestParentCategory {
    color: #000000;
}
span.suggestImage {
    float: left;
    height: 30px;
    padding-right: 20px;
}
span.suggestImage img {
    max-height: 30px;
    max-width: 40px;
    min-width: 40px;
}
