/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #fs-search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-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);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}

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

#fs-search input[type="text"] {
    position: absolute;
    top: 50%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 40px;
    text-align: center;
    border: 0px;
    margin: -51px auto 0;
    outline: none;
}

#fs-search .fs-search-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 50px;
    margin-left: -100px;
    text-align: center;
    cursor: pointer;
    border: none;
}

#fs-search .close {
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    background: none;
    cursor: pointer;
}

@media only screen and (max-width: 550px) {   
    #fs-search input[type="text"] {
        font-size: 25px;
    }
}