/**
* Reset
* - Prevents Themes and other Plugins from applying their own styles to our full screen search
*/
#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 {
    font-family: 'IRANSans', Tahoma, sans-serif !important;
    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;

    visibility:visible;
    overflow:visible;

    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;
}
#full-screen-search-input::-moz-placeholder{
    font-family: 'IRANSans', Tahoma, sans-serif !important;
    font-size:18px !important;
    color:#aaa !important;
}

/**
* Background
*/
#full-screen-search {
    visibility: hidden;
    display: none;
    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.3s 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;
    visibility: visible;
    opacity: 1;
    display: unset;
}

/**
* 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: 300;
    color: #000 !important;
    cursor: pointer;
}

/**
* Search Form Div
*/
#full-screen-search form div {
    height: 100px;
    position: relative;
    }

/**
* Search Form Input Placeholder Color
*/
#full-screen-search form div input::-webkit-input-placeholder { 
    font-family: 'IRANSans', Tahoma, sans-serif !important;
    color: #ccc;
}
#full-screen-search form div input:-moz-placeholder { 
    font-family: 'IRANSans', Tahoma, sans-serif !important;
    color: #ccc;
}
#full-screen-search form div input::-moz-placeholder { 
    font-family: 'IRANSans', Tahoma, sans-serif !important;
    color: #ccc;
}
#full-screen-search form div input:-ms-input-placeholder { 
    font-family: 'IRANSans', Tahoma, sans-serif !important;
    color: #ccc;
}

/**
* Search Form Input
*/
#full-screen-search form div input {
    width: 100%;
    height: 60px;
    /*background: #eee;*/
    padding: 10px;
    font-size: 24px;
    line-height: 36px;
    border-bottom:solid 1px #dadada;

}
#full-screen-search form div input::before{
    content: '\70';
    font-family: 'Visual Composer Starter Font';

}
#full-screen-search-container{
    /*margin: unset !important;*/
}

#overlay-search-button{
    position: absolute !important;
    top:0 !important;
    left:0;

    background-color:#fff !important;
    padding:15px 20px !important;
    border-radius: 2px !important;
    border:solid 1px #ccc !important;
    font-size: 14px !important;
    border-bottom-width: 3px !important;
    color:#783dbe !important;
}
#full-screen-search > .container{
    padding-top:20vh !important;
}
#full-screen-search > .container h3.search-title{
    width:100% !important;
    font-size:20px !important;
    text-align:right !important;

}

body.en #full-screen-search > .container h3.search-title{
    width:100% !important;
    font-size:20px !important;
    text-align:left !important;
    direction:ltr !important;

}
#full-screen-search > .container h3.search-title::before{
    content: '\70';
    font-family: "Visual Composer Starter Font";
    font-size:36px !important;
    line-height: 60px !important;
    vertical-align: middle !important;
    color:#666 !important;
}
#full-screen-search-form{
    display:inline-block !important;
}
.vc_row.vc_column-gap-35 > .vc_column_container {
    padding: 27.5px !important;
}