/**
* Reset
* - Prevents Themes and other Plugins from applying their own styles to our full screen search
*/
:root {
	--hblue: #00a7d1;
	--blue: #00aeef;
	--crimson: #ed1b2f;
	--aqua:#03c4fc;
	--clean:#75d535;
	--coda:#e500b2;
	--accentfont:"proxima-nova", sans-serif;

  }

#full-screen-search,
#full-screen-search button,
#full-screen-search button.close,
#full-screen-search form,
#full-screen-search form div,
#full-screen-search form div input,
#full-screen-search form div input.search {
    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;
    position: fixed;
    z-index: 999998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.5)
}


/**
* Search Form
*/

#full-screen-search form {
    position: relative;
    width: 100%;
    height: 100%;
}


/**
* Close Button
*/

#full-screen-search button.close {
    position: absolute;
    z-index: 999999;
    top: 20px;
    right: 20px;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background:var(--aqua);
    padding: 5px;
    border-radius: 5px
}


/**
* Search Form Div
*/

#full-screen-search form div {
    position: absolute;
    width: 50%;
    height: 100px;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -25%;
}


/**
* Search Form Input Placeholder Color
*/

#full-screen-search form div input::-webkit-input-placeholder {
    color: #ccc;
    font-weight: 400;
}

#full-screen-search form div input:-moz-placeholder {
    color: #ccc;
    font-weight: 400;
}

#full-screen-search form div input::-moz-placeholder {
    color: #ccc;
    font-weight: 400;
}

#full-screen-search form div input:-ms-input-placeholder {
    color: #ccc;
    font-weight: 400;
}


/**
* Search Form Input
*/

#full-screen-search form div input {
    width: 100%;
    height: 100px;
    background: #eee;
    padding: 20px;
    font-size: 30px;
    line-height: 1.5;
}