/**
* Reset
* - Prevents Themes and other Plugins from applying their own styles to our full screen search
*/

input[type=text], input.text, input.title, textarea, select {
    font-family: "proxima-nova", sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    border: 1px solid #9D9E9E;
    background: none! important;
    background-color: white! important;
    border-radius: 30px! important;
    height: 45px! important;
    color: #454544! important;
    box-sizing: border-box;
    min-width: 95px;
    /* text-indent: 25px; */
}
body .gform_wrapper select {
    background-color: #fefefe! important;
}
#full-screen-search,
#full-screen-search button,
#full-screen-search button.close{
    font-family: proxima-nova-soft, sans-serif;
    background:none;
    border:0 none;
    border-radius:0;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    float:none;
    font-size:100%;
    height:auto;
    letter-spacing:normal;
    list-style:none;
    outline:none;
    position:static;
    text-decoration:none;
    text-indent:0;
    text-shadow:none;
    text-transform:none;
    width:auto;
    visibility:visible;
    overflow:visible;
    margin:0;
    padding:0;
    line-height:1;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
    -ms-box-shadow:none;
    -o-box-shadow:none;
    box-shadow:none;
    -webkit-appearance:none;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
}

/**
* Background
*/
#full-screen-search {
   display:none;
    opacity: 0;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(231,239,207,1);

    /**
    * Add some CSS3 transitions for showing the Full Screen Search
    */
    transition: opacity 0.5s linear;
}

/**
* Display Full Screen Search when Open
*/
#full-screen-search.open {
    /**
    * Because we're using visibility and opacity for CSS transition support,
    * we define position: fixed; here so that the Full Screen Search doesn't block
    * the underlying HTML elements when not open
    */
    position: fixed;

    display:block;
    opacity: 1;
	overflow-y: scroll;
    margin-top: 55px;
}

.foobar-opened #full-screen-search {margin-top: 114px; height: 90%;}


/**
* Close Button
*/
#full-screen-search button.close {
    position: absolute;
    z-index: 100;
    top: 30px;
    right: 1%;
    font-size: 50px;
    font-weight: 400;
    color: rgba(69,69,68,1);
    cursor: pointer;
}




/**
* Search Form Input
*/
/*#full-screen-search form div input {
    width: 100%;
    height: 100px;
    background: #eee;
    padding: 20px;
    font-size: 40px;
    line-height: 60px;
    height: 70px!important;
}*/