.search-container {
    position: relative;
    width: 300px;
}

#search-box, #search-box-mob {
    padding: 8px;   
    border: 1px solid #aaa;
}

.suggestions {
    position: absolute;
    width: 100%;    
    background: white;
    border: 1px solid #a2a2a2;
    border-top: none;
    top:37px;
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.suggestions div {
    padding: 11px 8px;
    cursor: pointer;
    font-size: 12px;
}

.InSearchBx .suggestions {
    border: 1px solid #ddd;
    border-top: 1px solid #ddd;
    top:43px;
    color:#4f4f4f;
}

.suggestions div:not(:last-child) {
    border-bottom: 1px solid #ccc;
}
.InSearchBx .suggestions div:not(:last-child) {
    border-bottom: 1px solid #ddd;
}


.suggestions .category {
    font-weight: bold;
    color: #555;
    font-size: 14px;
}

.InSearchBx{
    position: relative;
    margin: 25px 15px 25px 0;
    width: 32%;
    font-weight: normal;
    font-family: 'Muli', sans-serif;    
    display: flex;
}
#searchform{
    position: relative;
    color:#555654;
    text-align:left;      
}

#searchform #search-div{
    width: 100%;
    display:flex;
}
#searchform #search-div .suggestions{
    top:32px;
}

.topLinks{
    width: 100%;
    margin: 7px 0 0px 0;
}
.topLinks a{float: right;}
.topSearch{
    width: 25.4%;
}
.MobOnly.INBlueBox{
    position: relative;
}
.INBlueBox .topHeader{
    margin:6px 0 0 0;    
}
#suggestions-mob{
    width: 93%;
    top: unset;
    left: 0;
    right: 0;
    margin: 0 auto;text-align: left;
}
#suggestions-mob div{
    font-size: 14px;
}
.INBlueBox .topHeader h1, .INBlueBox .topHeader p {
    color:#fff !important;
    text-align: left;
}
#search-input-mob{
    font-size: 16px;
    padding: 10px;
    width: 94%;
}

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background: #e3e3e3;
}

::-webkit-scrollbar-thumb {
    background: #858585;
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
    background: #979797;
}

/* This next part is important */
@supports (not selector(::-webkit-scrollbar)) {
  html {
    scrollbar-width: thin;
    scrollbar-gutter: stable;
    scrollbar-color: #FFF;
  }
}