@media (min-width: 980px) {
    .header .search-form-wrapper {
        top:5px!important;
        width:250px!important;
        z-index:auto;
    }
#searchform{
    position:relative;
    min-width:50px;
    width:0%;
    height:50px;
    float:right;
    overflow:hidden;
    
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

#searchform input[type="text"]{
    top:0;
    right:0;
    width:75%!important;
    height:50px!important;
    margin:0;
    display:block!important;   
    z-index:9999;
}

.searchform .fa-search,
.searchform button{
    width:50px!important;
    height:50px!important;
    display:block;
    position:absolute;
    font-size:22px;
    top:0px;
    right:0;
    padding:0;
    margin:0;
    border:0;
    outline:0;
    line-height:50px;
    text-align:center;
    cursor:pointer;
    background-color:#f2f2f2;
}



#searchform.open{
    width:100%;
}
}