#search-wrapper {
/*
    position: relative;
    top: 40%;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
    width: 100%;
    text-align: center;
*/
    
    width: 100%;
    text-align: center;
    min-height: calc(100% - 199px);
    margin: 154px auto 0 auto;
}
#search-wrapper > #search-filter {
    margin-bottom: 9vh;
}
#search-wrapper > #search-filter > input[type="text"] {
    width: 580px;
    height: 40px;
    padding-left: 18px;
    color: #fff;
    font-size: 0.75rem;
    line-height: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid #918e8b;
    background-color: #000;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#search-wrapper > #search-filter > input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 0.75rem;
    line-height: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e1e1e1;
}
#search-wrapper > #search-filter > input[type="text"]::-moz-placeholder { /* Firefox 19+ */
  color: #f3f3f3;
}
#search-wrapper > #search-filter > input[type="text"]:-ms-input-placeholder { /* IE 10+ */
  color: #f3f3f3;
}
#search-wrapper > #search-filter > input[type="text"]:-moz-placeholder { /* Firefox 18- */
  color: #f3f3f3;
}
#search-wrapper > ul {
    display: inline-block;
    vertical-align: top;
    list-style: none;
    margin: 0 5vw 0 0;
    padding: 0;
}
#search-wrapper > ul:last-child {
    margin: 0;
}
#search-wrapper > ul > li {
    margin-bottom: 6px;
    text-align: left;
}
#search-wrapper > ul > li > a,
#search-wrapper > ul > li > a:link,
#search-wrapper > ul > li > a:visited,
#search-wrapper > ul > li > a:active {
    font-size: 0.6875rem;
    line-height: 0.6875rem;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 3px;
    color: #b0b0b0;
    text-decoration: none;
}
.non-touch #search-wrapper > ul > li > a:hover {
    color: #ffffff;
}

@media screen and (max-width: 920px) {
    #search-wrapper {
        top: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        height: auto;
        padding-top: 75px;
        position: initial;
    }
    #search-wrapper > #search-filter {
        width: 90%;
        margin: 0 auto 30px auto;
    }
    
    #search-wrapper > #search-filter > input[type="text"] {
        width: 100%;
    }
}