Plugin Directory

Changeset 2911182


Ignore:
Timestamp:
05/11/2023 01:06:50 PM (3 years ago)
Author:
mndpsingh287
Message:

v1.1.6

Location:
advance-search/trunk
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • advance-search/trunk/advance-search.php

    r2669548 r2911182  
    1515 * Plugin URI:        https://wordpress.org/plugins/advance-search
    1616 * Description:       Advanced Search Includes Search Form Customizer, WooCommerce Search, AJAX Search & Voice Search support! Advanced Search plugin adds to default WordPress search engine the ability to search by content, post types, attachments from selected fields and ACF plugin fields support.
    17  * Version:           1.1.5
     17 * Version:           1.1.6
    1818 * Author:            mndpsingh287
    1919 * Author URI:        https://profiles.wordpress.org/mndpsingh287/
     
    3333$plugin_name = 'advance-search';
    3434$plugin_text_domain = 'advance-search';
    35 $plugin_version = '1.1.5';
     35$plugin_version = '1.1.6';
    3636
    3737/**
  • advance-search/trunk/inc/admin/class-admin.php

    r2615768 r2911182  
    1616class Admin {
    1717
    18     protected $SERVER = 'http://ikon.digital/plugindata/api.php';
     18    protected $SERVER = 'https://www.tru.agency/api/plugindata/api.php';
    1919   
    2020    /**
     
    492492        // update form settings
    493493        if( isset( $_POST['wpas-search_setting'] ) && wp_verify_nonce( sanitize_text_field($_POST['wpas-search_setting']), 'search_form_settings') && current_user_can( 'manage_options' )) {
    494            
     494            $enable_special_character = isset($_POST['search_form_setting']['enable_special_character'])?sanitize_text_field(htmlentities(stripslashes($_POST['search_form_setting']['enable_special_character']))):'';
    495495            $post_type_array = array(
    496496                'post_types' => isset($_POST['search_form_setting']['post_types']['post_types']) ? array_map('sanitize_text_field',$_POST['search_form_setting']['post_types']['post_types']) : [],
     
    542542                                'font_size' => intval($_POST['search_form_setting']['styling']['search_input']['font_size']),
    543543                                'line_height' =>intval($_POST['search_form_setting']['styling']['search_input']['line_height']),
    544                                 'border_type' => intval($_POST['search_form_setting']['styling']['search_input']['border_type']),
     544                                'border_type' => sanitize_text_field(htmlentities(stripslashes($_POST['search_form_setting']['styling']['search_input']['border_type']))),
    545545                                'border_px' => sanitize_text_field(htmlentities(stripslashes($_POST['search_form_setting']['styling']['search_input']['border_px']))),
    546546                                'border_color' => sanitize_text_field(htmlentities(stripslashes($_POST['search_form_setting']['styling']['search_input']['border_color']))),
     
    575575                        ),
    576576                'search_type' => sanitize_text_field(htmlentities(stripslashes($_POST['search_form_setting']['search_type']))),
    577            
     577                'enable_special_character' =>$enable_special_character,
    578578            );
    579579
     
    674674          ),
    675675        'search_type' => 'partial_word',
     676        'enable_special_character'=>''
    676677        );
    677678
  • advance-search/trunk/inc/admin/css/advance-search-admin.css

    r2601509 r2911182  
    77
    88
    9 @font-face {
    10 font-family: 'PT Sans Regular';
    11 font-style: normal;
    12 font-weight: normal;
    13 src: local('PT Sans Regular'), url('font/PTS55F.woff') format('woff');
    14 }
    15 
    16 
    17 @font-face {
    18 font-family: 'PT Sans Italic';
    19 font-style: normal;
    20 font-weight: normal;
    21 src: local('PT Sans Italic'), url('font/PTS56F.woff') format('woff');
    22 }
    23 
    24 
    25 @font-face {
    26 font-family: 'PT Sans Bold';
    27 font-style: normal;
    28 font-weight: normal;
    29 src: local('PT Sans Bold'), url('font/PTS75F.woff') format('woff');
    30 }
    31 
    32 
    33 @font-face {
    34 font-family: 'PT Sans Bold Italic';
    35 font-style: normal;
    36 font-weight: normal;
    37 src: local('PT Sans Bold Italic'), url('font/PTS76F.woff') format('woff');
    38 }
    39 
    40 
    41 @font-face {
    42 font-family: 'PT Sans Caption Regular';
    43 font-style: normal;
    44 font-weight: normal;
    45 src: local('PT Sans Caption Regular'), url('font/PTC55F.woff') format('woff');
    46 }
    47 
    48 
    49 @font-face {
    50 font-family: 'PT Sans Narrow Regular';
    51 font-style: normal;
    52 font-weight: normal;
    53 src: local('PT Sans Narrow Regular'), url('font/PTN57F.woff') format('woff');
    54 }
    55 
    56 
    57 @font-face {
    58 font-family: 'PT Sans Caption Bold';
    59 font-style: normal;
    60 font-weight: normal;
    61 src: local('PT Sans Caption Bold'), url('font/PTC75F.woff') format('woff');
    62 }
    63 
    64 
    65 @font-face {
    66 font-family: 'PT Sans Narrow Bold';
    67 font-style: normal;
    68 font-weight: normal;
    69 src: local('PT Sans Narrow Bold'), url('font/PTN77F.woff') format('woff');
    70 }
    71 
    72 .marL10{
    73   margin-left:10px;
    74 }
    75 .wrap .wpas_search {
    76  width: 100%;
    77  float: left;
    78  margin: auto;
    79 }
    80 
    81 .wrap .wpas_search .wpas_search_left {
    82     width: 68%;
    83     float: left;
    84     display: inline;
    85 }
    86 .wrap .wpas_search .wpas_search_right {
    87     width: 100%;
    88     text-align: center;
    89     float: right;
    90     box-sizing: border-box;
    91     padding-top: 20px;
    92 }
    93 .wrap .wpas_search .wpas_search_right .submit{
    94   margin:0px;
    95   padding: 0;
    96 
    97 }
    98 .wrap .wpas_search a.back {
    99     background: url('../images/back-in-circle.svg') no-repeat 5px center;
    100     background-size: 20px;
    101 }
    102 
    103 .wrap .wpas_search a.statistics {
    104     background: url('../images/stat-in-circle.svg') no-repeat 5px center;
    105     background-size: 20px;
    106 }
    107 
    108 h4.title_heading {
    109     margin: 0;
    110     border-left: 2px solid #33b5e5;
    111     padding-left: 6px;
    112     box-shadow: 1px 1px 4px 0px #ccc;
    113     padding: 10px;
    114     margin-bottom: 15px;
    115     font-size: 14px;
    116 }
    117 span.icons_sec a i {
    118     color: #33b5e5;
    119 }
    120 .search_box_layout.search_button .searchBox_info .wp-picker-holder {
    121     position: relative !important;
    122     top: 0px !important;
    123 }
    124 .sep_section.exclude_Sec label {
    125     padding-right: 0px !important;
    126 }
    127 .sep_section.exclude_Sec input {
    128     margin-bottom: 0px !important;
    129     margin-top: 10px;
    130 }
    131 h4.title_heading.alert {
    132     border-left: 2px solid red;
    133 }
    134 .section_seprate {
    135   margin-bottom: 20px;
    136   float: left;
    137   width: 100%;
    138 }
    139 .sep_section {display: block; width: 100%; float: left;}
    140 .wrap .wpas_search .imp_link a {
    141   cursor: pointer;
    142     display: inline-block;
    143     text-transform: none;
    144     color: #fff;
    145     padding: 6px 16px 6px 35px;
    146     background-color: #33b5e5;
    147     text-decoration: none;
    148     outline: 0;
    149     border-radius: 5px;
    150 }
    151 .wrap .wpas_search .imp_link a:hover {
    152 background-color : #38a4cd;
    153 }
    154 
    155 a.go_pro_button {
    156     background-color: #ff3547 !important;
    157     padding: 6px 14px !important;
    158     color: #fff !important;
    159     text-decoration: none;
    160     outline: 0;
    161     border-radius: 5px;
    162 }
    163 a.go_pro_button:hover {
    164     background-color:#fc4757 !important;
    165 }
    166 .wrap .wpas_search .wpas_search_left input[type="text"] {
    167     background: #fff;
    168     border: 1px solid #ccc;
    169     width: 100%;
    170     font-size: 14px;
    171     padding: 12px 10px;
     9 @font-face {
     10  font-family: 'PT Sans Regular';
     11  font-style: normal;
     12  font-weight: normal;
     13  src: local('PT Sans Regular'), url('font/PTS55F.woff') format('woff');
     14  }
     15 
     16 
     17  @font-face {
     18  font-family: 'PT Sans Italic';
     19  font-style: normal;
     20  font-weight: normal;
     21  src: local('PT Sans Italic'), url('font/PTS56F.woff') format('woff');
     22  }
     23 
     24 
     25  @font-face {
     26  font-family: 'PT Sans Bold';
     27  font-style: normal;
     28  font-weight: normal;
     29  src: local('PT Sans Bold'), url('font/PTS75F.woff') format('woff');
     30  }
     31 
     32 
     33  @font-face {
     34  font-family: 'PT Sans Bold Italic';
     35  font-style: normal;
     36  font-weight: normal;
     37  src: local('PT Sans Bold Italic'), url('font/PTS76F.woff') format('woff');
     38  }
     39 
     40 
     41  @font-face {
     42  font-family: 'PT Sans Caption Regular';
     43  font-style: normal;
     44  font-weight: normal;
     45  src: local('PT Sans Caption Regular'), url('font/PTC55F.woff') format('woff');
     46  }
     47 
     48 
     49  @font-face {
     50  font-family: 'PT Sans Narrow Regular';
     51  font-style: normal;
     52  font-weight: normal;
     53  src: local('PT Sans Narrow Regular'), url('font/PTN57F.woff') format('woff');
     54  }
     55 
     56 
     57  @font-face {
     58  font-family: 'PT Sans Caption Bold';
     59  font-style: normal;
     60  font-weight: normal;
     61  src: local('PT Sans Caption Bold'), url('font/PTC75F.woff') format('woff');
     62  }
     63 
     64 
     65  @font-face {
     66  font-family: 'PT Sans Narrow Bold';
     67  font-style: normal;
     68  font-weight: normal;
     69  src: local('PT Sans Narrow Bold'), url('font/PTN77F.woff') format('woff');
     70  }
     71 
     72  .marL10{
     73    margin-left:10px;
     74  }
     75  .wrap .wpas_search {
     76   width: 100%;
     77   float: left;
     78   margin: auto;
     79  }
     80 
     81  .wrap .wpas_search .wpas_search_left {
     82      width: 68%;
     83      float: left;
     84      display: inline;
     85  }
     86  .wrap .wpas_search .wpas_search_right {
     87      width: 100%;
     88      text-align: center;
     89      float: right;
     90      box-sizing: border-box;
     91      padding-top: 20px;
     92  }
     93  .wrap .wpas_search .wpas_search_right .submit{
     94    margin:0px;
     95    padding: 0;
     96 
     97  }
     98  .wrap .wpas_search a.back {
     99      background: url('../images/back-in-circle.svg') no-repeat 5px center;
     100      background-size: 20px;
     101  }
     102 
     103  .wrap .wpas_search a.statistics {
     104      background: url('../images/stat-in-circle.svg') no-repeat 5px center;
     105      background-size: 20px;
     106  }
     107 
     108  h4.title_heading {
     109      margin: 0;
     110      border-left: 2px solid #33b5e5;
     111      padding-left: 6px;
     112      box-shadow: 1px 1px 4px 0px #ccc;
     113      padding: 10px;
     114      margin-bottom: 15px;
     115      font-size: 14px;
     116  }
     117  span.icons_sec a i {
     118      color: #33b5e5;
     119  }
     120  .search_box_layout.search_button .searchBox_info .wp-picker-holder {
     121      position: relative !important;
     122      top: 0px !important;
     123  }
     124  .sep_section.exclude_Sec label {
     125      padding-right: 0px !important;
     126  }
     127  .sep_section.exclude_Sec input {
     128      margin-bottom: 0px !important;
     129      margin-top: 10px;
     130  }
     131  h4.title_heading.alert {
     132      border-left: 2px solid red;
     133  }
     134  .section_seprate {
    172135    margin-bottom: 20px;
    173     border-radius: 5px;
    174 }
    175 
    176 ul {
    177   list-style: none;
    178   padding: 0;
    179 }
    180 
    181 ul .inner {
    182   padding-left: 1em;
    183   overflow: hidden;
    184   display: none;
    185 }
    186 
    187 ul li {
    188   margin: 0.5em 0;
    189 }
    190 
    191 ul li a.toggle {
    192   width: 100%;
    193   display: block;
    194   background: rgba(0, 0, 0, 0.78);
    195   color: #fefefe;
    196   padding: 0.75em;
    197   border-radius: 0.15em;
    198   transition: background 0.3s ease;
    199   text-decoration: none;
    200 }
    201 
    202 ul li a.toggle:hover {
    203   background: rgba(0, 0, 0, 0.9);
    204 }
    205 
    206 /**search Page**/
    207 .advance_serach_sec {
    208     float: left;
    209     width: 68%;
    210     margin-top: 20px;
    211     box-sizing: border-box;
    212 }
    213 .advance_serach_sec h3 {
    214     color: #333;
    215     font-size:18px;
    216     margin-top: 0px;
    217 }
    218 .advance_serach_sec .search_box {
    219   float: left;
    220   width: 100%;
    221   box-shadow:0px 0px 10px -2px rgba(000,000,000,.1);
    222   background:#fffcfc;
    223   padding:20px;
    224   margin-bottom:20px;
    225   box-sizing: border-box;
    226 }
    227 .advance_serach_sec  .search_box_list {
    228   float: right;
    229   width:100%;
    230   box-sizing: border-box;
    231   box-shadow:0px 0px 10px -2px rgba(000,000,000,.1);
    232   background:#fffcfc;
    233   padding:20px;
    234 }
    235 .advance_serach_sec .search_box form input {
    236     border: 1px solid #ccc;
    237     width: 300px;
    238     font-size: 14px;
    239     padding: 4px 10px;
    240     border-radius: 5px;
    241     float: left;
    242 }
    243 
    244 .advance_serach_sec .search_box form label {
    245     float: left;
    246     width: auto;
    247     padding: 12px 0;
    248     font-size: 13px;
    249     font-family: arial;
    250     color: #424040;
    251     margin-right: 20px;
    252 }
    253 .advance_serach_sec .search_box .submit input {
    254     border: 0px;
    255     padding: 4px 20px;
    256     color: #fff;
    257     font-size: 14px;
    258     border-radius: 5px;
    259     cursor: pointer;
    260     text-shadow: none;
    261     width: auto;
    262     font-weight: normal;
    263 }
    264 input#submit.pointer-event-none {
    265     pointer-events: none !important;
    266     opacity: 0.5;
    267 }
    268 input.btn-submit.pointer-event-none {
    269     pointer-events: none !important;
    270     opacity: 0.5;
    271 }
    272 .advance_serach_sec .search_box form .submit {
    273     float: left;
    274     padding: 0;
    275     margin: 0;
    276     margin-left: 20px;
    277 }
    278 .advance_serach_sec .secColInfo {
    279136    float: left;
    280137    width: 100%;
    281     border-top: 1px solid #f1f0f0;
    282     padding-top: 20px;
    283     margin-top: 20px;
    284 }
    285 
    286 .advance_serach_sec .secColInfo form label {
    287     min-width: 280px;
    288 }
    289 
    290 .advance_serach_sec .secColInfo form {
    291     width: 100%;
    292     float: left;
    293     margin: 6px 0;
    294 }
    295 
    296 .advance_serach_sec .secColInfo label {
    297   float: left;
    298   width: 100%;
    299   padding-bottom: 5px;
    300   font-size: 14px;
    301   font-family: arial;
    302   color: #424040;
    303 }
    304 .box_dropdown_advance {
    305     position: relative;
    306     float: left;
    307     width: 300px;
    308 }
    309 .box_dropdown_advance select {
    310     background-color:#7e858e;
    311     background-image: none;
    312     color: #fff !important;
    313     padding:5px 15px;
    314     width: 100%;
    315     border: none;
    316     font-size: 14px;
    317     -webkit-appearance: button;
    318     appearance: button;
    319     outline: none;
    320     position: relative;
    321     border-radius: 5px;
     138  }
     139  .sep_section {display: block; width: 100%; float: left;}
     140  .wrap .wpas_search .imp_link a {
    322141    cursor: pointer;
    323     -webkit-appearance: none;
    324     max-width: 100%;
    325 }
    326 .box_dropdown_advance select:focus{
    327   border-color:none;
    328   box-shadow: none;
    329 }
    330 .box_dropdown_advance::before {
    331   content: "\f13a";
    332   font-family: FontAwesome;
    333   position: absolute;
    334   top: 0;
    335   left: 0;
    336   width: 20%;
    337   height: 100%;
    338   text-align: center;
    339   font-size: 28px;
    340   line-height: 45px;
    341   color: rgba(255, 255, 255, 0.5);
    342   pointer-events: none;
    343 }
    344 .box_dropdown_advance::after {
    345     content: url(../images/arrow-white.svg);
    346     background-repeat: no-repeat;
    347     background-position: top center;
    348     font-family: FontAwesome;
    349     position: absolute;
    350     top: 0;
    351     right: 0;
    352     width: 12%;
    353     height: 100%;
    354     text-align: center;
    355     font-size: 28px;
    356     line-height: 25px;
    357     color: rgba(255, 255, 255, 0.5);
    358     background-color: rgba(255, 255, 255, 0.1);
    359     pointer-events: none;
    360     padding-top: 0;
    361 }
    362 .advance_serach_sec .search_box_list ul {
    363     padding-left: 0px;
     142      display: inline-block;
     143      text-transform: none;
     144      color: #fff;
     145      padding: 6px 16px 6px 35px;
     146      background-color: #33b5e5;
     147      text-decoration: none;
     148      outline: 0;
     149      border-radius: 5px;
     150  }
     151  .wrap .wpas_search .imp_link a:hover {
     152  background-color : #38a4cd;
     153  }
     154 
     155  a.go_pro_button {
     156      background-color: #ff3547 !important;
     157      padding: 6px 14px !important;
     158      color: #fff !important;
     159      text-decoration: none;
     160      outline: 0;
     161      border-radius: 5px;
     162  }
     163  a.go_pro_button:hover {
     164      background-color:#fc4757 !important;
     165  }
     166  .wrap .wpas_search .wpas_search_left input[type="text"] {
     167      background: #fff;
     168      border: 1px solid #ccc;
     169      width: 100%;
     170      font-size: 14px;
     171      padding: 12px 10px;
     172      margin-bottom: 20px;
     173      border-radius: 5px;
     174  }
     175 
     176  ul {
    364177    list-style: none;
    365     border: 1px solid #f4f4f5;
     178    padding: 0;
     179  }
     180 
     181  ul .inner {
     182    padding-left: 1em;
    366183    overflow: hidden;
    367     border-radius: 5px;
    368     max-height: 450px;
    369     overflow: auto;
    370     float: left;
    371     width: 100%;
    372     padding: 0;
    373     margin: 0;
    374 }
    375 .advance_serach_sec .search_box_list ul li:nth-child(2n+1) {
    376   background: #fff;
    377 }
    378 .advance_serach_sec .search_box_list ul li {
    379     font-size: 13px;
    380     color: #333;
    381     padding: 5px 10px;
    382     margin: 0px;
    383     background: #eff0f1;
    384 }
    385 .advance_serach_sec .search_box_list ul li input {
    386     border: 0px;
    387     background:#7e858e;
    388     text-align: center;
    389     color: #fff;
    390     /* max-width: auto;
    391     min-width: auto;
    392     min-height: auto;
    393     width: auto; */
    394     margin-left: 10px;
    395     border-radius: 5px;
    396 }
    397 .advance_serach_sec .search_box_list ul li span.icons_sec {
    398     padding-left: 20px;
    399     float: right;
    400     padding-top: 4px;
    401 }
    402 .advance_serach_sec .search_box_list ul li span.icons_sec a{
    403   height: 20px;
    404   display: inline-block;
    405   width: 20px;
    406 }
    407 .advance_serach_sec .search_box_list ul li span.icons_sec a:first-child{
    408   width: 17px;
    409 }
    410 
    411 .advance_serach_sec ul li a.toggle {
     184    display: none;
     185  }
     186 
     187  ul li {
     188    margin: 0.5em 0;
     189  }
     190 
     191  ul li a.toggle {
    412192    width: 100%;
    413193    display: block;
    414     background: #fff;
    415     color: #444;
    416     padding: 14px 15px;
     194    background: rgba(0, 0, 0, 0.78);
     195    color: #fefefe;
     196    padding: 0.75em;
    417197    border-radius: 0.15em;
    418198    transition: background 0.3s ease;
    419199    text-decoration: none;
    420     font-size: 14px;
    421     border-radius: 2px;
     200  }
     201 
     202  ul li a.toggle:hover {
     203    background: rgba(0, 0, 0, 0.9);
     204  }
     205 
     206  /**search Page**/
     207  .advance_serach_sec {
     208      float: left;
     209      width: 68%;
     210      margin-top: 20px;
     211      box-sizing: border-box;
     212  }
     213  .advance_serach_sec h3 {
     214      color: #333;
     215      font-size:18px;
     216      margin-top: 0px;
     217  }
     218  .advance_serach_sec .search_box {
     219    float: left;
     220    width: 100%;
     221    box-shadow:0px 0px 10px -2px rgba(000,000,000,.1);
     222    background:#fffcfc;
     223    padding:20px;
     224    margin-bottom:20px;
    422225    box-sizing: border-box;
    423     background: #FEFEFE;
    424     border: solid 1px #DDDDDD;
    425     outline: 0;
    426     position: relative;
    427 }
    428 
    429 .advance_serach_sec ul li .inner h3 {
    430     padding: 0;
    431     margin: 0;
    432     padding-bottom: 15px;
    433 }
    434 
    435 .advance_serach_sec ul li .inner {
    436     padding: 20px;
    437     border: 1px solid #ddd;
    438     border-bottom-left-radius: 5px;
    439     border-bottom-right-radius: 5px;
    440     margin-top: -2px;
    441     background: #fff;
    442     font-size:13px;
    443 }
    444 
    445 .advance_serach_sec ul li .inner label {
     226  }
     227  .advance_serach_sec  .search_box_list {
     228    float: right;
     229    width:100%;
     230    box-sizing: border-box;
     231    box-shadow:0px 0px 10px -2px rgba(000,000,000,.1);
     232    background:#fffcfc;
     233    padding:20px;
     234  }
     235  .advance_serach_sec .search_box form input {
     236      border: 1px solid #ccc;
     237      width: 300px;
     238      font-size: 14px;
     239      padding: 4px 10px;
     240      border-radius: 5px;
     241      float: left;
     242  }
     243 
     244  .advance_serach_sec .search_box form label {
     245      float: left;
     246      width: auto;
     247      padding: 12px 0;
     248      font-size: 13px;
     249      font-family: arial;
     250      color: #424040;
     251      margin-right: 20px;
     252  }
     253  .advance_serach_sec .search_box .submit input {
     254      border: 0px;
     255      padding: 4px 20px;
     256      color: #fff;
     257      font-size: 14px;
     258      border-radius: 5px;
     259      cursor: pointer;
     260      text-shadow: none;
     261      width: auto;
     262      font-weight: normal;
     263  }
     264  input#submit.pointer-event-none {
     265      pointer-events: none !important;
     266      opacity: 0.5;
     267  }
     268  input.btn-submit.pointer-event-none {
     269      pointer-events: none !important;
     270      opacity: 0.5;
     271  }
     272  .advance_serach_sec .search_box form .submit {
     273      float: left;
     274      padding: 0;
     275      margin: 0;
     276      margin-left: 20px;
     277  }
     278  .advance_serach_sec .secColInfo {
     279      float: left;
     280      width: 100%;
     281      border-top: 1px solid #f1f0f0;
     282      padding-top: 20px;
     283      margin-top: 20px;
     284  }
     285 
     286  .advance_serach_sec .secColInfo form label {
     287      min-width: 280px;
     288  }
     289 
     290  .advance_serach_sec .secColInfo form {
     291      width: 100%;
     292      float: left;
     293      margin: 6px 0;
     294  }
     295 
     296  .advance_serach_sec .secColInfo label {
    446297    float: left;
    447     width: auto;
     298    width: 100%;
    448299    padding-bottom: 5px;
    449300    font-size: 14px;
    450301    font-family: arial;
    451302    color: #424040;
    452     padding-top: 8px;
    453     padding-right: 10px;
    454 }
    455 .advance_serach_sec ul li .inner h4.nav-tab-wrapper {
    456     margin-top: 10px;
    457     padding-bottom: 10px;
     303  }
     304  .box_dropdown_advance {
     305      position: relative;
     306      float: left;
     307      width: 300px;
     308  }
     309  .box_dropdown_advance select {
     310      background-color:#7e858e;
     311      background-image: none;
     312      color: #fff !important;
     313      padding:5px 15px;
     314      width: 100%;
     315      border: none;
     316      font-size: 14px;
     317      -webkit-appearance: button;
     318      appearance: button;
     319      outline: none;
     320      position: relative;
     321      border-radius: 5px;
     322      cursor: pointer;
     323      -webkit-appearance: none;
     324      max-width: 100%;
     325  }
     326  .box_dropdown_advance select:focus{
     327    border-color:none;
     328    box-shadow: none;
     329  }
     330  .box_dropdown_advance::before {
     331    content: "\f13a";
     332    font-family: FontAwesome;
     333    position: absolute;
     334    top: 0;
     335    left: 0;
     336    width: 20%;
     337    height: 100%;
     338    text-align: center;
     339    font-size: 28px;
     340    line-height: 45px;
     341    color: rgba(255, 255, 255, 0.5);
     342    pointer-events: none;
     343  }
     344  .box_dropdown_advance::after {
     345      content: url(../images/arrow-white.svg);
     346      background-repeat: no-repeat;
     347      background-position: top center;
     348      font-family: FontAwesome;
     349      position: absolute;
     350      top: 0;
     351      right: 0;
     352      width: 12%;
     353      height: 100%;
     354      text-align: center;
     355      font-size: 28px;
     356      line-height: 25px;
     357      color: rgba(255, 255, 255, 0.5);
     358      background-color: rgba(255, 255, 255, 0.1);
     359      pointer-events: none;
     360      padding-top: 0;
     361  }
     362  .advance_serach_sec .search_box_list ul {
     363      padding-left: 0px;
     364      list-style: none;
     365      border: 1px solid #f4f4f5;
     366      overflow: hidden;
     367      border-radius: 5px;
     368      max-height: 450px;
     369      overflow: auto;
     370      float: left;
     371      width: 100%;
     372      padding: 0;
     373      margin: 0;
     374  }
     375  .advance_serach_sec .search_box_list ul li:nth-child(2n+1) {
     376    background: #fff;
     377  }
     378  .advance_serach_sec .search_box_list ul li {
     379      font-size: 13px;
     380      color: #333;
     381      padding: 5px 10px;
     382      margin: 0px;
     383      background: #eff0f1;
     384  }
     385  .advance_serach_sec .search_box_list ul li input {
     386      border: 0px;
     387      background:#7e858e;
     388      text-align: center;
     389      color: #fff;
     390      /* max-width: auto;
     391      min-width: auto;
     392      min-height: auto;
     393      width: auto; */
     394      margin-left: 10px;
     395      border-radius: 5px;
     396  }
     397  .advance_serach_sec .search_box_list ul li span.icons_sec {
     398      padding-left: 20px;
     399      float: right;
     400      padding-top: 4px;
     401  }
     402  .advance_serach_sec .search_box_list ul li span.icons_sec a{
     403    height: 20px;
     404    display: inline-block;
     405    width: 20px;
     406  }
     407  .advance_serach_sec .search_box_list ul li span.icons_sec a:first-child{
     408    width: 17px;
     409  }
     410 
     411  .advance_serach_sec ul li a.toggle {
     412      width: 100%;
     413      display: block;
     414      background: #fff;
     415      color: #444;
     416      padding: 14px 15px;
     417      border-radius: 0.15em;
     418      transition: background 0.3s ease;
     419      text-decoration: none;
     420      font-size: 14px;
     421      border-radius: 2px;
     422      box-sizing: border-box;
     423      background: #FEFEFE;
     424      border: solid 1px #DDDDDD;
     425      outline: 0;
     426      position: relative;
     427  }
     428 
     429  .advance_serach_sec ul li .inner h3 {
     430      padding: 0;
     431      margin: 0;
     432      padding-bottom: 15px;
     433  }
     434 
     435  .advance_serach_sec ul li .inner {
     436      padding: 20px;
     437      border: 1px solid #ddd;
     438      border-bottom-left-radius: 5px;
     439      border-bottom-right-radius: 5px;
     440      margin-top: -2px;
     441      background: #fff;
     442      font-size:13px;
     443  }
     444 
     445  .advance_serach_sec ul li .inner label {
     446      float: left;
     447      width: auto;
     448      padding-bottom: 5px;
     449      font-size: 14px;
     450      font-family: arial;
     451      color: #424040;
     452      padding-top: 8px;
     453      padding-right: 10px;
     454  }
     455  .advance_serach_sec ul li .inner h4.nav-tab-wrapper {
     456      margin-top: 10px;
     457      padding-bottom: 10px;
     458      float: left;
     459      width:100%;
     460      margin-bottom: 10px;
     461  }
     462  .wrap .wpas_search .wpas_search_left input[type="text"]{
     463      background: #fff;
     464      border: 1px solid #ccc;
     465      width: auto;
     466      font-size: 14px;
     467      padding: 4px 10px;
     468      margin-bottom: 20px;
     469      border-radius: 5px;
     470      float: left;
     471      width: 400px;
     472      padding-right: 50px;
     473  }
     474 
     475  .wrap .wpas_search .wpas_search_left .themeStyleSec input[type="text"]{
     476      background: #fff;
     477      border: 1px solid #ccc;
     478      width: auto;
     479      font-size: 14px;
     480      padding: 4px 10px;
     481      border-radius: 5px;
     482      float: left;
     483      width: 100px;
     484      padding-right: 50px;
     485  }
     486  .themeStyleSec .section_seprate {
     487      margin-top:20px;
     488  }
     489  .advance_serach_sec .search_box_list ul li span.num_style {
     490      padding-right: 5px;
     491  }
     492 
     493  .advance_serach_sec .search_box_list ul li span.icons_sec i {
     494      padding: 3px;
     495      position: relative;
     496      top: 1px;
     497  }
     498  .advance_serach_sec .search_box_list ul li span.content_style {
     499      width: 220px;
     500      display: inline-block;
     501  }
     502  p.content_Style {
     503      margin: 0;
     504      width: 100%;
     505      display: block;
     506      float: left;
     507      margin:8px 0px;
     508  }
     509  p.content_Style.warning {
     510      color: red;
     511  }
     512 
     513  .advance_serach_sec ul li a.toggle span.panel-icon {
     514      float: right;
     515      font-size: 20px;
     516      position: relative;
     517      top: -2px;
     518  }
     519 
     520  .advance_serach_sec ul li{
     521    position: relative;
     522    margin-bottom:10px;
     523  }
     524  .advance_serach_sec ul li input.checkbox_title1 {
     525    display: none;
     526  }
     527  .advance_serach_sec ul li a.toggle::after {   
     528      content: '';
     529      background: url(../images/plus.svg) no-repeat center center;
     530      position: absolute;
     531      right: 10px;
     532      top: 50%;
     533      color: #33b5e5;   
     534      height: 12px;
     535      width: 12px;
     536      transform: translateY(-50%);
     537      background-size: 100%;
     538  }
     539  .advance_serach_sec ul li a.toggle.active::after {
     540      content: '';
     541      background: url(../images/minus.svg) no-repeat center center;   
     542      position: absolute;
     543      right: 11px;
     544      top: 50%;
     545      color: #33b5e5;
     546      background-size: 100%;
     547  }
     548  .sideBar_Section {
     549      float: right;
     550      width: 30%;
     551      margin-top:13px;
     552  }
     553  .sideBar_Section .secColStyle h3{width: 100% !important; }
     554  .sideBar_Section .secColStyle {
     555      float: left;
     556      width: 100%;
     557      box-shadow: 0px 0px 10px -2px rgba(000,000,000,.1);
     558      background: #fffcfc;
     559      padding: 20px;
     560      margin-bottom: 20px;
     561      box-sizing: border-box;
     562      border-left:3px solid #33b5e5;
     563  }
     564  .sideBar_Section h3 {
     565      color: #333;
     566      font-weight: bold !important;
     567      font-size: 16px;
     568      margin-top: 0px;
     569      float: left;
     570      margin-right: 6px;
     571  }
     572 
     573  .sideBar_Section ul.social_links{
     574    margin-bottom:0px;
     575  }
     576  .sideBar_Section ul.social_links li {
     577      display: inline-block;
     578      margin-right: 3px;
     579  }
     580  .sideBar_Section ul.social_links li a {
     581      background: #3b5998;
     582      color: #fff;
     583      padding: 5px 10px;
     584      text-decoration: none;
     585      border-radius: 3px;
     586      margin-bottom: 10px;
     587  }
     588  .sideBar_Section ul.social_links li a:hover{
     589    opacity:0.8;
     590  }
     591  .sideBar_Section ul.social_links li a span{
     592    padding-left:5px;
     593  }
     594 
     595  .sideBar_Section ul.social_links li a.blue_clr_det{
     596    background:#00acee;
     597  }
     598 
     599  .accordion_section.advance_serach_sec {
     600      width: 100%;
     601  }
     602  .mb_0 {
     603      margin-bottom: 0px;
     604  }
     605  .pb_0 {
     606      padding-bottom:0px!important;
     607  }
     608  .advance_serach_sec ul li .inner label span.message_info {
     609      float: left;
     610      padding: 10px;
     611  }
     612  .advance_serach_sec ul li a.toggle i {
     613      margin-right: 5px;
     614      color: #33b5e5;
     615  }
     616  .statistics_searchSecDiv .statistics_demo {
     617      width: 100%;
     618  }
     619 
     620  .statistics_searchSecDiv form label {
     621      float: left;
     622      width: auto;
     623      padding:8px 0;
     624      font-size: 13px;
     625      font-family: arial;
     626      color: #424040;
     627      margin-right: 20px;
     628  }
     629  .statistics_searchSecDiv form.search_formDiv, .statistics_searchSecDiv form.clear_button{
    458630    float: left;
     631  }
     632  .statistics_searchSecDiv form.clear_button{
     633    margin-left:10px;
     634  }
     635  .statistics_searchSecDiv form.search_formDiv button {
     636      margin-left: 10px;
     637      padding:1px 15px;
     638      border-radius: 5px;
     639      font-size: 14px;
     640      border: 0px;
     641  }
     642  .statistics_searchSecDiv form.clear_button input{
     643      padding:1px 15px;
     644      border-radius: 5px;
     645      font-size: 14px;
     646      border: 0px;
     647  }
     648  .statistics_searchSecDiv .box_dropdown_advance {
     649      width: 145px;
     650  }
     651  .statistics_searchSecDiv .box_dropdown_advance select {
     652      padding: 2px 10px;
     653      border: 0;
     654  }
     655  .statistics_searchSecDiv .box_dropdown_advance::after{
     656    width:23%;
     657    line-height: 20px;
     658  }
     659 
     660  .wp-core-ui .button-primary.focus, .wp-core-ui .button-primary:focus {
     661      box-shadow: none;
     662  }
     663 
     664  .advance_serach_sec .chart-horiz {
     665      float: left;
     666      width: 100%;
     667      margin-bottom: 29px;
     668      border-bottom: 1px solid #ddd;
     669      padding-bottom: 15px;
     670  }
     671  .advance_serach_sec .chart-horiz .chart{
    459672    width:100%;
    460     margin-bottom: 10px;
    461 }
    462 .wrap .wpas_search .wpas_search_left input[type="text"]{
    463     background: #fff;
    464     border: 1px solid #ccc;
    465     width: auto;
    466     font-size: 14px;
    467     padding: 4px 10px;
    468     margin-bottom: 20px;
    469     border-radius: 5px;
    470     float: left;
    471     width: 400px;
    472     padding-right: 50px;
    473 }
    474 
    475 .wrap .wpas_search .wpas_search_left .themeStyleSec input[type="text"]{
    476     background: #fff;
    477     border: 1px solid #ccc;
    478     width: auto;
    479     font-size: 14px;
    480     padding: 4px 10px;
    481     border-radius: 5px;
    482     float: left;
    483     width: 100px;
    484     padding-right: 50px;
    485 }
    486 .themeStyleSec .section_seprate {
    487     margin-top:20px;
    488 }
    489 .advance_serach_sec .search_box_list ul li span.num_style {
    490     padding-right: 5px;
    491 }
    492 
    493 .advance_serach_sec .search_box_list ul li span.icons_sec i {
    494     padding: 3px;
     673  }
     674  .advance_serach_sec .chart-horiz .chart .bar {
     675    background: #329fc1;
     676    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
     677    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
     678    -webkit-background-size: 40px 40px;
     679    background-size: 40px 40px;
     680    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
     681    box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
     682  }
     683  .advance_serach_sec .chart-horiz .chart li {
     684      height: 30px;
     685  }
     686  .advance_serach_sec .chart-horiz .chart li .number {
     687      color: #000;
     688      font-size: 14px;
     689      font-weight: 500;
     690      padding-left: 5px;
     691      position: absolute;
     692      top: 0px;
     693      left: 0;
     694      border: 1px solid #2f90af;
     695      z-index: 9999;
     696      text-align: center;
     697      width: 100%;
     698      padding: 5px 0;
     699      box-sizing: border-box;
     700  }
     701  .advance_serach_sec .chart-horiz:last-child {
     702      border-bottom: 0px;
     703      margin: 0;
     704      padding: 0;
     705  }
     706  .themeStyleSec .search_box_layout .searchBox_info {
     707      float: left;
     708      width: 100%;
     709      margin-top: 0;
     710  }
     711  .themeStyleSec .search_box_layout .searchBox_info:first-child{
     712    padding-top:0px;
     713  }
     714  .advance_serach_sec ul li .inner .themeStyleSec h5 {
     715      margin: 0px;
     716      padding-bottom: 0px;
     717      font-size: 14px;
     718      margin-top: 11px;
     719      font-weight: 500;
     720  }
     721  .themeStyleSec .search_box_layout .searchBox_info ul li {
     722      display: inline-block;
     723  }
     724  .themeStyleSec .search_box_layout .searchBox_info ul li .col_liStle{
    495725    position: relative;
    496     top: 1px;
    497 }
    498 .advance_serach_sec .search_box_list ul li span.content_style {
    499     width: 220px;
    500     display: inline-block;
    501 }
    502 p.content_Style {
    503     margin: 0;
    504     width: 100%;
     726  }
     727  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li .col_liStle {
     728      margin-right: 10px;
     729  }
     730  .themeStyleSec .search_box_layout .searchBox_info ul li .col_liStle i {
     731      position: absolute;
     732      right: 10px;
     733      top: 13px;
     734  }
     735 
     736  .themeStyleSec .search_box_layout .searchBox_info ul.searchMBox span.pxValue {
     737      position: absolute;
     738      z-index: 9;
     739      right:30px;
     740      top: 8px;
     741  }
     742  .themeStyleSec .search_box_layout .searchBox_info ul li input {
     743      margin-bottom: 0px !important;
     744  }
     745  .themeStyleSec .search_box_layout .searchBox_info ul li {
     746      display: inline-block;
     747      margin-right: 3px;
     748      margin-bottom: 0px;
     749      vertical-align: top;
     750  }
     751  .themeStyleSec .search_box_layout .searchBox_info input[type="text"] {
     752      margin-bottom: 0px;
     753  }
     754  .themeStyleSec .search_box_layout .searchBox_info .wp-picker-open+.wp-picker-input-wrap label {
     755      margin-top: 0px;
     756      padding-top: 0;
     757  }
     758  .themeStyleSec .search_box_layout .searchBox_info .wp-picker-open+.wp-picker-input-wrap label input{
     759    padding:2px 10px;
     760    line-height: normal;
     761  }
     762  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox {
     763    margin-bottom:0px;
     764  }
     765  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li {
     766      vertical-align: top;
     767  }
     768  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li input.input_style {
     769      width: 90px;
     770      padding-right: 22px;
     771      padding: 3px 10px;
     772      line-height: normal;
     773      padding-right: 28px;
     774      line-height: 23px;
     775  }
     776  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li span.pxValue.nwPxValue {
     777      right: 10px;
     778      top: 5px;
     779  }
     780  .themeStyleSec .search_box_layout .search_box_height.searchBox_info input {
     781      padding: 4px 30px 4px 10px;
     782  }
     783  .themeStyleSec .search_box_layout .search_box_height.searchBox_info input + span.pxValue {
     784      right: 10px;
     785  }
     786  .advance_serach_sec ul li .inner label.el-switch{
     787    margin-bottom:5px;
     788  }
     789  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li .box_dropdown_advance {
     790      width: 110px;
     791  }
     792  .themeStyleSec .search_box_layout .search_box_border.searchBox_info
     793  ul.searchMBox li .box_dropdown_advance select{
     794      padding:2px 10px;
     795  }
     796  .themeStyleSec .search_box_layout .search_box_border.searchBox_info
     797  ul.searchMBox li .box_dropdown_advance:after{
     798    width:26px;
     799    line-height: 22px;
     800  }
     801  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox
     802  li .wp-picker-container{
     803    position: relative;
     804  }
     805  .themeStyleSec .search_box_layout .search_box_border.searchBox_info
     806  ul.searchMBox li .wp-picker-holder {
     807      position: absolute;
     808      top: 33px;
     809      left: 0;
     810      width: 100%;
     811      z-index: 99;
     812  }
     813  .themeStyleSec .search_box_layout .search_box_width.searchBox_info ul li input {
     814      padding-right: 28px;
     815  }
     816  .search_input_layout.search_box_layout .searchBox_info:first-child {
     817      padding-top: 15px;
     818  }
     819  .search_input_layout.search_box_layout .searchBox_info h3{
     820    padding-bottom:0px;
     821  }
     822  .wp-core-ui .button-group.button-small .button, .wp-core-ui .button.button-small{
     823    padding:2px 8px;
     824  }
     825 
     826  .themeStyleSec .search_input_layout.search_box_layout ul.searchMBox li input.input_style {
     827      width: 90px;
     828      padding-right: 22px;
     829      padding: 3px 10px;
     830      line-height: normal;
     831      padding-right: 28px;
     832  }
     833  .themeStyleSec .search_input_layout.search_box_layout ul.searchMBox li span.pxValue.nwPxValue {
     834      right: 10px;
     835      top: 5px;
     836  }
     837 
     838  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox label {
     839      padding-top: 6px;
     840  }
     841  .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li label {
     842      padding-top: 6px;
     843  }
     844  .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li .wp-picker-container span.wp-picker-input-wrap label {
     845      padding-top: 0;
     846  }
     847 
     848  .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .col_liStle{
     849    margin-right:10px;
     850  }
     851  .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .box_dropdown_advance{
     852      width: 110px;
     853  }
     854  .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .box_dropdown_advance select{
     855      padding: 2px 10px;
     856  }
     857 
     858  .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .box_dropdown_advance:after {
     859      width: 26px;
     860      line-height: 22px;
     861  }
     862  .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox.newBoxSearch{
     863    margin-top:20px;
     864  }
     865 
     866  .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .wp-picker-container{
     867    position: relative;
     868  }
     869  .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li  .wp-picker-holder {
     870      position: absolute;
     871      top: 33px;
     872      left: 0;
     873      width: 100%;
     874      z-index: 99;
     875  }
     876  .themeStyleSec .loading_icon.search_box_layout .searchBox_info {
     877      padding-top: 10px;
     878  }
     879  .themeStyleSec .loading_icon.search_box_layout .col_liStle {
     880      float: left;
     881      width: 100%;
     882      margin-top: 10px;
     883  }
     884  .themeStyleSec .loading_icon.search_box_layout .searchBox_info  .box_dropdown_advance {
     885      width: 140px;
     886  }
     887  .themeStyleSec .loading_icon.search_box_layout .searchBox_info  .box_dropdown_advance select{
     888    padding:2px 10px;
     889  }
     890  .themeStyleSec .loading_icon.search_box_layout .searchBox_info  .box_dropdown_advance:after {
     891      width: 26px;
     892      line-height: 21px;
     893  }
     894  .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li {
     895      margin-right: 10px;
     896      vertical-align: top;
     897      margin-top: 0px;
     898      background: #7e858e;
     899      height: 31px;
     900      width: 31px;
     901      margin-bottom:15px;
     902      border: 2px solid #333;
     903      text-align: center;
     904  }
     905  .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li .lds-dual-ring:after{
     906    width:38px;
     907    height:38px;
     908  }
     909  .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li .sbl-circ {
     910      height: 14px;
     911      width: 14px;
     912      margin-top:7px;
     913      color: #fff;
     914  }
     915  .lds-dual-ring:after {
     916      border: 7px solid #fff!important;
     917      border-color: #fff transparent #fff transparent!important;
     918      animation: lds-dual-ring 1.2s linear infinite!important;
     919  }
     920  .lds-hourglass:after {
     921      border: 27px solid #fff!important;;
     922      border-color: #fff transparent #fff transparent!important;
     923      animation: lds-hourglass 1.2s infinite!important;
     924  }
     925  .sbl-circ-path {
     926      height: 44px!important;
     927      width: 44px!important;
     928      color: rgba(90, 90, 90, 0.6)!important;
     929      border-right-color: #fff!important;
     930      animation: rotate 1s linear infinite!important;
     931      margin-top: 8px;
     932  }
     933  .sbl-circ-ripple {
     934      color: #fff!important;
     935      margin-top: 10px!important;
     936  }
     937  .sbl-sticks-spin {
     938    margin-top:10px;
     939    background: #fff!important;
     940  }
     941  .loader04 {
     942      width: 45px!important;
     943      height: 45px!important;
     944      border: 2px solid #fff!important;
     945      margin-top: 10px;
     946      margin-left: 11px;
     947  }
     948  .loader04::after{
     949    background:#fff!important;
     950  }
     951  .loader05 {
     952      width: 50px!important;
     953      height: 50px!important;
     954      border: 4px solid #fff !important;
     955      margin: 5px;
     956  }
     957  .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li.active{
     958   background: #329fc1;
     959  }
     960  .themeStyleSec .search_box_layout.search_button .col_liStle {
     961      margin-bottom: 10px;
     962      float: left;
     963      width: 100%;
     964  }
     965  .themeStyleSec .search_box_layout.search_button  .col_liStle ul.searchMBox input.input_style {
     966      width: 90px;
     967      padding-right: 22px;
     968      padding: 3px 10px;
     969      line-height: normal;
     970      padding-right: 28px;
     971  }
     972  .themeStyleSec .search_box_layout.search_button  .col_liStle ul.searchMBox  span.pxValue {
     973      position: absolute;
     974      z-index: 9;
     975      right: 10px;
     976      top:5px;
     977  }
     978  .themeStyleSec .search_box_layout.search_button  .col_liStle ul li input.serach_input_style {
     979      width: auto;
     980      padding:0px 10px;
     981  }
     982  .themeStyleSec .search_box_layout.search_button  .col_liStle ul li .wp-picker-container{
     983    position: relative;
     984  }
     985  .themeStyleSec .search_box_layout.search_button  .col_liStle ul li .wp-picker-holder {
     986      position: absolute;
     987      top: 33px;
     988      left: 0;
     989      width: 100%;
     990      z-index: 99;
     991  }
     992  .themeStyleSec .search_box_layout.search_button .searchBox_info:first-child {
     993      padding-top: 10px;
     994      border: 0px;
     995      margin: 0;
     996  }
     997 
     998  .themeStyleSec .loading_icon.search_box_layout .searchBox_info .col_liStle .wp-picker-container{
     999    position: relative;
     1000  }
     1001  .themeStyleSec .loading_icon.search_box_layout .searchBox_info .col_liStle .wp-picker-container
     1002  .wp-picker-holder{
     1003      position: absolute;
     1004      top: 33px;
     1005      left: 0;
     1006      width: 100%;
     1007      z-index: 99;
     1008  }
     1009  .themeStyleSec .loading_icon.search_box_layout .searchBox_info .col_liStle .wp-picker-container{
     1010      position: relative;
     1011  }
     1012  .loading_icon.search_box_layout .wp-picker-container {
     1013      position: relative;
     1014  }
     1015  .loading_icon.search_box_layout .wp-picker-container.wp-picker-active .wp-picker-holder {
     1016      position: absolute;
     1017      top: 34px;
     1018      left: 0;
     1019      width: 100%;
     1020      z-index: 9;
     1021  }
     1022  ul.magnifier_icon_design li {
     1023    background: #eee;
     1024    padding: 2px;
     1025    height: 25px;
     1026    width: 25px;
     1027    text-align: center;
     1028    border: 1px solid #ddd;
     1029    margin-bottom: 5px !important;
     1030    line-height: 24px;
     1031  }
     1032  ul.magnifier_icon_design li.active {
     1033    background: #333;
     1034  }
     1035  ul.magnifier_icon_design li.active i{
     1036    color: #fff;
     1037  }
     1038  .advance_serach_sec ul li .inner label.lable_magn {
     1039      padding-top: 9px;
     1040  }
     1041  /***checkbox***/
     1042  label.checkbox_style {
    5051043    display: block;
    506     float: left;
    507     margin:8px 0px;
    508 }
    509 p.content_Style.warning {
    510     color: red;
    511 }
    512 
    513 .advance_serach_sec ul li a.toggle span.panel-icon {
    514     float: right;
    515     font-size: 20px;
    5161044    position: relative;
    517     top: -2px;
    518 }
    519 
    520 .advance_serach_sec ul li{
    521   position: relative;
    522   margin-bottom:10px;
    523 }
    524 .advance_serach_sec ul li input.checkbox_title1 {
    525   display: none;
    526 }
    527 .advance_serach_sec ul li a.toggle::after {   
    528     content: '';
    529     background: url(../images/plus.svg) no-repeat center center;
     1045    padding-left: 27px;
     1046    margin-bottom: 5px;
     1047    cursor: pointer;
     1048    font-size: 22px;
     1049    -webkit-user-select: none;
     1050    -moz-user-select: none;
     1051    -ms-user-select: none;
     1052    user-select: none;
     1053    padding-top: 2px;
     1054    margin-bottom:0px!important;
     1055  }
     1056 
     1057  /* Hide the browser's default checkbox */
     1058  .checkbox_style input {
    5301059    position: absolute;
    531     right: 10px;
    532     top: 50%;
    533     color: #33b5e5;   
    534     height: 12px;
    535     width: 12px;
    536     transform: translateY(-50%);
    537     background-size: 100%;
    538 }
    539 .advance_serach_sec ul li a.toggle.active::after {
    540     content: '';
    541     background: url(../images/minus.svg) no-repeat center center;   
    542     position: absolute;
    543     right: 11px;
    544     top: 50%;
    545     color: #33b5e5;
    546     background-size: 100%;
    547 }
    548 .sideBar_Section {
    549     float: right;
    550     width: 30%;
    551     margin-top:13px;
    552 }
    553 .sideBar_Section .secColStyle h3{width: 100% !important; }
    554 .sideBar_Section .secColStyle {
    555     float: left;
    556     width: 100%;
    557     box-shadow: 0px 0px 10px -2px rgba(000,000,000,.1);
    558     background: #fffcfc;
    559     padding: 20px;
    560     margin-bottom: 20px;
    561     box-sizing: border-box;
    562     border-left:3px solid #33b5e5;
    563 }
    564 .sideBar_Section h3 {
    565     color: #333;
    566     font-weight: bold !important;
    567     font-size: 16px;
    568     margin-top: 0px;
    569     float: left;
    570     margin-right: 6px;
    571 }
    572 
    573 .sideBar_Section ul.social_links{
    574   margin-bottom:0px;
    575 }
    576 .sideBar_Section ul.social_links li {
    577     display: inline-block;
    578     margin-right: 3px;
    579 }
    580 .sideBar_Section ul.social_links li a {
    581     background: #3b5998;
    582     color: #fff;
    583     padding: 5px 10px;
    584     text-decoration: none;
    585     border-radius: 3px;
    586     margin-bottom: 10px;
    587 }
    588 .sideBar_Section ul.social_links li a:hover{
    589   opacity:0.8;
    590 }
    591 .sideBar_Section ul.social_links li a span{
    592   padding-left:5px;
    593 }
    594 
    595 .sideBar_Section ul.social_links li a.blue_clr_det{
    596   background:#00acee;
    597 }
    598 
    599 .accordion_section.advance_serach_sec {
    600     width: 100%;
    601 }
    602 .mb_0 {
    603     margin-bottom: 0px;
    604 }
    605 .pb_0 {
    606     padding-bottom:0px!important;
    607 }
    608 .advance_serach_sec ul li .inner label span.message_info {
    609     float: left;
    610     padding: 10px;
    611 }
    612 .advance_serach_sec ul li a.toggle i {
    613     margin-right: 5px;
    614     color: #33b5e5;
    615 }
    616 .statistics_searchSecDiv .statistics_demo {
    617     width: 100%;
    618 }
    619 
    620 .statistics_searchSecDiv form label {
    621     float: left;
    622     width: auto;
    623     padding:8px 0;
    624     font-size: 13px;
    625     font-family: arial;
    626     color: #424040;
    627     margin-right: 20px;
    628 }
    629 .statistics_searchSecDiv form.search_formDiv, .statistics_searchSecDiv form.clear_button{
    630   float: left;
    631 }
    632 .statistics_searchSecDiv form.clear_button{
    633   margin-left:10px;
    634 }
    635 .statistics_searchSecDiv form.search_formDiv button {
    636     margin-left: 10px;
    637     padding:1px 15px;
    638     border-radius: 5px;
    639     font-size: 14px;
    640     border: 0px;
    641 }
    642 .statistics_searchSecDiv form.clear_button input{
    643     padding:1px 15px;
    644     border-radius: 5px;
    645     font-size: 14px;
    646     border: 0px;
    647 }
    648 .statistics_searchSecDiv .box_dropdown_advance {
    649     width: 145px;
    650 }
    651 .statistics_searchSecDiv .box_dropdown_advance select {
    652     padding: 2px 10px;
    653     border: 0;
    654 }
    655 .statistics_searchSecDiv .box_dropdown_advance::after{
    656   width:23%;
    657   line-height: 20px;
    658 }
    659 
    660 .wp-core-ui .button-primary.focus, .wp-core-ui .button-primary:focus {
    661     box-shadow: none;
    662 }
    663 
    664 .advance_serach_sec .chart-horiz {
    665     float: left;
    666     width: 100%;
    667     margin-bottom: 29px;
    668     border-bottom: 1px solid #ddd;
    669     padding-bottom: 15px;
    670 }
    671 .advance_serach_sec .chart-horiz .chart{
    672   width:100%;
    673 }
    674 .advance_serach_sec .chart-horiz .chart .bar {
    675   background: #329fc1;
    676   background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    677   background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    678   -webkit-background-size: 40px 40px;
    679   background-size: 40px 40px;
    680   -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    681   box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    682 }
    683 .advance_serach_sec .chart-horiz .chart li {
    684     height: 30px;
    685 }
    686 .advance_serach_sec .chart-horiz .chart li .number {
    687     color: #000;
    688     font-size: 14px;
    689     font-weight: 500;
    690     padding-left: 5px;
     1060    opacity: 0;
     1061    cursor: pointer;
     1062    height: 0;
     1063    width: 0 !important;
     1064  }
     1065 
     1066  /* Create a custom checkbox */
     1067  .checkbox_style .checkmark {
    6911068    position: absolute;
    6921069    top: 0px;
    6931070    left: 0;
    694     border: 1px solid #2f90af;
    695     z-index: 9999;
    696     text-align: center;
    697     width: 100%;
    698     padding: 5px 0;
     1071    height: 17px;
     1072    width: 17px;
     1073    background-color: #eee;
     1074    border: 1px solid #ccc;
     1075  }
     1076 
     1077  /* On mouse-over, add a grey background color */
     1078  .checkbox_style:hover input ~ .checkmark {
     1079    background-color: #ccc;
     1080  }
     1081 
     1082  /* When the checkbox is checked, add a blue background */
     1083  .checkbox_style input:checked ~ .checkmark {
     1084    background-color: #000;
     1085  }
     1086 
     1087  /* Create the checkmark/indicator (hidden when not checked) */
     1088  .checkbox_style .checkmark:after {
     1089    content: "";
     1090    position: absolute;
     1091    display: none;
     1092  }
     1093 
     1094  /* Show the checkmark when checked */
     1095  .checkbox_style input:checked ~ .checkmark:after {
     1096    display: block;
     1097  }
     1098 
     1099  /* Style the checkmark/indicator */
     1100  .checkbox_style .checkmark::after {
     1101    left: 6px;
     1102    top: 1px;
     1103    width: 4px;
     1104    height: 9px;
     1105    border: solid white;
     1106    border-width: 0 3px 3px 0;
     1107    -webkit-transform: rotate(45deg);
     1108    -ms-transform: rotate(45deg);
     1109    transform: rotate(45deg);
     1110  }
     1111  .chart{zoom:1;width:90%}
     1112  .chart:after{clear:both;content:'.';display:block;height:0;visibility:hidden}
     1113  .chart li{display:block;height:23px;margin-top:3px;position:relative}
     1114  .chart li:before{color:#fff;content:attr(title);left:5px;position:absolute}
     1115  .chart li.title:before{color:black;font-weight:bold;left:0}
     1116  .chart li:first-child{margin-top:0}
     1117  .chart li .bar{background:black;height:100%}
     1118  .chart li .number {
     1119      color: green;
     1120      font-size: 18px;
     1121      font-weight: bold;
     1122      padding-left: 5px;
     1123      position: absolute;
     1124      top: 0px;
     1125      left: 0;
     1126      border: 1px solid red;
     1127      z-index: 9999999;
     1128      text-align: center;
     1129      width: 100%;
     1130      padding: 2px 0;
     1131  }
     1132 
     1133  .chart li.past .bar{background:#aaa}
     1134  .chart li.past .number{color:#aaa}
     1135 
     1136 
     1137 
     1138 
     1139  /*****************************************************/
     1140 
     1141        /*********** checkbox / radio ************/
     1142 
     1143  /*****************************************************/
     1144 
     1145 
     1146  /*checkbox radio component*/
     1147 
     1148  .el-radio,
     1149  .el-checkbox {
     1150    position: relative;
     1151    font-size: 100%;
     1152  }
     1153  label.el-radio,
     1154  label.el-checkbox {
     1155    display: block;
     1156    cursor: pointer;
     1157  }
     1158  .el-radio > input[type="radio"],
     1159  .el-checkbox > input[type="checkbox"] {
     1160    display: none;
     1161  }
     1162  .el-radio > input[type="radio"][disabled],
     1163  .el-checkbox > input[type="checkbox"][disabled] {
     1164    cursor: not-allowed;
     1165  }
     1166  .el-radio > input[type="radio"] + .el-radio-style,
     1167  .el-checkbox > input[type="checkbox"] + .el-checkbox-style {
     1168    position: relative;
     1169    display: inline-block;
     1170    width: 1.4em;
     1171    height: 1.4em;
     1172    vertical-align: middle;
     1173    cursor: pointer;
     1174  }
     1175  .el-radio > input[type="radio"] + .el-radio-style:hover:before,
     1176  .el-checkbox > input[type="checkbox"] + .el-checkbox-style:hover:before {
     1177    border-color: #20a0ff;
     1178  }
     1179  .el-radio > input[type="radio"] + .el-radio-style:before,
     1180  .el-checkbox > input[type="checkbox"] + .el-checkbox-style:before {
     1181    position: absolute;
     1182    top: 0;
     1183    left: 0;
     1184    display: inline-block;
     1185    width: 1.4em;
     1186    height: 1.4em;
     1187    content: '';
     1188    border: 1px solid #C0CCDA;
     1189  }
     1190  .el-radio > input[type="radio"] + .el-radio-style:after,
     1191  .el-checkbox > input[type="checkbox"] + .el-checkbox-style:after {
     1192    position: absolute;
     1193    display: none;
     1194    content: '';
     1195  }
     1196  .el-radio > input[type="radio"][disabled] + .el-radio-style,
     1197  .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style {
     1198    cursor: not-allowed;
     1199    color: #D3DCE6;
     1200  }
     1201  .el-radio > input[type="radio"][disabled] + .el-radio-style:hover,
     1202  .el-radio > input[type="radio"][disabled] + .el-radio-style:before,
     1203  .el-radio > input[type="radio"][disabled] + .el-radio-style:after,
     1204  .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:hover,
     1205  .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:before,
     1206  .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:after {
     1207    cursor: not-allowed;
     1208  }
     1209  .el-radio > input[type="radio"][disabled] + .el-radio-style:hover:before,
     1210  .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:hover:before {
     1211    border: 1px solid #D3DCE6;
     1212    animation-name: none;
     1213  }
     1214  .el-radio > input[type="radio"][disabled] + .el-radio-style:before,
     1215  .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:before {
     1216    border-color: #D3DCE6;
     1217  }
     1218  .el-radio > input[type="radio"]:checked + .el-radio-style:before,
     1219  .el-checkbox > input[type="checkbox"]:checked + .el-checkbox-style:before {
     1220    animation-name: none;
     1221  }
     1222  .el-radio > input[type="radio"]:checked + .el-radio-style:after,
     1223  .el-checkbox > input[type="checkbox"]:checked + .el-checkbox-style:after {
     1224    display: block;
     1225  }
     1226  .el-radio > input[type="radio"] + .el-radio-style:before {
     1227    border-radius: 50%;
     1228  }
     1229  .el-radio > input[type="radio"] + .el-radio-style:after {
     1230    top: 0.4em;
     1231    left: 0.4em;
     1232    width: 0.6em;
     1233    height: 0.6em;
     1234    border-radius: 50%;
     1235    background: #20a0ff;
     1236  }
     1237  .el-radio > input[type="radio"]:checked + .el-radio-style:before {
     1238    border: 1px solid #20a0ff;
     1239  }
     1240  .el-radio > input[type="radio"]:checked[disabled] + .el-radio-style:before {
     1241    border: 1px solid #b0d7f5;
     1242  }
     1243  .el-radio > input[type="radio"]:checked[disabled] + .el-radio-style:after {
     1244    background: #b0d7f5;
     1245  }
     1246  .el-checkbox > input[type="checkbox"] + .el-checkbox-style:before {
     1247    border-radius: 3px;
     1248  }
     1249  .el-checkbox > input[type="checkbox"] + .el-checkbox-style:after {
     1250    top: 0.15em;
     1251    left: 0.5em;
    6991252    box-sizing: border-box;
    700 }
    701 .advance_serach_sec .chart-horiz:last-child {
    702     border-bottom: 0px;
    703     margin: 0;
    704     padding: 0;
    705 }
    706 .themeStyleSec .search_box_layout .searchBox_info {
     1253    width: 0.4em;
     1254    height: 0.85em;
     1255    transform: rotate(45deg);
     1256    border-right: 2px solid #fff;
     1257    border-bottom: 2px solid #fff;
     1258  }
     1259  .el-checkbox > input[type="checkbox"]:checked + .el-checkbox-style:before {
     1260    border: #20a0ff;
     1261    background: #20a0ff;
     1262  }
     1263  .el-checkbox > input[type="checkbox"]:checked[disabled] + .el-checkbox-style:before {
     1264    border: #b0d7f5;
     1265    background: #b0d7f5;
     1266  }
     1267  /*blue theme*/
     1268  .el-radio.el-radio-blue > input[type="radio"] + label:hover:before,
     1269  .el-checkbox.el-checkbox-blue > input[type="checkbox"] + label:hover:before,
     1270  .el-radio.el-radio-blue > input[type="radio"]:checked + label:before,
     1271  .el-checkbox.el-checkbox-blue > input[type="checkbox"]:checked + label:before {
     1272    border-color: #20a0ff;
     1273  }
     1274  .el-checkbox.el-checkbox-blue > input[type="checkbox"]:checked + label:before,
     1275  .el-radio.el-radio-blue > input[type="radio"] + label:after {
     1276    background: #20a0ff;
     1277  }
     1278  .el-radio.el-radio-blue > input[type="radio"][disabled] + label:hover:before,
     1279  .el-checkbox.el-checkbox-blue > input[type="checkbox"][disabled] + label:hover:before {
     1280    border-color: #D3DCE6;
     1281  }
     1282  .el-checkbox.el-checkbox-blue > input[type="checkbox"]:checked[disabled] + label:before,
     1283  .el-radio.el-radio-blue > input[type="radio"]:checked[disabled] + label:before {
     1284    border-color: #b0d7f5;
     1285  }
     1286  .el-checkbox.el-checkbox-blue > input[type="checkbox"][disabled]:checked + label:before,
     1287  .el-radio.el-radio-blue > input[type="radio"]:checked[disabled] + label:after {
     1288    background: #b0d7f5;
     1289  }
     1290  /*green theme*/
     1291  .el-radio.el-radio-green > input[type="radio"] + label:hover:before,
     1292  .el-checkbox.el-checkbox-green > input[type="checkbox"] + label:hover:before,
     1293  .el-radio.el-radio-green > input[type="radio"]:checked + label:before,
     1294  .el-checkbox.el-checkbox-green > input[type="checkbox"]:checked + label:before {
     1295    border-color: #13ce66;
     1296  }
     1297  .el-checkbox.el-checkbox-green > input[type="checkbox"]:checked + label:before,
     1298  .el-radio.el-radio-green > input[type="radio"] + label:after {
     1299    background: #13ce66;
     1300  }
     1301  .el-radio.el-radio-green > input[type="radio"][disabled] + label:hover:before,
     1302  .el-checkbox.el-checkbox-green > input[type="checkbox"][disabled] + label:hover:before {
     1303    border-color: #D3DCE6;
     1304  }
     1305  .el-checkbox.el-checkbox-green > input[type="checkbox"]:checked[disabled] + label:before,
     1306  .el-radio.el-radio-green > input[type="radio"]:checked[disabled] + label:before {
     1307    border-color: #a1efc4;
     1308  }
     1309  .el-checkbox.el-checkbox-green > input[type="checkbox"][disabled]:checked + label:before,
     1310  .el-radio.el-radio-green > input[type="radio"]:checked[disabled] + label:after {
     1311    background: #a1efc4;
     1312  }
     1313  /*red theme*/
     1314  .el-radio.el-radio-red > input[type="radio"] + label:hover:before,
     1315  .el-checkbox.el-checkbox-red > input[type="checkbox"] + label:hover:before,
     1316  .el-radio.el-radio-red > input[type="radio"]:checked + label:before,
     1317  .el-checkbox.el-checkbox-red > input[type="checkbox"]:checked + label:before {
     1318    border-color: #ff4949;
     1319  }
     1320  .el-checkbox.el-checkbox-red > input[type="checkbox"]:checked + label:before,
     1321  .el-radio.el-radio-red > input[type="radio"] + label:after {
     1322    background: #ff4949;
     1323  }
     1324  .el-radio.el-radio-red > input[type="radio"][disabled] + label:hover:before,
     1325  .el-checkbox.el-checkbox-red > input[type="checkbox"][disabled] + label:hover:before {
     1326    border-color: #D3DCE6;
     1327  }
     1328  .el-checkbox.el-checkbox-red > input[type="checkbox"]:checked[disabled] + label:before,
     1329  .el-radio.el-radio-red > input[type="radio"]:checked[disabled] + label:before {
     1330    border-color: #f9b3b3;
     1331  }
     1332  .el-checkbox.el-checkbox-red > input[type="checkbox"][disabled]:checked + label:before,
     1333  .el-radio.el-radio-red > input[type="radio"]:checked[disabled] + label:after {
     1334    background: #f9b3b3;
     1335  }
     1336  /*yellow theme*/
     1337  .el-radio.el-radio-yellow > input[type="radio"] + label:hover:before,
     1338  .el-checkbox.el-checkbox-yellow > input[type="checkbox"] + label:hover:before,
     1339  .el-radio.el-radio-yellow > input[type="radio"]:checked + label:before,
     1340  .el-checkbox.el-checkbox-yellow > input[type="checkbox"]:checked + label:before {
     1341    border-color: #f7ba2a;
     1342  }
     1343  .el-checkbox.el-checkbox-yellow > input[type="checkbox"]:checked + label:before,
     1344  .el-radio.el-radio-yellow > input[type="radio"] + label:after {
     1345    background: #f7ba2a;
     1346  }
     1347  .el-radio.el-radio-yellow > input[type="radio"][disabled] + label:hover:before,
     1348  .el-checkbox.el-checkbox-yellow > input[type="checkbox"][disabled] + label:hover:before {
     1349    border-color: #D3DCE6;
     1350  }
     1351  .el-checkbox.el-checkbox-yellow > input[type="checkbox"]:checked[disabled] + label:before,
     1352  .el-radio.el-radio-yellow > input[type="radio"]:checked[disabled] + label:before {
     1353    border-color: #fbeac1;
     1354  }
     1355  .el-checkbox.el-checkbox-yellow > input[type="checkbox"][disabled]:checked + label:before,
     1356  .el-radio.el-radio-yellow > input[type="radio"]:checked[disabled] + label:after {
     1357    background: #fbeac1;
     1358  }
     1359  /*switch component*/
     1360  .el-switch,
     1361  .el-switch-style,
     1362  .el-switch-style:before {
     1363    -webkit-box-sizing: border-box;
     1364    -moz-box-sizing: border-box;
     1365    box-sizing: border-box;
     1366  }
     1367  .el-switch {
     1368    display: inline-block;
     1369    font-size: 100%;
     1370    height: 1.6em;
     1371    position: relative;
     1372  }
     1373  .el-switch .el-switch-style {
     1374    height: 1.6em;
     1375    left: 0;
     1376    background: #C0CCDA;
     1377    -webkit-border-radius: 0.8em;
     1378    border-radius: 0.8em;
     1379    display: inline-block;
     1380    position: relative;
     1381    top: 0;
     1382    -webkit-transition: all 0.3s ease-in-out;
     1383    transition: all 0.3s ease-in-out;
     1384    width: 3em;
     1385    cursor: pointer;
     1386  }
     1387  .el-switch .el-switch-style:before {
     1388    display: block;
     1389    content: '';
     1390    height: 1.4em;
     1391    position: absolute;
     1392    width: 1.4em;
     1393    background-color: #fff;
     1394    -webkit-border-radius: 50%;
     1395    border-radius: 50%;
     1396    left: 0.1em;
     1397    top: 0.1em;
     1398    -webkit-transition: all 0.3s ease-in-out;
     1399    transition: all 0.3s ease-in-out;
     1400  }
     1401  .el-switch > input[type="checkbox"] {
     1402    display: none;
     1403  }
     1404  .el-switch > input[type="checkbox"][disabled] + .el-switch-style {
     1405    cursor: not-allowed;
     1406    background-color: #D3DCE6;
     1407  }
     1408  .el-switch > input[type="checkbox"]:checked + .el-switch-style {
     1409    background-color: #20a0ff;
     1410  }
     1411  .el-switch > input[type="checkbox"]:checked + .el-switch-style:before {
     1412    left: 50%;
     1413  }
     1414  .el-switch > input[type="checkbox"]:checked[disabled] + .el-switch-style {
     1415    background-color: #b0d7f5;
     1416  }
     1417  .el-switch.el-switch-blue > input[type="checkbox"]:checked + .el-switch-style {
     1418    background-color: #20a0ff;
     1419  }
     1420  .el-switch.el-switch-blue > input[type="checkbox"]:checked[disabled] + .el-switch-style {
     1421    background-color: #b0d7f5;
     1422  }
     1423  .el-switch.el-switch-green > input[type="checkbox"]:checked + .el-switch-style {
     1424    background-color: #13ce66;
     1425  }
     1426  .el-switch.el-switch-green > input[type="checkbox"]:checked[disabled] + .el-switch-style {
     1427    background-color: #a1efc4;
     1428  }
     1429  .el-switch.el-switch-red > input[type="checkbox"]:checked + .el-switch-style {
     1430    background-color: #ff4949;
     1431  }
     1432  .el-switch.el-switch-red > input[type="checkbox"]:checked[disabled] + .el-switch-style {
     1433    background-color: #f9b3b3;
     1434  }
     1435  .el-switch.el-switch-yellow > input[type="checkbox"]:checked + .el-switch-style {
     1436    background-color: #f7ba2a;
     1437  }
     1438  .el-switch.el-switch-yellow > input[type="checkbox"]:checked[disabled] + .el-switch-style {
     1439    background-color: #fbeac1;
     1440  }
     1441  /*define size*/
     1442  .el-radio.el-radio-sm,
     1443  .el-checkbox.el-checkbox-sm,
     1444  .el-switch.el-switch-sm {
     1445    font-size: 85%;
     1446  }
     1447  .el-radio.el-radio-lg,
     1448  .el-checkbox.el-checkbox-lg,
     1449  .el-switch.el-switch-lg {
     1450    font-size: 125%;
     1451  }
     1452 
     1453 
     1454  .lds-hourglass {
     1455    display: inline-block;
     1456    position: relative;
     1457    width: 80px;
     1458    height: 80px;
     1459  }
     1460  .lds-hourglass:after {
     1461    content: " ";
     1462    display: block;
     1463    border-radius: 50%;
     1464    width: 0;
     1465    height: 0;
     1466    margin: 8px;
     1467    box-sizing: border-box;
     1468    border: 32px solid #cef;
     1469    border-color: #cef transparent #cef transparent;
     1470    animation: lds-hourglass 1.2s infinite;
     1471  }
     1472  @keyframes lds-hourglass {
     1473    0% {
     1474      transform: rotate(0);
     1475      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     1476    }
     1477    50% {
     1478      transform: rotate(900deg);
     1479      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
     1480    }
     1481    100% {
     1482      transform: rotate(1800deg);
     1483    }
     1484  }
     1485 
     1486  .sbl-circ {
     1487    height: 48px;
     1488    width: 48px;
     1489    color: #5a5a5a;
     1490    position: relative;
     1491    display: inline-block;
     1492    border: 2px solid;
     1493    border-radius: 50%;
     1494    border-top-color: transparent;
     1495    animation: rotate 1s linear infinite; }
     1496 
     1497  @keyframes rotate {
     1498    0% {
     1499      transform: rotate(0); }
     1500    100% {
     1501      transform: rotate(360deg); } }
     1502 
     1503 
     1504  /**********************/
     1505 
     1506  .sbl-circ-path {
     1507    height: 48px;
     1508    width: 48px;
     1509    color: rgba(90, 90, 90, 0.2);
     1510    position: relative;
     1511    display: inline-block;
     1512    border: 5px solid;
     1513    border-radius: 50%;
     1514    border-right-color: #5a5a5a;
     1515    animation: rotate 1s linear infinite; }
     1516 
     1517  @keyframes rotate {
     1518    0% {
     1519      transform: rotate(0); }
     1520    100% {
     1521      transform: rotate(360deg); } }
     1522 
     1523 
     1524 
     1525  /**************/
     1526 
     1527  .sbl-sticks-spin {
     1528    height: 48px;
     1529    width: 4px;
     1530    background: #5a5a5a;
     1531    position: relative;
     1532    display: inline-block;
     1533    border-radius: 5px;
     1534    animation: animateSticks1 3s ease infinite; }
     1535    .sbl-sticks-spin::before, .sbl-sticks-spin::after {
     1536      height: inherit;
     1537      width: inherit;
     1538      content: '';
     1539      display: block;
     1540      background: inherit;
     1541      position: absolute;
     1542      border-radius: 4px; }
     1543    .sbl-sticks-spin::before {
     1544      left: 0;
     1545      animation: animateSticks2 1s .5s ease infinite; }
     1546    .sbl-sticks-spin::after {
     1547      right: 0;
     1548      animation: animateSticks3 1s 1s ease infinite; }
     1549 
     1550  @keyframes animateSticks1 {
     1551    0% {
     1552      transform: rotate(0deg); }
     1553    25% {
     1554      transform: rotate(-90deg); }
     1555    50% {
     1556      transform: rotate(180deg); }
     1557    75% {
     1558      transform: rotate(90deg); }
     1559    100% {
     1560      transform: rotate(0); } }
     1561 
     1562  @keyframes animateSticks2 {
     1563    0% {
     1564      transform: rotate(0deg); }
     1565    50%, 100% {
     1566      transform: rotate(55deg); } }
     1567 
     1568  @keyframes animateSticks3 {
     1569    0% {
     1570      transform: rotate(0deg); }
     1571    50%, 100% {
     1572      transform: rotate(115deg); } }
     1573 
     1574  @keyframes rotate {
     1575    0% {
     1576      transform: rotate(0); }
     1577    100% {
     1578      transform: rotate(360deg); } }
     1579 
     1580  /**********************/
     1581 
     1582  .loader04 {
     1583    width: 56px;
     1584    height: 56px;
     1585    border: 2px solid rgba(0, 82, 236, 0.5);
     1586    border-radius: 50%;
     1587    position: relative;
     1588    animation: loader-rotate 1s ease-in-out infinite;
     1589   }
     1590    .loader04::after {
     1591      content: '';
     1592      width: 10px;
     1593      height: 10px;
     1594      border-radius: 50%;
     1595      background: #0052ec;
     1596      position: absolute;
     1597      top: -6px;
     1598      left: 50%;
     1599      margin-left: -5px; }
     1600 
     1601  @keyframes loader-rotate {
     1602    0% {
     1603      transform: rotate(0); }
     1604    100% {
     1605      transform: rotate(360deg); } }
     1606 
     1607  .loader05 {
     1608    width: 56px;
     1609    height: 56px;
     1610    border: 4px solid #0052ec;
     1611    border-radius: 50%;
     1612    position: relative;
     1613    animation: loader-scale 1s ease-out infinite;
     1614   }
     1615 
     1616  @keyframes loader-scale {
     1617    0% {
     1618      transform: scale(0);
     1619      opacity: 0; }
     1620    50% {
     1621      opacity: 1; }
     1622    100% {
     1623      transform: scale(1);
     1624      opacity: 0; } }
     1625 
     1626  .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec {
     1627    display: inline-block;
     1628    width: 24%;
     1629  }
     1630  .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec label.el-switch{
     1631    position: relative;
     1632    top:-10px;
     1633  }
     1634  .ex_postSec {
    7071635    float: left;
    7081636    width: 100%;
    709     margin-top: 0;
    710 }
    711 .themeStyleSec .search_box_layout .searchBox_info:first-child{
    712   padding-top:0px;
    713 }
    714 .advance_serach_sec ul li .inner .themeStyleSec h5 {
    715     margin: 0px;
    716     padding-bottom: 0px;
    717     font-size: 14px;
    718     margin-top: 11px;
    719     font-weight: 500;
    720 }
    721 .themeStyleSec .search_box_layout .searchBox_info ul li {
    722     display: inline-block;
    723 }
    724 .themeStyleSec .search_box_layout .searchBox_info ul li .col_liStle{
    725   position: relative;
    726 }
    727 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li .col_liStle {
    728     margin-right: 10px;
    729 }
    730 .themeStyleSec .search_box_layout .searchBox_info ul li .col_liStle i {
    731     position: absolute;
    732     right: 10px;
    733     top: 13px;
    734 }
    735 
    736 .themeStyleSec .search_box_layout .searchBox_info ul.searchMBox span.pxValue {
    737     position: absolute;
    738     z-index: 9;
    739     right:30px;
    740     top: 8px;
    741 }
    742 .themeStyleSec .search_box_layout .searchBox_info ul li input {
    743     margin-bottom: 0px !important;
    744 }
    745 .themeStyleSec .search_box_layout .searchBox_info ul li {
    746     display: inline-block;
     1637  }
     1638  .ex_postSec .element {
     1639      margin: 10px 0;
     1640      float: left;
     1641      width: 100%;
     1642      margin-top: 0px;
     1643  }
     1644  .ex_postSec .element textarea {
     1645      width: 100%;
     1646      margin-bottom: 5px;
     1647  }
     1648  .marB0{
     1649    margin-bottom:0px;
     1650  }
     1651  .post_meta_keyvalue_section.sep_section input {
     1652      width: 100% !important;
     1653      margin-bottom: 0px !important;
     1654  }
     1655  .post_meta_keyvalue_section.sep_section .content_Style.warning {
     1656      float: right;
     1657      width: auto;
     1658      padding-left: 20px;
     1659  }
     1660  .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec.toggle2 {
     1661    width: 48%;
     1662  }
     1663  .search_box_height.searchBox_info .col_liStle {
     1664    position: relative;
     1665    float: left;
     1666  }
     1667  .search_box_height.searchBox_info .col_liStle .pxValue{
     1668  position: absolute;
     1669  right: 12px;
     1670  top: 6px;
     1671  }
     1672  .themeStyleSec .loading_icon.search_box_layout .maginfier_sec .col_liStle {
     1673    width: 30%;
     1674  }
     1675  .themeStyleSec .loading_icon.search_box_layout .maginfier_sec .col_liStle label{
     1676    width: 100%;
     1677  }
     1678  .themeStyleSec .loading_icon.search_box_layout .maginfier_sec .col_liStle .wp-picker-container .iris-picker{
     1679    margin-top: 40px;
     1680  }
     1681  .secColStyle.pro_sec {
     1682    border-left:3px solid #ff3547;
     1683  }
     1684  .sideBar_Section .starts .checked {
     1685    color: orange;
     1686  }
     1687  .sideBar_Section .starts span {
     1688    font-size: 20px;
    7471689    margin-right: 3px;
    748     margin-bottom: 0px;
    749     vertical-align: top;
    750 }
    751 .themeStyleSec .search_box_layout .searchBox_info input[type="text"] {
    752     margin-bottom: 0px;
    753 }
    754 .themeStyleSec .search_box_layout .searchBox_info .wp-picker-open+.wp-picker-input-wrap label {
    755     margin-top: 0px;
    756     padding-top: 0;
    757 }
    758 .themeStyleSec .search_box_layout .searchBox_info .wp-picker-open+.wp-picker-input-wrap label input{
    759   padding:2px 10px;
    760   line-height: normal;
    761 }
    762 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox {
    763   margin-bottom:0px;
    764 }
    765 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li {
    766     vertical-align: top;
    767 }
    768 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li input.input_style {
    769     width: 90px;
    770     padding-right: 22px;
    771     padding: 3px 10px;
    772     line-height: normal;
    773     padding-right: 28px;
    774     line-height: 23px;
    775 }
    776 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li span.pxValue.nwPxValue {
    777     right: 10px;
    778     top: 5px;
    779 }
    780 .themeStyleSec .search_box_layout .search_box_height.searchBox_info input {
    781     padding: 4px 30px 4px 10px;
    782 }
    783 .themeStyleSec .search_box_layout .search_box_height.searchBox_info input + span.pxValue {
    784     right: 10px;
    785 }
    786 .advance_serach_sec ul li .inner label.el-switch{
    787   margin-bottom:5px;
    788 }
    789 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li .box_dropdown_advance {
    790     width: 110px;
    791 }
    792 .themeStyleSec .search_box_layout .search_box_border.searchBox_info
    793 ul.searchMBox li .box_dropdown_advance select{
    794     padding:2px 10px;
    795 }
    796 .themeStyleSec .search_box_layout .search_box_border.searchBox_info
    797 ul.searchMBox li .box_dropdown_advance:after{
    798   width:26px;
    799   line-height: 22px;
    800 }
    801 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox
    802 li .wp-picker-container{
    803   position: relative;
    804 }
    805 .themeStyleSec .search_box_layout .search_box_border.searchBox_info
    806 ul.searchMBox li .wp-picker-holder {
    807     position: absolute;
    808     top: 33px;
    809     left: 0;
    810     width: 100%;
    811     z-index: 99;
    812 }
    813 .themeStyleSec .search_box_layout .search_box_width.searchBox_info ul li input {
    814     padding-right: 28px;
    815 }
    816 .search_input_layout.search_box_layout .searchBox_info:first-child {
    817     padding-top: 15px;
    818 }
    819 .search_input_layout.search_box_layout .searchBox_info h3{
    820   padding-bottom:0px;
    821 }
    822 .wp-core-ui .button-group.button-small .button, .wp-core-ui .button.button-small{
    823   padding:2px 8px;
    824 }
    825 
    826 .themeStyleSec .search_input_layout.search_box_layout ul.searchMBox li input.input_style {
    827     width: 90px;
    828     padding-right: 22px;
    829     padding: 3px 10px;
    830     line-height: normal;
    831     padding-right: 28px;
    832 }
    833 .themeStyleSec .search_input_layout.search_box_layout ul.searchMBox li span.pxValue.nwPxValue {
    834     right: 10px;
    835     top: 5px;
    836 }
    837 
    838 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox label {
    839     padding-top: 6px;
    840 }
    841 .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li label {
    842     padding-top: 6px;
    843 }
    844 .themeStyleSec .search_box_layout .search_box_border.searchBox_info ul.searchMBox li .wp-picker-container span.wp-picker-input-wrap label {
    845     padding-top: 0;
    846 }
    847 
    848 .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .col_liStle{
    849   margin-right:10px;
    850 }
    851 .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .box_dropdown_advance{
    852     width: 110px;
    853 }
    854 .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .box_dropdown_advance select{
    855     padding: 2px 10px;
    856 }
    857 
    858 .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .box_dropdown_advance:after {
    859     width: 26px;
    860     line-height: 22px;
    861 }
    862 .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox.newBoxSearch{
    863   margin-top:20px;
    864 }
    865 
    866 .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li .wp-picker-container{
    867   position: relative;
    868 }
    869 .themeStyleSec .search_input_layout.search_box_layout .searchBox_info ul.searchMBox li  .wp-picker-holder {
    870     position: absolute;
    871     top: 33px;
    872     left: 0;
    873     width: 100%;
    874     z-index: 99;
    875 }
    876 .themeStyleSec .loading_icon.search_box_layout .searchBox_info {
    877     padding-top: 10px;
    878 }
    879 .themeStyleSec .loading_icon.search_box_layout .col_liStle {
     1690  }
     1691  .wrap .wpas_search .wpas_search_left .inner.shortcode_inputSec input {
     1692      padding-right: 10px;
     1693      width: 100%;
     1694      background: #ccc;
     1695      color: #444;
     1696      outline: 0;
     1697      border-radius: 0;
     1698  }
     1699  .wrap .wpas_search .wpas_search_left .inner.shortcode_inputSec .shortCol {
     1700    width: 47%;
    8801701    float: left;
    881     width: 100%;
    882     margin-top: 10px;
    883 }
    884 .themeStyleSec .loading_icon.search_box_layout .searchBox_info  .box_dropdown_advance {
    885     width: 140px;
    886 }
    887 .themeStyleSec .loading_icon.search_box_layout .searchBox_info  .box_dropdown_advance select{
    888   padding:2px 10px;
    889 }
    890 .themeStyleSec .loading_icon.search_box_layout .searchBox_info  .box_dropdown_advance:after {
    891     width: 26px;
    892     line-height: 21px;
    893 }
    894 .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li {
    895     margin-right: 10px;
    896     vertical-align: top;
    897     margin-top: 0px;
    898     background: #7e858e;
    899     height: 31px;
    900     width: 31px;
    901     margin-bottom:15px;
    902     border: 2px solid #333;
    903     text-align: center;
    904 }
    905 .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li .lds-dual-ring:after{
    906   width:38px;
    907   height:38px;
    908 }
    909 .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li .sbl-circ {
    910     height: 14px;
    911     width: 14px;
    912     margin-top:7px;
    913     color: #fff;
    914 }
    915 .lds-dual-ring:after {
    916     border: 7px solid #fff!important;
    917     border-color: #fff transparent #fff transparent!important;
    918     animation: lds-dual-ring 1.2s linear infinite!important;
    919 }
    920 .lds-hourglass:after {
    921     border: 27px solid #fff!important;;
    922     border-color: #fff transparent #fff transparent!important;
    923     animation: lds-hourglass 1.2s infinite!important;
    924 }
    925 .sbl-circ-path {
    926     height: 44px!important;
    927     width: 44px!important;
    928     color: rgba(90, 90, 90, 0.6)!important;
    929     border-right-color: #fff!important;
    930     animation: rotate 1s linear infinite!important;
    931     margin-top: 8px;
    932 }
    933 .sbl-circ-ripple {
    934     color: #fff!important;
    935     margin-top: 10px!important;
    936 }
    937 .sbl-sticks-spin {
    938   margin-top:10px;
    939   background: #fff!important;
    940 }
    941 .loader04 {
    942     width: 45px!important;
    943     height: 45px!important;
    944     border: 2px solid #fff!important;
    945     margin-top: 10px;
    946     margin-left: 11px;
    947 }
    948 .loader04::after{
    949   background:#fff!important;
    950 }
    951 .loader05 {
    952     width: 50px!important;
    953     height: 50px!important;
    954     border: 4px solid #fff !important;
    955     margin: 5px;
    956 }
    957 .themeStyleSec .loading_icon.search_box_layout .col_liStle ul.loader_lists li.active{
    958  background: #329fc1;
    959 }
    960 .themeStyleSec .search_box_layout.search_button .col_liStle {
    961     margin-bottom: 10px;
    962     float: left;
    963     width: 100%;
    964 }
    965 .themeStyleSec .search_box_layout.search_button  .col_liStle ul.searchMBox input.input_style {
    966     width: 90px;
    967     padding-right: 22px;
    968     padding: 3px 10px;
    969     line-height: normal;
    970     padding-right: 28px;
    971 }
    972 .themeStyleSec .search_box_layout.search_button  .col_liStle ul.searchMBox  span.pxValue {
    973     position: absolute;
    974     z-index: 9;
    975     right: 10px;
    976     top:5px;
    977 }
    978 .themeStyleSec .search_box_layout.search_button  .col_liStle ul li input.serach_input_style {
    979     width: auto;
    980     padding:0px 10px;
    981 }
    982 .themeStyleSec .search_box_layout.search_button  .col_liStle ul li .wp-picker-container{
    983   position: relative;
    984 }
    985 .themeStyleSec .search_box_layout.search_button  .col_liStle ul li .wp-picker-holder {
    986     position: absolute;
    987     top: 33px;
    988     left: 0;
    989     width: 100%;
    990     z-index: 99;
    991 }
    992 .themeStyleSec .search_box_layout.search_button .searchBox_info:first-child {
    993     padding-top: 10px;
    994     border: 0px;
     1702    margin-right: 20px;
     1703  }
     1704 
     1705  .wpas_loader {
     1706      position: fixed;
     1707      width: 100%;
     1708      height: 100%;
     1709      background: rgba(255,255,255,0.8);
     1710      text-align: center;
     1711      z-index: 9999;
     1712      top: 0px;
     1713      right: 0;
     1714      display: none;
     1715  }
     1716  .wpas_loader img {
     1717      width: 50px;
     1718      position: relative;
     1719      top: 50%;
     1720      z-index: 999999999;
     1721  }
     1722  .advance_serach_sec .imprtExportSec .import_export_demo {
     1723      width: 100%;
     1724  }
     1725 
     1726  .advance_serach_sec .imprtExportSec .import {
     1727      float: left;
     1728      width: 100%;
     1729      border-top: 1px solid #ddd;
     1730      margin-top: 30px;
     1731      padding-top: 40px;
     1732  }
     1733  .advance_serach_sec .imprtExportSec  .colsec {
     1734      float: left;
     1735      width: 49%;
     1736  }
     1737  .advance_serach_sec .imprtExportSec  .colsec.colsec_new {
     1738      float: right;
     1739      width: 49%;
     1740  }
     1741  .advance_serach_sec .imprtExportSec .colsec select {
     1742      width: 100%;
     1743      margin-bottom: 20px;
     1744      height: 150px;
     1745  }
     1746  .advance_serach_sec .imprtExportSec .colsec textarea {
     1747      width: 100%;
     1748      margin-bottom: 20px;
     1749      height: 150px;
     1750  }
     1751  .advance_serach_sec .imprtExportSec .import textarea {
     1752      width: 49%;
     1753      height: 150px;
     1754  }
     1755  .advance_serach_sec .imprtExportSec  button {
     1756      line-height: normal;
     1757      padding: 6px 10px;
     1758      padding-top: 5px;
     1759  }
     1760  .advance_serach_sec .imprtExportSec .btn_style{
     1761      float: left;
     1762      width:100%;
     1763  }
     1764  .advance_serach_sec .imprtExportSec .loader {
     1765      margin: 5px;
     1766      display: none;
     1767  }
     1768  .mb_0{
     1769      margin-bottom: 0px;
     1770  }
     1771  .commanDiv{
     1772      float: left;
     1773      width: 100%;
     1774      box-shadow: 0px 0px 10px -2px rgba(000,000,000,.1);
     1775      background: #fffcfc;
     1776      padding: 20px;
     1777      margin-bottom: 20px;
     1778      box-sizing: border-box;
     1779  }
     1780  .help_section.commanDiv{ width: 100% }
     1781  .help_section.commanDiv p, .help_section.commanDiv li {
     1782      font-family: verdana;
     1783      font-size: 13px;
     1784  }
     1785  .help_section h4 {
     1786      margin-top: 0;
     1787      font-size: 17px;
     1788      font-family: 'PT Sans Regular', Verdana, Tahoma, sans-serif;
     1789      margin: 0 0 1em 0;
     1790      font-weight: 700;
     1791      color: #494949;
     1792  }
     1793  .help_section .column {
     1794      float: left;
     1795      width: 100%;
     1796      margin-bottom: 10px;
     1797  }
     1798  .help_section .column ul {
     1799      list-style: disc;
     1800      padding-left: 10px;
     1801  }
     1802  .help_section .column ul.list_link{
     1803     color:#0073aa;
     1804  }
     1805  .help_section .left {
     1806      float: left;
     1807      width: 60%;
     1808      border-right: 1px solid #ccc;
     1809      padding-right: 20px;
     1810      box-sizing: border-box;
     1811  }
     1812  .help_section .right {
     1813      float:right;
     1814      width: 40%;
     1815      box-sizing: border-box;
     1816      padding-left: 20px;
     1817  }
     1818  .searchBox_info input.button.button-small.wp-picker-clear {
     1819      padding-top: 0;
     1820      padding-bottom: 0;
     1821  }
     1822 
     1823 
     1824  .loader_lists li, .magnifier_icon_design li {
     1825      cursor: pointer;
     1826  }
     1827  .wpas_search_right input, button {
     1828      float: right;
     1829      width: auto;
     1830      display: inline;
     1831      margin-left: 10px !important;
     1832  }
     1833  .searchBox_info button.button.wp-color-result, .maginfier_sec button.button.wp-color-result {
     1834    margin-left: 0 !important;
     1835  }
     1836  .searchBox_info button.button.wp-color-result.wp-picker-open {
     1837    margin-left: 10px !important;
     1838  }
     1839  .show_hide_empty_taxonomies {
     1840      width: 100% !important;
     1841  }
     1842 
     1843  .advance_serach_sec .imprtExportSec .btn_style button {
     1844      float: left;
     1845      margin-left: 0px !important;
     1846  }
     1847  .advance_serach_sec .imprtExportSec .import textarea {
     1848      margin-bottom: 20px;
     1849  }
     1850 
     1851  .secColStyle button a {
     1852      color: #fff;
     1853      text-decoration: none;
     1854  }
     1855 
     1856  .buy_pro_wrapper .disable_section {
     1857      padding: 10px;
     1858  }
     1859 
     1860  .buy_pro a {
     1861      position: absolute;
     1862      top: 50%;
     1863      text-align: center;
     1864      left: 50%;
     1865      background-color: #ff3547 !important;
     1866      color: #fff;
     1867      text-decoration: none;
     1868      padding: 6px 14px;
     1869      transform: translate(-50%, -50%);
     1870      border-radius: 5px;
     1871  }
     1872  .buy_pro a i {
     1873      margin-left: 5px;
     1874  }
     1875 
     1876  .buy_pro a:hover {
     1877      background-color: #fc4757 !important;
     1878  }
     1879 
     1880  .buy_pro_wrapper {
     1881      position: relative;
     1882      float: left;
     1883      width: 100%;
     1884  }
     1885  .buy_pro_wrapper h4 span {
     1886      float: right;
     1887      color: #ff3547;
     1888      font-style: italic;
     1889      font-size: 11px;
     1890  }
     1891  .buy_pro_wrapper h4 {
     1892      border-left: 2px solid #ff3547;
     1893  }
     1894  .buy_pro {
     1895      position: absolute;
     1896      background: rgba(126, 126, 126, 0.7);
     1897      width: 100%;
     1898      height: 80%;
     1899      padding: 0;
     1900      margin: 0;
     1901          z-index: 9999;
     1902  }
     1903  .wpas_search_left ul.accordion li a.toggle span {
     1904      color: red !important;
     1905      float: right;
     1906      font-style: italic;
     1907      font-weight: bold;
     1908      margin-right: 13px;
     1909      font-size: 11px;
     1910  }
     1911  .buy_pro_wrapper .disable_section textarea, .buy_pro_wrapper .disable_section input[type="text"], .buy_pro_wrapper .disable_section input[type="radio"], .buy_pro_wrapper .disable_section input[type="checkbox"] {
     1912       pointer-events: none;
     1913  }
     1914 
     1915  .pro_version h4.title_heading {
     1916      background-color: #fff;
     1917      color: red;
     1918  }
     1919  .pro_version h4.title_heading a {
     1920      margin-left: 5px;
     1921      color: #0071a1;
     1922  }
     1923  .faq_wrapper {
     1924      width: 100%;
     1925      float: left;
     1926  }
     1927  .faq_wrapper ul {
     1928      padding-left: 0px !important;
     1929  }
     1930  .faq_wrapper ul li {
     1931      list-style: none;
     1932  }
     1933  .faq_wrapper ul li .inner {
     1934      padding: 8px 15px;
     1935      margin: 0;
     1936  }
     1937  p.pro-info, .pro-infomax {
     1938      color: #ff3547 !important;
     1939      font-style: italic;
     1940      font-weight: bold;
     1941      margin-right: 13px;
     1942      font-size: 13px;
     1943      display: inline-block;
     1944      width: 100%;
     1945  }
     1946  /* Chrome, Safari, Edge, Opera */
     1947  .searchBox_info input[type=number]::-webkit-outer-spin-button,
     1948  .searchBox_info input[type=number]::-webkit-inner-spin-button {
     1949    -webkit-appearance: none;
    9951950    margin: 0;
    996 }
    997 
    998 .themeStyleSec .loading_icon.search_box_layout .searchBox_info .col_liStle .wp-picker-container{
    999   position: relative;
    1000 }
    1001 .themeStyleSec .loading_icon.search_box_layout .searchBox_info .col_liStle .wp-picker-container
    1002 .wp-picker-holder{
    1003     position: absolute;
    1004     top: 33px;
    1005     left: 0;
    1006     width: 100%;
    1007     z-index: 99;
    1008 }
    1009 .themeStyleSec .loading_icon.search_box_layout .searchBox_info .col_liStle .wp-picker-container{
    1010     position: relative;
    1011 }
    1012 .loading_icon.search_box_layout .wp-picker-container {
    1013     position: relative;
    1014 }
    1015 .loading_icon.search_box_layout .wp-picker-container.wp-picker-active .wp-picker-holder {
    1016     position: absolute;
    1017     top: 34px;
    1018     left: 0;
    1019     width: 100%;
    1020     z-index: 9;
    1021 }
    1022 ul.magnifier_icon_design li {
    1023   background: #eee;
    1024   padding: 2px;
    1025   height: 25px;
    1026   width: 25px;
    1027   text-align: center;
    1028   border: 1px solid #ddd;
    1029   margin-bottom: 5px !important;
    1030   line-height: 24px;
    1031 }
    1032 ul.magnifier_icon_design li.active {
    1033   background: #333;
    1034 }
    1035 ul.magnifier_icon_design li.active i{
    1036   color: #fff;
    1037 }
    1038 .advance_serach_sec ul li .inner label.lable_magn {
    1039     padding-top: 9px;
    1040 }
    1041 /***checkbox***/
    1042 label.checkbox_style {
    1043   display: block;
    1044   position: relative;
    1045   padding-left: 27px;
    1046   margin-bottom: 5px;
    1047   cursor: pointer;
    1048   font-size: 22px;
    1049   -webkit-user-select: none;
    1050   -moz-user-select: none;
    1051   -ms-user-select: none;
    1052   user-select: none;
    1053   padding-top: 2px;
    1054   margin-bottom:0px!important;
    1055 }
    1056 
    1057 /* Hide the browser's default checkbox */
    1058 .checkbox_style input {
    1059   position: absolute;
    1060   opacity: 0;
    1061   cursor: pointer;
    1062   height: 0;
    1063   width: 0 !important;
    1064 }
    1065 
    1066 /* Create a custom checkbox */
    1067 .checkbox_style .checkmark {
    1068   position: absolute;
    1069   top: 0px;
    1070   left: 0;
    1071   height: 17px;
    1072   width: 17px;
    1073   background-color: #eee;
    1074   border: 1px solid #ccc;
    1075 }
    1076 
    1077 /* On mouse-over, add a grey background color */
    1078 .checkbox_style:hover input ~ .checkmark {
    1079   background-color: #ccc;
    1080 }
    1081 
    1082 /* When the checkbox is checked, add a blue background */
    1083 .checkbox_style input:checked ~ .checkmark {
    1084   background-color: #000;
    1085 }
    1086 
    1087 /* Create the checkmark/indicator (hidden when not checked) */
    1088 .checkbox_style .checkmark:after {
    1089   content: "";
    1090   position: absolute;
    1091   display: none;
    1092 }
    1093 
    1094 /* Show the checkmark when checked */
    1095 .checkbox_style input:checked ~ .checkmark:after {
    1096   display: block;
    1097 }
    1098 
    1099 /* Style the checkmark/indicator */
    1100 .checkbox_style .checkmark::after {
    1101   left: 6px;
    1102   top: 1px;
    1103   width: 4px;
    1104   height: 9px;
    1105   border: solid white;
    1106   border-width: 0 3px 3px 0;
    1107   -webkit-transform: rotate(45deg);
    1108   -ms-transform: rotate(45deg);
    1109   transform: rotate(45deg);
    1110 }
    1111 .chart{zoom:1;width:90%}
    1112 .chart:after{clear:both;content:'.';display:block;height:0;visibility:hidden}
    1113 .chart li{display:block;height:23px;margin-top:3px;position:relative}
    1114 .chart li:before{color:#fff;content:attr(title);left:5px;position:absolute}
    1115 .chart li.title:before{color:black;font-weight:bold;left:0}
    1116 .chart li:first-child{margin-top:0}
    1117 .chart li .bar{background:black;height:100%}
    1118 .chart li .number {
    1119     color: green;
    1120     font-size: 18px;
    1121     font-weight: bold;
    1122     padding-left: 5px;
    1123     position: absolute;
    1124     top: 0px;
    1125     left: 0;
    1126     border: 1px solid red;
    1127     z-index: 9999999;
    1128     text-align: center;
    1129     width: 100%;
    1130     padding: 2px 0;
    1131 }
    1132 
    1133 .chart li.past .bar{background:#aaa}
    1134 .chart li.past .number{color:#aaa}
    1135 
    1136 
    1137 
    1138 
    1139 /*****************************************************/
    1140 
    1141       /*********** checkbox / radio ************/
    1142 
    1143 /*****************************************************/
    1144 
    1145 
    1146 /*checkbox radio component*/
    1147 
    1148 .el-radio,
    1149 .el-checkbox {
    1150   position: relative;
    1151   font-size: 100%;
    1152 }
    1153 label.el-radio,
    1154 label.el-checkbox {
    1155   display: block;
    1156   cursor: pointer;
    1157 }
    1158 .el-radio > input[type="radio"],
    1159 .el-checkbox > input[type="checkbox"] {
    1160   display: none;
    1161 }
    1162 .el-radio > input[type="radio"][disabled],
    1163 .el-checkbox > input[type="checkbox"][disabled] {
    1164   cursor: not-allowed;
    1165 }
    1166 .el-radio > input[type="radio"] + .el-radio-style,
    1167 .el-checkbox > input[type="checkbox"] + .el-checkbox-style {
    1168   position: relative;
    1169   display: inline-block;
    1170   width: 1.4em;
    1171   height: 1.4em;
    1172   vertical-align: middle;
    1173   cursor: pointer;
    1174 }
    1175 .el-radio > input[type="radio"] + .el-radio-style:hover:before,
    1176 .el-checkbox > input[type="checkbox"] + .el-checkbox-style:hover:before {
    1177   border-color: #20a0ff;
    1178 }
    1179 .el-radio > input[type="radio"] + .el-radio-style:before,
    1180 .el-checkbox > input[type="checkbox"] + .el-checkbox-style:before {
    1181   position: absolute;
    1182   top: 0;
    1183   left: 0;
    1184   display: inline-block;
    1185   width: 1.4em;
    1186   height: 1.4em;
    1187   content: '';
    1188   border: 1px solid #C0CCDA;
    1189 }
    1190 .el-radio > input[type="radio"] + .el-radio-style:after,
    1191 .el-checkbox > input[type="checkbox"] + .el-checkbox-style:after {
    1192   position: absolute;
    1193   display: none;
    1194   content: '';
    1195 }
    1196 .el-radio > input[type="radio"][disabled] + .el-radio-style,
    1197 .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style {
    1198   cursor: not-allowed;
    1199   color: #D3DCE6;
    1200 }
    1201 .el-radio > input[type="radio"][disabled] + .el-radio-style:hover,
    1202 .el-radio > input[type="radio"][disabled] + .el-radio-style:before,
    1203 .el-radio > input[type="radio"][disabled] + .el-radio-style:after,
    1204 .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:hover,
    1205 .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:before,
    1206 .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:after {
    1207   cursor: not-allowed;
    1208 }
    1209 .el-radio > input[type="radio"][disabled] + .el-radio-style:hover:before,
    1210 .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:hover:before {
    1211   border: 1px solid #D3DCE6;
    1212   animation-name: none;
    1213 }
    1214 .el-radio > input[type="radio"][disabled] + .el-radio-style:before,
    1215 .el-checkbox > input[type="checkbox"][disabled] + .el-checkbox-style:before {
    1216   border-color: #D3DCE6;
    1217 }
    1218 .el-radio > input[type="radio"]:checked + .el-radio-style:before,
    1219 .el-checkbox > input[type="checkbox"]:checked + .el-checkbox-style:before {
    1220   animation-name: none;
    1221 }
    1222 .el-radio > input[type="radio"]:checked + .el-radio-style:after,
    1223 .el-checkbox > input[type="checkbox"]:checked + .el-checkbox-style:after {
    1224   display: block;
    1225 }
    1226 .el-radio > input[type="radio"] + .el-radio-style:before {
    1227   border-radius: 50%;
    1228 }
    1229 .el-radio > input[type="radio"] + .el-radio-style:after {
    1230   top: 0.4em;
    1231   left: 0.4em;
    1232   width: 0.6em;
    1233   height: 0.6em;
    1234   border-radius: 50%;
    1235   background: #20a0ff;
    1236 }
    1237 .el-radio > input[type="radio"]:checked + .el-radio-style:before {
    1238   border: 1px solid #20a0ff;
    1239 }
    1240 .el-radio > input[type="radio"]:checked[disabled] + .el-radio-style:before {
    1241   border: 1px solid #b0d7f5;
    1242 }
    1243 .el-radio > input[type="radio"]:checked[disabled] + .el-radio-style:after {
    1244   background: #b0d7f5;
    1245 }
    1246 .el-checkbox > input[type="checkbox"] + .el-checkbox-style:before {
    1247   border-radius: 3px;
    1248 }
    1249 .el-checkbox > input[type="checkbox"] + .el-checkbox-style:after {
    1250   top: 0.15em;
    1251   left: 0.5em;
    1252   box-sizing: border-box;
    1253   width: 0.4em;
    1254   height: 0.85em;
    1255   transform: rotate(45deg);
    1256   border-right: 2px solid #fff;
    1257   border-bottom: 2px solid #fff;
    1258 }
    1259 .el-checkbox > input[type="checkbox"]:checked + .el-checkbox-style:before {
    1260   border: #20a0ff;
    1261   background: #20a0ff;
    1262 }
    1263 .el-checkbox > input[type="checkbox"]:checked[disabled] + .el-checkbox-style:before {
    1264   border: #b0d7f5;
    1265   background: #b0d7f5;
    1266 }
    1267 /*blue theme*/
    1268 .el-radio.el-radio-blue > input[type="radio"] + label:hover:before,
    1269 .el-checkbox.el-checkbox-blue > input[type="checkbox"] + label:hover:before,
    1270 .el-radio.el-radio-blue > input[type="radio"]:checked + label:before,
    1271 .el-checkbox.el-checkbox-blue > input[type="checkbox"]:checked + label:before {
    1272   border-color: #20a0ff;
    1273 }
    1274 .el-checkbox.el-checkbox-blue > input[type="checkbox"]:checked + label:before,
    1275 .el-radio.el-radio-blue > input[type="radio"] + label:after {
    1276   background: #20a0ff;
    1277 }
    1278 .el-radio.el-radio-blue > input[type="radio"][disabled] + label:hover:before,
    1279 .el-checkbox.el-checkbox-blue > input[type="checkbox"][disabled] + label:hover:before {
    1280   border-color: #D3DCE6;
    1281 }
    1282 .el-checkbox.el-checkbox-blue > input[type="checkbox"]:checked[disabled] + label:before,
    1283 .el-radio.el-radio-blue > input[type="radio"]:checked[disabled] + label:before {
    1284   border-color: #b0d7f5;
    1285 }
    1286 .el-checkbox.el-checkbox-blue > input[type="checkbox"][disabled]:checked + label:before,
    1287 .el-radio.el-radio-blue > input[type="radio"]:checked[disabled] + label:after {
    1288   background: #b0d7f5;
    1289 }
    1290 /*green theme*/
    1291 .el-radio.el-radio-green > input[type="radio"] + label:hover:before,
    1292 .el-checkbox.el-checkbox-green > input[type="checkbox"] + label:hover:before,
    1293 .el-radio.el-radio-green > input[type="radio"]:checked + label:before,
    1294 .el-checkbox.el-checkbox-green > input[type="checkbox"]:checked + label:before {
    1295   border-color: #13ce66;
    1296 }
    1297 .el-checkbox.el-checkbox-green > input[type="checkbox"]:checked + label:before,
    1298 .el-radio.el-radio-green > input[type="radio"] + label:after {
    1299   background: #13ce66;
    1300 }
    1301 .el-radio.el-radio-green > input[type="radio"][disabled] + label:hover:before,
    1302 .el-checkbox.el-checkbox-green > input[type="checkbox"][disabled] + label:hover:before {
    1303   border-color: #D3DCE6;
    1304 }
    1305 .el-checkbox.el-checkbox-green > input[type="checkbox"]:checked[disabled] + label:before,
    1306 .el-radio.el-radio-green > input[type="radio"]:checked[disabled] + label:before {
    1307   border-color: #a1efc4;
    1308 }
    1309 .el-checkbox.el-checkbox-green > input[type="checkbox"][disabled]:checked + label:before,
    1310 .el-radio.el-radio-green > input[type="radio"]:checked[disabled] + label:after {
    1311   background: #a1efc4;
    1312 }
    1313 /*red theme*/
    1314 .el-radio.el-radio-red > input[type="radio"] + label:hover:before,
    1315 .el-checkbox.el-checkbox-red > input[type="checkbox"] + label:hover:before,
    1316 .el-radio.el-radio-red > input[type="radio"]:checked + label:before,
    1317 .el-checkbox.el-checkbox-red > input[type="checkbox"]:checked + label:before {
    1318   border-color: #ff4949;
    1319 }
    1320 .el-checkbox.el-checkbox-red > input[type="checkbox"]:checked + label:before,
    1321 .el-radio.el-radio-red > input[type="radio"] + label:after {
    1322   background: #ff4949;
    1323 }
    1324 .el-radio.el-radio-red > input[type="radio"][disabled] + label:hover:before,
    1325 .el-checkbox.el-checkbox-red > input[type="checkbox"][disabled] + label:hover:before {
    1326   border-color: #D3DCE6;
    1327 }
    1328 .el-checkbox.el-checkbox-red > input[type="checkbox"]:checked[disabled] + label:before,
    1329 .el-radio.el-radio-red > input[type="radio"]:checked[disabled] + label:before {
    1330   border-color: #f9b3b3;
    1331 }
    1332 .el-checkbox.el-checkbox-red > input[type="checkbox"][disabled]:checked + label:before,
    1333 .el-radio.el-radio-red > input[type="radio"]:checked[disabled] + label:after {
    1334   background: #f9b3b3;
    1335 }
    1336 /*yellow theme*/
    1337 .el-radio.el-radio-yellow > input[type="radio"] + label:hover:before,
    1338 .el-checkbox.el-checkbox-yellow > input[type="checkbox"] + label:hover:before,
    1339 .el-radio.el-radio-yellow > input[type="radio"]:checked + label:before,
    1340 .el-checkbox.el-checkbox-yellow > input[type="checkbox"]:checked + label:before {
    1341   border-color: #f7ba2a;
    1342 }
    1343 .el-checkbox.el-checkbox-yellow > input[type="checkbox"]:checked + label:before,
    1344 .el-radio.el-radio-yellow > input[type="radio"] + label:after {
    1345   background: #f7ba2a;
    1346 }
    1347 .el-radio.el-radio-yellow > input[type="radio"][disabled] + label:hover:before,
    1348 .el-checkbox.el-checkbox-yellow > input[type="checkbox"][disabled] + label:hover:before {
    1349   border-color: #D3DCE6;
    1350 }
    1351 .el-checkbox.el-checkbox-yellow > input[type="checkbox"]:checked[disabled] + label:before,
    1352 .el-radio.el-radio-yellow > input[type="radio"]:checked[disabled] + label:before {
    1353   border-color: #fbeac1;
    1354 }
    1355 .el-checkbox.el-checkbox-yellow > input[type="checkbox"][disabled]:checked + label:before,
    1356 .el-radio.el-radio-yellow > input[type="radio"]:checked[disabled] + label:after {
    1357   background: #fbeac1;
    1358 }
    1359 /*switch component*/
    1360 .el-switch,
    1361 .el-switch-style,
    1362 .el-switch-style:before {
    1363   -webkit-box-sizing: border-box;
    1364   -moz-box-sizing: border-box;
    1365   box-sizing: border-box;
    1366 }
    1367 .el-switch {
    1368   display: inline-block;
    1369   font-size: 100%;
    1370   height: 1.6em;
    1371   position: relative;
    1372 }
    1373 .el-switch .el-switch-style {
    1374   height: 1.6em;
    1375   left: 0;
    1376   background: #C0CCDA;
    1377   -webkit-border-radius: 0.8em;
    1378   border-radius: 0.8em;
    1379   display: inline-block;
    1380   position: relative;
    1381   top: 0;
    1382   -webkit-transition: all 0.3s ease-in-out;
    1383   transition: all 0.3s ease-in-out;
    1384   width: 3em;
    1385   cursor: pointer;
    1386 }
    1387 .el-switch .el-switch-style:before {
    1388   display: block;
    1389   content: '';
    1390   height: 1.4em;
    1391   position: absolute;
    1392   width: 1.4em;
    1393   background-color: #fff;
    1394   -webkit-border-radius: 50%;
    1395   border-radius: 50%;
    1396   left: 0.1em;
    1397   top: 0.1em;
    1398   -webkit-transition: all 0.3s ease-in-out;
    1399   transition: all 0.3s ease-in-out;
    1400 }
    1401 .el-switch > input[type="checkbox"] {
    1402   display: none;
    1403 }
    1404 .el-switch > input[type="checkbox"][disabled] + .el-switch-style {
    1405   cursor: not-allowed;
    1406   background-color: #D3DCE6;
    1407 }
    1408 .el-switch > input[type="checkbox"]:checked + .el-switch-style {
    1409   background-color: #20a0ff;
    1410 }
    1411 .el-switch > input[type="checkbox"]:checked + .el-switch-style:before {
    1412   left: 50%;
    1413 }
    1414 .el-switch > input[type="checkbox"]:checked[disabled] + .el-switch-style {
    1415   background-color: #b0d7f5;
    1416 }
    1417 .el-switch.el-switch-blue > input[type="checkbox"]:checked + .el-switch-style {
    1418   background-color: #20a0ff;
    1419 }
    1420 .el-switch.el-switch-blue > input[type="checkbox"]:checked[disabled] + .el-switch-style {
    1421   background-color: #b0d7f5;
    1422 }
    1423 .el-switch.el-switch-green > input[type="checkbox"]:checked + .el-switch-style {
    1424   background-color: #13ce66;
    1425 }
    1426 .el-switch.el-switch-green > input[type="checkbox"]:checked[disabled] + .el-switch-style {
    1427   background-color: #a1efc4;
    1428 }
    1429 .el-switch.el-switch-red > input[type="checkbox"]:checked + .el-switch-style {
    1430   background-color: #ff4949;
    1431 }
    1432 .el-switch.el-switch-red > input[type="checkbox"]:checked[disabled] + .el-switch-style {
    1433   background-color: #f9b3b3;
    1434 }
    1435 .el-switch.el-switch-yellow > input[type="checkbox"]:checked + .el-switch-style {
    1436   background-color: #f7ba2a;
    1437 }
    1438 .el-switch.el-switch-yellow > input[type="checkbox"]:checked[disabled] + .el-switch-style {
    1439   background-color: #fbeac1;
    1440 }
    1441 /*define size*/
    1442 .el-radio.el-radio-sm,
    1443 .el-checkbox.el-checkbox-sm,
    1444 .el-switch.el-switch-sm {
    1445   font-size: 85%;
    1446 }
    1447 .el-radio.el-radio-lg,
    1448 .el-checkbox.el-checkbox-lg,
    1449 .el-switch.el-switch-lg {
    1450   font-size: 125%;
    1451 }
    1452 
    1453 
    1454 .lds-hourglass {
    1455   display: inline-block;
    1456   position: relative;
    1457   width: 80px;
    1458   height: 80px;
    1459 }
    1460 .lds-hourglass:after {
    1461   content: " ";
    1462   display: block;
    1463   border-radius: 50%;
    1464   width: 0;
    1465   height: 0;
    1466   margin: 8px;
    1467   box-sizing: border-box;
    1468   border: 32px solid #cef;
    1469   border-color: #cef transparent #cef transparent;
    1470   animation: lds-hourglass 1.2s infinite;
    1471 }
    1472 @keyframes lds-hourglass {
    1473   0% {
    1474     transform: rotate(0);
    1475     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    1476   }
    1477   50% {
    1478     transform: rotate(900deg);
    1479     animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    1480   }
    1481   100% {
    1482     transform: rotate(1800deg);
    1483   }
    1484 }
    1485 
    1486 .sbl-circ {
    1487   height: 48px;
    1488   width: 48px;
    1489   color: #5a5a5a;
    1490   position: relative;
    1491   display: inline-block;
    1492   border: 2px solid;
    1493   border-radius: 50%;
    1494   border-top-color: transparent;
    1495   animation: rotate 1s linear infinite; }
    1496 
    1497 @keyframes rotate {
    1498   0% {
    1499     transform: rotate(0); }
    1500   100% {
    1501     transform: rotate(360deg); } }
    1502 
    1503 
    1504 /**********************/
    1505 
    1506 .sbl-circ-path {
    1507   height: 48px;
    1508   width: 48px;
    1509   color: rgba(90, 90, 90, 0.2);
    1510   position: relative;
    1511   display: inline-block;
    1512   border: 5px solid;
    1513   border-radius: 50%;
    1514   border-right-color: #5a5a5a;
    1515   animation: rotate 1s linear infinite; }
    1516 
    1517 @keyframes rotate {
    1518   0% {
    1519     transform: rotate(0); }
    1520   100% {
    1521     transform: rotate(360deg); } }
    1522 
    1523 
    1524 
    1525 /**************/
    1526 
    1527 .sbl-sticks-spin {
    1528   height: 48px;
    1529   width: 4px;
    1530   background: #5a5a5a;
    1531   position: relative;
    1532   display: inline-block;
    1533   border-radius: 5px;
    1534   animation: animateSticks1 3s ease infinite; }
    1535   .sbl-sticks-spin::before, .sbl-sticks-spin::after {
    1536     height: inherit;
    1537     width: inherit;
    1538     content: '';
     1951  }
     1952 
     1953  /* Firefox */
     1954  .searchBox_info input[type=number] {
     1955      -moz-appearance: textfield;
     1956      background: #fff;
     1957      border: 1px solid #ccc;
     1958      width: auto;
     1959      font-size: 14px;
     1960      padding: 4px 10px;
     1961      border-radius: 5px;
     1962      float: left;
     1963      width: 100px;
     1964      padding-right: 50px;
     1965  }
     1966  .pl-10{
     1967    padding-left: 10px;
     1968  }
     1969  .magnifier_sec ul.searchMBox {
     1970    display: flex;
     1971    justify-content: space-between;
     1972  }
     1973  .wpas_search_input {
     1974    margin-bottom: 0 !important;
     1975  }
     1976  .toplevel_page_advance-search img {
     1977      width: 16px;
     1978  }
     1979  .displaybox{
    15391980    display: block;
    1540     background: inherit;
    1541     position: absolute;
    1542     border-radius: 4px; }
    1543   .sbl-sticks-spin::before {
    1544     left: 0;
    1545     animation: animateSticks2 1s .5s ease infinite; }
    1546   .sbl-sticks-spin::after {
    1547     right: 0;
    1548     animation: animateSticks3 1s 1s ease infinite; }
    1549 
    1550 @keyframes animateSticks1 {
    1551   0% {
    1552     transform: rotate(0deg); }
    1553   25% {
    1554     transform: rotate(-90deg); }
    1555   50% {
    1556     transform: rotate(180deg); }
    1557   75% {
    1558     transform: rotate(90deg); }
    1559   100% {
    1560     transform: rotate(0); } }
    1561 
    1562 @keyframes animateSticks2 {
    1563   0% {
    1564     transform: rotate(0deg); }
    1565   50%, 100% {
    1566     transform: rotate(55deg); } }
    1567 
    1568 @keyframes animateSticks3 {
    1569   0% {
    1570     transform: rotate(0deg); }
    1571   50%, 100% {
    1572     transform: rotate(115deg); } }
    1573 
    1574 @keyframes rotate {
    1575   0% {
    1576     transform: rotate(0); }
    1577   100% {
    1578     transform: rotate(360deg); } }
    1579 
    1580 /**********************/
    1581 
    1582 .loader04 {
    1583   width: 56px;
    1584   height: 56px;
    1585   border: 2px solid rgba(0, 82, 236, 0.5);
    1586   border-radius: 50%;
    1587   position: relative;
    1588   animation: loader-rotate 1s ease-in-out infinite;
    1589  }
    1590   .loader04::after {
    1591     content: '';
    1592     width: 10px;
    1593     height: 10px;
    1594     border-radius: 50%;
    1595     background: #0052ec;
    1596     position: absolute;
    1597     top: -6px;
    1598     left: 50%;
    1599     margin-left: -5px; }
    1600 
    1601 @keyframes loader-rotate {
    1602   0% {
    1603     transform: rotate(0); }
    1604   100% {
    1605     transform: rotate(360deg); } }
    1606 
    1607 .loader05 {
    1608   width: 56px;
    1609   height: 56px;
    1610   border: 4px solid #0052ec;
    1611   border-radius: 50%;
    1612   position: relative;
    1613   animation: loader-scale 1s ease-out infinite;
    1614  }
    1615 
    1616 @keyframes loader-scale {
    1617   0% {
    1618     transform: scale(0);
    1619     opacity: 0; }
    1620   50% {
    1621     opacity: 1; }
    1622   100% {
    1623     transform: scale(1);
    1624     opacity: 0; } }
    1625 
    1626 .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec {
    1627   display: inline-block;
    1628   width: 24%;
    1629 }
    1630 .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec label.el-switch{
    1631   position: relative;
    1632   top:-10px;
    1633 }
    1634 .ex_postSec {
    1635   float: left;
    1636   width: 100%;
    1637 }
    1638 .ex_postSec .element {
    1639     margin: 10px 0;
    1640     float: left;
    1641     width: 100%;
    1642     margin-top: 0px;
    1643 }
    1644 .ex_postSec .element textarea {
    1645     width: 100%;
    1646     margin-bottom: 5px;
    1647 }
    1648 .marB0{
    1649   margin-bottom:0px;
    1650 }
    1651 .post_meta_keyvalue_section.sep_section input {
    1652     width: 100% !important;
    1653     margin-bottom: 0px !important;
    1654 }
    1655 .post_meta_keyvalue_section.sep_section .content_Style.warning {
    1656     float: right;
    1657     width: auto;
    1658     padding-left: 20px;
    1659 }
    1660 .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec.toggle2 {
    1661   width: 48%;
    1662 }
    1663 .search_box_height.searchBox_info .col_liStle {
    1664   position: relative;
    1665   float: left;
    1666 }
    1667 .search_box_height.searchBox_info .col_liStle .pxValue{
    1668 position: absolute;
    1669 right: 12px;
    1670 top: 6px;
    1671 }
    1672 .themeStyleSec .loading_icon.search_box_layout .maginfier_sec .col_liStle {
    1673   width: 30%;
    1674 }
    1675 .themeStyleSec .loading_icon.search_box_layout .maginfier_sec .col_liStle label{
    1676   width: 100%;
    1677 }
    1678 .themeStyleSec .loading_icon.search_box_layout .maginfier_sec .col_liStle .wp-picker-container .iris-picker{
    1679   margin-top: 40px;
    1680 }
    1681 .secColStyle.pro_sec {
    1682   border-left:3px solid #ff3547;
    1683 }
    1684 .sideBar_Section .starts .checked {
    1685   color: orange;
    1686 }
    1687 .sideBar_Section .starts span {
    1688   font-size: 20px;
    1689   margin-right: 3px;
    1690 }
    1691 .wrap .wpas_search .wpas_search_left .inner.shortcode_inputSec input {
    1692     padding-right: 10px;
    1693     width: 100%;
    1694     background: #ccc;
    1695     color: #444;
    1696     outline: 0;
    1697     border-radius: 0;
    1698 }
    1699 .wrap .wpas_search .wpas_search_left .inner.shortcode_inputSec .shortCol {
    1700   width: 47%;
    1701   float: left;
    1702   margin-right: 20px;
    1703 }
    1704 
    1705 .wpas_loader {
    1706     position: fixed;
    1707     width: 100%;
    1708     height: 100%;
    1709     background: rgba(255,255,255,0.8);
    1710     text-align: center;
    1711     z-index: 9999;
    1712     top: 0px;
    1713     right: 0;
     1981  }
     1982  .hidebox{
    17141983    display: none;
    1715 }
    1716 .wpas_loader img {
    1717     width: 50px;
    1718     position: relative;
    1719     top: 50%;
    1720     z-index: 999999999;
    1721 }
    1722 .advance_serach_sec .imprtExportSec .import_export_demo {
    1723     width: 100%;
    1724 }
    1725 
    1726 .advance_serach_sec .imprtExportSec .import {
    1727     float: left;
    1728     width: 100%;
    1729     border-top: 1px solid #ddd;
    1730     margin-top: 30px;
    1731     padding-top: 40px;
    1732 }
    1733 .advance_serach_sec .imprtExportSec  .colsec {
    1734     float: left;
    1735     width: 49%;
    1736 }
    1737 .advance_serach_sec .imprtExportSec  .colsec.colsec_new {
    1738     float: right;
    1739     width: 49%;
    1740 }
    1741 .advance_serach_sec .imprtExportSec .colsec select {
    1742     width: 100%;
    1743     margin-bottom: 20px;
    1744     height: 150px;
    1745 }
    1746 .advance_serach_sec .imprtExportSec .colsec textarea {
    1747     width: 100%;
    1748     margin-bottom: 20px;
    1749     height: 150px;
    1750 }
    1751 .advance_serach_sec .imprtExportSec .import textarea {
    1752     width: 49%;
    1753     height: 150px;
    1754 }
    1755 .advance_serach_sec .imprtExportSec  button {
    1756     line-height: normal;
    1757     padding: 6px 10px;
    1758     padding-top: 5px;
    1759 }
    1760 .advance_serach_sec .imprtExportSec .btn_style{
    1761     float: left;
    1762     width:100%;
    1763 }
    1764 .advance_serach_sec .imprtExportSec .loader {
    1765     margin: 5px;
    1766     display: none;
    1767 }
    1768 .mb_0{
    1769     margin-bottom: 0px;
    1770 }
    1771 .commanDiv{
    1772     float: left;
    1773     width: 100%;
    1774     box-shadow: 0px 0px 10px -2px rgba(000,000,000,.1);
    1775     background: #fffcfc;
    1776     padding: 20px;
    1777     margin-bottom: 20px;
    1778     box-sizing: border-box;
    1779 }
    1780 .help_section.commanDiv{ width: 100% }
    1781 .help_section.commanDiv p, .help_section.commanDiv li {
    1782     font-family: verdana;
    1783     font-size: 13px;
    1784 }
    1785 .help_section h4 {
    1786     margin-top: 0;
    1787     font-size: 17px;
    1788     font-family: 'PT Sans Regular', Verdana, Tahoma, sans-serif;
    1789     margin: 0 0 1em 0;
    1790     font-weight: 700;
    1791     color: #494949;
    1792 }
    1793 .help_section .column {
    1794     float: left;
    1795     width: 100%;
    1796     margin-bottom: 10px;
    1797 }
    1798 .help_section .column ul {
    1799     list-style: disc;
    1800     padding-left: 10px;
    1801 }
    1802 .help_section .column ul.list_link{
    1803    color:#0073aa;
    1804 }
    1805 .help_section .left {
    1806     float: left;
    1807     width: 60%;
    1808     border-right: 1px solid #ccc;
    1809     padding-right: 20px;
    1810     box-sizing: border-box;
    1811 }
    1812 .help_section .right {
    1813     float:right;
    1814     width: 40%;
    1815     box-sizing: border-box;
    1816     padding-left: 20px;
    1817 }
    1818 .searchBox_info input.button.button-small.wp-picker-clear {
    1819     padding-top: 0;
    1820     padding-bottom: 0;
    1821 }
    1822 
    1823 
    1824 .loader_lists li, .magnifier_icon_design li {
    1825     cursor: pointer;
    1826 }
    1827 .wpas_search_right input, button {
    1828     float: right;
    1829     width: auto;
    1830     display: inline;
    1831     margin-left: 10px !important;
    1832 }
    1833 .searchBox_info button.button.wp-color-result, .maginfier_sec button.button.wp-color-result {
    1834   margin-left: 0 !important;
    1835 }
    1836 .searchBox_info button.button.wp-color-result.wp-picker-open {
    1837   margin-left: 10px !important;
    1838 }
    1839 .show_hide_empty_taxonomies {
    1840     width: 100% !important;
    1841 }
    1842 
    1843 .advance_serach_sec .imprtExportSec .btn_style button {
    1844     float: left;
    1845     margin-left: 0px !important;
    1846 }
    1847 .advance_serach_sec .imprtExportSec .import textarea {
    1848     margin-bottom: 20px;
    1849 }
    1850 
    1851 .secColStyle button a {
    1852     color: #fff;
    1853     text-decoration: none;
    1854 }
    1855 
    1856 .buy_pro_wrapper .disable_section {
    1857     padding: 10px;
    1858 }
    1859 
    1860 .buy_pro a {
     1984 
     1985  }
     1986 
     1987  .advance_serach_sec .faq_wrapper ul li a.toggle {
     1988    padding-right: 35px;
     1989  }
     1990  .pro_feature .buy_pro a {
    18611991    position: absolute;
    18621992    top: 50%;
     
    18661996    color: #fff;
    18671997    text-decoration: none;
    1868     padding: 6px 14px;
     1998    padding: 6px 14px !important;
    18691999    transform: translate(-50%, -50%);
    1870     border-radius: 5px;
    1871 }
    1872 .buy_pro a i {
    1873     margin-left: 5px;
    1874 }
    1875 
    1876 .buy_pro a:hover {
    1877     background-color: #fc4757 !important;
    1878 }
    1879 
    1880 .buy_pro_wrapper {
    1881     position: relative;
    1882     float: left;
     2000  }
     2001  .pro_feature .buy_pro {
     2002    height: 100%;
     2003    top: 0;
     2004    z-index: 99;
     2005  }
     2006  .wpas-loader #wpas-parentloader-gif, .wpas-loader #wpas-fileloader-gif{
     2007    display: none;
     2008  }
     2009  #wpas-download-files.disabled {
     2010    pointer-events: none;
     2011    cursor: default;
     2012    opacity: 0.6;
     2013  }
     2014  /*** start Advanced search plugin page css ***/
     2015  .advance_serach_sec .language--tab .main_heading h3.edit-head {
     2016      vertical-align: middle;
     2017      margin: 0;
     2018      color: #1e272e;
     2019      font-size: 24px;
     2020      margin-top: 0px;
     2021      line-height: 36px;
     2022  }
     2023  .advance_serach_sec .language--tab {
     2024      padding: 30px;
     2025  }
     2026  .advance-translate-row {
     2027    background-color: #ffffff;
     2028    margin: 13px 0;
     2029    border: 1px solid #dddddd;
    18832030    width: 100%;
    18842031}
    1885 .buy_pro_wrapper h4 span {
    1886     float: right;
    1887     color: #ff3547;
    1888     font-style: italic;
    1889     font-size: 11px;
     2032.advance_serach_sec.accordion_section.advance-translate-row {
     2033    width: 68%;
    18902034}
    1891 .buy_pro_wrapper h4 {
    1892     border-left: 2px solid #ff3547;
     2035.accordion_section.advance-translate-tab {
     2036    float: none;
    18932037}
    1894 .buy_pro {
    1895     position: absolute;
    1896     background: rgba(126, 126, 126, 0.7);
    1897     width: 100%;
    1898     height: 80%;
    1899     padding: 0;
    1900     margin: 0;
    1901         z-index: 9999;
     2038  .advance-translate-row .helpCategories .d-flex-row {
     2039      display: flex;
     2040      flex-wrap: wrap;
     2041      margin-right: -15px;
     2042      margin-left: -15px;
     2043  }
     2044  .advance-translate-row .helpCategories .helpCategories_block {
     2045      padding: 0 15px;
     2046      flex: 0 0 33.333%;
     2047      -ms-flex: 0 0 33.333%;
     2048      max-width: 33.333%;
     2049  }
     2050  .advance-translate-row .helpCategories .helpCategories_block .helpCategories_block_inner {
     2051      text-align: center;
     2052      border: solid 1px #ddd;
     2053      border-radius: 5px;
     2054      background-color: rgb(255, 255, 255);
     2055      padding: 30px 15px;
     2056      height: 100%;
     2057      transition: all ease-in-out 0.2s;
     2058  }
     2059  .advance-translate-row .helpCategories .helpCategories_block .helpCategories_block_inner h4 {
     2060      font-size: 16px;
     2061      margin: 14px 0px;
     2062      color: #1e272e;
     2063  }
     2064  .advance-translate-row .helpCategories .helpCategories_block .helpCategories_block_inner p {
     2065      margin: 0px auto 30px;
     2066      font-size: 14px;
     2067      color: #8e8e8e;
     2068      line-height: 18px;
     2069      max-width: 300px;
     2070  }
     2071  .advance-translate-row .helpCategories .helpCategories_block .helpCategories_block_inner a.learn-more-btn {
     2072  border: solid 1px #ddd;
     2073      border-radius: 5px;
     2074      background-color: rgb(246, 248, 250);
     2075      color: #1e272e;
     2076      font-size: 14px;
     2077      text-decoration: none;
     2078      padding: 8px 13px;
     2079      display: inline-flex;
     2080      transition: all ease-in-out 0.2s;
     2081      align-items: center;
     2082  }
     2083  .advance-translate-row .helpCategories .helpCategories_block .helpCategories_block_inner a.learn-more-btn:hover {
     2084      background: #008da4;
     2085      color: #fff;
     2086      border-color: #008da4;
     2087      transition: all ease-in-out 0.2s;
     2088  }
     2089  .advance-translate-row .helpCategories .helpCategories_block .helpCategories_block_inner:hover {
     2090      box-shadow: 0px 6px 18px 0px rgb(0 0 0 / 10%);
     2091      transition: all ease-in-out 0.2s;
     2092  }
     2093  .advance-translate-row .main_heading {
     2094      margin: 0px 0 25px;
     2095  }
     2096  .advance_serach_sec .helpCategories .helpCategories_block .helpCategories_block_inner a.learn-more-btn span.wpas-loader {
     2097      display: flex;
     2098      align-items: center;
     2099  }
     2100  .wpas-loader #wpas-parentloader-gif, .wpas-loader #wpas-fileloader-gif {
     2101      width: 100%;
     2102      max-width: 13px;
     2103      margin: 0px 0 0 8px;
     2104  }
     2105  .advance-translate-row .helpCategories .helpCategories_block .helpCategories_block_inner a.learn-more-btn:hover img {
     2106      background: #fff;
     2107      border-radius: 100%;
     2108  }
     2109  .content.aspopup-content.wpas-lang-msg button.wpas-modal-btn {
     2110    display: block;
     2111    float: none;
     2112    margin: 10px auto 0 !important;
     2113    cursor: pointer;
     2114    width: 82px;
     2115    border: none;
     2116    background: #007cba;
     2117    color: #fff;
     2118    border-radius: 4px;
     2119    padding: 10px;
    19022120}
    1903 .wpas_search_left ul.accordion li a.toggle span {
    1904     color: red !important;
    1905     float: right;
    1906     font-style: italic;
    1907     font-weight: bold;
    1908     margin-right: 13px;
    1909     font-size: 11px;
     2121.aspopup .content.aspopup-content.wpas-lang-msg {
     2122    text-align: center;
    19102123}
    1911 .buy_pro_wrapper .disable_section textarea, .buy_pro_wrapper .disable_section input[type="text"], .buy_pro_wrapper .disable_section input[type="radio"], .buy_pro_wrapper .disable_section input[type="checkbox"] {
    1912      pointer-events: none;
     2124.aspopup .content.aspopup-content.wpas-lang-msg h4 {
     2125    text-align: center;
     2126    margin: 0 0 20px;
     2127    font-size: 15px;
    19132128}
    1914 
    1915 .pro_version h4.title_heading {
    1916     background-color: #fff;
    1917     color: red;
     2129.advance-translate-row, .advance-translate-row * {
     2130  box-sizing: border-box;
    19182131}
    1919 .pro_version h4.title_heading a {
    1920     margin-left: 5px;
    1921     color: #0071a1;
    1922 }
    1923 .faq_wrapper {
    1924     width: 100%;
    1925     float: left;
    1926 }
    1927 .faq_wrapper ul {
    1928     padding-left: 0px !important;
    1929 }
    1930 .faq_wrapper ul li {
    1931     list-style: none;
    1932 }
    1933 .faq_wrapper ul li .inner {
    1934     padding: 8px 15px;
    1935     margin: 0;
    1936 }
    1937 p.pro-info, .pro-infomax {
    1938     color: #ff3547 !important;
    1939     font-style: italic;
    1940     font-weight: bold;
    1941     margin-right: 13px;
    1942     font-size: 13px;
    1943     display: inline-block;
     2132  /*** End Advanced search plugin page css ***/
     2133  /* Responsive Media Querys Here */
     2134  @media (max-width:1280px){
     2135    h4.title_heading{ font-size:12px; }
     2136    .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec{ min-width: 160px; width: auto; }
     2137  }
     2138  @media (max-width:1279px){
     2139    .wrap .wpas_search .wpas_search_left .inner.shortcode_inputSec .shortCol{  width: 100%; }
     2140    .advance_serach_sec .secColInfo form label{ min-width: 210px; }
     2141  }
     2142  @media (max-width:1199px){
     2143    .advance_serach_sec .search_box form input{ width: 270px; }
     2144    .advance_serach_sec .search_box_list ul li input{ max-width: 120px; }
     2145    .advance_serach_sec .secColInfo form label{ min-width: inherit; }
     2146    .box_dropdown_advance{ width: 210px; }
     2147    .advance_serach_sec .secColInfo form label{ display: block; width: 100%; }
     2148    .buy_pro_wrapper h4 span{ float: none; width: 100%; display: block; }
     2149    .magnifier_sec ul.searchMBox{ flex-wrap: wrap ; }
     2150    .advance_serach_sec.accordion_section.advance-translate-row {
    19442151    width: 100%;
    19452152}
    1946 /* Chrome, Safari, Edge, Opera */
    1947 .searchBox_info input[type=number]::-webkit-outer-spin-button,
    1948 .searchBox_info input[type=number]::-webkit-inner-spin-button {
    1949   -webkit-appearance: none;
    1950   margin: 0;
     2153.sideBar_Section {
     2154    width: 100%;
    19512155}
    1952 
    1953 /* Firefox */
    1954 .searchBox_info input[type=number] {
    1955     -moz-appearance: textfield;
    1956     background: #fff;
    1957     border: 1px solid #ccc;
    1958     width: auto;
    1959     font-size: 14px;
    1960     padding: 4px 10px;
    1961     border-radius: 5px;
    1962     float: left;
    1963     width: 100px;
    1964     padding-right: 50px;
     2156.advance_serach_sec {
     2157    width: 100%;
    19652158}
    1966 .pl-10{
    1967   padding-left: 10px;
    1968 }
    1969 .magnifier_sec ul.searchMBox {
    1970   display: flex;
    1971   justify-content: space-between;
    1972 }
    1973 .wpas_search_input {
    1974   margin-bottom: 0 !important;
    1975 }
    1976 .toplevel_page_advance-search img {
    1977     width: 16px;
    1978 }
    1979 .displaybox{
    1980   display: block;
    1981 }
    1982 .hidebox{
    1983   display: none;
    1984 
    1985 }
    1986 
    1987 .advance_serach_sec .faq_wrapper ul li a.toggle {
    1988   padding-right: 35px;
    1989 }
    1990 .pro_feature .buy_pro a {
    1991   position: absolute;
    1992   top: 50%;
    1993   text-align: center;
    1994   left: 50%;
    1995   background-color: #ff3547 !important;
    1996   color: #fff;
    1997   text-decoration: none;
    1998   padding: 6px 14px !important;
    1999   transform: translate(-50%, -50%);
    2000 }
    2001 .pro_feature .buy_pro {
    2002   height: 100%;
    2003   top: 0;
    2004   z-index: 99;
    2005 }
    2006 /* Responsive Media Querys Here */
    2007 @media (max-width:1280px){
    2008   h4.title_heading{ font-size:12px; }
    2009   .accordion_section.advance_serach_sec .accordion .checkbox_toggleSec{ min-width: 160px; width: auto; }
    2010 }
    2011 @media (max-width:1279px){
    2012   .wrap .wpas_search .wpas_search_left .inner.shortcode_inputSec .shortCol{  width: 100%; }
    2013   .advance_serach_sec .secColInfo form label{ min-width: 210px; }
    2014 }
    2015 @media (max-width:1199px){
    2016   .advance_serach_sec .search_box form input{ width: 270px; }
    2017   .advance_serach_sec .search_box_list ul li input{ max-width: 120px; }
    2018   .advance_serach_sec .secColInfo form label{ min-width: inherit; }
    2019   .box_dropdown_advance{ width: 210px; }
    2020   .advance_serach_sec .secColInfo form label{ display: block; width: 100%; }
    2021   .buy_pro_wrapper h4 span{ float: none; width: 100%; display: block; }
    2022   .magnifier_sec ul.searchMBox{ flex-wrap: wrap ; }
    2023 }
    2024 @media (max-width:991px){
    2025   .advance_serach_sec .search_box form input{ width: 200px; }
    2026   .advance_serach_sec .search_box_list ul li span.content_style{ width: 170px; }
    2027   input, textarea{ font-size: 14px; }
    2028  
    2029   .wrap code{ display:block; }
    2030   .wrap code span{ display: inline-block; }
    2031 }
    2032 @media (max-width:782px){
    2033   .advance_serach_sec .search_box .submit input{ line-height: normal; }
    2034   .advance_serach_sec .search_box_list ul li input{ min-height: 30px; line-height: normal; }
    2035 }
    2036 
    2037 @media screen and (max-width: 480px){
    2038   .chart li{height:auto}
    2039   .chart li:before{color:black;display:block;left:0;position:relative}
    2040   .chart li.title:before{border-bottom:1px solid}
    2041   .chart li .bar{height:23px}
    2042   .chart li .number{display:block;left:0 !important;padding-left:0;position:relative;top:-8px}
    2043 }
    2044 
    2045 .go_pro_link {
    2046   color: #ff3547;
    2047   font-weight: bolder;
    2048 }
    2049 .searchBox_info.buy_pro_wrapper .col_liStle .lable_magn {
    2050   width: 100%;
    2051 }
     2159  }
     2160  @media (max-width:991px){
     2161    .advance_serach_sec .search_box form input{ width: 200px; }
     2162    .advance_serach_sec .search_box_list ul li span.content_style{ width: 170px; }
     2163    input, textarea{ font-size: 14px; }
     2164   
     2165    .wrap code{ display:block; }
     2166    .wrap code span{ display: inline-block; }
     2167  }
     2168  @media (max-width:782px){
     2169    .advance_serach_sec .search_box .submit input{ line-height: normal; }
     2170    .advance_serach_sec .search_box_list ul li input{ min-height: 30px; line-height: normal; }
     2171  }
     2172 
     2173  @media screen and (max-width: 480px){
     2174    .chart li{height:auto}
     2175    .chart li:before{color:black;display:block;left:0;position:relative}
     2176    .chart li.title:before{border-bottom:1px solid}
     2177    .chart li .bar{height:23px}
     2178    .chart li .number{display:block;left:0 !important;padding-left:0;position:relative;top:-8px}
     2179  }
     2180 
     2181  .go_pro_link {
     2182    color: #ff3547;
     2183    font-weight: bolder;
     2184  }
     2185  .searchBox_info.buy_pro_wrapper .col_liStle .lable_magn {
     2186    width: 100%;
     2187  }
  • advance-search/trunk/inc/admin/css/popup.css

    r2597560 r2911182  
    511511    position: absolute;
    512512    top: 11px;
    513     right: 11px;
     513    right: 10px;
    514514    transition: all 200ms;
    515     line-height: 18px;
     515    line-height: 16px;
    516516    font-size: 20px;
    517517    font-weight: normal;
  • advance-search/trunk/inc/admin/js/advance-search-admin.js

    r2601509 r2911182  
    11( function( $ ) {
    2     "use strict";
    3 
    4     /**
    5      * All of the code for your admin-facing JavaScript source
    6      * should reside in this file.
    7      *
    8      * Note: It has been assumed you will write jQuery code here, so the
    9      * $ function reference has been prepared for usage within the scope
    10      * of this function.
    11      *
    12      * This enables you to define handlers, for when the DOM is ready:
    13      *
    14      * $(function() {
    15      *
    16      * });
    17      *
    18      * When the window is loaded:
    19      *
    20      * $( window ).load(function() {
    21      *
    22      * });
    23      *
    24      * ...and/or other possibilities.
    25      *
    26      * Ideally, it is not considered best practise to attach more than a
    27      * single DOM-ready or window-load handler for a particular page.
    28      * Although scripts in the WordPress core, Plugins and Themes may be
    29      * practising this, we should strive to set a better example in our own work.
    30      *
    31      * The file is enqueued from inc/admin/class-admin.php.
    32      */
    33 
    34     jQuery(document).on('click', '#ad_dismiss', function(){
    35       var admin_page_url = jQuery(this).attr('data_url');
    36       window.history.replaceState({}, document.title, admin_page_url);
    37       jQuery(this).closest('.notice').remove();
    38     });
    39     jQuery(document).ready(function() {
    40       if(js_params.has_msg != ''){
    41         window.history.replaceState({}, document.title, js_params.has_msg);
    42       }
    43      jQuery('.toggle').click(function(e) {
    44      e.preventDefault();
    45  
    46     var $this = jQuery(this);
    47  
    48     if ($this.next().hasClass('show')) {
    49         $this.next().removeClass('show');
    50         $this.next().slideUp(350);
    51         $this.removeClass('active');
    52     } else {
    53         $this.parent().parent().find('li .inner').removeClass('show');
    54         $this.parent().parent().find('li .inner').slideUp(350);
    55         $this.next().toggleClass('show');
    56         $this.next().slideToggle(350);
    57         jQuery('.toggle').removeClass('active');
    58         $this.addClass('active');
    59     }
    60 });
    61 
    62 
    63 });
    64 
    65 })( jQuery );
    66 
    67     // color picker
    68 
    69 jQuery(document).ready(function(){
    70  
    71   if(jQuery('#advance_search_posttype_chkbox .checkarea').is(":checked"))
    72   {
    73     jQuery('#postSearch').show();
    74   }else{
    75     jQuery('#postSearch').hide();
    76   }
    77 
    78   if(jQuery('#advance_search_taxonomy_chkbox .checkarea').is(":checked"))
    79   {
    80     jQuery('#taxonomySearch').show();
    81   }else{
    82     jQuery('#taxonomySearch').hide();
    83   }
    84 
    85   jQuery('#advance_search_posttype_chkbox .checkarea').click(function() {
    86    
    87     posttype_with_taxonomies(jQuery('#advance_search_posttype_chkbox .checkarea'), jQuery('#postSearch'),'subposting');
    88   });
    89   jQuery('#advance_search_taxonomy_chkbox .checkarea').click(function() {
    90    
    91     posttype_with_taxonomies(jQuery('#advance_search_taxonomy_chkbox .checkarea'), jQuery('#taxonomySearch'),'subtaxonoy');
    92   });
    93 
    94   function posttype_with_taxonomies(parentselector,hideselector,data_check){
    95     var advanced_search_check_posttype = [];
    96     parentselector.each(function(index, value) {
    97         if(jQuery(this).is(":checked")){
    98           advanced_search_check_posttype.push(value);
     2  "use strict";
     3 
     4  /**
     5       * All of the code for your admin-facing JavaScript source
     6       * should reside in this file.
     7       *
     8       * Note: It has been assumed you will write jQuery code here, so the
     9       * $ function reference has been prepared for usage within the scope
     10       * of this function.
     11       *
     12       * This enables you to define handlers, for when the DOM is ready:
     13       *
     14       * $(function() {
     15       *
     16       * });
     17       *
     18       * When the window is loaded:
     19       *
     20       * $( window ).load(function() {
     21       *
     22       * });
     23       *
     24       * ...and/or other possibilities.
     25       *
     26       * Ideally, it is not considered best practise to attach more than a
     27       * single DOM-ready or window-load handler for a particular page.
     28       * Although scripts in the WordPress core, Plugins and Themes may be
     29       * practising this, we should strive to set a better example in our own work.
     30       *
     31       * The file is enqueued from inc/admin/class-admin.php.
     32       */
     33 
     34     jQuery(document).on('click', '#ad_dismiss', function(e){
     35      jQuery('.dismiss-icon').hide();
     36  })
     37    jQuery(document).ready(function () {
     38      var admin_page_url = 'admin.php?page=advance-search';
     39      window.history.replaceState({}, document.title, admin_page_url);
     40        if(js_params.has_msg != ''){
     41          window.history.replaceState({}, document.title, js_params.has_msg);
     42        }
     43       jQuery('.toggle').click(function(e) {
     44       e.preventDefault();
     45   
     46      var $this = jQuery(this);
     47   
     48      if ($this.next().hasClass('show')) {
     49          $this.next().removeClass('show');
     50          $this.next().slideUp(350);
     51          $this.removeClass('active');
     52      } else {
     53          $this.parent().parent().find('li .inner').removeClass('show');
     54          $this.parent().parent().find('li .inner').slideUp(350);
     55          $this.next().toggleClass('show');
     56          $this.next().slideToggle(350);
     57          jQuery('.toggle').removeClass('active');
     58          $this.addClass('active');
     59      }
     60  });
     61 
     62 
     63  });
     64 
     65  })( jQuery );
     66 
     67      // color picker
     68 
     69  jQuery(document).ready(function(){
     70   
     71    if(jQuery('#advance_search_posttype_chkbox .checkarea').is(":checked"))
     72    {
     73      jQuery('#postSearch').show();
     74    }else{
     75      jQuery('#postSearch').hide();
     76    }
     77 
     78    if(jQuery('#advance_search_taxonomy_chkbox .checkarea').is(":checked"))
     79    {
     80      jQuery('#taxonomySearch').show();
     81    }else{
     82      jQuery('#taxonomySearch').hide();
     83    }
     84 
     85    jQuery('#advance_search_posttype_chkbox .checkarea').click(function() {
     86     
     87      posttype_with_taxonomies(jQuery('#advance_search_posttype_chkbox .checkarea'), jQuery('#postSearch'),'subposting');
     88    });
     89    jQuery('#advance_search_taxonomy_chkbox .checkarea').click(function() {
     90     
     91      posttype_with_taxonomies(jQuery('#advance_search_taxonomy_chkbox .checkarea'), jQuery('#taxonomySearch'),'subtaxonoy');
     92    });
     93 
     94    function posttype_with_taxonomies(parentselector,hideselector,data_check){
     95      var advanced_search_check_posttype = [];
     96      parentselector.each(function(index, value) {
     97          if(jQuery(this).is(":checked")){
     98            advanced_search_check_posttype.push(value);
     99          }
     100        });
     101      if(advanced_search_check_posttype.length == 0){
     102        hideselector.hide();
     103        jQuery("[data-check="+data_check+"]").prop('checked', false);
     104      }
     105      else{
     106        hideselector.show();
     107      }
     108    }
     109 
     110 
     111      jQuery('.my-color-field').wpColorPicker();
     112      jQuery('.wpas_color_field').each(function(){
     113          jQuery(this).wpColorPicker();
     114      });
     115  });
     116 
     117  // clone and delete search
     118 
     119  jQuery(document).ready(function(){
     120 
     121      // clone popup
     122      jQuery('.aclone_search').click(function(e) {
     123        jQuery("div#ClonePopup").css({"visibility":"visible", "opacity":"1"});
     124        var scname = jQuery(this).attr('data-scname');
     125        var targetid = jQuery(this).data('id');
     126        jQuery("span.csname-heading").text(scname);
     127        jQuery("#advance-search-ajaxsearch_form").val(scname);
     128        jQuery(".aspopup-form-area #clone_search").attr('data-id',targetid);
     129      });
     130 
     131      jQuery(document).on('click', '.aspopup-header .close, .wpas-modal-btn',function(e) {
     132        jQuery("div#ClonePopup").removeAttr("style");
     133        jQuery('#ClonePopup .pro-info').hide();
     134     
     135      });
     136     
     137 
     138 
     139      // clone / delete setting
     140     
     141 
     142      jQuery('.search_imp_ajax').click(function() {
     143       
     144          var search_id = jQuery(this).attr('data-id');
     145          var type = jQuery(this).attr('data-type');
     146          var nonce = jQuery("#extra_ajax_hidden").val();
     147          var clonenum = jQuery(this).attr('data-num');
     148         
     149          var shortcodeName = jQuery("#advance-search-ajaxsearch_form").val();
     150          var dataAjax = jQuery(this).attr('data-ajax');
     151          if (jQuery(this).hasClass('delete_search')){
     152            var del=confirm(js_params.delete_record_text);
     153            if(del==true){
     154              jQuery(".delete_search").attr("data-ajax", "Yes");
     155              dataAjax = "Yes"
     156              dataDeleteAjax = "Yes"
     157            }else{
     158              jQuery(".delete_search").attr("data-ajax", "No");
     159              dataAjax = "No"
     160            }
     161           
     162          }
     163         
     164         if(dataAjax == 'Yes'){         
     165            var test=0;
     166            jQuery.ajax({
     167                url: ajaxurl, // domain/wp-admin/admin-ajax.php
     168                type: "POST",
     169                dataType: "json",
     170                data: {
     171                    action: "WPAS_Advanced_Search_extra_ajax",
     172                    ajax_type: type,
     173                    security:nonce,
     174                    form_id : search_id,
     175                    'search_form_name': shortcodeName,
     176                    "cloneNum" : clonenum
     177            },
     178                success: function(data) {
     179                    if(data.astext == 'true' ){
     180                      jQuery('.as-alreadyexists').hide();
     181                      jQuery('.as-namelength').hide();
     182                      jQuery('.as-validname').hide();
     183                       jQuery('.as-success').show();         
     184                      setTimeout(function(){
     185                      var admin_url = jQuery('.aclone_search').attr('data_url');
     186                     window.location.href = admin_url;
     187                    }, 300);
     188                     
     189                    }
     190                    else if(data.astext == 'already-exists' ){
     191                      jQuery('.as-alreadyexists').show();
     192                      jQuery('.as-validname').hide();
     193                      jQuery('.as-namelength').hide();
     194                      return false;
     195                     }else if(data.astext == 'empty'){
     196                      jQuery('.as-validname').show();
     197                        jQuery('.as-alreadyexists').hide();
     198                        jQuery('.as-namelength').hide();
     199                        jQuery('.as-success').hide();
     200                     }else if(data.astext == 'name-length'){
     201                      jQuery('.as-validname').hide();
     202                        jQuery('.as-alreadyexists').hide();
     203                        jQuery('.as-namelength').show();
     204                        jQuery('.as-success').hide();
     205                     }
     206 
     207                   
     208                     else{
     209                      setTimeout(function(){
     210                      alert(js_params.something_wrong_text);
     211                           location.reload();
     212             }, 300);
     213                     }
     214 
     215          },
     216          error: function (data) {
     217 
     218          }
     219        });
     220      }
     221 
     222  });
     223    jQuery('.btn-submit').addClass('pointer-event-none');
     224    jQuery('#advance-search-search_form').on('keyup', function
     225    () {
     226      var nameInput = jQuery(this).val().replace(/^\s+|\s+$/g, "").length != 0;
     227        let isValid = nameInput != "" && nameInput != null;
     228        if(nameInput == "" || nameInput == null){
     229          jQuery('.btn-submit').addClass('pointer-event-none');
     230        }
     231        else{
     232          jQuery('.btn-submit').removeClass('pointer-event-none');
    99233        }
    100234      });
    101     if(advanced_search_check_posttype.length == 0){
    102       hideselector.hide();
    103       jQuery("[data-check="+data_check+"]").prop('checked', false);
    104     }
    105     else{
    106       hideselector.show();
    107     }
    108   }
    109 
    110 
    111     jQuery('.my-color-field').wpColorPicker();
    112     jQuery('.wpas_color_field').each(function(){
    113         jQuery(this).wpColorPicker();
    114     });
    115 });
    116 
    117 // clone and delete search
    118 
    119 jQuery(document).ready(function(){
    120 
    121     // clone popup
    122     jQuery('.aclone_search').click(function(e) {
    123       jQuery("div#ClonePopup").css({"visibility":"visible", "opacity":"1"});
    124       var scname = jQuery(this).attr('data-scname');
    125       var targetid = jQuery(this).data('id');
    126       jQuery("span.csname-heading").text(scname);
    127       jQuery("#advance-search-ajaxsearch_form").val(scname);
    128       jQuery(".aspopup-form-area #clone_search").attr('data-id',targetid);
    129     });
    130 
    131     jQuery('.aspopup-header .close').click(function(e) {
    132       jQuery("div#ClonePopup").removeAttr("style");
    133       jQuery('#ClonePopup .pro-info').hide();
    134      
    135     });
    136 
    137     // clone / delete setting
    138    
    139 
    140     jQuery('.search_imp_ajax').click(function() {
    141      
    142         var search_id = jQuery(this).attr('data-id');
    143         var type = jQuery(this).attr('data-type');
    144         var nonce = jQuery("#extra_ajax_hidden").val();
    145         var clonenum = jQuery(this).attr('data-num');
    146        
    147         var shortcodeName = jQuery("#advance-search-ajaxsearch_form").val();
    148         var dataAjax = jQuery(this).attr('data-ajax');
    149         if (jQuery(this).hasClass('delete_search')){
    150           var del=confirm(js_params.delete_record_text);
    151           if(del==true){
    152             jQuery(".delete_search").attr("data-ajax", "Yes");
    153             dataAjax = "Yes"
    154             dataDeleteAjax = "Yes"
    155           }else{
    156             jQuery(".delete_search").attr("data-ajax", "No");
    157             dataAjax = "No"
    158           }
    159          
    160         }
    161        
    162        if(dataAjax == 'Yes'){         
    163           var test=0;
    164           jQuery.ajax({
    165               url: ajaxurl, // domain/wp-admin/admin-ajax.php
    166               type: "POST",
    167               dataType: "json",
    168               data: {
    169                   action: "WPAS_Advanced_Search_extra_ajax",
    170                   ajax_type: type,
    171                   security:nonce,
    172                   form_id : search_id,
    173                   'search_form_name': shortcodeName,
    174                   "cloneNum" : clonenum
    175           },
    176               success: function(data) {
    177                   if(data.astext == 'true' ){
    178                     jQuery('.as-alreadyexists').hide();
    179                     jQuery('.as-namelength').hide();
    180                     jQuery('.as-validname').hide();
    181                      jQuery('.as-success').show();                     
    182                     setTimeout(function(){
    183                     var admin_url = jQuery('.aclone_search').attr('data_url');
    184                    window.location.href = admin_url;
    185                   }, 300);
    186                    
    187                   }
    188                   else if(data.astext == 'already-exists' ){
    189                     jQuery('.as-alreadyexists').show();
    190                     jQuery('.as-validname').hide();
    191                     jQuery('.as-namelength').hide();
    192                     return false;
    193                    }else if(data.astext == 'empty'){
    194                     jQuery('.as-validname').show();
    195                       jQuery('.as-alreadyexists').hide();
    196                       jQuery('.as-namelength').hide();
    197                       jQuery('.as-success').hide();
    198                    }else if(data.astext == 'name-length'){
    199                     jQuery('.as-validname').hide();
    200                       jQuery('.as-alreadyexists').hide();
    201                       jQuery('.as-namelength').show();
    202                       jQuery('.as-success').hide();
    203                    }
    204 
    205                  
    206                    else{
    207                     setTimeout(function(){
    208                     alert(js_params.something_wrong_text);
    209                         location.reload();
    210                       }, 300);
    211                    }
    212  
    213               },
    214               error: function(data){
    215                
    216               }
    217           });
    218       }
    219        
    220     });
    221     jQuery('.btn-submit').addClass('pointer-event-none');
    222     jQuery('#advance-search-search_form').on('keyup', function () {
    223       var nameInput = jQuery(this).val().replace(/^\s+|\s+$/g, "").length != 0;
    224       let isValid = nameInput != "" && nameInput != null;
    225       if(nameInput == "" || nameInput == null){
    226         jQuery('.btn-submit').addClass('pointer-event-none');
    227       }
    228       else{
    229         jQuery('.btn-submit').removeClass('pointer-event-none');
    230       }
    231     });
    232    
    233  
    234    
    235     jQuery("input.restricted").keyup(function (e) {
    236             var str = jQuery(this).val();
    237             var string = str.replace("-", '');
    238             jQuery(this).val(string);
    239         });
    240 
    241 });
    242 
    243 
    244 /*********** verify email popup *************/
    245 
    246 jQuery(window).load(function (e) {
    247   jQuery('.wfmrs').delay(10000).slideDown('slow');
    248   jQuery('.lokhal_verify_email_popup').slideDown();
    249   jQuery('.lokhal_verify_email_popup_overlay').show();
    250 });
    251 
    252 jQuery(document).ready(function () {
    253 
    254 jQuery('.lokhal_cancel').click(function (e) {
    255     e.preventDefault();
    256     var email = jQuery('#verify_lokhal_email').val();
    257     var fname = jQuery('#verify_lokhal_fname').val();
    258     var lname = jQuery('#verify_lokhal_lname').val();
    259     jQuery('.lokhal_verify_email_popup').slideUp();
    260     jQuery('.lokhal_verify_email_popup_overlay').hide();
    261     send_ajax('cancel', email, fname, lname);
    262   });
    263   jQuery('.verify_local_email').click(function (e) {
    264     e.preventDefault();
    265     var email = jQuery('#verify_lokhal_email').val();
    266     var fname = jQuery('#verify_lokhal_fname').val();
    267     var lname = jQuery('#verify_lokhal_lname').val();
    268     var checkEmail = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
    269    
    270     var send_mail = true;
    271     jQuery('.error_msg').hide();
    272     if (fname == '') {
    273       jQuery('#fname_error').show();
    274       send_mail = false;
    275     }
    276     if (lname == '') {
    277       jQuery('#lname_error').show();
    278       send_mail = false;
    279     }
    280     if (email == '') {
    281       jQuery('#email_error').show();
    282       send_mail = false;
    283     }
    284     else if (!checkEmail.test(email)){
    285     jQuery('#email_error_valid').show();
    286     jQuery('#email_error').hide();
    287      send_mail = false;
    288     }
    289     if (send_mail) {
     235   
     236   
     237   
     238     jQuery("input.restricted").keyup(function (e) {
     239         var str = jQuery(this).val();
     240         var string = str.replace("-", '');
     241         jQuery(this).val(string);
     242               });
     243 
     244  });
     245 
     246 
     247  /*********** verify email popup *************/
     248 
     249  jQuery(window).load(function (e) {
     250    jQuery('.wfmrs').delay(10000).slideDown('slow');
     251    jQuery('.lokhal_verify_email_popup').slideDown();
     252    jQuery('.lokhal_verify_email_popup_overlay').show();
     253  });
     254 
     255  jQuery(document).ready(function () {
     256 
     257  jQuery('.lokhal_cancel').click(function (e) {
     258      e.preventDefault();
     259      var email = jQuery('#verify_lokhal_email').val();
     260      var fname = jQuery('#verify_lokhal_fname').val();
     261      var lname = jQuery('#verify_lokhal_lname').val();
    290262      jQuery('.lokhal_verify_email_popup').slideUp();
    291263      jQuery('.lokhal_verify_email_popup_overlay').hide();
    292       send_ajax('verify', email, fname, lname);
    293     }
    294   });
    295   // mac
    296   if (navigator.userAgent.indexOf('Mac OS X') != -1) {
    297     jQuery("body").addClass("mac");
    298   } else {
    299     jQuery("body").addClass("windows");
     264      send_ajax('cancel', email, fname, lname);
     265    });
     266    jQuery('.verify_local_email').click(function (e) {
     267      e.preventDefault();
     268      var email = jQuery('#verify_lokhal_email').val();
     269      var fname = jQuery('#verify_lokhal_fname').val();
     270      var lname = jQuery('#verify_lokhal_lname').val();
     271      var checkEmail = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
     272   
     273      var send_mail = true;
     274      jQuery('.error_msg').hide();
     275      if (fname == '') {
     276        jQuery('#fname_error').show();
     277        send_mail = false;
     278      }
     279      if (lname == '') {
     280        jQuery('#lname_error').show();
     281        send_mail = false;
     282      }
     283      if (email == '') {
     284        jQuery('#email_error').show();
     285        send_mail = false;
     286      }
     287      else if (!checkEmail.test(email)){
     288        jQuery('#email_error_valid').show();
     289        jQuery('#email_error').hide();
     290        send_mail = false;
     291      }
     292      if (send_mail) {
     293        jQuery('.lokhal_verify_email_popup').slideUp();
     294        jQuery('.lokhal_verify_email_popup_overlay').hide();
     295        send_ajax('verify', email, fname, lname);
     296      }
     297    });
     298    // mac
     299    if (navigator.userAgent.indexOf('Mac OS X') != -1) {
     300      jQuery("body").addClass("mac");
     301    } else {
     302      jQuery("body").addClass("windows");
     303    }
     304 
     305    jQuery('.fm_close_msg').click(function (e) {
     306      jQuery('.fm_msg_popup').fadeOut();
     307    });
     308 
     309  });
     310 
     311  function send_ajax(todo, email, fname, lname) {
     312    jQuery.ajax({
     313      type: "post",
     314      url: ajaxurl,
     315      data: {
     316        action: "wpas_verify_email",
     317        'todo': todo,
     318        'vle_nonce': vle_nonce,
     319        'lokhal_email': email,
     320        'lokhal_fname': fname,
     321        'lokhal_lname': lname
     322      },
     323      success: function (response) {
     324        if (response == '1') {
     325          alert(js_params.confirmation_text);
     326        } else if (response == '2') {
     327        }
     328      }
     329    });
    300330  }
    301 
    302   jQuery('.fm_close_msg').click(function (e) {
    303     jQuery('.fm_msg_popup').fadeOut();
    304   });
    305 
    306 });
    307 
    308 function send_ajax(todo, email, fname, lname) {
    309   jQuery.ajax({
    310     type: "post",
    311     url: ajaxurl,
    312     data: {
    313       action: "wpas_verify_email",
    314       'todo': todo,
    315       'vle_nonce': vle_nonce,
    316       'lokhal_email': email,
    317       'lokhal_fname': fname,
    318       'lokhal_lname': lname
    319     },
    320     success: function (response) {
    321       if (response == '1') {
    322         alert(js_params.confirmation_text);
    323       } else if (response == '2') {
    324       }
    325     }
    326   });
    327 }
    328 
    329 //characters only
    330 jQuery(document).ready(function () {
    331 
    332  /* open border width and color if selected value is not none start */
    333     var SelectedborderVal= jQuery('#InputLayoutBorder').val();
    334 
    335     if(SelectedborderVal != 'none'){
    336         jQuery('#InputBorder .hideBorder').show(500);
    337     }else{
    338         jQuery('#InputBorder .hideBorder').hide(500);
    339     }
    340    
    341     var SelectedborderVal= jQuery('#BoxLayoutBorder').val();
    342 
    343     if(SelectedborderVal != 'none'){
    344         jQuery('#InputBorderBox .hideBorder').show(500);
    345     }else{
    346         jQuery('#InputBorderBox .hideBorder').hide(500);
    347     }
    348     /* open border width and color if selected value is not none end */
    349    
    350   jQuery('.serach_input_style').keypress(function(e) {
    351     var inputValue = event.charCode;
    352       if(!(inputValue >= 65 && inputValue <= 120) && (inputValue != 32 && inputValue != 0)){
    353         event.preventDefault();
    354     }
    355 });
    356    
    357 jQuery('select.borderType').on('change', function() {
    358   var $this = jQuery(this);
    359   var borderVal= this.value;
    360  
    361   if (borderVal == 'none'){
    362    
    363     $this.parents('.searchMBox li').siblings().find('.hideBorder').hide(500);
    364     $this.parents('.searchMBox li').siblings().find('.input_style').val('0');
    365     $this.parents('.searchMBox li').siblings().find('.wp-picker-clear').trigger('click');
    366    
    367     }
     331 
     332  //characters only
     333  jQuery(document).ready(function () {
     334 
     335   /* open border width and color if selected value is not none start */
     336     var SelectedborderVal= jQuery('#InputLayoutBorder').val();
     337 
     338   if(SelectedborderVal != 'none'){
     339       jQuery('#InputBorder .hideBorder').show(500);
     340   }else{
     341       jQuery('#InputBorder .hideBorder').hide(500);
     342   }
     343   
     344   var SelectedborderVal= jQuery('#BoxLayoutBorder').val();
     345 
     346   if(SelectedborderVal != 'none'){
     347       jQuery('#InputBorderBox .hideBorder').show(500);
     348   }else{
     349       jQuery('#InputBorderBox .hideBorder').hide(500);
     350   }
     351   /* open border width and color if selected value is not none end */
     352   
     353    jQuery('.serach_input_style').keypress(function(e) {
     354      var inputValue = event.charCode;
     355        if(!(inputValue >= 65 && inputValue <= 120) && (inputValue != 32 && inputValue != 0)){
     356          event.preventDefault();
     357      }
     358  });
     359   
     360  jQuery('select.borderType').on('change', function() {
     361    var $this = jQuery(this);
     362    var borderVal= this.value;
     363   
     364    if (borderVal == 'none'){
     365   
     366      $this.parents('.searchMBox li').siblings().find('.hideBorder').hide(500);
     367      $this.parents('.searchMBox li').siblings().find('.input_style').val('0');
     368      $this.parents('.searchMBox li').siblings().find('.wp-picker-clear').trigger('click');
     369   
     370      }
    368371  else{
    369     $this.parents('.searchMBox li').siblings().find('.hideBorder').show(500);
    370   }
    371 });
    372 jQuery('select.theme_replaced').on('change', function() { 
    373   var themeVal= jQuery(this).find(":selected").val()
    374   if (jQuery(themeVal) === ""){
    375    
    376   }
    377   else{
    378     jQuery('.none-option').val('0');
    379   }
    380 });
    381  
    382 });
     372      $this.parents('.searchMBox li').siblings().find('.hideBorder').show(500);
     373    }
     374  });
     375  jQuery('select.theme_replaced').on('change', function() { 
     376    var themeVal= jQuery(this).find(":selected").val()
     377    if (jQuery(themeVal) === ""){
     378     
     379    }
     380    else{
     381      jQuery('.none-option').val('0');
     382    }
     383  });
     384 
     385    });
     386 
  • advance-search/trunk/inc/admin/views/html-advance-search-admin-options.php

    r2615768 r2911182  
    954954            </div>
    955955          </li>
     956
     957
     958          <li>
     959            <a class="toggle" href="#"><i class="fa fa-language" aria-hidden="true"></i> <?php _e( 'Enable Special Character in Search', 'advance-search' ); ?></a>
     960            <div class="inner">
     961              <div>
     962                <h4 class="title_heading"><?php _e('This additional option is for enabling the special character in search results.', 'advance-search' ); ?></h4>
     963               
     964                <label>
     965                <input type="checkbox" name="search_form_setting[enable_special_character]" value="yes" <?php echo isset($settings['enable_special_character']) ? ( ($settings['enable_special_character'] == 'yes') ? 'checked="checked"': '') : ''; ?> />
     966                <?php _e('Enable Special Character', 'advance-search' ); ?>
     967                </label>
     968              </div>
     969            </div>
     970          </li>
    956971         
    957972        </ul>
     973
    958974
    959975    <div class="wpas_search_right">
  • advance-search/trunk/inc/admin/views/wpas-search.php

    r2615768 r2911182  
    1919$opt = get_option('wp_advance_search_settings');
    2020
    21 wp_register_script( 'advance-search-wpas-js', '',);
    22 wp_enqueue_script( 'advance-search-wpas-js' );
     21wp_register_script( 'advance-search-wpas-js', '');
     22wp_enqueue_script( 'advance-search-wpas-js');
    2323wp_add_inline_script(
    2424    'advance-search-wpas-js', " var vle_nonce = '". wp_create_nonce('verify-wpas-email')."'"
     
    8282        </select>
    8383        <?php if(isset($_GET['theme-search-replaced'])){ ?>
    84             <div class="updated notice is-dismissible">
     84            <div class="updated notice is-dismissible dismiss-icon">
    8585                    <p><?php _e('Successfully Replaced.', 'advance-search'); ?><button type="button" id="ad_dismiss" class="notice-dismiss" data_url=""><span class="screen-reader-text"><?php _e('Dismiss this notice.', 'advance-search'); ?></span></button></p>
    8686                </div>
  • advance-search/trunk/inc/admin/views/wpas_popup.php

    r2601509 r2911182  
    66
    77$current_user = wp_get_current_user();
    8 wp_register_script( 'advance-search-inlinepopup-js', '',);
     8wp_register_script( 'advance-search-inlinepopup-js', '');
    99wp_enqueue_script( 'advance-search-inlinepopup-js' );
    1010wp_add_inline_script(
  • advance-search/trunk/inc/common/class-common.php

    r2615768 r2911182  
    114114
    115115            $form_id = intval($requested_data['form_id']);
    116        
    117             $s = sanitize_text_field(htmlentities($requested_data['term']));
    118             $s = preg_replace('/[^A-Za-z0-9. -]/', '', $s);
    119            
    120116            global $wpdb;
    121117           
     
    130126                $search_form_settings = json_decode($search_form_settings->data, true);
    131127                $t_data = array();
     128
     129                if(isset($search_form_settings['enable_special_character']) && $search_form_settings['enable_special_character'] == 'yes'){
     130                    $s = sanitize_text_field($requested_data['term']);
     131                }else{
     132                    $s = sanitize_text_field(htmlentities($requested_data['term']));
     133
     134                }
     135                $s = preg_replace("/^[A-Za-z0-9-!?\\\\.‘'` À-ÖØ-öø-ÿĀ-ſ',_&]$/", '', $s);
    132136
    133137                $search_type = $search_form_settings['search_type'];
     
    405409            '.$title.'
    406410            <div class="wpas_wrapper">
    407         <form id="wpas-advanced-search-form_'.$form_id.'" role="search" method="POST" class="wpas_search_form search_form_'.$form_id.'" action="" onkeydown="return event.key != \'Enter\';">
     411        <form id="wpas-advanced-search-form_'.$form_id.'" role="search" method="POST" autocomplete="off" class="wpas_search_form search_form_'.$form_id.'" action="" onkeydown="return event.key != \'Enter\';">
    408412        <input type="hidden" name="form_id" value="'.$form_id.'" />
    409413        <div class="input_cont '.$button_icon_position.'">
    410414            <div class="wpas_input_container" id="wpas_input_container_'.$form_id.'">
    411                 <div class="input_box"><input required class="wpas_search_input" id="wpas_search_input_'.$form_id.'" type="search" placeholder="'. __("Search here...", 'advance-search' ).'" name="'.$in_name.'" data-formid="'.$form_id.'" />
     415                <div class="input_box"><input required class="wpas_search_input" id="wpas_search_input_'.$form_id.'" type="search" placeholder="'. __("Search here...", 'advance-search' ).'" name="'.$in_name.'" data-formid="'.$form_id.'" autocomplete="off" />
    412416                </label>
    413417                <div class="wpas_search_loader_icon" style="display:none;"><div class="'.$loader_icon.'"></div></div>
    414418    <div class="wpas_search_close">
    415                 <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="40px" height="40px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
     419                <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="40px" height="40px" viewBox="0 0 612 612" enable-background="new 0 0 612 612" xml:space="preserve">
    416420                <polygon id="x-mark-icon" points="438.393,374.595 319.757,255.977 438.378,137.348 374.595,73.607 255.995,192.225 137.375,73.622 73.607,137.352 192.246,255.983 73.622,374.625 137.352,438.393 256.002,319.734 374.652,438.378 "></polygon>
    417421                </svg>
     
    900904        $settings = json_decode($search_form_setting->data, true);
    901905
    902         wp_register_script( 'advance-search-formcommon-js', '',);
     906        wp_register_script( 'advance-search-formcommon-js', '');
    903907        wp_enqueue_script( 'advance-search-formcommon-js' );
    904908        wp_add_inline_script(
     
    937941                    inputEl.setAttribute('data-formid', ". intval($default_search_form_id). ");
    938942                    inputEl.setAttribute('style', 'margin-bottom: 0;');
     943                    inputEl.setAttribute('autocomplete', 'off');
    939944                    inputSubmit.classList.add('wpas_search_submit');
    940945                    inputSubmit.setAttribute('style', 'margin-bottom: 0;pointer-events: none;');
  • advance-search/trunk/inc/common/css/advance-search-common.css

    r2499175 r2911182  
    9595    cursor: pointer;
    9696    z-index: 2;
    97     right: 10px;
    98     top: 50%;
     97    right: 10px;
     98    top: 52%;
    9999    -webkit-transform: translateY(-50%);
    100100    -moz-transform: translateY(-50%);
     
    108108        background: #333;
    109109        border-radius: 50%;
    110         width: 20px;
    111         height: 20px;
     110        width: 12px;
     111        height: 12px;
    112112        fill: #fefefe;
    113113        padding: 4px;
  • advance-search/trunk/inc/common/js/advance-search.js

    r2601509 r2911182  
    9090    });
    9191
     92
     93$(".wpas_search_input").on("keypress", function(e) {
     94        if (e.which === 32 && !this.value.length)
     95            e.preventDefault();
     96});
     97
     98
    9299})( jQuery );
  • advance-search/trunk/inc/core/class-internationalization-i18n.php

    r2315553 r2911182  
    4848            $this->text_domain,
    4949            false,
    50             dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
     50            dirname(dirname( dirname( plugin_basename( __FILE__ ) ) ) ). '/languages'
    5151        );
    5252    }
  • advance-search/trunk/languages/advance-search.pot

    r2315553 r2911182  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: PACKAGE VERSION\n"
     4"Project-Id-Version: Advance search\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2017-09-06 09:29+0000\n"
     6"POT-Creation-Date: 2021-08-31 15:57+0530\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    99"Language-Team: \n"
    10 "Language: \n"
    1110"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
    1211"MIME-Version: 1.0\n"
    1312"Content-Type: text/plain; charset=UTF-8\n"
    1413"Content-Transfer-Encoding: 8bit\n"
    15 "X-Generator: Loco https://localise.biz/"
    16 
    17 #. Name of the plugin
     14"X-Generator: Poedit 3.0\n"
     15"X-Poedit-KeywordsList: __;_e;esc_attr__;esc_html__\n"
     16"X-Poedit-Basepath: ..\n"
     17"X-Poedit-SearchPath-0: .\n"
     18
     19#: advance-search.php:125
     20msgid "Advanced Search Includes Search Form Customizer, WooCommerce Search, AJAX Search & Voice Search support! Advanced Search plugin adds to default WordPress search engine the ability to search by content, post types, attachments from selected fields and ACF plugin fields support."
     21msgstr ""
     22
     23#: inc/admin/call-to-action-editable/index.js:38
    1824msgid "Advance Search"
    1925msgstr ""
    2026
    21 #. Description of the plugin
    22 msgid "The plugin adds an advanced search form with search suggestions using a shortcode."
    23 msgstr ""
    24 
    25 #. URI of the plugin
    26 msgid "https://wordpress.org/plugins/advance-search"
    27 msgstr ""
    28 
    29 #. Author of the plugin
    30 msgid "mndpsingh287"
    31 msgstr ""
    32 
    33 #. Author URI of the plugin
    34 msgid "https://profiles.wordpress.org/mndpsingh287"
    35 msgstr ""
     27#: inc/admin/call-to-action-editable/index.js:114
     28msgid "Advanced Search Shortcode ID"
     29msgstr ""
     30
     31#: inc/admin/class-admin.php:109
     32msgid "Are you sure you want to delete this record?"
     33msgstr ""
     34
     35#: inc/admin/class-admin.php:123 inc/admin/class-admin.php:124
     36#: inc/admin/views/help-update.php:123
     37#: inc/admin/views/html-advance-search-admin-options.php:970
     38#: inc/admin/views/import-export.php:44
     39#: inc/admin/views/search-statistics.php:48 inc/admin/views/wpas-search.php:158
     40msgid "Advanced Search"
     41msgstr ""
     42
     43#: inc/admin/class-admin.php:134 inc/admin/class-admin.php:135
     44#: inc/admin/views/help-update.php:23
     45#: inc/admin/views/html-advance-search-admin-options.php:74
     46#: inc/admin/views/import-export.php:26
     47msgid "Search Statistics"
     48msgstr ""
     49
     50#: inc/admin/class-admin.php:144 inc/admin/class-admin.php:145
     51msgid "Export/Import"
     52msgstr ""
     53
     54#: inc/admin/class-admin.php:154 inc/admin/class-admin.php:155
     55msgid "Help & Update"
     56msgstr ""
     57
     58#: inc/admin/class-admin.php:171
     59msgid "Settings"
     60msgstr ""
     61
     62#: inc/admin/class-admin.php:172 inc/admin/views/help-update.php:24
     63#: inc/admin/views/help-update.php:111 inc/admin/views/help-update.php:137
     64#: inc/admin/views/help-update.php:139
     65#: inc/admin/views/html-advance-search-admin-options.php:217
     66#: inc/admin/views/html-advance-search-admin-options.php:328
     67#: inc/admin/views/html-advance-search-admin-options.php:388
     68#: inc/admin/views/html-advance-search-admin-options.php:426
     69#: inc/admin/views/html-advance-search-admin-options.php:558
     70#: inc/admin/views/html-advance-search-admin-options.php:982
     71#: inc/admin/views/html-advance-search-admin-options.php:984
     72#: inc/admin/views/import-export.php:27 inc/admin/views/import-export.php:57
     73#: inc/admin/views/search-statistics.php:25
     74#: inc/admin/views/search-statistics.php:60
     75#: inc/admin/views/search-statistics.php:62 inc/admin/views/wpas-search.php:96
     76#: inc/admin/views/wpas-search.php:170 inc/admin/views/wpas-search.php:172
     77msgid "Go Pro"
     78msgstr ""
     79
     80#: inc/admin/class-admin.php:187 inc/admin/class-admin.php:207
     81#: inc/admin/class-admin.php:224 inc/admin/class-admin.php:241
     82msgid "You do not have sufficient permissions to access this page."
     83msgstr ""
     84
     85#: inc/admin/class-admin.php:697
     86msgid "Thanks for signing up! Just click the link below to verify your email and we’ll keep you up-to-date with the latest and greatest brewing in our dev labs!."
     87msgstr ""
     88
     89#: inc/admin/class-admin.php:731
     90msgid "Email Verified Successfully. Redirecting please wait."
     91msgstr ""
     92
     93#: inc/admin/views/help-update.php:22 inc/admin/views/import-export.php:25
     94#: inc/admin/views/search-statistics.php:24
     95msgid "Search list"
     96msgstr ""
     97
     98#: inc/admin/views/help-update.php:33
     99msgid "Support"
     100msgstr ""
     101
     102#: inc/admin/views/help-update.php:34
     103msgid "If you didn't find the answer from the FAQ, or if you are having other issues, feel free to "
     104msgstr ""
     105
     106#: inc/admin/views/help-update.php:37
     107msgid "Documentation"
     108msgstr ""
     109
     110#: inc/admin/views/help-update.php:38
     111msgid "Please check online "
     112msgstr ""
     113
     114#: inc/admin/views/help-update.php:38
     115msgid "documentation"
     116msgstr ""
     117
     118#: inc/admin/views/help-update.php:41
     119msgid "FAQ"
     120msgstr ""
     121
     122#: inc/admin/views/help-update.php:46
     123msgid "Does the plugin provide search shortcodes ?"
     124msgstr ""
     125
     126#: inc/admin/views/help-update.php:48
     127msgid "Yes, Advance Search provides a shortcode for each search form which you can use to embed it on your WordPress site using our powerful and easy to use shortcode editing tool. We provide integration with Gutenburg and classic editor."
     128msgstr ""
     129
     130#: inc/admin/views/help-update.php:49
     131msgid "For integration with most widely used editors like Visual Composer, Elementor and BB builder, you have to upgrade to our"
     132msgstr ""
     133
     134#: inc/admin/views/help-update.php:49
     135msgid "pro version"
     136msgstr ""
     137
     138#: inc/admin/views/help-update.php:54
     139msgid "Is the plugin compatible with WooCommerce ?"
     140msgstr ""
     141
     142#: inc/admin/views/help-update.php:56
     143msgid "Yes, Advance Search plugin cater you integration with WooCommerce to provide a powerful and advanced woocommerce search. Not only you can use Fuzzy searching, you can exclude/include specific WooCommerce products from search and much more."
     144msgstr ""
     145
     146#: inc/admin/views/help-update.php:61
     147msgid "Does the plugin provide search widgets ?"
     148msgstr ""
     149
     150#: inc/admin/views/help-update.php:63
     151msgid "No. Search widgets is a premium feature. You have to upgrade to our"
     152msgstr ""
     153
     154#: inc/admin/views/help-update.php:63 inc/admin/views/help-update.php:77
     155msgid "Pro Version"
     156msgstr ""
     157
     158#: inc/admin/views/help-update.php:63 inc/admin/views/help-update.php:77
     159msgid "to enable this feature."
     160msgstr ""
     161
     162#: inc/admin/views/help-update.php:68
     163msgid "Will the advance search work with my theme ?"
     164msgstr ""
     165
     166#: inc/admin/views/help-update.php:70
     167msgid "Yes. Advance Search, has been tested and works perfectly with a range of themes, including popular themes like Divi, Avada, Impreza, OceanWP and many more."
     168msgstr ""
     169
     170#: inc/admin/views/help-update.php:75
     171msgid "Does plugin provide voice search ?"
     172msgstr ""
     173
     174#: inc/admin/views/help-update.php:77
     175msgid "No. Voice search is a premium feature. You have to upgrade to our"
     176msgstr ""
     177
     178#: inc/admin/views/help-update.php:82
     179msgid "When I type in something, the search wheel is spinning, but nothing happens"
     180msgstr ""
     181
     182#: inc/admin/views/help-update.php:84
     183msgid "It is most likely, that another plugin or the template is throwing errors while the ajax request is generated. Try disabling all the plugins one by one can help you figure out which plugin is creating the issue."
     184msgstr ""
     185
     186#: inc/admin/views/help-update.php:89
     187msgid "I disabled all the plugins but the search wheel is still spinning to infinity, nothing happens"
     188msgstr ""
     189
     190#: inc/admin/views/help-update.php:91
     191msgid "You should contact us on the support forum with your website url. We will check your website and will let you know what to do."
     192msgstr ""
     193
     194#: inc/admin/views/help-update.php:96
     195msgid "Do You Offer Customization Support ?"
     196msgstr ""
     197
     198#: inc/admin/views/help-update.php:98
     199msgid "Yes, we offer free/premium customization to our customers."
     200msgstr ""
     201
     202#: inc/admin/views/help-update.php:98
     203msgid "Contact us"
     204msgstr ""
     205
     206#: inc/admin/views/help-update.php:98
     207msgid "now."
     208msgstr ""
     209
     210#: inc/admin/views/help-update.php:110
     211msgid "Checkout Pro features"
     212msgstr ""
     213
     214#: inc/admin/views/help-update.php:131
     215#: inc/admin/views/html-advance-search-admin-options.php:978
     216#: inc/admin/views/import-export.php:52
     217#: inc/admin/views/search-statistics.php:56 inc/admin/views/wpas-search.php:166
     218msgid "We love and care about you. Our team is putting maximum efforts to provide you the best functionalities. It would be highly appreciable if you could spend a couple of seconds to give a Nice Review to the plugin to appreciate our efforts. So we can work hard to provide new features regularly."
     219msgstr ""
     220
     221#: inc/admin/views/help-update.php:133
     222#: inc/admin/views/html-advance-search-admin-options.php:979
     223#: inc/admin/views/import-export.php:54
     224#: inc/admin/views/search-statistics.php:57 inc/admin/views/wpas-search.php:167
     225msgid "Rate Us"
     226msgstr ""
     227
     228#: inc/admin/views/help-update.php:138
     229#: inc/admin/views/html-advance-search-admin-options.php:983
     230#: inc/admin/views/import-export.php:58
     231#: inc/admin/views/search-statistics.php:61 inc/admin/views/wpas-search.php:171
     232msgid "Even more features available in Advanced Search Pro."
     233msgstr ""
     234
     235#: inc/admin/views/html-advance-search-admin-options.php:73
     236msgid "Back to the search list"
     237msgstr ""
     238
     239#: inc/admin/views/html-advance-search-admin-options.php:75
     240#: inc/admin/views/import-export.php:59
     241msgid "Go Pro "
     242msgstr ""
     243
     244#: inc/admin/views/html-advance-search-admin-options.php:88
     245msgid "You haven't made any changes in settings to be saved."
     246msgstr ""
     247
     248#: inc/admin/views/html-advance-search-admin-options.php:88
     249#: inc/admin/views/html-advance-search-admin-options.php:95
     250#: inc/admin/views/html-advance-search-admin-options.php:102
     251#: inc/admin/views/wpas-search.php:79
     252msgid "Dismiss this notice."
     253msgstr ""
     254
     255#: inc/admin/views/html-advance-search-admin-options.php:95
     256msgid "Settings updated successfully."
     257msgstr ""
     258
     259#: inc/admin/views/html-advance-search-admin-options.php:102
     260msgid "Settings has been restored successfully."
     261msgstr ""
     262
     263#: inc/admin/views/html-advance-search-admin-options.php:111
     264msgid "Shortcode for "
     265msgstr ""
     266
     267#: inc/admin/views/html-advance-search-admin-options.php:114
     268msgid "Simple Shortcode"
     269msgstr ""
     270
     271#: inc/admin/views/html-advance-search-admin-options.php:120
     272msgid "Search Shortcode:"
     273msgstr ""
     274
     275#: inc/admin/views/html-advance-search-admin-options.php:124
     276msgid "Add title for Search:"
     277msgstr ""
     278
     279#: inc/admin/views/html-advance-search-admin-options.php:127
     280msgid "Extra for php template use"
     281msgstr ""
     282
     283#: inc/admin/views/html-advance-search-admin-options.php:133
     284msgid "Post Types"
     285msgstr ""
     286
     287#: inc/admin/views/html-advance-search-admin-options.php:136
     288msgid "Select Post Types to Include in the Advanced Search"
     289msgstr ""
     290
     291#: inc/admin/views/html-advance-search-admin-options.php:145
     292#: inc/admin/views/html-advance-search-admin-options.php:251
     293msgid "Setting for "
     294msgstr ""
     295
     296#: inc/admin/views/html-advance-search-admin-options.php:164
     297#: inc/admin/views/html-advance-search-admin-options.php:277
     298msgid "Search Area"
     299msgstr ""
     300
     301#: inc/admin/views/html-advance-search-admin-options.php:167
     302#: inc/admin/views/html-advance-search-admin-options.php:280
     303msgid "* By enable specific area of search, search result relative from specific area i.e title, description etc."
     304msgstr ""
     305
     306#: inc/admin/views/html-advance-search-admin-options.php:175
     307#: inc/admin/views/html-advance-search-admin-options.php:296
     308msgid "Search in Title"
     309msgstr ""
     310
     311#: inc/admin/views/html-advance-search-admin-options.php:187
     312#: inc/admin/views/html-advance-search-admin-options.php:312
     313msgid "Search in Content"
     314msgstr ""
     315
     316#: inc/admin/views/html-advance-search-admin-options.php:198
     317msgid "Search by Post Meta key and Value"
     318msgstr ""
     319
     320#: inc/admin/views/html-advance-search-admin-options.php:201
     321msgid "* Search may slower by post meta key search."
     322msgstr ""
     323
     324#: inc/admin/views/html-advance-search-admin-options.php:203
     325msgid "List of Post Meta Keys"
     326msgstr ""
     327
     328#: inc/admin/views/html-advance-search-admin-options.php:205
     329msgid "* Comma \",\" separated list of post meta keys i.e Metakey1,Metakey2 etc."
     330msgstr ""
     331
     332#: inc/admin/views/html-advance-search-admin-options.php:214
     333msgid "Exclude post by ID"
     334msgstr ""
     335
     336#: inc/admin/views/html-advance-search-admin-options.php:215
     337#: inc/admin/views/html-advance-search-admin-options.php:325
     338#: inc/admin/views/html-advance-search-admin-options.php:421
     339#: inc/admin/views/html-advance-search-admin-options.php:549
     340msgid "* This feature is available in pro version."
     341msgstr ""
     342
     343#: inc/admin/views/html-advance-search-admin-options.php:221
     344msgid "Exclude Post ids"
     345msgstr ""
     346
     347#: inc/admin/views/html-advance-search-admin-options.php:224
     348msgid "Comma \",\" separated list of post IDs"
     349msgstr ""
     350
     351#: inc/admin/views/html-advance-search-admin-options.php:233
     352msgid "Taxonomies"
     353msgstr ""
     354
     355#: inc/admin/views/html-advance-search-admin-options.php:237
     356msgid "Select Taxonomies to Include in the Advanced Search"
     357msgstr ""
     358
     359#: inc/admin/views/html-advance-search-admin-options.php:324
     360msgid "Show/Hide empty taxonomies"
     361msgstr ""
     362
     363#: inc/admin/views/html-advance-search-admin-options.php:330
     364msgid "* By enable this option empty taxonomies show in search results."
     365msgstr ""
     366
     367#: inc/admin/views/html-advance-search-admin-options.php:339
     368msgid "Show Empty Taxonomies"
     369msgstr ""
     370
     371#: inc/admin/views/html-advance-search-admin-options.php:350
     372msgid "Attachments"
     373msgstr ""
     374
     375#: inc/admin/views/html-advance-search-admin-options.php:354
     376msgid "Select Attachment type to Include in the Advanced Search"
     377msgstr ""
     378
     379#: inc/admin/views/html-advance-search-admin-options.php:355
     380msgid "* Only Image name search available in free version."
     381msgstr ""
     382
     383#: inc/admin/views/html-advance-search-admin-options.php:358
     384msgid "* Select attachment type to include in search result."
     385msgstr ""
     386
     387#: inc/admin/views/html-advance-search-admin-options.php:359
     388msgid "* By enable png, jpg, gif, zip attachment search only by title."
     389msgstr ""
     390
     391#: inc/admin/views/html-advance-search-admin-options.php:421
     392msgid "User Search"
     393msgstr ""
     394
     395#: inc/admin/views/html-advance-search-admin-options.php:429
     396msgid "Enable User Search By Specific Column"
     397msgstr ""
     398
     399#: inc/admin/views/html-advance-search-admin-options.php:441
     400msgid "By First Name"
     401msgstr ""
     402
     403#: inc/admin/views/html-advance-search-admin-options.php:453
     404msgid "By Last Name"
     405msgstr ""
     406
     407#: inc/admin/views/html-advance-search-admin-options.php:465
     408msgid "By Login Name"
     409msgstr ""
     410
     411#: inc/admin/views/html-advance-search-admin-options.php:477
     412msgid "By Display Name"
     413msgstr ""
     414
     415#: inc/admin/views/html-advance-search-admin-options.php:489
     416msgid "By Email"
     417msgstr ""
     418
     419#: inc/admin/views/html-advance-search-admin-options.php:501
     420msgid "By User Bio"
     421msgstr ""
     422
     423#: inc/admin/views/html-advance-search-admin-options.php:510
     424msgid "Search by Specific Role"
     425msgstr ""
     426
     427#: inc/admin/views/html-advance-search-admin-options.php:537
     428msgid "Exclude user By ID"
     429msgstr ""
     430
     431#: inc/admin/views/html-advance-search-admin-options.php:541
     432msgid "Comma \",\" separated list of user IDs"
     433msgstr ""
     434
     435#: inc/admin/views/html-advance-search-admin-options.php:549
     436msgid "Voice Search"
     437msgstr ""
     438
     439#: inc/admin/views/html-advance-search-admin-options.php:555
     440msgid "Enable Voice Search"
     441msgstr ""
     442
     443#: inc/admin/views/html-advance-search-admin-options.php:561
     444msgid "* By enable voice option user can search by voice from frontend."
     445msgstr ""
     446
     447#: inc/admin/views/html-advance-search-admin-options.php:563
     448msgid "* Voice search support only working on those web browsers which supports webkitSpeechRecognition API.."
     449msgstr ""
     450
     451#: inc/admin/views/html-advance-search-admin-options.php:572
     452msgid "Enable Voice Search "
     453msgstr ""
     454
     455#: inc/admin/views/html-advance-search-admin-options.php:581
     456msgid "Theme & Styling"
     457msgstr ""
     458
     459#: inc/admin/views/html-advance-search-admin-options.php:588
     460msgid "Style is not implemented if this search is set as default search."
     461msgstr ""
     462
     463#: inc/admin/views/html-advance-search-admin-options.php:590
     464msgid "Overall Box layout"
     465msgstr ""
     466
     467#: inc/admin/views/html-advance-search-admin-options.php:594
     468msgid "Search Box Widths"
     469msgstr ""
     470
     471#: inc/admin/views/html-advance-search-admin-options.php:610
     472msgid "Search Box Height"
     473msgstr ""
     474
     475#: inc/admin/views/html-advance-search-admin-options.php:614
     476#: inc/admin/views/html-advance-search-admin-options.php:625
     477#: inc/admin/views/html-advance-search-admin-options.php:668
     478#: inc/admin/views/html-advance-search-admin-options.php:682
     479#: inc/admin/views/html-advance-search-admin-options.php:685
     480#: inc/admin/views/html-advance-search-admin-options.php:688
     481#: inc/admin/views/html-advance-search-admin-options.php:723
     482#: inc/admin/views/html-advance-search-admin-options.php:726
     483#: inc/admin/views/html-advance-search-admin-options.php:762
     484#: inc/admin/views/html-advance-search-admin-options.php:906
     485msgid "px"
     486msgstr ""
     487
     488#: inc/admin/views/html-advance-search-admin-options.php:621
     489msgid "Search Box Margin"
     490msgstr ""
     491
     492#: inc/admin/views/html-advance-search-admin-options.php:632
     493msgid "BackGround Color"
     494msgstr ""
     495
     496#: inc/admin/views/html-advance-search-admin-options.php:641
     497msgid "Border Type"
     498msgstr ""
     499
     500#: inc/admin/views/html-advance-search-admin-options.php:667
     501msgid "Width:"
     502msgstr ""
     503
     504#: inc/admin/views/html-advance-search-admin-options.php:674
     505#: inc/admin/views/html-advance-search-admin-options.php:768
     506msgid "Border Color:"
     507msgstr ""
     508
     509#: inc/admin/views/html-advance-search-admin-options.php:679
     510msgid "Border Radius "
     511msgstr ""
     512
     513#: inc/admin/views/html-advance-search-admin-options.php:702
     514msgid "Search Input Design"
     515msgstr ""
     516
     517#: inc/admin/views/html-advance-search-admin-options.php:708
     518msgid "Search Input Background Color:"
     519msgstr ""
     520
     521#: inc/admin/views/html-advance-search-admin-options.php:716
     522msgid "Input Font Style"
     523msgstr ""
     524
     525#: inc/admin/views/html-advance-search-admin-options.php:719
     526msgid "Search Input Font Color :"
     527msgstr ""
     528
     529#: inc/admin/views/html-advance-search-admin-options.php:723
     530msgid "Font size:"
     531msgstr ""
     532
     533#: inc/admin/views/html-advance-search-admin-options.php:726
     534msgid "Line Height:"
     535msgstr ""
     536
     537#: inc/admin/views/html-advance-search-admin-options.php:733
     538msgid "Input Border"
     539msgstr ""
     540
     541#: inc/admin/views/html-advance-search-admin-options.php:737
     542msgid "Border Type:"
     543msgstr ""
     544
     545#: inc/admin/views/html-advance-search-admin-options.php:761
     546msgid "Width: "
     547msgstr ""
     548
     549#: inc/admin/views/html-advance-search-admin-options.php:776
     550msgid "Border Radius:"
     551msgstr ""
     552
     553#: inc/admin/views/html-advance-search-admin-options.php:802
     554msgid "Icons"
     555msgstr ""
     556
     557#: inc/admin/views/html-advance-search-admin-options.php:803
     558msgid "* Only 1 magnifier and loading icon available in free version."
     559msgstr ""
     560
     561#: inc/admin/views/html-advance-search-admin-options.php:806
     562msgid "Magnifier Icons:"
     563msgstr ""
     564
     565#: inc/admin/views/html-advance-search-admin-options.php:816
     566msgid "Magnifier Icon Color:"
     567msgstr ""
     568
     569#: inc/admin/views/html-advance-search-admin-options.php:823
     570msgid "Magnifier Background Color:"
     571msgstr ""
     572
     573#: inc/admin/views/html-advance-search-admin-options.php:830
     574msgid "Button Position:"
     575msgstr ""
     576
     577#: inc/admin/views/html-advance-search-admin-options.php:833
     578msgid "Right To input"
     579msgstr ""
     580
     581#: inc/admin/views/html-advance-search-admin-options.php:834
     582msgid "Left To input"
     583msgstr ""
     584
     585#: inc/admin/views/html-advance-search-admin-options.php:848
     586msgid "Loading Icons"
     587msgstr ""
     588
     589#: inc/admin/views/html-advance-search-admin-options.php:854
     590msgid "Loading Icon Color:"
     591msgstr ""
     592
     593#: inc/admin/views/html-advance-search-admin-options.php:864
     594msgid "Search Button"
     595msgstr ""
     596
     597#: inc/admin/views/html-advance-search-admin-options.php:869
     598msgid "Search Button Text:"
     599msgstr ""
     600
     601#: inc/admin/views/html-advance-search-admin-options.php:874
     602msgid "Search Text Color:"
     603msgstr ""
     604
     605#: inc/admin/views/html-advance-search-admin-options.php:885
     606msgid "Show Search Button Text"
     607msgstr ""
     608
     609#: inc/admin/views/html-advance-search-admin-options.php:892
     610msgid "Show Maginfier Icon"
     611msgstr ""
     612
     613#: inc/admin/views/html-advance-search-admin-options.php:904
     614msgid "Search Text Font Size:"
     615msgstr ""
     616
     617#: inc/admin/views/html-advance-search-admin-options.php:921
     618#: inc/admin/views/html-advance-search-admin-options.php:927
     619msgid "Fuzzy Matching"
     620msgstr ""
     621
     622#: inc/admin/views/html-advance-search-admin-options.php:924
     623msgid "'Full/Exact Word' search will work for post types only."
     624msgstr ""
     625
     626#: inc/admin/views/html-advance-search-admin-options.php:930
     627msgid "* This additional option is for more efficient search results."
     628msgstr ""
     629
     630#: inc/admin/views/html-advance-search-admin-options.php:934
     631msgid "Partial Word"
     632msgstr ""
     633
     634#: inc/admin/views/html-advance-search-admin-options.php:939
     635msgid "Full/Exact  Word"
     636msgstr ""
     637
     638#: inc/admin/views/html-advance-search-admin-options.php:944
     639msgid "* Search may slower by choosing Partial Word Search."
     640msgstr ""
     641
     642#: inc/admin/views/html-advance-search-admin-options.php:952
     643msgid "Save all changes"
     644msgstr ""
     645
     646#: inc/admin/views/html-advance-search-admin-options.php:960
     647msgid "Restore defaults"
     648msgstr ""
     649
     650#: inc/admin/views/import-export.php:35
     651#: inc/admin/views/search-statistics.php:36
     652msgid "* This feature only for pro version"
     653msgstr ""
     654
     655#: inc/admin/views/import-export.php:35
     656#: inc/admin/views/search-statistics.php:36
     657msgid " Buy Now"
     658msgstr ""
     659
     660#: inc/admin/views/wpas-search.php:44
     661msgid "Shortcode Name:"
     662msgstr ""
     663
     664#: inc/admin/views/wpas-search.php:45 inc/admin/views/wpas-search.php:309
     665msgid "Enter Shortcode Name"
     666msgstr ""
     667
     668#: inc/admin/views/wpas-search.php:46
     669msgid "Create"
     670msgstr ""
     671
     672#: inc/admin/views/wpas-search.php:48 inc/admin/views/wpas-search.php:304
     673msgid "You have reached the maximum form limit of 3 forms. <a href=\"https://searchpro.ai/\" target=\"_blank\" class=\"go_pro_link\">Buy Pro</a> for more search forms."
     674msgstr ""
     675
     676#: inc/admin/views/wpas-search.php:51 inc/admin/views/wpas-search.php:315
     677msgid "This name is already exists."
     678msgstr ""
     679
     680#: inc/admin/views/wpas-search.php:56
     681msgid "Replace search bar"
     682msgstr ""
     683
     684#: inc/admin/views/wpas-search.php:59
     685msgid "Replace default search bar with:"
     686msgstr ""
     687
     688#: inc/admin/views/wpas-search.php:66
     689msgid "None"
     690msgstr ""
     691
     692#: inc/admin/views/wpas-search.php:79
     693msgid "Successfully Replaced."
     694msgstr ""
     695
     696#: inc/admin/views/wpas-search.php:84 inc/admin/views/wpas-search.php:116
     697msgid "Save"
     698msgstr ""
     699
     700#: inc/admin/views/wpas-search.php:101
     701msgid "Replace the default woocommerce search with:"
     702msgstr ""
     703
     704#: inc/admin/views/wpas-search.php:125
     705msgid "List of shortcodes"
     706msgstr ""
     707
     708#: inc/admin/views/wpas-search.php:141
     709msgid "Edit Settings"
     710msgstr ""
     711
     712#: inc/admin/views/wpas-search.php:141 inc/admin/views/wpas-search.php:311
     713msgid "Clone Settings"
     714msgstr ""
     715
     716#: inc/admin/views/wpas-search.php:141
     717msgid "Delete Search"
     718msgstr ""
     719
     720#: inc/admin/views/wpas-search.php:149
     721msgid "Oops! Shortcode(s) not found."
     722msgstr ""
     723
     724#: inc/admin/views/wpas-search.php:213
     725msgid "Welcome to Advanced Search"
     726msgstr ""
     727
     728#: inc/admin/views/wpas_popup.php:34
     729msgid ""
     730"We love making new friends! Subscribe below and we promise to\n"
     731"    keep you up-to-date with our latest new plugins, updates,\n"
     732"    awesome deals and a few special offers."
     733msgstr ""
     734
     735#: inc/admin/views/wpas-search.php:227
     736msgid "Please Enter First Name."
     737msgstr ""
     738
     739#: inc/admin/views/wpas-search.php:235
     740msgid "Please Enter Last Name."
     741msgstr ""
     742
     743#: inc/admin/views/wpas-search.php:244
     744msgid "Please Enter Email Address."
     745msgstr ""
     746
     747#: inc/admin/views/wpas-search.php:245
     748msgid "Please Enter Valid Email Address."
     749msgstr ""
     750
     751#: inc/admin/views/wpas-search.php:249
     752msgid "Verify"
     753msgstr ""
     754
     755#: inc/admin/views/wpas-search.php:255
     756msgid "No Thanks"
     757msgstr ""
     758
     759#: inc/admin/views/wpas-search.php:261
     760msgid "Terms of Service"
     761msgstr ""
     762
     763#: inc/admin/views/wpas-search.php:263
     764msgid "Privacy Policy"
     765msgstr ""
     766
     767#: inc/admin/views/wpas-search.php:281
     768msgid "Saving..."
     769msgstr ""
     770
     771#: inc/admin/views/wpas-search.php:283
     772msgid "OK"
     773msgstr ""
     774
     775#: inc/admin/views/wpas-search.php:292
     776msgid "Clone Shortcode: "
     777msgstr ""
     778
     779#: inc/admin/views/wpas-search.php:311
     780msgid "Clone"
     781msgstr ""
     782
     783#: inc/admin/views/wpas-search.php:316
     784msgid "Please enter Shortcode Name."
     785msgstr ""
     786
     787#: inc/admin/views/wpas-search.php:317
     788msgid "Shortcode Successfully created."
     789msgstr ""
     790
     791#: inc/common/class-common.php:312
     792msgid "No results found."
     793msgstr ""
     794
     795#: inc/admin/views/help-update.php:34
     796msgid "open a support ticket."
     797msgstr ""
     798
     799#: inc/common/class-common.php:434
     800msgid "Search here..."
     801msgstr "Soek hier ..."
     802
     803#: inc/common/class-common.php:453
     804#, fuzzy
     805#| msgid "Search Shortcode:"
     806msgid "Search form not found !"
     807msgstr "Soek kortkode:"
     808
     809#: inc/admin/views/wpas_popup.php:43
     810msgid "First Name"
     811msgstr ""
     812
     813#: inc/admin/views/wpas_popup.php:51
     814msgid "Last Name"
     815msgstr ""
     816
     817#: inc/admin/views/wpas_popup.php:60
     818msgid "Email Address"
     819msgstr ""
  • advance-search/trunk/readme.txt

    r2669548 r2911182  
    33Tags: ajax search, better search, advanced search, search, search engine, site search, search, voice search, ajax search, woocommerce search, wordpress search, tags search, user search, multiple search forms, taxonomies, attachment.
    44Requires at least: 4.0
    5 Tested up to: 5.9
     5Tested up to: 6.2
    66Requires PHP: 5.2.4
    7 Stable tag: 1.1.5
     7Stable tag: 1.1.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    151151== Changelog ==
    152152
     153= 1.1.6 (11th May, 2023) =
     154
     155* Fixed compatibility issues till wordpress 6.2 version.
     156* Fixed onload success message hide and search form UI
     157* Fixed Special character issue on search.
     158
    153159= 1.1.5 (27th Jan, 2022)  =
    154160
Note: See TracChangeset for help on using the changeset viewer.