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

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

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

ul.suggestLayerList,
ul.suggestLayerBlock,
div.suggestLayerBlock {
    left: 0;
    margin: 0;
    padding: 0;
    color: #4d4c4b;
    font-size: 1rem;
    list-style: outside none none;
    background-color: white;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
    cursor: pointer;
    border-radius: .25rem;
    overflow: hidden;
    border-top: 6px solid #80596D;
}

.suggestLayerBlockText,
.suggestLayerBlockImage {
    margin: 0;
    padding: 0 0 12px 0;
}

ul.suggestLayerList li,
ul.suggestLayerBlock li,
ul.suggestLayerBlockText li,
ul.suggestLayerBlockImage li {
    list-style: outside none none;
    padding-left: 18px;
    padding-right: 18px;
}

li.suggestHeader {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #4d4c4b;
    font-size: .875rem;
    font-weight: bold;
    font-family: 'Vollkorn', 'Constantia', 'Lucida Bright', 'Lucidabright', 'Lucida Serif', 'Lucida', 'DejaVu Serif', 'Bitstream Vera Serif', 'Liberation Serif', 'Georgia', 'serif';
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: #e5e2de;
}

li.suggestRow {
    padding-top: 8px;
    padding-bottom: 8px;
    width: 100%;
}

li.suggestRow.suggestRowWithImage {
    padding-top: 4px;
    padding-bottom: 4px;
}

.suggestTextQuery {
    font-family: 'Signika', 'system-ui', 'BlinkMacSystemFont', '-apple-system', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'sans-serif';
    font-weight: lighter;
}

.suggestTextQueryTyped {
    color: #80596D;
    text-decoration: underline;
    font-weight: normal;
}

.suggestTextType {
    font-size: .875rem;
    padding-left: 20px;
}

.suggestTextAmount {
    font-size: .875rem;
}

.suggestParentCategory {
    color: #9f9d9a;
    font-size: .875rem;
}

li.suggestHighlight {
    color: #333333;
    background-color: #F4F1ED;
    /*color: #fff;*/
}

li.suggestHighlight .suggestParentCategory {
    color: #333333;
}

div.suggestImage {
    height: 40px;
    width: 40px;
    border-radius: 9999px;
    overflow: hidden;
    display: inline-block;
}

div.suggestImage img {
    min-width: 100%;
    width: 100%;
    height: auto;
    vertical-align: baseline;
}

@media screen and (max-width: 767px) {
    #suggestLayer {
        position: fixed;
        top: 130px;
        left: 12px;
        right: 12px;
        height: 75%;
    }

    #suggestLayer > .suggestLayerBlock {
        overflow-y: scroll;
        height: 100%;
    }
}

@media screen and (min-width: 768px) {
    #suggestLayer { width: 550px; }
    #suggestLayer .suggestLayerBlock > ul:first-child {
        border-right: 1px #e5e2de solid;
    }
}

@media screen and (min-width: 992px) {
    #suggestLayer { width: 750px; }
}