/**
* Reset
* - Prevents Themes and other Plugins from applying their own styles to our full screen search
*/
#my-search-overlay,
#my-search-overlay button,
#my-search-overlay button.close,
#my-search-overlay form,
#my-search-overlay form div,
#my-search-overlay form div input,
#my-search-overlay form div input.search {
    font-family: Arial, 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
*/
#my-search-overlay {
    visibility: hidden;
    opacity: 0;
    z-index: 999998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);

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

/**
* Display Full Screen Search when Open
*/
#my-search-overlay.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;
    visibility: visible;
    opacity: 1;
}

/**
* Search Form
*/
#my-search-overlay form {
    position: relative;
    width: 100%;
    height: 100%;
}

/**
* Close Button
*/
#my-search-overlay button.close {
    position: absolute;
    z-index: 999999;
    top: 20px;
    right: 20px;
    font-size: 30px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    background: url(img/close3.svg); 
}

/**
* Search Form Div
*/
#my-search-overlay form div {
    position: absolute;
    width: 40%;
    height: 100px;
    top: 50%;
    left: 60%;
    margin: -100px 0 0 -30%;
    /* margin: -50px 0 0 -25%; */
}

/**
* Search Form Input Placeholder Color
*/
#my-search-overlay form div input::-webkit-input-placeholder { 
    font-family: Arial, sans-serif;
    color: #ccc;
}
#my-search-overlay form div input:-moz-placeholder { 
    font-family: Arial, sans-serif;
    color: #ccc;
}
#my-search-overlay form div input::-moz-placeholder { 
    font-family: Arial, sans-serif;
    color: #ccc;
}
#my-search-overlay form div input:-ms-input-placeholder { 
    font-family: Arial, sans-serif;
    color: #ccc;
}

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


/*SMALL - Phones landscape*/
@media (max-width: 767px) {  
   

    #my-search-overlay form div{
        width: 90%;
        left: 10%;
        margin: -100px 0 0 -10%;
    }

}