#searchPanel {
    padding: 0px 30px 0px 30px;
    overflow: hidden;
    background: rgb(48,53,58);
}

#searchBar {
    font-size: 22px;
    margin: 0 auto;
    display: table;
}

#searchBar div {
    display: table-cell;
}

#searchLabel {
    font-family: "Segoe UI Light","Segoe UI","Lucida Grande",Verdana,Arial,Helvetica,sans-serif;

    /* h1 */
    color: #fff;
    font-size: 18px;
    line-height: 1em !important;
    font-weight: normal;
    margin: 20px 20px 15px 0;
    /**/
}

#searchQuery {
    font-size: 16px;
    padding: 5px 10px;
    width: 400px;    
    height: 45px; /* only because searchButton has defined height */
    border: 1px #000 solid;
}

#searchButton {
    font-size: 16px;
    padding: 4px 8px !important;
    height: 40px;
    display: none;
}

#searchResults {
    margin: 0px 40px 0 40px;
}

#searchProgress > div {
    bottom: 0;
    width: 100% !important; /* 400px */
    height: 6px !important;
}

.searchEntry {
    float: left;
    width: 50%;
    min-width: 300px;
    padding: 5px 5px 5px 0;
}

.searchEntry table {
    background: #333;
    border: 2px solid #333
}

.searchExtract {
    padding-right: 3px;
    height: 66px;
    line-height: 22px;
    overflow: hidden;
    cursor: pointer;
}

.searchBlock {
    /*
    overflow: hidden;
    border-right: 10px solid;
    border-bottom: 10px solid;
    */
}

.searchBlock h2 {

    overflow: hidden;
    height: 58px;

	width: 60px;
}

.searchExtract .highlight {
    /* color: #ff5a01; */
    background-color: #ff5a01;
    padding: 1px;
    color: black;
}

#searchResults .noResults {
    background: #333;
    color: white;
    padding: 14px 20px;
}

#searchResults .errorResults {
    background: #441313;
    color: white;
    padding: 14px 20px;
    font-weight: bold;
}

@media screen and (max-width: 450px) {
    .searchEntry {

    }
}

@media screen and (max-width: 550px) {

    #searchBar {
        display: block;
    }

    #searchBar div {
        display: block;
    }

    #searchBar > div {
        margin-bottom: 12px;
    }

    #searchQuery {
        width: 100%;
    }

    #searchResults {
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 1000px) {

    .searchEntry {
        width: 100%;
        padding-right: 0;
    }
}

/* needs refactoring ( copy pasted ) */
.progressDot {
    display: inline;
    width: 4px;
    height: 4px;
    left: -2000px;
    background-color: #55a1ff;
    position: absolute;
}