/* Search Style */ 
#search {
    position: absolute;
    top: 88px;
    left: 0px;
    width: 100%;
    height: 1000px;
    background-color: rgba(255, 255, 255, 0.96);
    -webkit-transition: all 0.5s ease-in-out;
       -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
         -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
       -moz-transform: translate(0px, -100%) scale(0, 0);
        -ms-transform: translate(0px, -100%) scale(0, 0);
         -o-transform: translate(0px, -100%) scale(0, 0);
            transform: translate(0px, -100%) scale(0, 0);    
    opacity: 0;
    display: none;
}

@media (max-width: 1024px) {
    #search {
        top: 100px;
    }
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
       -moz-transform: translate(0px, 0px) scale(1, 1);
        -ms-transform: translate(0px, 0px) scale(1, 1);
         -o-transform: translate(0px, 0px) scale(1, 1);
             transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
    z-index: 9999;
    display: block;
}

#search input[type="search"] {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;    
    background: transparent;
    border: none;
    font-size: 80px; 
    text-align: center;
    outline: none;
    padding: 10px;
    text-transform: uppercase;
    color: #666;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
    box-shadow: none!important;
    -moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    -o-box-shadow: none!important;    
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    #search input[type="search"] { font-size: 40px; line-height: 40px; height: 60px; }
}
  
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #000;
}

#search .close:hover{
  color: #FC2121;
  cursor: pointer;
}

#searchresults .wrapper {
    width: 80%;
    background: #fff;
    position: absolute;
    top: 120px;
    left: 10%;
    padding: 10px 30px;
}
@media (max-width: 1024px) {
    #searchresults .wrapper {
        width: 90%;
        left: 5%;
        padding: 10px 20px;
    }
}

#searchresults .wrapper > h3 {
    border-bottom: 1px solid #000;
    padding-bottom: 6px;
    margin-bottom: 8px;
}
#searchresults .wrapper .help-block {
    color: #666;
    padding-left: 20px;
}
