/* Search suggestions */
.query-status {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.query-suggestions {
    display:block;
    background:#fff;
    border: 1px solid #ededed;
    margin-top: -2px;
    margin-left: 1px;
    line-height: 22px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.25);
    border-radius: 0 0 3px 3px;
}

.query-suggestions-wrap {
    display:block;
    position:absolute;
    z-index:999;
    width:38%;
    padding-right: 55px;
    box-sizing: border-box;
    opacity:0;
    transition: opacity 0.2s ease 0.2s;
}

@media only screen and (max-device-width: 904px), (max-width: 904px) {
    .query-suggestions-wrap {
        width: 44%;
    }
}

@media only screen and (max-device-width: 600px),(max-width: 600px) {
    .query-suggestions-wrap {
        width: 100%;
        padding-right: 58px;
    }
}

.query-suggestions:empty {
    border: none;
}
.query-suggestions span {
    display:block;
    cursor:pointer;
    width:100%;
    color:#000;
    padding:.25em;
    box-sizing: border-box;
}
.query-suggestions span:hover, .query-suggestions span.query-suggestion-highlighted {
    color:white;
    background: url(/images/ie/left-nav-active.jpg) top left repeat-x #2e4f96;
    background: -moz-linear-gradient(top, #3c60ae 0%, #2e4f96 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3c60ae), color-stop(100%,#2e4f96));
    background: -webkit-linear-gradient(top, #3c60ae 0%,#2e4f96 100%);
    background: -o-linear-gradient(top, #3c60ae 0%,#2e4f96 100%);
    background: -ms-linear-gradient(top, #3c60ae 0%,#2e4f96 100%);
    background: linear-gradient(to bottom, #3c60ae 0%,#2e4f96 100%);
}

.search-block:hover .query-suggestions-wrap,#searchText:focus + .query-suggestions-wrap, .query-suggestions-wrap:hover {
    opacity:1;
    visibility:visible;
}
