Email Subscribers & Newsletters - Version 4.8.0

Version Description

  • New: Weekly summary email [PRO]
  • New: Campaign unsubscribe count [PRO]
  • Fix: Long SQL query killed while sending to large number of emails on WP Engine host
  • Fix: CSS conflict on WordPress admin dashboard page

=

Download this release

Release Info

Developer Icegram
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 4.8.0
Comparing to
See all releases

Code changes from version 4.7.9 to 4.8.0

email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 4.7.9
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -185,7 +185,7 @@ if ( 'premium' === $ig_es_plan ) {
185
  /* ***************************** Initial Compatibility Work (End) ******************* */
186
 
187
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
188
- define( 'ES_PLUGIN_VERSION', '4.7.9' );
189
  }
190
 
191
  // Plugin Folder Path.
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 4.8.0
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
185
  /* ***************************** Initial Compatibility Work (End) ******************* */
186
 
187
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
188
+ define( 'ES_PLUGIN_VERSION', '4.8.0' );
189
  }
190
 
191
  // Plugin Folder Path.
lite/admin/class-email-subscribers-admin.php CHANGED
@@ -1295,7 +1295,7 @@ class Email_Subscribers_Admin {
1295
  wp_add_dashboard_widget( 'es_dashboard_stats_widget', __( 'Email Subscribers', 'email-subscribers' ), array( $this, 'dashboard_stats_widget' ) );
1296
 
1297
  if ( in_array( $screen_id, array( 'dashboard' ) ) ) {
1298
- wp_enqueue_style( 'ig_es_dashboard_style', plugin_dir_url( __FILE__ ) . 'dist/main.css', array(), $this->version, 'all' );
1299
  }
1300
 
1301
  }
@@ -1308,10 +1308,9 @@ class Email_Subscribers_Admin {
1308
  public function dashboard_stats_widget() {
1309
 
1310
  $reports_data = ES_Reports_Data::get_dashboard_reports_data( 'es_wp_dashboard_widget', false, 30 );
1311
-
1312
  $total_contacts_subscribed = isset( $reports_data['total_contacts_subscribed'] ) ? $reports_data['total_contacts_subscribed'] : 0;
1313
  $total_message_sent = isset( $reports_data['total_message_sent'] ) ? $reports_data['total_message_sent'] : 0;
1314
- $total_contact_lost = isset( $reports_data['total_message_lost'] ) ? $reports_data['total_message_lost'] : 0;
1315
  $avg_open_rate = isset( $reports_data['avg_open_rate'] ) ? $reports_data['avg_open_rate'] : 0;
1316
 
1317
  $campaign_report = isset( $reports_data['campaigns'][0] ) ? $reports_data['campaigns'][0] : '';
@@ -1326,148 +1325,153 @@ class Email_Subscribers_Admin {
1326
  padding: 0;
1327
  margin: 0;
1328
  }
 
 
 
1329
  </style>
1330
- <div class="pb-2 border-b border-gray-200">
1331
- <div class="px-4">
1332
- <p class="text-base font-medium leading-6 text-gray-600">
1333
- <span class="rounded-md bg-gray-200 px-2 py-0.5">
1334
- <?php echo esc_html__( 'Last 30 days', 'email-subscribers' ); ?>
1335
- </span>
1336
- </p>
1337
- <div class="flex">
1338
- <div class="w-1/4 px-4 border-r border-gray-100">
1339
- <span class="text-2xl font-bold leading-none text-indigo-600">
1340
- <?php echo esc_html( $total_contacts_subscribed ); ?>
1341
- </span>
1342
- <p class="font-medium text-gray-500">
1343
- <?php echo esc_html__( 'Subscribed', 'email-subscribers' ); ?>
1344
- </p>
1345
- </div>
1346
- <div class="w-1/4 px-4 border-r border-gray-100">
1347
- <span class="text-2xl font-bold leading-none text-indigo-600">
1348
- <?php echo esc_html( $total_contact_lost ); ?>
1349
- </span>
1350
- <p class="font-medium text-gray-500">
1351
- <?php echo esc_html__( 'Unsubscribed', 'email-subscribers' ); ?>
1352
- </p>
1353
- </div>
1354
- <div class="w-1/4 px-4 border-r border-gray-100">
1355
- <span class="text-2xl font-bold leading-none text-indigo-600">
1356
- <?php echo esc_html( $avg_open_rate ); ?> %
1357
- </span>
1358
- <p class="font-medium text-gray-500">
1359
- <?php echo esc_html__( 'Avg Open Rate', 'email-subscribers' ); ?>
1360
- </p>
1361
- </div>
1362
- <div class="w-1/4 px-4">
1363
- <span class="text-2xl font-bold leading-none text-indigo-600">
1364
- <?php echo esc_html( $total_message_sent ); ?>
1365
  </span>
1366
- <p class="font-medium text-gray-500">
1367
- <?php echo esc_html__( 'Messages Sent', 'email-subscribers' ); ?>
1368
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1369
  </div>
1370
  </div>
1371
  </div>
1372
- </div>
1373
-
1374
- <div class="overflow-hidden">
1375
- <p class="px-4 text-base font-medium text-gray-600" style="padding-bottom: 0.5rem;padding-top: 0.5rem;margin-top: 0.5rem;margin-bottom: 0.1rem">
1376
- <span class="rounded-md bg-gray-200 px-2 py-0.5">
1377
- <?php
1378
- echo esc_html__('Last Campaign', 'email-subscribers');
 
 
 
 
1379
  ?>
1380
- </span>
1381
- </p>
1382
- <?php
1383
- if ( ! empty( $campaign_report ) ) {
1384
- ?>
1385
- <a href="<?php echo esc_url( $reports_url ); ?>" class="block px-2 hover:bg-gray-50 focus:outline-none focus:bg-gray-50 transition duration-150 ease-in-out" target="_blank">
1386
- <div class="flex px-4 pb-2">
1387
- <div class="w-3/5 min-w-0 pt-2 flex-1">
1388
- <div class="flex flex-1 items-center">
1389
- <div class="leading-5 w-2/4 flex items-start text-gray-500 font-medium text-base">
1390
- <svg class="flex-shrink-0 mr-1.5 h-5 w-5 text-gray-400" fill="currentColor" viewBox="0 0 20 20">
1391
- <path fill-rule="evenodd" d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884zM18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" clip-rule="evenodd"/>
1392
- </svg>
1393
- <?php
1394
- echo esc_html( $campaign_report['type'] );
1395
-
1396
- $allowed_html_tags = ig_es_allowed_html_tags_in_esc();
1397
- $status = ES_Common::get_campaign_status_icon( $campaign_report['status'] );
1398
- echo wp_kses( $status, $allowed_html_tags );
1399
- ?>
1400
 
 
 
 
 
1401
  </div>
1402
  </div>
1403
- <div class="text-sm mt-2 pr-4">
1404
- <?php echo esc_html( $campaign_report['title'] ); ?>
1405
- </div>
1406
- </div>
1407
- <div class="sm:grid sm:grid-cols-2 flex-1">
1408
 
1409
- <div class="px-3 pb-3 pt-4">
1410
- <span class="leading-none font-medium text-base text-indigo-500">
1411
- <?php echo esc_html( $campaign_report['total_sent'] ); ?>
1412
- </span>
1413
- <p class="mt-1 leading-6 text-gray-400">
1414
- <?php echo esc_html__( 'Sent to', 'email-subscribers' ); ?>
1415
- </p>
1416
- </div>
1417
- <div class="px-3 pb-3 pt-4">
1418
- <span class="leading-none font-medium text-base text-indigo-500">
1419
- <?php echo esc_html( $campaign_report['total_opens'] ); ?> (
1420
- <?php
1421
- echo esc_html( $campaign_report['campaign_opens_rate'] );
1422
- ?>
1423
- %)
1424
  </span>
1425
  <p class="mt-1 leading-6 text-gray-400">
1426
- <?php echo esc_html__( 'Opens', 'email-subscribers' ); ?>
1427
  </p>
1428
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
1429
 
1430
- </div>
1431
- <div>
1432
- <svg class="h-5 w-5 text-gray-400 mt-5" fill="currentColor" viewBox="0 0 20 20">
1433
- <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
1434
- </svg>
1435
- </div>
1436
- </div>
1437
- </a>
1438
- <?php
1439
- } else {
1440
- echo '<p class="pl-4 font-medium text-gray-500">' . esc_html__('No campaigns sent yet', 'email-subscribers') . '<p>';
1441
- }
1442
- ?>
1443
- </div>
1444
- <div class="border-t border-gray-200">
1445
- <p class="px-4 text-base font-medium leading-6 text-gray-600">
1446
- <span class="rounded-md bg-gray-200 px-2 py-0.5">
1447
- <?php
1448
- echo esc_html__('Latest Blog Posts from Icegram', 'email-subscribers');
1449
- ?>
1450
- </span>
1451
- </p>
1452
- <div class="overflow-hidden pb-2">
1453
- <ul class="pl-8 pr-3">
1454
- <?php foreach ( $topics_indexes as $index ) { ?>
1455
- <li class="mb-0 hover:underline text-gray-500" style="list-style-type: square !important">
1456
- <a href="<?php echo esc_url( $topics[ $index ]['link'] ); ?>" class="hover:underline font-medium block pr-3 transition duration-150 ease-in-out focus:outline-none focus:bg-gray-50" target="_blank">
1457
- <div class="flex items-center px-2 py-1 md:justify-between">
1458
- <div class="text-sm leading-5 text-gray-700">
1459
- <?php
1460
- echo wp_kses_post( $topics[ $index ]['title'] );
1461
- if ( ! empty( $topics[ $index ]['label'] ) ) {
1462
- ?>
1463
- <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full <?php echo esc_attr( $topics[ $index ]['label_class'] ); ?>"><?php echo esc_html( $topics[ $index ]['label'] ); ?></span>
1464
- <?php } ?>
 
1465
  </div>
1466
- </div>
1467
- </a>
1468
- </li>
1469
- <?php } ?>
1470
- </ul>
1471
  </div>
1472
  </div>
1473
  <?php
1295
  wp_add_dashboard_widget( 'es_dashboard_stats_widget', __( 'Email Subscribers', 'email-subscribers' ), array( $this, 'dashboard_stats_widget' ) );
1296
 
1297
  if ( in_array( $screen_id, array( 'dashboard' ) ) ) {
1298
+ wp_enqueue_style( 'ig_es_dashboard_style', plugin_dir_url( __FILE__ ) . 'css/es-wp-dashboard.css', array(), $this->version, 'all' );
1299
  }
1300
 
1301
  }
1308
  public function dashboard_stats_widget() {
1309
 
1310
  $reports_data = ES_Reports_Data::get_dashboard_reports_data( 'es_wp_dashboard_widget', false, 30 );
 
1311
  $total_contacts_subscribed = isset( $reports_data['total_contacts_subscribed'] ) ? $reports_data['total_contacts_subscribed'] : 0;
1312
  $total_message_sent = isset( $reports_data['total_message_sent'] ) ? $reports_data['total_message_sent'] : 0;
1313
+ $total_contact_lost = isset( $reports_data['total_contact_lost'] ) ? $reports_data['total_contact_lost'] : 0;
1314
  $avg_open_rate = isset( $reports_data['avg_open_rate'] ) ? $reports_data['avg_open_rate'] : 0;
1315
 
1316
  $campaign_report = isset( $reports_data['campaigns'][0] ) ? $reports_data['campaigns'][0] : '';
1325
  padding: 0;
1326
  margin: 0;
1327
  }
1328
+ .ig-es p{
1329
+ margin: 1em 0;
1330
+ }
1331
  </style>
1332
+ <div class="ig-es">
1333
+ <div class="pb-2 border-b border-gray-200">
1334
+ <div class="px-4">
1335
+ <p class="text-base font-medium leading-6 text-gray-600">
1336
+ <span class="rounded-md bg-gray-200 px-2 py-0.5">
1337
+ <?php echo esc_html__( 'Last 30 days', 'email-subscribers' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1338
  </span>
1339
+ </p>
1340
+ <div class="flex">
1341
+ <div class="w-1/4 px-4 border-r border-gray-100">
1342
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1343
+ <?php echo esc_html( $total_contacts_subscribed ); ?>
1344
+ </span>
1345
+ <p class="font-medium text-gray-500">
1346
+ <?php echo esc_html__( 'Subscribed', 'email-subscribers' ); ?>
1347
+ </p>
1348
+ </div>
1349
+ <div class="w-1/4 px-4 border-r border-gray-100">
1350
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1351
+ <?php echo esc_html( $total_contact_lost ); ?>
1352
+ </span>
1353
+ <p class="font-medium text-gray-500">
1354
+ <?php echo esc_html__( 'Unsubscribed', 'email-subscribers' ); ?>
1355
+ </p>
1356
+ </div>
1357
+ <div class="w-1/4 px-4 border-r border-gray-100">
1358
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1359
+ <?php echo esc_html( $avg_open_rate ); ?> %
1360
+ </span>
1361
+ <p class="font-medium text-gray-500">
1362
+ <?php echo esc_html__( 'Avg Open Rate', 'email-subscribers' ); ?>
1363
+ </p>
1364
+ </div>
1365
+ <div class="w-1/4 px-4">
1366
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1367
+ <?php echo esc_html( $total_message_sent ); ?>
1368
+ </span>
1369
+ <p class="font-medium text-gray-500">
1370
+ <?php echo esc_html__( 'Messages Sent', 'email-subscribers' ); ?>
1371
+ </p>
1372
+ </div>
1373
  </div>
1374
  </div>
1375
  </div>
1376
+
1377
+ <div class="overflow-hidden">
1378
+ <p class="px-4 text-base font-medium leading-6 text-gray-600">
1379
+ <span class="rounded-md bg-gray-200 px-2 py-0.5">
1380
+ <?php
1381
+ echo esc_html__('Last Campaign', 'email-subscribers');
1382
+ ?>
1383
+ </span>
1384
+ </p>
1385
+ <?php
1386
+ if ( ! empty( $campaign_report ) ) {
1387
  ?>
1388
+ <a href="<?php echo esc_url( $reports_url ); ?>" class="block px-2 hover:bg-gray-50 focus:outline-none focus:bg-gray-50 transition duration-150 ease-in-out" target="_blank">
1389
+ <div class="flex px-4 pb-2">
1390
+ <div class="w-3/5 min-w-0 pt-2 flex-1">
1391
+ <div class="flex flex-1 items-center">
1392
+ <div class="leading-5 w-2/4 flex items-start text-gray-500 font-medium text-base">
1393
+ <svg class="flex-shrink-0 mr-1.5 h-5 w-5 text-gray-400" fill="currentColor" viewBox="0 0 20 20">
1394
+ <path fill-rule="evenodd" d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884zM18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" clip-rule="evenodd"/>
1395
+ </svg>
1396
+ <?php
1397
+ echo esc_html( $campaign_report['type'] );
1398
+
1399
+ $allowed_html_tags = ig_es_allowed_html_tags_in_esc();
1400
+ $status = ES_Common::get_campaign_status_icon( $campaign_report['status'] );
1401
+ echo wp_kses( $status, $allowed_html_tags );
1402
+ ?>
 
 
 
 
 
1403
 
1404
+ </div>
1405
+ </div>
1406
+ <div class="text-sm mt-2 pr-4">
1407
+ <?php echo esc_html( $campaign_report['title'] ); ?>
1408
  </div>
1409
  </div>
1410
+ <div class="sm:grid sm:grid-cols-2 flex-1">
 
 
 
 
1411
 
1412
+ <div class="px-3 pb-3 pt-4">
1413
+ <span class="leading-none font-medium text-base text-indigo-500">
1414
+ <?php echo esc_html( $campaign_report['total_sent'] ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
1415
  </span>
1416
  <p class="mt-1 leading-6 text-gray-400">
1417
+ <?php echo esc_html__( 'Sent to', 'email-subscribers' ); ?>
1418
  </p>
1419
  </div>
1420
+ <div class="px-3 pb-3 pt-4">
1421
+ <span class="leading-none font-medium text-base text-indigo-500">
1422
+ <?php echo esc_html( $campaign_report['total_opens'] ); ?> (
1423
+ <?php
1424
+ echo esc_html( $campaign_report['campaign_opens_rate'] );
1425
+ ?>
1426
+ %)
1427
+ </span>
1428
+ <p class="mt-1 leading-6 text-gray-400">
1429
+ <?php echo esc_html__( 'Opens', 'email-subscribers' ); ?>
1430
+ </p>
1431
+ </div>
1432
 
1433
+ </div>
1434
+ <div>
1435
+ <svg class="h-5 w-5 text-gray-400 mt-5" fill="currentColor" viewBox="0 0 20 20">
1436
+ <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
1437
+ </svg>
1438
+ </div>
1439
+ </div>
1440
+ </a>
1441
+ <?php
1442
+ } else {
1443
+ echo '<p class="pl-4 font-medium text-gray-500">' . esc_html__('No campaigns sent yet', 'email-subscribers') . '<p>';
1444
+ }
1445
+ ?>
1446
+ </div>
1447
+ <div class="border-t border-gray-200">
1448
+ <p class="px-4 text-base font-medium leading-6 text-gray-600">
1449
+ <span class="rounded-md bg-gray-200 px-2 py-0.5">
1450
+ <?php
1451
+ echo esc_html__('Latest Blog Posts from Icegram', 'email-subscribers');
1452
+ ?>
1453
+ </span>
1454
+ </p>
1455
+ <div class="overflow-hidden pb-2">
1456
+ <ul class="pl-8 pr-3">
1457
+ <?php foreach ( $topics_indexes as $index ) { ?>
1458
+ <li class="mb-0 hover:underline text-gray-500" style="list-style-type: square !important">
1459
+ <a href="<?php echo esc_url( $topics[ $index ]['link'] ); ?>" class="hover:underline font-medium block pr-3 transition duration-150 ease-in-out focus:outline-none focus:bg-gray-50" target="_blank">
1460
+ <div class="flex items-center px-2 py-1 md:justify-between">
1461
+ <div class="text-sm leading-5 text-gray-700">
1462
+ <?php
1463
+ echo wp_kses_post( $topics[ $index ]['title'] );
1464
+ if ( ! empty( $topics[ $index ]['label'] ) ) {
1465
+ ?>
1466
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full <?php echo esc_attr( $topics[ $index ]['label_class'] ); ?>"><?php echo esc_html( $topics[ $index ]['label'] ); ?></span>
1467
+ <?php } ?>
1468
+ </div>
1469
  </div>
1470
+ </a>
1471
+ </li>
1472
+ <?php } ?>
1473
+ </ul>
1474
+ </div>
1475
  </div>
1476
  </div>
1477
  <?php
lite/admin/css/es-wp-dashboard.css ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ .ig-es html{line-height:1.15;-webkit-text-size-adjust:100%}.ig-es body{margin:0}.ig-es main{display:block}.ig-es h1{font-size:2em;margin:.67em 0}.ig-es hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}.ig-es pre{font-family:monospace,monospace;font-size:1em}.ig-es a{background-color:transparent}.ig-es abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.ig-es b,.ig-es strong{font-weight:bolder}.ig-es code,.ig-es kbd,.ig-es samp{font-family:monospace,monospace;font-size:1em}.ig-es small{font-size:80%}.ig-es sub,.ig-es sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.ig-es sub{bottom:-.25em}.ig-es sup{top:-.5em}.ig-es img{border-style:none}.ig-es button,.ig-es input,.ig-es optgroup,.ig-es select,.ig-es textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}.ig-es button,.ig-es input{overflow:visible}.ig-es button,.ig-es select{text-transform:none}.ig-es [type=button],.ig-es [type=reset],.ig-es [type=submit],.ig-es button{-webkit-appearance:button}.ig-es [type=button]::-moz-focus-inner,.ig-es [type=reset]::-moz-focus-inner,.ig-es [type=submit]::-moz-focus-inner,.ig-es button::-moz-focus-inner{border-style:none;padding:0}.ig-es [type=button]:-moz-focusring,.ig-es [type=reset]:-moz-focusring,.ig-es [type=submit]:-moz-focusring,.ig-es button:-moz-focusring{outline:1px dotted ButtonText}.ig-es fieldset{padding:.35em .75em .625em}.ig-es legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}.ig-es progress{vertical-align:baseline}.ig-es textarea{overflow:auto}.ig-es [type=checkbox],.ig-es [type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.ig-es [type=number]::-webkit-inner-spin-button,.ig-es [type=number]::-webkit-outer-spin-button{height:auto}.ig-es [type=search]{-webkit-appearance:textfield;outline-offset:-2px}.ig-es [type=search]::-webkit-search-decoration{-webkit-appearance:none}.ig-es ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.ig-es details{display:block}.ig-es summary{display:list-item}.ig-es [hidden],.ig-es template{display:none}.ig-es blockquote,.ig-es dd,.ig-es dl,.ig-es figure,.ig-es h1,.ig-es h2,.ig-es h3,.ig-es h4,.ig-es h5,.ig-es h6,.ig-es hr,.ig-es p,.ig-es pre{margin:0}.ig-es button{background-color:transparent;background-image:none}.ig-es button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}.ig-es fieldset{margin:0;padding:0}.ig-es ol,.ig-es ul{list-style:none;margin:0;padding:0}.ig-es html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}.ig-es *,.ig-es :after,.ig-es :before{-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #d2d6dc}.ig-es hr{border-top-width:1px}.ig-es img{border-style:solid}.ig-es textarea{resize:vertical}.ig-es input::-webkit-input-placeholder,.ig-es textarea::-webkit-input-placeholder{color:#a0aec0}.ig-es input::-moz-placeholder,.ig-es textarea::-moz-placeholder{color:#a0aec0}.ig-es input::-ms-input-placeholder,.ig-es textarea::-ms-input-placeholder{color:#a0aec0}.ig-es input::placeholder,.ig-es textarea::placeholder{color:#a0aec0}
2
+
3
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */.ig-es [role=button],.ig-es button{cursor:pointer}.ig-es table{border-collapse:collapse}.ig-es h1,.ig-es h2,.ig-es h3,.ig-es h4,.ig-es h5,.ig-es h6{font-size:inherit;font-weight:inherit}.ig-es a{color:inherit;text-decoration:inherit}.ig-es button,.ig-es input,.ig-es optgroup,.ig-es select,.ig-es textarea{padding:0;line-height:inherit;color:inherit}.ig-es code,.ig-es kbd,.ig-es pre,.ig-es samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.ig-es audio,.ig-es canvas,.ig-es embed,.ig-es iframe,.ig-es img,.ig-es object,.ig-es svg,.ig-es video{display:block;vertical-align:middle}.ig-es img,.ig-es video{max-width:100%;height:auto}.ig-es a{--text-opacity:1!important;color:#5850ec!important;color:rgba(88,80,236,var(--text-opacity))!important}.ig-es .container{width:100%}@media (min-width:640px){.ig-es .container{max-width:640px}}@media (min-width:768px){.ig-es .container{max-width:768px}}@media (min-width:1024px){.ig-es .container{max-width:1024px}}@media (min-width:1280px){.ig-es .container{max-width:1280px}}.ig-es .form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.ig-es .form-input::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.ig-es .form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.ig-es .form-input::-ms-input-placeholder{color:#9fa6b2;opacity:1}.ig-es .form-input::placeholder{color:#9fa6b2;opacity:1}.ig-es .form-input:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.ig-es .form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.ig-es .form-textarea::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.ig-es .form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.ig-es .form-textarea::-ms-input-placeholder{color:#9fa6b2;opacity:1}.ig-es .form-textarea::placeholder{color:#9fa6b2;opacity:1}.ig-es .form-textarea:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.ig-es .form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.ig-es .form-multiselect:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.ig-es .form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem 2.5rem .5rem .75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.ig-es .form-select::-ms-expand{color:#9fa6b2;border:none}@media not print{.ig-es .form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.ig-es .form-select{padding-right:.75rem}}.ig-es .form-select:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.ig-es .form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.ig-es .form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.ig-es .form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.25rem}.ig-es .form-checkbox:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.ig-es .form-checkbox:checked:focus{border-color:transparent}.ig-es .form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.ig-es .form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.ig-es .form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;border-radius:100%;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px}.ig-es .form-radio:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.ig-es .form-radio:checked:focus{border-color:transparent}.ig-es{@-webkit-keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}}.ig-es .bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.ig-es .bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.ig-es .bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.ig-es .bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.ig-es .bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.ig-es .bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.ig-es .bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.ig-es .bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.ig-es .hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.ig-es .hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.ig-es .focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.ig-es .border-transparent{border-color:transparent}.ig-es .border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.ig-es .border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.ig-es .border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.ig-es .rounded{border-radius:.25rem}.ig-es .rounded-md{border-radius:.375rem}.ig-es .rounded-full{border-radius:9999px}.ig-es .border-dotted{border-style:dotted}.ig-es .border-2{border-width:2px}.ig-es .border{border-width:1px}.ig-es .border-t{border-top-width:1px}.ig-es .border-r{border-right-width:1px}.ig-es .border-b{border-bottom-width:1px}.ig-es .cursor-pointer{cursor:pointer}.ig-es .block{display:block}.ig-es .inline-block{display:inline-block}.ig-es .flex{display:-webkit-box;display:-ms-flexbox;display:flex}.ig-es .inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ig-es .table{display:table}.ig-es .hidden{display:none}.ig-es .items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.ig-es .items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ig-es .flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.ig-es .flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.ig-es .font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.ig-es .font-normal{font-weight:400}.ig-es .font-medium{font-weight:500}.ig-es .font-semibold{font-weight:600}.ig-es .font-bold{font-weight:700}.ig-es .h-4{height:1rem}.ig-es .h-5{height:1.25rem}.ig-es .h-auto{height:auto}.ig-es .h-2\.5{height:.625rem}.ig-es .text-xs{font-size:.75rem}.ig-es .text-sm{font-size:.875rem}.ig-es .text-base{font-size:1rem}.ig-es .text-2xl{font-size:1.5rem}.ig-es .leading-5{line-height:1.25rem}.ig-es .leading-6{line-height:1.5rem}.ig-es .leading-7{line-height:1.75rem}.ig-es .leading-none{line-height:1}.ig-es .my-2{margin-top:.5rem;margin-bottom:.5rem}.ig-es .mb-0{margin-bottom:0}.ig-es .mt-1{margin-top:.25rem}.ig-es .mb-1{margin-bottom:.25rem}.ig-es .mt-2{margin-top:.5rem}.ig-es .ml-2{margin-left:.5rem}.ig-es .mt-3{margin-top:.75rem}.ig-es .ml-3{margin-left:.75rem}.ig-es .mt-5{margin-top:1.25rem}.ig-es .ml-6{margin-left:1.5rem}.ig-es .ml-8{margin-left:2rem}.ig-es .ml-12{margin-left:3rem}.ig-es .mt-0\.5{margin-top:.125rem}.ig-es .mr-1\.5{margin-right:.375rem}.ig-es .-ml-6{margin-left:-1.5rem}.ig-es .min-w-0{min-width:0}.ig-es .focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.ig-es .overflow-hidden{overflow:hidden}.ig-es .p-3{padding:.75rem}.ig-es .py-1{padding-top:.25rem;padding-bottom:.25rem}.ig-es .py-2{padding-top:.5rem;padding-bottom:.5rem}.ig-es .px-2{padding-left:.5rem;padding-right:.5rem}.ig-es .px-3{padding-left:.75rem;padding-right:.75rem}.ig-es .px-4{padding-left:1rem;padding-right:1rem}.ig-es .py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.ig-es .px-1\.5{padding-left:.375rem;padding-right:.375rem}.ig-es .pt-1{padding-top:.25rem}.ig-es .pb-1{padding-bottom:.25rem}.ig-es .pt-2{padding-top:.5rem}.ig-es .pb-2{padding-bottom:.5rem}.ig-es .pr-3{padding-right:.75rem}.ig-es .pb-3{padding-bottom:.75rem}.ig-es .pt-4{padding-top:1rem}.ig-es .pr-4{padding-right:1rem}.ig-es .pl-4{padding-left:1rem}.ig-es .pt-6{padding-top:1.5rem}.ig-es .pl-8{padding-left:2rem}.ig-es .static{position:static}.ig-es .absolute{position:absolute}.ig-es .relative{position:relative}.ig-es .left-0{left:0}.ig-es .shadow{-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.ig-es .fill-current{fill:currentColor}.ig-es .text-center{text-align:center}.ig-es .text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.ig-es .text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.ig-es .text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.ig-es .text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.ig-es .text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.ig-es .text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.ig-es .text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.ig-es .text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.ig-es .text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.ig-es .text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.ig-es .text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.ig-es .text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.ig-es .text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.ig-es .text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.ig-es .text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.ig-es .text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.ig-es .text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.ig-es .hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.ig-es .text-opacity-100{--text-opacity:1}.ig-es .hover\:underline:hover{text-decoration:underline}.ig-es .tracking-wide{letter-spacing:.025em}.ig-es .select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.ig-es .align-middle{vertical-align:middle}.ig-es .invisible{visibility:hidden}.ig-es .break-words{word-wrap:break-word;overflow-wrap:break-word}.ig-es .w-4{width:1rem}.ig-es .w-5{width:1.25rem}.ig-es .w-1\/4{width:25%}.ig-es .w-2\/4{width:50%}.ig-es .w-3\/5{width:60%}.ig-es .w-full{width:100%}.ig-es .transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}.ig-es .ease-in-out{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.ig-es .duration-150{-webkit-transition-duration:.15s;transition-duration:.15s}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes ping{75%,to{-webkit-transform:scale(2);transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{-webkit-transform:none;transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}@media (min-width:640px){.sm\:grid{display:grid}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:768px){.md\:justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media (min-width:1024px){.lg\:w-48{width:12rem}}@media (min-width:1280px){.xl\:w-64{width:16rem}}
lite/admin/dist/main.css CHANGED
@@ -1 +1 @@
1
- /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #d2d6dc}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#a0aec0}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}a{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}img{border-width:0}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-input::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.form-input::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::placeholder{color:#9fa6b2;opacity:1}.form-input:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-textarea::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::placeholder{color:#9fa6b2;opacity:1}.form-textarea:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem 2.5rem .5rem .75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#9fa6b2;border:none}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.25rem}.form-checkbox:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked:focus,.form-radio:checked{border-color:transparent}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;border-radius:100%;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px}.form-radio:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-radio:checked:focus{border-color:transparent}li.menu-top div.wp-menu-image img{display:initial;border-style:none}.ig-es-primary-button,.ig-es-send-queue-emails{border-color:transparent;padding:.5rem 1rem;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.ig-es-primary-button,.ig-es-send-queue-emails,.ig-es-title-button,.wp-heading-inline+.page-title-action{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;font-size:.875rem;line-height:1.25rem;font-weight:500;--text-opacity:1;--bg-opacity:1;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-title-button,.wp-heading-inline+.page-title-action{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity));color:#374151;color:rgba(55,65,81,var(--text-opacity));background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));padding:.25rem .75rem}.wrap .wp-heading-inline+.page-title-action{margin-left:.5rem}.ig-es-title-button:hover,.wp-heading-inline+.page-title-action:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.ig-es-title-button:focus,.wp-heading-inline+.page-title-action:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45);--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.ig-es-primary-button:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.ig-es-primary-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.ig-es-imp-button{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important;border-radius:.375rem!important;border-width:1px!important;border-color:transparent!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;font-weight:500!important;background-color:#0e9f6e!important;background-color:rgba(14,159,110,var(--bg-opacity))!important;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform!important;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;-webkit-transition-duration:.15s!important;transition-duration:.15s!important}.ig-es-imp-button,.ig-es-imp-button:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important;--bg-opacity:1!important}.ig-es-imp-button:hover{background-color:#31c48d!important;background-color:rgba(49,196,141,var(--bg-opacity))!important}.ig-es-imp-button:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(132,225,188,.45)!important;box-shadow:0 0 0 3px rgba(132,225,188,.45)!important}.ig-es-link-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;border-color:transparent;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));font-size:.875rem;line-height:1.25rem;font-weight:500;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-link-button,.ig-es-link-button:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));--bg-opacity:1}.ig-es-link-button:hover{background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.ig-es-link-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(253,186,140,.45);box-shadow:0 0 0 3px rgba(253,186,140,.45)}.ig-es-action.js-open .ig-es-action__header{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.form-input{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;border-width:1px!important;border-radius:.375rem!important;-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;--border-opacity:1!important;border-color:#d2d6dc!important;border-color:rgba(210,214,220,var(--border-opacity))!important}.form-input:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.form-checkbox{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E")}.form-radio{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}.form-checkbox:checked,.form-radio:checked{--text-opacity:1!important;color:#5850ec!important;color:rgba(88,80,236,var(--text-opacity))!important}.form-select{font-size:.875rem!important;--border-opacity:1!important;border-color:#9fa6b2!important;border-color:rgba(159,166,178,var(--border-opacity))!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important}.form-select:focus,input[type=number]:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.es-check-toggle:checked~.es-mail-toggle-line{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.es-check-toggle:checked~.es-mail-toggle-dot{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-translate-x:100%}.es-mail-toggle-line{width:2.25rem;height:1.25rem;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot,.es-mail-toggle-line{display:block;--bg-opacity:1;border-radius:9999px}.es-mail-toggle-dot{width:.875rem;height:.875rem;margin-left:.25rem;position:absolute;top:0;bottom:0;-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot:focus-within{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}[type=radio]:checked+.es-mailer-logo{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-scale-x:1.1;--transform-scale-y:1.1;-webkit-box-shadow:0 0 3px 1px #5a67d8;box-shadow:0 0 3px 1px #5a67d8}[type=radio]:checked+.es-mailer-logo:hover{border-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.wp-core-ui .button,.wp-core-ui .button-secondary{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.wp-core-ui .button,.wp-core-ui .button-primary,.wp-core-ui .button-secondary{font-size:.875rem;border-radius:.375rem;border-width:1px;line-height:1.25rem;font-weight:500;--text-opacity:1}.wp-core-ui .button-primary{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.wp-core-ui .button-primary:hover,.wp-core-ui .button:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.wp-core-ui .search-box input[name=s],.wp-core-ui select{border-radius:.375rem}.wp-core-ui #bulk-action-selector-top,.wp-core-ui #doaction,.wp-core-ui #doaction2,.wp-core-ui #filter-by-date,.wp-core-ui #post-query-submit,.wp-core-ui #poststuff select,.wp-core-ui #search-submit{cursor:pointer;line-height:1.25rem;--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));background-color:transparent;font-size:.875rem}.wp-core-ui #search-submit{margin-left:.375rem}.es-add-or-condition:hover,.wp-core-ui #doaction2:hover .wp-core-ui #post-query-submit:hover,.wp-core-ui #doaction:hover,.wp-core-ui #search-submit:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.es-add-or-condition:focus,.wp-core-ui #doaction2:focus .wp-core-ui #post-query-submit:focus,.wp-core-ui #doaction:focus,.wp-core-ui #search-submit:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(159,166,178,.45);box-shadow:0 0 0 3px rgba(159,166,178,.45)}.es-items-lists table.fixed,.post-type-es_template table.fixed{margin-top:1rem;margin-bottom:1rem;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);border-radius:.5rem;overflow:hidden}.es-items-lists table.fixed tfoot td,.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead td,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead td,.post-type-es_template table.fixed thead th{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));font-weight:500;letter-spacing:.05em}.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead th{padding-top:.5rem;padding-bottom:.5rem}.es-items-lists .widefat thead td input,.post-type-es_template .widefat thead td input{margin-right:1.5rem}.post-type-es_template .wrap{padding-top:1rem;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.post-type-es_template .wrap>h1{padding-top:0;font-weight:600;--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));line-height:2.25rem}.es-items-lists .striped>tbody tr,.post-type-es_template .striped>tbody tr{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));padding-top:.5rem;padding-bottom:.5rem}.es-campaign-reports-table .striped>tbody tr{border-bottom-width:2px}.es-items-lists .striped>tbody>:nth-child(odd),.post-type-es_template .striped>tbody>:nth-child(odd){--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es_onboard_email{padding:.25rem .75rem!important}.es_reports_table_header{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));text-align:left;font-size:.875rem;line-height:1rem;font-weight:500;--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));letter-spacing:.05em}.importing-progress,.progress{width:100%;height:2rem;--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity));overflow:hidden;position:relative;text-align:right;line-height:1rem;margin-top:.375rem;border-radius:.25rem}.importing-progress span.bar,.progress span.bar{display:block;position:absolute;line-height:2.5rem;padding-top:.25rem;padding-bottom:.25rem;top:0;bottom:0;left:0;border-radius:.25rem;overflow:hidden;background-image:-webkit-gradient(linear,left top,right top,from(var(--gradient-color-stops)));background-image:linear-gradient(90deg,var(--gradient-color-stops));--gradient-from-color:#42389d;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(66,56,157,0));--gradient-to-color:#6875f5;--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.es_sequences_wrapper .ig-es-campaign-rules label{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));font-weight:500;--text-opacity:0.75;font-size:.875rem;letter-spacing:.025em;line-height:1.5rem}.email-subscribers_page_es_workflows #ig_es_workflow_trigger select option:disabled{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.installing{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.success{--text-opacity:1!important;color:#4b5563!important;color:rgba(75,85,99,var(--text-opacity))!important;font-weight:500!important;-webkit-animation:none!important;animation:none!important}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.skipping{--text-opacity:1!important;color:#9fa6b2!important;color:rgba(159,166,178,var(--text-opacity))!important;-webkit-animation:none!important;animation:none!important}.es_primary_link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:1rem;font-size:.875rem;font-weight:700;--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);border-bottom-width:2px;border-color:transparent;cursor:pointer}.es_primary_link:active,.es_primary_link:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.es_primary_link:focus{outline:2px solid transparent;outline-offset:2px;--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity));-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.es_helper_text{font-style:italic;font-size:.75rem;font-weight:400;--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));line-height:1.375}.es-documentation{border-color:transparent;border-radius:9999px;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es-documentation:hover{border-radius:9999px;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.es-documentation:focus,.es-documentation:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1}.es-documentation:focus{background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.25rem*var(--space-y-reverse))}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.5rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.5rem*var(--space-y-reverse))}.space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0.75rem*var(--space-x-reverse));margin-left:calc(0.75rem*(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1rem*var(--space-y-reverse))}.space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem*var(--space-y-reverse))}.divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px*var(--divide-y-reverse))}.divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-400,.group:hover .group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-opacity-75{--bg-opacity:0.75}.border-collapse{border-collapse:collapse}.border-transparent{border-color:transparent}.border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.border-dashed{border-style:dashed}.border-dotted{border-style:dotted}.border-0{border-width:0}.border-2{border-width:2px}.border{border-width:1px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-b{border-bottom-width:1px}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.cursor-not-allowed{cursor:not-allowed}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.grid{display:grid}.contents{display:contents}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.flex-col,.flex-row{-webkit-box-direction:normal}.flex-col{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.self-start{-ms-flex-item-align:start;align-self:flex-start}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-none{-webkit-box-flex:0;-ms-flex:none;flex:none}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.float-right{float:right}.float-left{float:left}.clearfix:after{content:"";display:table;clear:both}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-thin{font-weight:200}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.h-0{height:0}.h-2{height:.5rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-15{height:3.75rem}.h-20{height:5rem}.h-48{height:12rem}.h-auto{height:auto}.h-1\.5{height:.375rem}.h-2\.5{height:.625rem}.h-full{height:100%}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.25rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-9{line-height:2.25rem}.leading-none{line-height:1}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.list-none{list-style-type:none}.list-disc{list-style-type:disc}.list-decimal{list-style-type:decimal}.m-4{margin:1rem}.my-0{margin-top:0;margin-bottom:0}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.mx-10{margin-left:2.5rem;margin-right:2.5rem}.my-12{margin-top:3rem;margin-bottom:3rem}.my-16{margin-top:4rem;margin-bottom:4rem}.mx-auto{margin-left:auto;margin-right:auto}.-my-4{margin-top:-1rem;margin-bottom:-1rem}.mt-0{margin-top:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mt-5{margin-top:1.25rem}.ml-5{margin-left:1.25rem}.mt-6{margin-top:1.5rem}.mr-6{margin-right:1.5rem}.mb-6{margin-bottom:1.5rem}.ml-6{margin-left:1.5rem}.mt-7{margin-top:1.75rem}.mb-7{margin-bottom:1.75rem}.ml-7{margin-left:1.75rem}.mt-8{margin-top:2rem}.mr-8{margin-right:2rem}.ml-8{margin-left:2rem}.mt-10{margin-top:2.5rem}.mr-10{margin-right:2.5rem}.mt-12{margin-top:3rem}.mb-12{margin-bottom:3rem}.ml-12{margin-left:3rem}.ml-14{margin-left:3.5rem}.mt-16{margin-top:4rem}.mr-16{margin-right:4rem}.ml-16{margin-left:4rem}.mt-0\.5{margin-top:.125rem}.mt-1\.5{margin-top:.375rem}.mr-1\.5{margin-right:.375rem}.mt-2\.5{margin-top:.625rem}.-mt-1{margin-top:-.25rem}.-mr-1{margin-right:-.25rem}.-mb-1{margin-bottom:-.25rem}.-mt-2{margin-top:-.5rem}.-mb-2{margin-bottom:-.5rem}.-mt-3{margin-top:-.75rem}.-mr-3{margin-right:-.75rem}.-mb-4{margin-bottom:-1rem}.-mt-5{margin-top:-1.25rem}.-ml-6{margin-left:-1.5rem}.-ml-8{margin-left:-2rem}.-mb-0\.5{margin-bottom:-.125rem}.-mt-1\.5{margin-top:-.375rem}.-mt-2\.5{margin-top:-.625rem}.max-h-full{max-height:100%}.max-w-3xl{max-width:48rem}.max-w-7xl{max-width:80rem}.max-w-full{max-width:100%}.min-h-screen{min-height:100vh}.min-w-0{min-width:0}.min-w-full{min-width:100%}.object-cover{-o-object-fit:cover;object-fit:cover}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.opacity-100{opacity:1}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.p-0{padding:0}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-13{padding:3.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}.py-12{padding-top:3rem;padding-bottom:3rem}.px-12{padding-left:3rem;padding-right:3rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.pt-1{padding-top:.25rem}.pr-1{padding-right:.25rem}.pb-1{padding-bottom:.25rem}.pl-1{padding-left:.25rem}.pt-2{padding-top:.5rem}.pr-2{padding-right:.5rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-3{padding-top:.75rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pl-3{padding-left:.75rem}.pt-4{padding-top:1rem}.pr-4{padding-right:1rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pt-5{padding-top:1.25rem}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.pt-6{padding-top:1.5rem}.pr-6{padding-right:1.5rem}.pb-6{padding-bottom:1.5rem}.pl-6{padding-left:1.5rem}.pt-7{padding-top:1.75rem}.pt-8{padding-top:2rem}.pb-8{padding-bottom:2rem}.pl-8{padding-left:2rem}.pt-10{padding-top:2.5rem}.pl-10{padding-left:2.5rem}.pr-12{padding-right:3rem}.pb-12{padding-bottom:3rem}.pl-16{padding-left:4rem}.pt-0\.5{padding-top:.125rem}.pl-0\.5{padding-left:.125rem}.pt-1\.5{padding-top:.375rem}.pb-1\.5{padding-bottom:.375rem}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.bottom-2{bottom:.5rem}.bottom-5{bottom:1.25rem}.top-8{top:2rem}.top-10{top:2.5rem}.resize{resize:both}.shadow-xs{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.05);box-shadow:0 0 0 1px rgba(0,0,0,.05)}.shadow-sm{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow{-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.shadow-md{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.shadow-lg{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.shadow-inner{-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.hover\:shadow-md:hover{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.focus\:shadow-lg:focus{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.focus\:shadow-outline:focus{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}.focus\:shadow-outline-blue:focus{-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.focus\:shadow-outline-red:focus{-webkit-box-shadow:0 0 0 3px rgba(248,180,180,.45);box-shadow:0 0 0 3px rgba(248,180,180,.45)}.focus\:shadow-outline-indigo:focus{-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.fill-current{fill:currentColor}.table-fixed{table-layout:fixed}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-opacity-75{--text-opacity:0.75}.text-opacity-100{--text-opacity:1}.italic{font-style:italic}.not-italic{font-style:normal}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.underline{text-decoration:underline}.no-underline{text-decoration:none}.hover\:underline:hover{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.visible{visibility:visible}.invisible{visibility:hidden}.whitespace-no-wrap{white-space:nowrap}.break-words{word-wrap:break-word;overflow-wrap:break-word}.break-all{word-break:break-all}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.w-0{width:0}.w-2{width:.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-12{width:3rem}.w-24{width:6rem}.w-40{width:10rem}.w-48{width:12rem}.w-56{width:14rem}.w-auto{width:auto}.w-1\.5{width:.375rem}.w-2\.5{width:.625rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-1\/4{width:25%}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-1\/5{width:20%}.w-2\/5{width:40%}.w-3\/5{width:60%}.w-4\/5{width:80%}.w-3\/6{width:50%}.w-4\/6{width:66.666667%}.w-5\/6{width:83.333333%}.w-1\/12{width:8.333333%}.w-2\/12{width:16.666667%}.w-3\/12{width:25%}.w-4\/12{width:33.333333%}.w-5\/12{width:41.666667%}.w-9\/12{width:75%}.w-10\/12{width:83.333333%}.w-11\/12{width:91.666667%}.w-full{width:100%}.w-screen{width:100vw}.z-10{z-index:10}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.gap-8{grid-gap:2rem;gap:2rem}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.origin-top-right{-webkit-transform-origin:top right;transform-origin:top right}.scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.scale-100{--transform-scale-x:1;--transform-scale-y:1}.translate-x-0{--transform-translate-x:0}.-translate-x-full{--transform-translate-x:-100%}.transition-all{-webkit-transition-property:all;transition-property:all}.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}.transition-opacity{-webkit-transition-property:opacity;transition-property:opacity}.ease-in{-webkit-transition-timing-function:cubic-bezier(.4,0,1,1);transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in-out{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-75{-webkit-transition-duration:75ms;transition-duration:75ms}.duration-100{-webkit-transition-duration:.1s;transition-duration:.1s}.duration-150{-webkit-transition-duration:.15s;transition-duration:.15s}.duration-200{-webkit-transition-duration:.2s;transition-duration:.2s}.duration-300{-webkit-transition-duration:.3s;transition-duration:.3s}@-webkit-keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes ping{75%,to{-webkit-transform:scale(2);transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{-webkit-transform:none;transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}.animate-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}.animate-ping{-webkit-animation:ping 1s cubic-bezier(0,0,.2,1) infinite;animation:ping 1s cubic-bezier(0,0,.2,1) infinite}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@media (min-width:640px){.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px*(1 - var(--space-y-reverse)));margin-bottom:calc(0px*var(--space-y-reverse))}.sm\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.sm\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-lg{border-radius:.5rem}.sm\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.sm\:grid{display:grid}.sm\:flex-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.sm\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sm\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sm\:h-10{height:2.5rem}.sm\:text-sm{font-size:.875rem}.sm\:text-2xl{font-size:1.5rem}.sm\:text-3xl{font-size:1.875rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-9{line-height:2.25rem}.sm\:my-0{margin-top:0;margin-bottom:0}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.sm\:my-8{margin-top:2rem;margin-bottom:2rem}.sm\:my-12{margin-top:3rem;margin-bottom:3rem}.sm\:mt-0{margin-top:0}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-5{margin-top:1.25rem}.sm\:max-w-lg{max-width:32rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-2{padding-left:.5rem;padding-right:.5rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:text-left{text-align:left}.sm\:align-middle{vertical-align:middle}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:w-10{width:2.5rem}.sm\:w-32{width:8rem}.sm\:w-auto{width:auto}.sm\:w-1\/2{width:50%}.sm\:w-1\/3{width:33.333333%}.sm\:w-2\/3{width:66.666667%}.sm\:w-2\/4{width:50%}.sm\:w-full{width:100%}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:768px){.md\:rounded-lg{border-radius:.5rem}.md\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.md\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.md\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.md\:justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.md\:text-base{font-size:1rem}.md\:mx-0{margin-left:0;margin-right:0}.md\:my-2{margin-top:.5rem;margin-bottom:.5rem}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:ml-2{margin-left:.5rem}.md\:ml-4{margin-left:1rem}.md\:ml-8{margin-left:2rem}.md\:-mr-8{margin-right:-2rem}.md\:max-w-xl{max-width:36rem}.md\:max-w-5xl{max-width:64rem}.md\:p-2{padding:.5rem}.md\:p-6{padding:1.5rem}.md\:py-0{padding-top:0;padding-bottom:0}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:pb-2{padding-bottom:.5rem}.md\:pr-4{padding-right:1rem}.md\:pt-6{padding-top:1.5rem}.md\:shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.md\:w-3\/5{width:60%}}@media (min-width:1024px){.lg\:bg-transparent{background-color:transparent}.lg\:border-transparent{border-color:transparent}.lg\:rounded-full{border-radius:9999px}.lg\:block{display:block}.lg\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.lg\:inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.lg\:text-sm{font-size:.875rem}.lg\:text-lg{font-size:1.125rem}.lg\:my-0{margin-top:0;margin-bottom:0}.lg\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.lg\:my-24{margin-top:6rem;margin-bottom:6rem}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:ml-16{margin-left:4rem}.lg\:-mr-16{margin-right:-4rem}.lg\:max-w-3xl{max-width:48rem}.lg\:p-6{padding:1.5rem}.lg\:p-8{padding:2rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pt-2{padding-top:.5rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pl-2{padding-left:.5rem}.lg\:top-1\/2{top:50%}.lg\:shadow-none{-webkit-box-shadow:none;box-shadow:none}.lg\:w-40{width:10rem}.lg\:w-48{width:12rem}.lg\:w-1\/2{width:50%}.lg\:w-3\/5{width:60%}.lg\:w-3\/12{width:25%}.lg\:w-7\/12{width:58.333333%}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:1280px){.xl\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.xl\:mr-0{margin-right:0}.xl\:ml-2{margin-left:.5rem}.xl\:ml-3{margin-left:.75rem}.xl\:ml-4{margin-left:1rem}.xl\:ml-20{margin-left:5rem}.xl\:ml-32{margin-left:8rem}.xl\:ml-1\.5{margin-left:.375rem}.xl\:max-w-4xl{max-width:56rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:pr-3{padding-right:.75rem}.xl\:pb-4{padding-bottom:1rem}.xl\:top-1\/3{top:33.333333%}.xl\:w-64{width:16rem}.xl\:w-1\/4{width:25%}.xl\:w-2\/5{width:40%}.xl\:w-3\/5{width:60%}.xl\:w-2\/12{width:16.666667%}.xl\:w-6\/12{width:50%}.xl\:w-7\/12{width:58.333333%}}
1
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #d2d6dc}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#a0aec0}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}a{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}img{border-width:0}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-input::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.form-input::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::placeholder{color:#9fa6b2;opacity:1}.form-input:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-textarea::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::placeholder{color:#9fa6b2;opacity:1}.form-textarea:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem 2.5rem .5rem .75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#9fa6b2;border:none}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.25rem}.form-checkbox:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked:focus,.form-radio:checked{border-color:transparent}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;border-radius:100%;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px}.form-radio:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-radio:checked:focus{border-color:transparent}li.menu-top div.wp-menu-image img{display:initial;border-style:none}.ig-es-primary-button,.ig-es-send-queue-emails{border-color:transparent;padding:.5rem 1rem;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.ig-es-primary-button,.ig-es-send-queue-emails,.ig-es-title-button,.wp-heading-inline+.page-title-action{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;font-size:.875rem;line-height:1.25rem;font-weight:500;--text-opacity:1;--bg-opacity:1;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-title-button,.wp-heading-inline+.page-title-action{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity));color:#374151;color:rgba(55,65,81,var(--text-opacity));background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));padding:.25rem .75rem}.wrap .wp-heading-inline+.page-title-action{margin-left:.5rem}.ig-es-title-button:hover,.wp-heading-inline+.page-title-action:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.ig-es-title-button:focus,.wp-heading-inline+.page-title-action:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45);--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.ig-es-primary-button:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.ig-es-primary-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.ig-es-imp-button{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important;border-radius:.375rem!important;border-width:1px!important;border-color:transparent!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;font-weight:500!important;background-color:#0e9f6e!important;background-color:rgba(14,159,110,var(--bg-opacity))!important;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform!important;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;-webkit-transition-duration:.15s!important;transition-duration:.15s!important}.ig-es-imp-button,.ig-es-imp-button:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important;--bg-opacity:1!important}.ig-es-imp-button:hover{background-color:#31c48d!important;background-color:rgba(49,196,141,var(--bg-opacity))!important}.ig-es-imp-button:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(132,225,188,.45)!important;box-shadow:0 0 0 3px rgba(132,225,188,.45)!important}.ig-es-link-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;border-color:transparent;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));font-size:.875rem;line-height:1.25rem;font-weight:500;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-link-button,.ig-es-link-button:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));--bg-opacity:1}.ig-es-link-button:hover{background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.ig-es-link-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(253,186,140,.45);box-shadow:0 0 0 3px rgba(253,186,140,.45)}.ig-es-action.js-open .ig-es-action__header{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.form-input{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;border-width:1px!important;border-radius:.375rem!important;-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;--border-opacity:1!important;border-color:#d2d6dc!important;border-color:rgba(210,214,220,var(--border-opacity))!important}.form-input:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.form-checkbox{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E")}.form-radio{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}.form-checkbox:checked,.form-radio:checked{--text-opacity:1!important;color:#5850ec!important;color:rgba(88,80,236,var(--text-opacity))!important}.form-select{font-size:.875rem!important;--border-opacity:1!important;border-color:#9fa6b2!important;border-color:rgba(159,166,178,var(--border-opacity))!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important}.form-select:focus,input[type=number]:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.es-check-toggle:checked~.es-mail-toggle-line{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.es-check-toggle:checked~.es-mail-toggle-dot{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-translate-x:100%}.es-mail-toggle-line{width:2.25rem;height:1.25rem;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot,.es-mail-toggle-line{display:block;--bg-opacity:1;border-radius:9999px}.es-mail-toggle-dot{width:.875rem;height:.875rem;margin-left:.25rem;position:absolute;top:0;bottom:0;-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot:focus-within{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}[type=radio]:checked+.es-mailer-logo{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-scale-x:1.1;--transform-scale-y:1.1;-webkit-box-shadow:0 0 3px 1px #5a67d8;box-shadow:0 0 3px 1px #5a67d8}[type=radio]:checked+.es-mailer-logo:hover{border-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.wp-core-ui .button,.wp-core-ui .button-secondary{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.wp-core-ui .button,.wp-core-ui .button-primary,.wp-core-ui .button-secondary{font-size:.875rem;border-radius:.375rem;border-width:1px;line-height:1.25rem;font-weight:500;--text-opacity:1}.wp-core-ui .button-primary{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.wp-core-ui .button-primary:hover,.wp-core-ui .button:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.wp-core-ui .search-box input[name=s],.wp-core-ui select{border-radius:.375rem}.wp-core-ui #bulk-action-selector-top,.wp-core-ui #doaction,.wp-core-ui #doaction2,.wp-core-ui #filter-by-date,.wp-core-ui #post-query-submit,.wp-core-ui #poststuff select,.wp-core-ui #search-submit{cursor:pointer;line-height:1.25rem;--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));background-color:transparent;font-size:.875rem}.wp-core-ui #search-submit{margin-left:.375rem}.es-add-or-condition:hover,.wp-core-ui #doaction2:hover .wp-core-ui #post-query-submit:hover,.wp-core-ui #doaction:hover,.wp-core-ui #search-submit:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.es-add-or-condition:focus,.wp-core-ui #doaction2:focus .wp-core-ui #post-query-submit:focus,.wp-core-ui #doaction:focus,.wp-core-ui #search-submit:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(159,166,178,.45);box-shadow:0 0 0 3px rgba(159,166,178,.45)}.es-items-lists table.fixed,.post-type-es_template table.fixed{margin-top:1rem;margin-bottom:1rem;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);border-radius:.5rem;overflow:hidden}.es-items-lists table.fixed tfoot td,.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead td,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead td,.post-type-es_template table.fixed thead th{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));font-weight:500;letter-spacing:.05em}.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead th{padding-top:.5rem;padding-bottom:.5rem}.es-items-lists .widefat thead td input,.post-type-es_template .widefat thead td input{margin-right:1.5rem}.post-type-es_template .wrap{padding-top:1rem;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.post-type-es_template .wrap>h1{padding-top:0;font-weight:600;--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));line-height:2.25rem}.es-items-lists .striped>tbody tr,.post-type-es_template .striped>tbody tr{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));padding-top:.5rem;padding-bottom:.5rem}.es-campaign-reports-table .striped>tbody tr{border-bottom-width:2px}.es-items-lists .striped>tbody>:nth-child(odd),.post-type-es_template .striped>tbody>:nth-child(odd){--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es_onboard_email{padding:.25rem .75rem!important}.es_reports_table_header{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));text-align:left;font-size:.875rem;line-height:1rem;font-weight:500;--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));letter-spacing:.05em}.importing-progress,.progress{width:100%;height:2rem;--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity));overflow:hidden;position:relative;text-align:right;line-height:1rem;margin-top:.375rem;border-radius:.25rem}.importing-progress span.bar,.progress span.bar{display:block;position:absolute;line-height:2.5rem;padding-top:.25rem;padding-bottom:.25rem;top:0;bottom:0;left:0;border-radius:.25rem;overflow:hidden;background-image:-webkit-gradient(linear,left top,right top,from(var(--gradient-color-stops)));background-image:linear-gradient(90deg,var(--gradient-color-stops));--gradient-from-color:#42389d;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(66,56,157,0));--gradient-to-color:#6875f5;--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.es_sequences_wrapper .ig-es-campaign-rules label{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));font-weight:500;--text-opacity:0.75;font-size:.875rem;letter-spacing:.025em;line-height:1.5rem}.email-subscribers_page_es_workflows #ig_es_workflow_trigger select option:disabled{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.installing{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.success{--text-opacity:1!important;color:#4b5563!important;color:rgba(75,85,99,var(--text-opacity))!important;font-weight:500!important;-webkit-animation:none!important;animation:none!important}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.skipping{--text-opacity:1!important;color:#9fa6b2!important;color:rgba(159,166,178,var(--text-opacity))!important;-webkit-animation:none!important;animation:none!important}.es_primary_link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:1rem;font-size:.875rem;font-weight:700;--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);border-bottom-width:2px;border-color:transparent;cursor:pointer}.es_primary_link:active,.es_primary_link:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.es_primary_link:focus{outline:2px solid transparent;outline-offset:2px;--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity));-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.es_helper_text{font-style:italic;font-size:.75rem;font-weight:400;--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));line-height:1.375}.es-documentation{border-color:transparent;border-radius:9999px;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es-documentation:hover{border-radius:9999px;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.es-documentation:focus,.es-documentation:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1}.es-documentation:focus{background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.25rem*var(--space-y-reverse))}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.5rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.5rem*var(--space-y-reverse))}.space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0.75rem*var(--space-x-reverse));margin-left:calc(0.75rem*(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1rem*var(--space-y-reverse))}.space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem*var(--space-y-reverse))}.divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px*var(--divide-y-reverse))}.divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-400,.group:hover .group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-opacity-75{--bg-opacity:0.75}.border-collapse{border-collapse:collapse}.border-transparent{border-color:transparent}.border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.border-dashed{border-style:dashed}.border-dotted{border-style:dotted}.border-0{border-width:0}.border-2{border-width:2px}.border{border-width:1px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-b{border-bottom-width:1px}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.cursor-not-allowed{cursor:not-allowed}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.grid{display:grid}.contents{display:contents}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.flex-col,.flex-row{-webkit-box-direction:normal}.flex-col{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.self-start{-ms-flex-item-align:start;align-self:flex-start}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-none{-webkit-box-flex:0;-ms-flex:none;flex:none}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.float-right{float:right}.float-left{float:left}.clearfix:after{content:"";display:table;clear:both}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-thin{font-weight:200}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.h-0{height:0}.h-2{height:.5rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-15{height:3.75rem}.h-20{height:5rem}.h-48{height:12rem}.h-auto{height:auto}.h-1\.5{height:.375rem}.h-2\.5{height:.625rem}.h-full{height:100%}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.25rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-9{line-height:2.25rem}.leading-none{line-height:1}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.list-none{list-style-type:none}.list-disc{list-style-type:disc}.list-decimal{list-style-type:decimal}.m-4{margin:1rem}.my-0{margin-top:0;margin-bottom:0}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.mx-10{margin-left:2.5rem;margin-right:2.5rem}.my-12{margin-top:3rem;margin-bottom:3rem}.my-16{margin-top:4rem;margin-bottom:4rem}.mx-auto{margin-left:auto;margin-right:auto}.-my-4{margin-top:-1rem;margin-bottom:-1rem}.mt-0{margin-top:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mt-5{margin-top:1.25rem}.ml-5{margin-left:1.25rem}.mt-6{margin-top:1.5rem}.mr-6{margin-right:1.5rem}.mb-6{margin-bottom:1.5rem}.ml-6{margin-left:1.5rem}.mt-7{margin-top:1.75rem}.mb-7{margin-bottom:1.75rem}.ml-7{margin-left:1.75rem}.mt-8{margin-top:2rem}.mr-8{margin-right:2rem}.ml-8{margin-left:2rem}.mt-10{margin-top:2.5rem}.mr-10{margin-right:2.5rem}.mt-12{margin-top:3rem}.mb-12{margin-bottom:3rem}.ml-12{margin-left:3rem}.ml-14{margin-left:3.5rem}.mt-16{margin-top:4rem}.mr-16{margin-right:4rem}.ml-16{margin-left:4rem}.mt-0\.5{margin-top:.125rem}.mt-1\.5{margin-top:.375rem}.mr-1\.5{margin-right:.375rem}.mt-2\.5{margin-top:.625rem}.-mt-1{margin-top:-.25rem}.-mr-1{margin-right:-.25rem}.-mb-1{margin-bottom:-.25rem}.-mt-2{margin-top:-.5rem}.-mb-2{margin-bottom:-.5rem}.-mt-3{margin-top:-.75rem}.-mr-3{margin-right:-.75rem}.-mb-4{margin-bottom:-1rem}.-mt-5{margin-top:-1.25rem}.-ml-6{margin-left:-1.5rem}.-ml-8{margin-left:-2rem}.-mb-0\.5{margin-bottom:-.125rem}.-mt-1\.5{margin-top:-.375rem}.-mt-2\.5{margin-top:-.625rem}.max-h-full{max-height:100%}.max-w-3xl{max-width:48rem}.max-w-7xl{max-width:80rem}.max-w-full{max-width:100%}.min-h-screen{min-height:100vh}.min-w-0{min-width:0}.min-w-full{min-width:100%}.object-cover{-o-object-fit:cover;object-fit:cover}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.opacity-100{opacity:1}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.p-0{padding:0}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-13{padding:3.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}.py-12{padding-top:3rem;padding-bottom:3rem}.px-12{padding-left:3rem;padding-right:3rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.pt-1{padding-top:.25rem}.pr-1{padding-right:.25rem}.pb-1{padding-bottom:.25rem}.pl-1{padding-left:.25rem}.pt-2{padding-top:.5rem}.pr-2{padding-right:.5rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-3{padding-top:.75rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pl-3{padding-left:.75rem}.pt-4{padding-top:1rem}.pr-4{padding-right:1rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pt-5{padding-top:1.25rem}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.pt-6{padding-top:1.5rem}.pr-6{padding-right:1.5rem}.pb-6{padding-bottom:1.5rem}.pl-6{padding-left:1.5rem}.pt-7{padding-top:1.75rem}.pt-8{padding-top:2rem}.pb-8{padding-bottom:2rem}.pl-8{padding-left:2rem}.pt-10{padding-top:2.5rem}.pl-10{padding-left:2.5rem}.pr-12{padding-right:3rem}.pb-12{padding-bottom:3rem}.pl-16{padding-left:4rem}.pt-0\.5{padding-top:.125rem}.pl-0\.5{padding-left:.125rem}.pt-1\.5{padding-top:.375rem}.pb-1\.5{padding-bottom:.375rem}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.bottom-2{bottom:.5rem}.bottom-5{bottom:1.25rem}.top-8{top:2rem}.top-10{top:2.5rem}.resize{resize:both}.shadow-xs{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.05);box-shadow:0 0 0 1px rgba(0,0,0,.05)}.shadow-sm{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow{-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.shadow-md{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.shadow-lg{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.shadow-inner{-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.hover\:shadow-md:hover{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.focus\:shadow-lg:focus{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.focus\:shadow-outline:focus{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}.focus\:shadow-outline-blue:focus{-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.focus\:shadow-outline-red:focus{-webkit-box-shadow:0 0 0 3px rgba(248,180,180,.45);box-shadow:0 0 0 3px rgba(248,180,180,.45)}.focus\:shadow-outline-indigo:focus{-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.fill-current{fill:currentColor}.table-fixed{table-layout:fixed}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-opacity-75{--text-opacity:0.75}.text-opacity-100{--text-opacity:1}.italic{font-style:italic}.not-italic{font-style:normal}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.underline{text-decoration:underline}.no-underline{text-decoration:none}.hover\:underline:hover{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.visible{visibility:visible}.invisible{visibility:hidden}.whitespace-no-wrap{white-space:nowrap}.break-words{word-wrap:break-word;overflow-wrap:break-word}.break-all{word-break:break-all}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.w-0{width:0}.w-2{width:.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-12{width:3rem}.w-24{width:6rem}.w-40{width:10rem}.w-48{width:12rem}.w-56{width:14rem}.w-auto{width:auto}.w-1\.5{width:.375rem}.w-2\.5{width:.625rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-1\/4{width:25%}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-1\/5{width:20%}.w-2\/5{width:40%}.w-3\/5{width:60%}.w-4\/5{width:80%}.w-3\/6{width:50%}.w-4\/6{width:66.666667%}.w-5\/6{width:83.333333%}.w-1\/12{width:8.333333%}.w-2\/12{width:16.666667%}.w-3\/12{width:25%}.w-4\/12{width:33.333333%}.w-5\/12{width:41.666667%}.w-9\/12{width:75%}.w-10\/12{width:83.333333%}.w-11\/12{width:91.666667%}.w-full{width:100%}.w-screen{width:100vw}.z-10{z-index:10}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.gap-8{grid-gap:2rem;gap:2rem}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.origin-top-right{-webkit-transform-origin:top right;transform-origin:top right}.scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.scale-100{--transform-scale-x:1;--transform-scale-y:1}.translate-x-0{--transform-translate-x:0}.-translate-x-full{--transform-translate-x:-100%}.transition-all{-webkit-transition-property:all;transition-property:all}.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}.transition-opacity{-webkit-transition-property:opacity;transition-property:opacity}.ease-in{-webkit-transition-timing-function:cubic-bezier(.4,0,1,1);transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in-out{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-75{-webkit-transition-duration:75ms;transition-duration:75ms}.duration-100{-webkit-transition-duration:.1s;transition-duration:.1s}.duration-150{-webkit-transition-duration:.15s;transition-duration:.15s}.duration-200{-webkit-transition-duration:.2s;transition-duration:.2s}.duration-300{-webkit-transition-duration:.3s;transition-duration:.3s}@-webkit-keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes ping{75%,to{-webkit-transform:scale(2);transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{-webkit-transform:none;transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}.animate-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}.animate-ping{-webkit-animation:ping 1s cubic-bezier(0,0,.2,1) infinite;animation:ping 1s cubic-bezier(0,0,.2,1) infinite}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@media (min-width:640px){.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px*(1 - var(--space-y-reverse)));margin-bottom:calc(0px*var(--space-y-reverse))}.sm\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.sm\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-lg{border-radius:.5rem}.sm\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.sm\:grid{display:grid}.sm\:flex-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.sm\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sm\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sm\:h-10{height:2.5rem}.sm\:text-sm{font-size:.875rem}.sm\:text-2xl{font-size:1.5rem}.sm\:text-3xl{font-size:1.875rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-9{line-height:2.25rem}.sm\:my-0{margin-top:0;margin-bottom:0}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.sm\:my-8{margin-top:2rem;margin-bottom:2rem}.sm\:my-12{margin-top:3rem;margin-bottom:3rem}.sm\:mt-0{margin-top:0}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-5{margin-top:1.25rem}.sm\:max-w-lg{max-width:32rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-2{padding-left:.5rem;padding-right:.5rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:text-left{text-align:left}.sm\:align-middle{vertical-align:middle}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:w-10{width:2.5rem}.sm\:w-32{width:8rem}.sm\:w-auto{width:auto}.sm\:w-1\/2{width:50%}.sm\:w-1\/3{width:33.333333%}.sm\:w-2\/3{width:66.666667%}.sm\:w-2\/4{width:50%}.sm\:w-full{width:100%}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:768px){.md\:rounded-lg{border-radius:.5rem}.md\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.md\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.md\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.md\:justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.md\:text-base{font-size:1rem}.md\:mx-0{margin-left:0;margin-right:0}.md\:my-2{margin-top:.5rem;margin-bottom:.5rem}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:ml-2{margin-left:.5rem}.md\:ml-4{margin-left:1rem}.md\:ml-8{margin-left:2rem}.md\:-mr-8{margin-right:-2rem}.md\:max-w-xl{max-width:36rem}.md\:max-w-5xl{max-width:64rem}.md\:p-2{padding:.5rem}.md\:p-6{padding:1.5rem}.md\:py-0{padding-top:0;padding-bottom:0}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:pb-2{padding-bottom:.5rem}.md\:pr-4{padding-right:1rem}.md\:pt-6{padding-top:1.5rem}.md\:shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.md\:w-3\/5{width:60%}}@media (min-width:1024px){.lg\:bg-transparent{background-color:transparent}.lg\:border-transparent{border-color:transparent}.lg\:rounded-full{border-radius:9999px}.lg\:block{display:block}.lg\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.lg\:inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.lg\:text-sm{font-size:.875rem}.lg\:text-lg{font-size:1.125rem}.lg\:my-0{margin-top:0;margin-bottom:0}.lg\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.lg\:my-24{margin-top:6rem;margin-bottom:6rem}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:ml-16{margin-left:4rem}.lg\:-mr-16{margin-right:-4rem}.lg\:max-w-3xl{max-width:48rem}.lg\:p-6{padding:1.5rem}.lg\:p-8{padding:2rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pt-2{padding-top:.5rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pl-2{padding-left:.5rem}.lg\:top-1\/2{top:50%}.lg\:shadow-none{-webkit-box-shadow:none;box-shadow:none}.lg\:w-40{width:10rem}.lg\:w-48{width:12rem}.lg\:w-1\/2{width:50%}.lg\:w-3\/5{width:60%}.lg\:w-3\/12{width:25%}.lg\:w-7\/12{width:58.333333%}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:1280px){.xl\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.xl\:mr-0{margin-right:0}.xl\:ml-2{margin-left:.5rem}.xl\:ml-3{margin-left:.75rem}.xl\:ml-4{margin-left:1rem}.xl\:ml-20{margin-left:5rem}.xl\:ml-32{margin-left:8rem}.xl\:ml-1\.5{margin-left:.375rem}.xl\:max-w-4xl{max-width:56rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:pr-3{padding-right:.75rem}.xl\:pb-4{padding-bottom:1rem}.xl\:top-1\/3{top:33.333333%}.xl\:w-64{width:16rem}.xl\:w-1\/4{width:25%}.xl\:w-2\/5{width:40%}.xl\:w-3\/5{width:60%}.xl\:w-2\/12{width:16.666667%}.xl\:w-6\/12{width:50%}.xl\:w-7\/12{width:58.333333%}}
lite/includes/class-email-subscribers-activator.php CHANGED
@@ -36,6 +36,12 @@ class Email_Subscribers_Activator {
36
  public static function activate() {
37
  require_once dirname( __FILE__ ) . '/class-es-install.php';
38
  ES_Install::install();
 
 
 
 
 
 
39
  }
40
 
41
  public static function register_email_templates() {
36
  public static function activate() {
37
  require_once dirname( __FILE__ ) . '/class-es-install.php';
38
  ES_Install::install();
39
+ /**
40
+ * Do all plugin related stuff in plugin activation
41
+ *
42
+ * @since 4.8.0
43
+ */
44
+ do_action('ig_es_plugin_activate');
45
  }
46
 
47
  public static function register_email_templates() {
lite/includes/class-es-common.php CHANGED
@@ -157,8 +157,10 @@ class ES_Common {
157
  <tbody>
158
  <tr>
159
  <td style="background-image: url('<?php echo esc_url( $thumbnail_url ); ?>');height:<?php echo esc_attr( $thumbnail_height ); ?>;width:<?php echo esc_attr( $thumbnail_width ); ?>;background-size: 100% 100%;background-repeat: no-repeat;text-align:center;">
160
- <a href="<?php echo esc_url( $url ); ?>" title="<?php echo esc_attr( $title ); ?>" target="_blank">
161
- <img src="<?php echo esc_url( $play_icon_url ); ?>" style="height: 75px; margin: auto;">
 
 
162
  </a>
163
  </td>
164
  </tr>
@@ -357,7 +359,10 @@ class ES_Common {
357
 
358
  $dropdown = '';
359
  foreach ( $templates as $key => $template ) {
360
- $es_templ_thumbnail = ( ! empty( $template->ID ) ) ? get_the_post_thumbnail_url( $template->ID, array( '200', '200' ) ) : ES_PLUGIN_URL . 'images/envelope.png';
 
 
 
361
  $dropdown .= "<option data-img-url='" . $es_templ_thumbnail . "' value='" . $template->ID . "'";
362
 
363
  if ( absint( $selected ) === absint( $template->ID ) ) {
@@ -468,8 +473,8 @@ class ES_Common {
468
  'email-subscribers' ) . '</td></tr>';
469
 
470
  $checked_none = in_array( 'None', $category_names, true ) ? "checked='checked'" : '';
471
- $none_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><span class="block ml-6 pr-4 text-sm font-normal text-gray-600 pb-1"><input type="radio" class="form-radio text-indigo-600 es-note-category-parent" ' . esc_attr( $checked_none ) . ' value="{a}None{a}" name="es_note_cat_parent">' . __( 'None (Don\'t include post from any category)',
472
- 'email-subscribers' ) . '</td></tr>';
473
 
474
  return $none_html . $all_html . $category_html;
475
  }
@@ -524,6 +529,49 @@ class ES_Common {
524
  return $types;
525
  }
526
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
527
  /**
528
  * Get Image sizes
529
  *
@@ -1211,6 +1259,9 @@ class ES_Common {
1211
  'ig_es_subscription_success_message',
1212
  'ig_es_sync_wp_users',
1213
  'ig_es_unsubscribe_error_message',
 
 
 
1214
  'ig_es_unsubscribe_link',
1215
  'ig_es_unsubscribe_link_content',
1216
  'ig_es_unsubscribe_page',
@@ -1318,9 +1369,9 @@ class ES_Common {
1318
  * Update Total Email Sent count
1319
  *
1320
  * @param int $sent_count Sent emails count
1321
- *
1322
  * @since 4.1.15
1323
- *
1324
  * @since 4.7.5 Added $sent_count parameter
1325
  */
1326
  public static function update_total_email_sent_count( $sent_count = 0 ) {
@@ -1447,26 +1498,52 @@ class ES_Common {
1447
  * @since 4.4.2
1448
  */
1449
  public static function get_useful_articles( $upsell = true ) {
1450
-
1451
  $articles_upsell = array();
1452
-
1453
  $blog_articles = array(
1454
- array( 'title' => __( 'Top 10 Tips on How to Build an Email List', 'email-subscribers' ), 'link' => 'https://www.icegram.com/email-list/' ),
1455
- array( 'title' => __( 'Why are Your Email Unsubscribes Increasing and How to Fix Them?', 'email-subscribers' ), 'link' => 'https://www.icegram.com/unsubscribes/' ),
1456
- array( 'title' => __( 'Balance Email Marketing and Social Media Marketing', 'email-subscribers' ), 'link' => 'https://www.icegram.com/email-marketing-and-social-media-marketing/' ),
1457
- array( 'title' => __( 'Use social proof to grow blog traffic through email', 'email-subscribers' ), 'link' => 'https://www.icegram.com/social-proof/' ),
1458
- array( 'title' => __( '5 Simple Tricks to Improve Email Marketing Campaign Results', 'email-subscribers' ), 'link' => 'https://www.icegram.com/email-marketing-campaign/' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1459
  );
1460
 
1461
  if ( $upsell ) {
1462
 
1463
  $articles_upsell = array(
1464
- array( 'title' => __( 'Email Subscribers PRO', 'email-subscribers' ), 'link' => 'https://www.icegram.com/er6r', 'label' => __( 'Lifetime', 'email-subscribers' ), 'label_class' => 'bg-green-100 text-green-800' ),
1465
- array( 'title' => __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ), 'link' => 'https://www.facebook.com/groups/2298909487017349/', 'label' => __( 'Join Now', 'email-subscribers' ), 'label_class' => 'bg-green-100 text-green-800' ),
 
 
 
 
 
 
 
 
 
 
1466
  );
1467
  }
1468
 
1469
- $articles = array_merge( $blog_articles, $articles_upsell);
 
1470
  return $articles;
1471
  }
1472
 
@@ -1786,7 +1863,7 @@ class ES_Common {
1786
  $time_format = get_option( 'time_format' );
1787
  $format = $date_format . ' ' . $time_format;
1788
  }
1789
-
1790
  return gmdate( $format, $timestamp );
1791
  }
1792
 
@@ -1860,7 +1937,9 @@ class ES_Common {
1860
  <div class="flex">
1861
  <div class="flex-shrink-0">
1862
  <svg class='h-5 w-5 text-teal-400' fill='currentColor' viewBox='0 0 20 20'>
1863
- <path fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z' clip-rule='evenodd'/>
 
 
1864
  </svg>
1865
  </div>
1866
  <div class="ml-3">
@@ -1897,12 +1976,13 @@ class ES_Common {
1897
  if ( $upsell_info['cta_html'] ) {
1898
  ?>
1899
  <div class="pt-6 text-center -ml-6 pb-2">
1900
- <a href="<?php echo esc_url( $upsell_info['pricing_url'] ); ?>" target="_blank" class="rounded-md border border-transparent px-3 py-2 bg-white text-sm leading-7 font-medium text-white bg-indigo-600 hover:text-white hover:bg-indigo-500 transition ease-in-out duration-150 mt-2">
1901
- <?php
1902
- esc_html_e( 'Upgrade',
1903
- 'email-subscribers' );
1904
- ?>
1905
- </a>
 
1906
  </div>
1907
  <?php
1908
  }
@@ -1956,7 +2036,7 @@ class ES_Common {
1956
  * @param string $string String we want to test if it's json.
1957
  *
1958
  * @return bool
1959
- *
1960
  * @since 4.6.14
1961
  */
1962
  public static function is_valid_json( $string ) {
@@ -1966,11 +2046,11 @@ class ES_Common {
1966
 
1967
  /**
1968
  * Get HTML for tooltip
1969
- *
1970
  * @param string $tooltip_text
1971
- *
1972
  * @return string $tooltip_html
1973
- *
1974
  * @since 4.7.0
1975
  */
1976
  public static function get_tooltip_html( $tooltip_text = '' ) {
@@ -1986,21 +2066,22 @@ class ES_Common {
1986
  </span>
1987
  </div>';
1988
  }
 
1989
  return $tooltip_html;
1990
  }
1991
 
1992
  /**
1993
  * Decode HTML entities
1994
- *
1995
  * @param string $string
1996
- *
1997
  * @return string $string
1998
- *
1999
  * @since 4.7.1
2000
  */
2001
  public static function decode_entities( $string ) {
2002
 
2003
- preg_match_all('/&#?\w+;/', $string, $entities, PREG_SET_ORDER);
2004
  $entities = array_unique( array_column( $entities, 0 ) );
2005
 
2006
  if ( ! empty( $entities ) ) {
@@ -2015,22 +2096,22 @@ class ES_Common {
2015
 
2016
  /**
2017
  * Override wp editor tinymce formatting options
2018
- *
2019
  * @param array $init
2020
  * @param string $editor_id
2021
- *
2022
  * @return array $init
2023
- *
2024
  * @since 4.7.3
2025
  */
2026
  public static function override_tinymce_formatting_options( $init, $editor_id = '' ) {
2027
 
2028
  if ( 'edit-es-broadcast-body' === $editor_id ) {
2029
-
2030
  $init['wpautop'] = false; // Disable stripping of p tags in Text mode.
2031
  $init['tadv_noautop'] = true; // Disable stripping of p tags in Text mode.
2032
  $init['indent'] = true;
2033
-
2034
  // To disable stripping of some HTML elements like span when switching modes in wp editor from text-visual-text.
2035
  $opts = '*[*]';
2036
  $init['valid_elements'] = $opts;
@@ -2042,60 +2123,67 @@ class ES_Common {
2042
 
2043
  /**
2044
  * Get current request URL
2045
- *
2046
  * @return string $request_url
2047
- *
2048
  * @since 4.7.6
2049
  */
2050
  public static function get_current_request_url() {
2051
  static $request_url = '';
2052
-
2053
  if ( empty( $request_url ) ) {
2054
  $request_url = add_query_arg( array() );
2055
  }
2056
-
2057
  return esc_url_raw( $request_url );
2058
  }
2059
 
2060
  public static function get_campaign_status_icon( $status = '' ) {
2061
  ob_start();
2062
  switch ( $status ) {
2063
- case 'Sent':
2064
  ?>
2065
  <svg class="inline-block mt-0.5 ml-2 h-5 w-5 text-green-400" fill="currentColor" viewBox="0 0 20 20">
2066
  <title><?php esc_attr__( 'Sent', 'email-subscribers' ); ?></title>
2067
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
 
 
2068
  </svg>
2069
- <?php
2070
  break;
2071
- case 'In Queue':
2072
  ?>
2073
- <svg class="inline-block mt-0.5 ml-2 h-5 w-5 text-orange-400" fill="currentColor" viewBox="0 0 20 20">
2074
- <title><?php esc_attr__( 'In Queue', 'email-subscribers' ); ?></title>
2075
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z" clip-rule="evenodd"/>
2076
- </svg>
2077
- <?php
 
 
2078
  break;
2079
- case 'Sending':
2080
  ?>
2081
- <svg class="inline-block mt-0.5 ml-2 h-4 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20">
2082
- <title><?php esc_attr__( 'Sending', 'email-subscribers' ); ?></title>
2083
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd"/>
2084
- </svg>
2085
- <?php
 
 
2086
  break;
2087
- case '1':
2088
  ?>
2089
- <span class="inline-flex px-2 text-green-800 bg-green-100 rounded-full"><?php esc_html__('Active', 'email-subscribers'); ?></span>
2090
- <?php
2091
  break;
2092
- case '':
2093
  ?>
2094
- <span class="inline-flex px-2 text-red-800 bg-red-100 rounded-full"><?php esc_html__('Inactive', 'email-subscribers'); ?></span>
2095
- <?php
2096
  }
2097
 
2098
  $status = ob_get_clean();
 
2099
  return $status;
2100
  }
2101
 
157
  <tbody>
158
  <tr>
159
  <td style="background-image: url('<?php echo esc_url( $thumbnail_url ); ?>');height:<?php echo esc_attr( $thumbnail_height ); ?>;width:<?php echo esc_attr( $thumbnail_width ); ?>;background-size: 100% 100%;background-repeat: no-repeat;text-align:center;">
160
+ <a href="<?php echo esc_url( $url ); ?>" title="<?php echo esc_attr( $title ); ?>"
161
+ target="_blank">
162
+ <img src="<?php echo esc_url( $play_icon_url ); ?>"
163
+ style="height: 75px; margin: auto;">
164
  </a>
165
  </td>
166
  </tr>
359
 
360
  $dropdown = '';
361
  foreach ( $templates as $key => $template ) {
362
+ $es_templ_thumbnail = ( ! empty( $template->ID ) ) ? get_the_post_thumbnail_url( $template->ID, array(
363
+ '200',
364
+ '200'
365
+ ) ) : ES_PLUGIN_URL . 'images/envelope.png';
366
  $dropdown .= "<option data-img-url='" . $es_templ_thumbnail . "' value='" . $template->ID . "'";
367
 
368
  if ( absint( $selected ) === absint( $template->ID ) ) {
473
  'email-subscribers' ) . '</td></tr>';
474
 
475
  $checked_none = in_array( 'None', $category_names, true ) ? "checked='checked'" : '';
476
+ $none_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><span class="block ml-6 pr-4 text-sm font-normal text-gray-600 pb-1"><input type="radio" class="form-radio text-indigo-600 es-note-category-parent" ' . esc_attr( $checked_none ) . ' value="{a}None{a}" name="es_note_cat_parent">' . __( 'None (Don\'t include post from any category)',
477
+ 'email-subscribers' ) . '</td></tr>';
478
 
479
  return $none_html . $all_html . $category_html;
480
  }
529
  return $types;
530
  }
531
 
532
+ /**
533
+ * Get options to sending mails of weekly summary.
534
+ *
535
+ * @return array
536
+ *
537
+ */
538
+ public static function run_summary_cron_on() {
539
+
540
+ $types = array(
541
+ 'monday' => __( 'Monday', 'email-subscribers' ),
542
+ 'tuesday' => __( 'Tuesday', 'email-subscribers' ),
543
+ 'wednesday' => __( 'Wednesday', 'email-subscribers' ),
544
+ 'thursday' => __( 'Thursday', 'email-subscribers' ),
545
+ 'friday' => __( 'Friday', 'email-subscribers' ),
546
+ 'saturday' => __( 'Saturday', 'email-subscribers' ),
547
+ 'sunday' => __( 'Sunday', 'email-subscribers' ),
548
+ );
549
+
550
+ return apply_filters( 'ig_es_run_summary_cron_on_types', $types );
551
+ }
552
+
553
+ /**
554
+ * Get time options to sending mails of weekly summary.
555
+ *
556
+ * @return array
557
+ *
558
+ */
559
+ public static function get_railway_hrs_timings() {
560
+
561
+ $timings = array();
562
+
563
+ for ( $i = 1; $i <= 24; $i ++ ) {
564
+ if ( $i <= 12 ) {
565
+ $timings["{$i}am"] = "{$i}:00 AM";
566
+ } else {
567
+ $time = $i - 12;
568
+ $timings["{$time}pm"] = "{$time}:00 PM";
569
+ }
570
+ }
571
+
572
+ return apply_filters( 'ig_es_get_railway_hrs_timings', $timings );
573
+ }
574
+
575
  /**
576
  * Get Image sizes
577
  *
1259
  'ig_es_subscription_success_message',
1260
  'ig_es_sync_wp_users',
1261
  'ig_es_unsubscribe_error_message',
1262
+ 'ig_es_enable_summary_automation',
1263
+ 'ig_es_run_cron_on',
1264
+ 'ig_es_run_cron_time',
1265
  'ig_es_unsubscribe_link',
1266
  'ig_es_unsubscribe_link_content',
1267
  'ig_es_unsubscribe_page',
1369
  * Update Total Email Sent count
1370
  *
1371
  * @param int $sent_count Sent emails count
1372
+ *
1373
  * @since 4.1.15
1374
+ *
1375
  * @since 4.7.5 Added $sent_count parameter
1376
  */
1377
  public static function update_total_email_sent_count( $sent_count = 0 ) {
1498
  * @since 4.4.2
1499
  */
1500
  public static function get_useful_articles( $upsell = true ) {
1501
+
1502
  $articles_upsell = array();
1503
+
1504
  $blog_articles = array(
1505
+ array(
1506
+ 'title' => __( 'Top 10 Tips on How to Build an Email List', 'email-subscribers' ),
1507
+ 'link' => 'https://www.icegram.com/email-list/'
1508
+ ),
1509
+ array(
1510
+ 'title' => __( 'Why are Your Email Unsubscribes Increasing and How to Fix Them?', 'email-subscribers' ),
1511
+ 'link' => 'https://www.icegram.com/unsubscribes/'
1512
+ ),
1513
+ array(
1514
+ 'title' => __( 'Balance Email Marketing and Social Media Marketing', 'email-subscribers' ),
1515
+ 'link' => 'https://www.icegram.com/email-marketing-and-social-media-marketing/'
1516
+ ),
1517
+ array(
1518
+ 'title' => __( 'Use social proof to grow blog traffic through email', 'email-subscribers' ),
1519
+ 'link' => 'https://www.icegram.com/social-proof/'
1520
+ ),
1521
+ array(
1522
+ 'title' => __( '5 Simple Tricks to Improve Email Marketing Campaign Results', 'email-subscribers' ),
1523
+ 'link' => 'https://www.icegram.com/email-marketing-campaign/'
1524
+ ),
1525
  );
1526
 
1527
  if ( $upsell ) {
1528
 
1529
  $articles_upsell = array(
1530
+ array(
1531
+ 'title' => __( 'Email Subscribers PRO', 'email-subscribers' ),
1532
+ 'link' => 'https://www.icegram.com/er6r',
1533
+ 'label' => __( 'Lifetime', 'email-subscribers' ),
1534
+ 'label_class' => 'bg-green-100 text-green-800'
1535
+ ),
1536
+ array(
1537
+ 'title' => __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
1538
+ 'link' => 'https://www.facebook.com/groups/2298909487017349/',
1539
+ 'label' => __( 'Join Now', 'email-subscribers' ),
1540
+ 'label_class' => 'bg-green-100 text-green-800'
1541
+ ),
1542
  );
1543
  }
1544
 
1545
+ $articles = array_merge( $blog_articles, $articles_upsell );
1546
+
1547
  return $articles;
1548
  }
1549
 
1863
  $time_format = get_option( 'time_format' );
1864
  $format = $date_format . ' ' . $time_format;
1865
  }
1866
+
1867
  return gmdate( $format, $timestamp );
1868
  }
1869
 
1937
  <div class="flex">
1938
  <div class="flex-shrink-0">
1939
  <svg class='h-5 w-5 text-teal-400' fill='currentColor' viewBox='0 0 20 20'>
1940
+ <path fill-rule='evenodd'
1941
+ d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z'
1942
+ clip-rule='evenodd'/>
1943
  </svg>
1944
  </div>
1945
  <div class="ml-3">
1976
  if ( $upsell_info['cta_html'] ) {
1977
  ?>
1978
  <div class="pt-6 text-center -ml-6 pb-2">
1979
+ <a href="<?php echo esc_url( $upsell_info['pricing_url'] ); ?>" target="_blank"
1980
+ class="rounded-md border border-transparent px-3 py-2 bg-white text-sm leading-7 font-medium text-white bg-indigo-600 hover:text-white hover:bg-indigo-500 transition ease-in-out duration-150 mt-2">
1981
+ <?php
1982
+ esc_html_e( 'Upgrade',
1983
+ 'email-subscribers' );
1984
+ ?>
1985
+ </a>
1986
  </div>
1987
  <?php
1988
  }
2036
  * @param string $string String we want to test if it's json.
2037
  *
2038
  * @return bool
2039
+ *
2040
  * @since 4.6.14
2041
  */
2042
  public static function is_valid_json( $string ) {
2046
 
2047
  /**
2048
  * Get HTML for tooltip
2049
+ *
2050
  * @param string $tooltip_text
2051
+ *
2052
  * @return string $tooltip_html
2053
+ *
2054
  * @since 4.7.0
2055
  */
2056
  public static function get_tooltip_html( $tooltip_text = '' ) {
2066
  </span>
2067
  </div>';
2068
  }
2069
+
2070
  return $tooltip_html;
2071
  }
2072
 
2073
  /**
2074
  * Decode HTML entities
2075
+ *
2076
  * @param string $string
2077
+ *
2078
  * @return string $string
2079
+ *
2080
  * @since 4.7.1
2081
  */
2082
  public static function decode_entities( $string ) {
2083
 
2084
+ preg_match_all( '/&#?\w+;/', $string, $entities, PREG_SET_ORDER );
2085
  $entities = array_unique( array_column( $entities, 0 ) );
2086
 
2087
  if ( ! empty( $entities ) ) {
2096
 
2097
  /**
2098
  * Override wp editor tinymce formatting options
2099
+ *
2100
  * @param array $init
2101
  * @param string $editor_id
2102
+ *
2103
  * @return array $init
2104
+ *
2105
  * @since 4.7.3
2106
  */
2107
  public static function override_tinymce_formatting_options( $init, $editor_id = '' ) {
2108
 
2109
  if ( 'edit-es-broadcast-body' === $editor_id ) {
2110
+
2111
  $init['wpautop'] = false; // Disable stripping of p tags in Text mode.
2112
  $init['tadv_noautop'] = true; // Disable stripping of p tags in Text mode.
2113
  $init['indent'] = true;
2114
+
2115
  // To disable stripping of some HTML elements like span when switching modes in wp editor from text-visual-text.
2116
  $opts = '*[*]';
2117
  $init['valid_elements'] = $opts;
2123
 
2124
  /**
2125
  * Get current request URL
2126
+ *
2127
  * @return string $request_url
2128
+ *
2129
  * @since 4.7.6
2130
  */
2131
  public static function get_current_request_url() {
2132
  static $request_url = '';
2133
+
2134
  if ( empty( $request_url ) ) {
2135
  $request_url = add_query_arg( array() );
2136
  }
2137
+
2138
  return esc_url_raw( $request_url );
2139
  }
2140
 
2141
  public static function get_campaign_status_icon( $status = '' ) {
2142
  ob_start();
2143
  switch ( $status ) {
2144
+ case 'Sent':
2145
  ?>
2146
  <svg class="inline-block mt-0.5 ml-2 h-5 w-5 text-green-400" fill="currentColor" viewBox="0 0 20 20">
2147
  <title><?php esc_attr__( 'Sent', 'email-subscribers' ); ?></title>
2148
+ <path fill-rule="evenodd"
2149
+ d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
2150
+ clip-rule="evenodd"/>
2151
  </svg>
2152
+ <?php
2153
  break;
2154
+ case 'In Queue':
2155
  ?>
2156
+ <svg class="inline-block mt-0.5 ml-2 h-5 w-5 text-orange-400" fill="currentColor" viewBox="0 0 20 20">
2157
+ <title><?php esc_attr__( 'In Queue', 'email-subscribers' ); ?></title>
2158
+ <path fill-rule="evenodd"
2159
+ d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z"
2160
+ clip-rule="evenodd"/>
2161
+ </svg>
2162
+ <?php
2163
  break;
2164
+ case 'Sending':
2165
  ?>
2166
+ <svg class="inline-block mt-0.5 ml-2 h-4 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20">
2167
+ <title><?php esc_attr__( 'Sending', 'email-subscribers' ); ?></title>
2168
+ <path fill-rule="evenodd"
2169
+ d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z"
2170
+ clip-rule="evenodd"/>
2171
+ </svg>
2172
+ <?php
2173
  break;
2174
+ case '1':
2175
  ?>
2176
+ <span class="inline-flex px-2 text-green-800 bg-green-100 rounded-full"><?php esc_html__( 'Active', 'email-subscribers' ); ?></span>
2177
+ <?php
2178
  break;
2179
+ case '':
2180
  ?>
2181
+ <span class="inline-flex px-2 text-red-800 bg-red-100 rounded-full"><?php esc_html__( 'Inactive', 'email-subscribers' ); ?></span>
2182
+ <?php
2183
  }
2184
 
2185
  $status = ob_get_clean();
2186
+
2187
  return $status;
2188
  }
2189
 
lite/includes/class-es-install.php CHANGED
@@ -345,8 +345,8 @@ if ( ! class_exists( 'ES_Install' ) ) {
345
 
346
  // Create Files
347
  self::create_files();
348
-
349
-
350
  if ( ! is_blog_installed() ) {
351
  self::$logger->error( 'Blog is not installed.', self::$logger_context );
352
 
@@ -796,6 +796,9 @@ if ( ! class_exists( 'ES_Install' ) ) {
796
  'ig_es_welcome_email_subject' => array( 'default' => $welcome_email_subject, 'old_option' => 'ig_es_welcomesubject' ),
797
  'ig_es_welcome_email_content' => array( 'default' => $welcome_email_content, 'old_option' => 'ig_es_welcomecontent' ),
798
  'ig_es_enable_cron_admin_email' => array( 'default' => 'yes', 'old_option' => 'ig_es_enable_cron_adminmail' ),
 
 
 
799
  'ig_es_cron_admin_email' => array( 'default' => $cron_admin_email, 'old_option' => 'ig_es_cron_adminmail' ),
800
  'ig_es_cronurl' => array( 'default' => $cronurl, 'old_option' => 'ig_es_cronurl' ),
801
  'ig_es_hourly_email_send_limit' => array( 'default' => 300, 'old_option' => 'ig_es_cron_mailcount' ),
@@ -1251,7 +1254,7 @@ if ( ! class_exists( 'ES_Install' ) ) {
1251
  KEY version (version)
1252
  ) $collate;
1253
  ";
1254
-
1255
  return $tables;
1256
  }
1257
 
@@ -1273,7 +1276,7 @@ if ( ! class_exists( 'ES_Install' ) ) {
1273
  `identifier` char(13) NOT NULL,
1274
  PRIMARY KEY (ID)
1275
  ) $collate;";
1276
-
1277
  return $tables;
1278
  }
1279
 
@@ -1302,7 +1305,7 @@ if ( ! class_exists( 'ES_Install' ) ) {
1302
  `meta` longtext DEFAULT NULL,
1303
  PRIMARY KEY (id)
1304
  ) $collate;";
1305
-
1306
  return $tables;
1307
  }
1308
 
345
 
346
  // Create Files
347
  self::create_files();
348
+
349
+
350
  if ( ! is_blog_installed() ) {
351
  self::$logger->error( 'Blog is not installed.', self::$logger_context );
352
 
796
  'ig_es_welcome_email_subject' => array( 'default' => $welcome_email_subject, 'old_option' => 'ig_es_welcomesubject' ),
797
  'ig_es_welcome_email_content' => array( 'default' => $welcome_email_content, 'old_option' => 'ig_es_welcomecontent' ),
798
  'ig_es_enable_cron_admin_email' => array( 'default' => 'yes', 'old_option' => 'ig_es_enable_cron_adminmail' ),
799
+ 'ig_es_enable_summary_automation' => array( 'default' => 'yes', 'old_option' => 'ig_es_enable_summary_automation' ),
800
+ 'ig_es_run_cron_on' => array( 'default' => 'monday', 'old_option' => 'ig_es_run_cron_on' ),
801
+ 'ig_es_run_cron_time' => array( 'default' => '4pm', 'old_option' => 'ig_es_run_cron_time' ),
802
  'ig_es_cron_admin_email' => array( 'default' => $cron_admin_email, 'old_option' => 'ig_es_cron_adminmail' ),
803
  'ig_es_cronurl' => array( 'default' => $cronurl, 'old_option' => 'ig_es_cronurl' ),
804
  'ig_es_hourly_email_send_limit' => array( 'default' => 300, 'old_option' => 'ig_es_cron_mailcount' ),
1254
  KEY version (version)
1255
  ) $collate;
1256
  ";
1257
+
1258
  return $tables;
1259
  }
1260
 
1276
  `identifier` char(13) NOT NULL,
1277
  PRIMARY KEY (ID)
1278
  ) $collate;";
1279
+
1280
  return $tables;
1281
  }
1282
 
1305
  `meta` longtext DEFAULT NULL,
1306
  PRIMARY KEY (id)
1307
  ) $collate;";
1308
+
1309
  return $tables;
1310
  }
1311
 
lite/includes/classes/class-es-admin-settings.php CHANGED
@@ -45,12 +45,14 @@ class ES_Admin_Settings {
45
 
46
  $options = apply_filters( 'ig_es_before_save_settings', $options );
47
 
48
- $options['ig_es_disable_wp_cron'] = isset( $options['ig_es_disable_wp_cron'] ) ? $options['ig_es_disable_wp_cron'] : 'no';
49
- $options['ig_es_track_email_opens'] = isset( $options['ig_es_track_email_opens'] ) ? $options['ig_es_track_email_opens'] : 'no';
50
- $options['ig_es_enable_welcome_email'] = isset( $options['ig_es_enable_welcome_email'] ) ? $options['ig_es_enable_welcome_email'] : 'no';
51
- $options['ig_es_notify_admin'] = isset( $options['ig_es_notify_admin'] ) ? $options['ig_es_notify_admin'] : 'no';
52
- $options['ig_es_enable_cron_admin_email'] = isset( $options['ig_es_enable_cron_admin_email'] ) ? $options['ig_es_enable_cron_admin_email'] : 'no';
53
- $options['ig_es_delete_plugin_data'] = isset( $options['ig_es_delete_plugin_data'] ) ? $options['ig_es_delete_plugin_data'] : 'no';
 
 
54
  // Start-IG-Code.
55
  // Show option to enable/disable tracking if user isn't a premium user and trial is not valid i.e. has expired.
56
  if ( ! ES()->is_premium() && ! ES()->is_trial_valid() ) {
@@ -1002,6 +1004,7 @@ class ES_Admin_Settings {
1002
  'ig_es_cron',
1003
  'ig_es_cron_worker',
1004
  'ig_es_cron_auto_responder',
 
1005
  );
1006
 
1007
  $cron_schedules = wp_get_schedules();
45
 
46
  $options = apply_filters( 'ig_es_before_save_settings', $options );
47
 
48
+ $options['ig_es_disable_wp_cron'] = isset( $options['ig_es_disable_wp_cron'] ) ? $options['ig_es_disable_wp_cron'] : 'no';
49
+ $options['ig_es_track_email_opens'] = isset( $options['ig_es_track_email_opens'] ) ? $options['ig_es_track_email_opens'] : 'no';
50
+ $options['ig_es_enable_welcome_email'] = isset( $options['ig_es_enable_welcome_email'] ) ? $options['ig_es_enable_welcome_email'] : 'no';
51
+ $options['ig_es_notify_admin'] = isset( $options['ig_es_notify_admin'] ) ? $options['ig_es_notify_admin'] : 'no';
52
+ $options['ig_es_enable_cron_admin_email'] = isset( $options['ig_es_enable_cron_admin_email'] ) ? $options['ig_es_enable_cron_admin_email'] : 'no';
53
+ $options['ig_es_delete_plugin_data'] = isset( $options['ig_es_delete_plugin_data'] ) ? $options['ig_es_delete_plugin_data'] : 'no';
54
+ $options['ig_es_run_cron_on'] = isset( $options['ig_es_run_cron_on'] ) ? $options['ig_es_run_cron_on'] : 'monday';
55
+ $options['ig_es_run_cron_time'] = isset( $options['ig_es_run_cron_time'] ) ? $options['ig_es_run_cron_time'] : '4pm';
56
  // Start-IG-Code.
57
  // Show option to enable/disable tracking if user isn't a premium user and trial is not valid i.e. has expired.
58
  if ( ! ES()->is_premium() && ! ES()->is_trial_valid() ) {
1004
  'ig_es_cron',
1005
  'ig_es_cron_worker',
1006
  'ig_es_cron_auto_responder',
1007
+ 'ig_es_summary_automation'
1008
  );
1009
 
1010
  $cron_schedules = wp_get_schedules();
lite/includes/classes/class-es-mailer.php CHANGED
@@ -53,14 +53,6 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
53
  */
54
  public $email_limit = 0;
55
 
56
- /**
57
- * Keep map of email => id data
58
- *
59
- * @since 4.3.2
60
- * @var array
61
- */
62
- public $email_id_map = array();
63
-
64
  /**
65
  * Need to add unsubscribe link ?
66
  *
@@ -634,22 +626,6 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
634
  $emails = array( $emails );
635
  }
636
 
637
- // When email in not sent through a campaign e.g. Subscription Welcome emails.
638
- if ( 0 === $campaign_id ) {
639
- $this->email_id_map = ES()->contacts_db->get_email_id_map( $emails );
640
- } else {
641
- /**
642
- * In case of sequence message campaign, fetch contact-email mapping from contacts table, since sending_queue table isn't used to store sequence campaign data.
643
- * TODO: Please check need for using sending_queue table for other campaigns type. If it is not required, then we can remove it for other campaigns types as well.
644
- */
645
- if ( 'sequence_message' === $campaign_type ) {
646
- $this->email_id_map = ES()->contacts_db->get_email_id_map( $emails );
647
- } else {
648
- // If the campaign isn't a sequence message, then we can fetch contact-email mapping data from sending_queue table
649
- $this->email_id_map = ES_DB_Sending_Queue::get_emails_id_map_by_campaign( $campaign_id, $emails );
650
- }
651
- }
652
-
653
  $total_emails_to_send = count( $emails );
654
 
655
  // In case mailser supporting batch APIs, we are setting API credentials, sender data before running the email loop
@@ -741,12 +717,9 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
741
 
742
  $response['status'] = 'SUCCESS';
743
 
744
- // Don't find contact_id?
745
- $contact_id = ! empty( $this->email_id_map[ $email ] ) ? $this->email_id_map[ $email ] : 0;
746
-
747
- $merge_tags['contact_id'] = $contact_id;
748
 
749
- $merge_tags = array_merge( $merge_tags, $this->get_contact_merge_tags( $contact_id ) );
750
 
751
  $this->link_data = array(
752
  'message_id' => $message_id,
@@ -1065,22 +1038,22 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
1065
  *
1066
  * @since 4.3.2
1067
  */
1068
- public function get_contact_merge_tags( $contact_id = 0 ) {
1069
  $merge_tags = array();
1070
 
1071
- if ( 0 != $contact_id ) {
1072
- $contact_details = ES()->contacts_db->get_details_by_ids( array( $contact_id ) );
1073
- if ( is_array( $contact_details ) ) {
1074
- $contact_details = array_shift( $contact_details );
1075
 
 
1076
  $first_name = $contact_details['first_name'];
1077
  $last_name = $contact_details['last_name'];
1078
-
 
 
 
1079
  $merge_tags['first_name'] = $first_name;
1080
  $merge_tags['last_name'] = $last_name;
1081
  $merge_tags['name'] = ES_Common::prepare_name_from_first_name_last_name( $first_name, $last_name );
1082
- $merge_tags['hash'] = $contact_details['hash'];
1083
- $merge_tags['email'] = $contact_details['email'];
1084
  }
1085
  }
1086
 
53
  */
54
  public $email_limit = 0;
55
 
 
 
 
 
 
 
 
 
56
  /**
57
  * Need to add unsubscribe link ?
58
  *
626
  $emails = array( $emails );
627
  }
628
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
629
  $total_emails_to_send = count( $emails );
630
 
631
  // In case mailser supporting batch APIs, we are setting API credentials, sender data before running the email loop
717
 
718
  $response['status'] = 'SUCCESS';
719
 
720
+ $merge_tags = array_merge( $merge_tags, $this->get_contact_merge_tags( $email ) );
 
 
 
721
 
722
+ $contact_id = ! empty( $merge_tags['contact_id'] ) ? $merge_tags['contact_id'] : 0;
723
 
724
  $this->link_data = array(
725
  'message_id' => $message_id,
1038
  *
1039
  * @since 4.3.2
1040
  */
1041
+ public function get_contact_merge_tags( $email ) {
1042
  $merge_tags = array();
1043
 
1044
+ if ( ! empty( $email ) ) {
1045
+ $contact_details = ES()->contacts_db->get_by( 'email', $email );
 
 
1046
 
1047
+ if ( ! empty( $contact_details ) ) {
1048
  $first_name = $contact_details['first_name'];
1049
  $last_name = $contact_details['last_name'];
1050
+
1051
+ $merge_tags['contact_id'] = $contact_details['id'];
1052
+ $merge_tags['hash'] = $contact_details['hash'];
1053
+ $merge_tags['email'] = $contact_details['email'];
1054
  $merge_tags['first_name'] = $first_name;
1055
  $merge_tags['last_name'] = $last_name;
1056
  $merge_tags['name'] = ES_Common::prepare_name_from_first_name_last_name( $first_name, $last_name );
 
 
1057
  }
1058
  }
1059
 
lite/includes/classes/class-es-queue.php CHANGED
@@ -740,12 +740,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
740
  $total_emails = count( $emails_data );
741
  // Found Subscribers to send notification?
742
  if ( $total_emails > 0 ) {
743
- $ids = array();
744
- $emails = array();
745
- foreach ( $emails_data as $email ) {
746
- $ids[] = $email['id'];
747
- $emails[] = $email['email'];
748
- }
749
 
750
  $merge_tags = array(
751
  'guid' => $notification_guid,
740
  $total_emails = count( $emails_data );
741
  // Found Subscribers to send notification?
742
  if ( $total_emails > 0 ) {
743
+ $emails = array_column( $emails_data, 'email' );
 
 
 
 
 
744
 
745
  $merge_tags = array(
746
  'guid' => $notification_guid,
lite/includes/classes/class-es-reports-data.php CHANGED
@@ -151,6 +151,35 @@ if ( ! class_exists( 'ES_Reports_Data' ) ) {
151
  return $data;
152
  }
153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  /**
155
  * Collect dashboard reports data
156
  *
@@ -190,7 +219,7 @@ if ( ! class_exists( 'ES_Reports_Data' ) ) {
190
  $total_email_opens = self::get_total_contacts_opened_emails( $days, false );
191
  $total_links_clicks = self::get_total_contacts_clicks_links( $days, false );
192
  $total_message_sent = self::get_total_emails_sent( $days, false );
193
- $total_contact_lost = self::get_total_contact_lost( $days, false );
194
  $contacts_growth = self::get_contacts_growth();
195
 
196
  $total_open_rate = 0;
151
  return $data;
152
  }
153
 
154
+
155
+ /**
156
+ * Get contacts growth percentage
157
+ *
158
+ * @param int $days
159
+ *
160
+ * @return float|integer
161
+ *
162
+ * @since 4.8.0
163
+ */
164
+ public static function get_contacts_growth_percentage( $days = 60 ) {
165
+
166
+ $this_week_contacts = ES()->contacts_db->get_total_subscribed_contacts_by_date( $days );
167
+ $last_week_total_contacts = (int) ES()->contacts_db->get_total_subscribed_contacts_between_days( $days );
168
+ $this_week_total_contacts = 0;
169
+ if ( count( $this_week_contacts ) > 0 ) {
170
+ foreach ( $this_week_contacts as $date => $contact_count ) {
171
+ $this_week_total_contacts += $contact_count;
172
+ }
173
+ }
174
+ if ( $last_week_total_contacts <= 0 && $this_week_total_contacts <= 0 ) {
175
+ return 0;
176
+ } else if ( $last_week_total_contacts <= 0 && $this_week_total_contacts > 0 ) {
177
+ return 100;
178
+ } else {
179
+ return ( $this_week_total_contacts - $last_week_total_contacts ) / $last_week_total_contacts * 100;
180
+ }
181
+ }
182
+
183
  /**
184
  * Collect dashboard reports data
185
  *
219
  $total_email_opens = self::get_total_contacts_opened_emails( $days, false );
220
  $total_links_clicks = self::get_total_contacts_clicks_links( $days, false );
221
  $total_message_sent = self::get_total_emails_sent( $days, false );
222
+ $total_contact_lost = self::get_total_unsubscribed_contacts( $days );
223
  $contacts_growth = self::get_contacts_growth();
224
 
225
  $total_open_rate = 0;
lite/includes/classes/class-es-reports-table.php CHANGED
@@ -173,7 +173,7 @@ class ES_Reports_Table extends ES_List_Table {
173
  return $item[ $column_name ];
174
  case 'total_sent':
175
  $total_emails_sent = ES()->actions_db->get_count_based_on_id_type( $item['campaign_id'], $item['id'], IG_MESSAGE_SENT );
176
- return number_format( $total_emails_sent );
177
  default:
178
  $column_data = isset( $item[ $column_name ] ) ? $item[ $column_name ] : '-';
179
 
@@ -290,7 +290,7 @@ class ES_Reports_Table extends ES_List_Table {
290
 
291
  // $content = $total_emails_sent . "/" . $total_emails_to_be_sent;
292
 
293
- return number_format( $total_emails_to_be_sent );
294
 
295
  }
296
 
173
  return $item[ $column_name ];
174
  case 'total_sent':
175
  $total_emails_sent = ES()->actions_db->get_count_based_on_id_type( $item['campaign_id'], $item['id'], IG_MESSAGE_SENT );
176
+ return number_format_i18n( $total_emails_sent );
177
  default:
178
  $column_data = isset( $item[ $column_name ] ) ? $item[ $column_name ] : '-';
179
 
290
 
291
  // $content = $total_emails_sent . "/" . $total_emails_to_be_sent;
292
 
293
+ return number_format_i18n( $total_emails_to_be_sent );
294
 
295
  }
296
 
lite/includes/db/class-es-db-contacts.php CHANGED
@@ -881,6 +881,39 @@ class ES_DB_Contacts extends ES_DB {
881
  }
882
 
883
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  /**
885
  * Count contacts by Form id
886
  *
881
  }
882
 
883
 
884
+ /**
885
+ * Get total subscribed contacts between $days
886
+ *
887
+ * @param int $days
888
+ *
889
+ * @return array
890
+ *
891
+ * @since 4.4.2
892
+ */
893
+ public function get_total_subscribed_contacts_between_days( $days = 60 ) {
894
+ global $wpbd;
895
+
896
+ $columns = array( 'count(DISTINCT(id)) as total' );
897
+ $where = 'unsubscribed = %d';
898
+ $args[] = 0;
899
+
900
+ if ( 0 != $days ) {
901
+ $days = esc_sql( $days );
902
+ $where .= ' AND created_at > DATE_SUB(NOW(), INTERVAL %d DAY) AND created_at < DATE_SUB(NOW(), INTERVAL %d DAY) ';
903
+ $args[] = $days * 2;
904
+ $args[] = $days;
905
+ }
906
+
907
+ $where = $wpbd->prepare( $where, $args );
908
+
909
+ $results = $this->get_columns_by_condition( $columns, $where );
910
+
911
+ $results = array_shift( $results );
912
+
913
+ return $results['total'];
914
+ }
915
+
916
+
917
  /**
918
  * Count contacts by Form id
919
  *
lite/language.php CHANGED
@@ -283,6 +283,13 @@ __( 'None (Don\'t include post from any category)', 'email-subscribers' ),
283
  __( 'No Custom Post Types Available', 'email-subscribers' ),
284
  __( 'Single Opt-In', 'email-subscribers' ),
285
  __( 'Double Opt-In', 'email-subscribers' ),
 
 
 
 
 
 
 
286
  __( 'Full Size', 'email-subscribers' ),
287
  __( 'Medium Size', 'email-subscribers' ),
288
  __( 'Thumbnail', 'email-subscribers' ),
@@ -1064,6 +1071,7 @@ __( ' Take a look here', 'email-subscribers' ),
1064
  __( 'Free!', 'email-subscribers' ),
1065
  __( 'is not in List', 'email-subscribers' ),
1066
  __( 'Recipient(s): ', 'email-subscribers' ),
 
1067
  __( 'Open and Click activity', 'email-subscribers' ),
1068
  __( 'Country info', 'email-subscribers' ),
1069
  __( 'Others', 'email-subscribers' ),
@@ -1085,6 +1093,7 @@ __( 'Not Opened', 'email-subscribers' ),
1085
  __( 'No Reports available.', 'email-subscribers' ),
1086
  __( 'Sequence Message', 'email-subscribers' ),
1087
  __( 'Total Contacts', 'email-subscribers' ),
 
1088
  __( 'Your emails are not relevant to me', 'email-subscribers' ),
1089
  __( 'Your emails are too frequent', 'email-subscribers' ),
1090
  __( 'I don\'t remember signing up for this', 'email-subscribers' ),
@@ -1155,7 +1164,9 @@ __( 'mailgun.com', 'email-subscribers' ),
1155
  __( 'API Key', 'email-subscribers' ),
1156
  __( 'Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region.', 'email-subscribers' ),
1157
  __( 'API token', 'email-subscribers' ),
1158
- __( 'Clicked', 'email-subscribers' ),
 
 
1159
  __( 'You are not allowed to duplicate campaign.', 'email-subscribers' ),
1160
  __( 'Campaign duplicated !', 'email-subscribers' ),
1161
  __( 'Import WordPress users with following roles', 'email-subscribers' ),
@@ -1187,13 +1198,6 @@ __( '1st', 'email-subscribers' ),
1187
  __( '2nd', 'email-subscribers' ),
1188
  __( '3rd', 'email-subscribers' ),
1189
  __( 'Last', 'email-subscribers' ),
1190
- __( 'Sunday', 'email-subscribers' ),
1191
- __( 'Monday', 'email-subscribers' ),
1192
- __( 'Tuesday', 'email-subscribers' ),
1193
- __( 'Wednesday', 'email-subscribers' ),
1194
- __( 'Thursday', 'email-subscribers' ),
1195
- __( 'Friday', 'email-subscribers' ),
1196
- __( 'Saturday', 'email-subscribers' ),
1197
  __( 'Create Sequence', 'email-subscribers' ),
1198
  __( 'Edit Sequence', 'email-subscribers' ),
1199
  __( 'Add Sequence name', 'email-subscribers' ),
@@ -1211,6 +1215,22 @@ __( 'Delete this email', 'email-subscribers' ),
1211
  __( 'Email Subject', 'email-subscribers' ),
1212
  __( 'When to send', 'email-subscribers' ),
1213
  __( ' after subscription', 'email-subscribers' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1214
  __( 'Remove from list', 'email-subscribers' ),
1215
  __( 'Send Email', 'email-subscribers' ),
1216
  __( 'Email Content', 'email-subscribers' ),
283
  __( 'No Custom Post Types Available', 'email-subscribers' ),
284
  __( 'Single Opt-In', 'email-subscribers' ),
285
  __( 'Double Opt-In', 'email-subscribers' ),
286
+ __( 'Monday', 'email-subscribers' ),
287
+ __( 'Tuesday', 'email-subscribers' ),
288
+ __( 'Wednesday', 'email-subscribers' ),
289
+ __( 'Thursday', 'email-subscribers' ),
290
+ __( 'Friday', 'email-subscribers' ),
291
+ __( 'Saturday', 'email-subscribers' ),
292
+ __( 'Sunday', 'email-subscribers' ),
293
  __( 'Full Size', 'email-subscribers' ),
294
  __( 'Medium Size', 'email-subscribers' ),
295
  __( 'Thumbnail', 'email-subscribers' ),
1071
  __( 'Free!', 'email-subscribers' ),
1072
  __( 'is not in List', 'email-subscribers' ),
1073
  __( 'Recipient(s): ', 'email-subscribers' ),
1074
+ __( 'Clicked', 'email-subscribers' ),
1075
  __( 'Open and Click activity', 'email-subscribers' ),
1076
  __( 'Country info', 'email-subscribers' ),
1077
  __( 'Others', 'email-subscribers' ),
1093
  __( 'No Reports available.', 'email-subscribers' ),
1094
  __( 'Sequence Message', 'email-subscribers' ),
1095
  __( 'Total Contacts', 'email-subscribers' ),
1096
+ __( 'Your site\'s weekly report', 'email-subscribers' ),
1097
  __( 'Your emails are not relevant to me', 'email-subscribers' ),
1098
  __( 'Your emails are too frequent', 'email-subscribers' ),
1099
  __( 'I don\'t remember signing up for this', 'email-subscribers' ),
1164
  __( 'API Key', 'email-subscribers' ),
1165
  __( 'Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region.', 'email-subscribers' ),
1166
  __( 'API token', 'email-subscribers' ),
1167
+ __( 'Weekly summary', 'email-subscribers' ),
1168
+ __( 'When our automated weekly email should be sent out?', 'email-subscribers' ),
1169
+ __( 'In which time we need to send our weekly summary?', 'email-subscribers' ),
1170
  __( 'You are not allowed to duplicate campaign.', 'email-subscribers' ),
1171
  __( 'Campaign duplicated !', 'email-subscribers' ),
1172
  __( 'Import WordPress users with following roles', 'email-subscribers' ),
1198
  __( '2nd', 'email-subscribers' ),
1199
  __( '3rd', 'email-subscribers' ),
1200
  __( 'Last', 'email-subscribers' ),
 
 
 
 
 
 
 
1201
  __( 'Create Sequence', 'email-subscribers' ),
1202
  __( 'Edit Sequence', 'email-subscribers' ),
1203
  __( 'Add Sequence name', 'email-subscribers' ),
1215
  __( 'Email Subject', 'email-subscribers' ),
1216
  __( 'When to send', 'email-subscribers' ),
1217
  __( ' after subscription', 'email-subscribers' ),
1218
+ __( 'Weekly Account Summary', 'email-subscribers' ),
1219
+ __( 'Here are your weekly stats from', 'email-subscribers' ),
1220
+ __( 'Email Subscribers and Newsletters.', 'email-subscribers' ),
1221
+ __( 'Contacts growth', 'email-subscribers' ),
1222
+ __( 'Total subscribers', 'email-subscribers' ),
1223
+ __( 'Total un-subscribers', 'email-subscribers' ),
1224
+ __( 'Total sent emails', 'email-subscribers' ),
1225
+ __( 'Total opened mails', 'email-subscribers' ),
1226
+ __( 'Total clicked mails', 'email-subscribers' ),
1227
+ __( 'View More Stats', 'email-subscribers' ),
1228
+ __( 'Boost Your Stats', 'email-subscribers' ),
1229
+ __( 'Visit our Guides & Tutorials to learn how to ', 'email-subscribers' ),
1230
+ __( 'grow your audience', 'email-subscribers' ),
1231
+ __( 'maximize subscriber engagement.', 'email-subscribers' ),
1232
+ __( 'Then checkout your Dashboard to get a more complete view of your account health.', 'email-subscribers' ),
1233
+ __( 'Visit Dashboard', 'email-subscribers' ),
1234
  __( 'Remove from list', 'email-subscribers' ),
1235
  __( 'Send Email', 'email-subscribers' ),
1236
  __( 'Email Content', 'email-subscribers' ),
lite/languages/email-subscribers.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 4.7.9\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-02T11:15:13+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
@@ -68,7 +68,7 @@ msgid "Please add a broadcast subject before saving."
68
  msgstr ""
69
 
70
  #: lite/admin/class-email-subscribers-admin.php:172
71
- #: pro/pro-class-email-subscribers.php:497
72
  msgid "Please add email body."
73
  msgstr ""
74
 
@@ -231,12 +231,12 @@ msgstr ""
231
  #: lite/admin/class-email-subscribers-admin.php:317
232
  #: lite/includes/classes/class-es-campaigns-table.php:362
233
  #: lite/includes/classes/class-es-newsletters.php:254
234
- #: lite/includes/classes/class-es-reports-data.php:324
235
  #: lite/includes/classes/class-es-reports-table.php:163
236
  #: lite/includes/classes/class-es-templates-table.php:282
237
  #: lite/includes/pro-features.php:1123
238
  #: lite/public/class-email-subscribers-public.php:472
239
- #: pro/classes/class-es-pro-reports-data.php:73
240
  msgid "Broadcast"
241
  msgstr ""
242
 
@@ -271,7 +271,7 @@ msgstr ""
271
 
272
  #: lite/admin/class-email-subscribers-admin.php:338
273
  #: lite/admin/partials/dashboard.php:246
274
- #: lite/includes/classes/class-es-admin-settings.php:129
275
  msgid "Settings"
276
  msgstr ""
277
 
@@ -289,7 +289,7 @@ msgid "Something went wrong"
289
  msgstr ""
290
 
291
  #: lite/admin/class-email-subscribers-admin.php:1295
292
- #: lite/includes/class-email-subscribers-activator.php:55
293
  #: lite/includes/class-email-subscribers.php:1544
294
  #: lite/includes/classes/class-es-form-widget.php:11
295
  #: lite/includes/classes/class-es-old-widget.php:13
@@ -298,12 +298,12 @@ msgstr ""
298
  msgid "Email Subscribers"
299
  msgstr ""
300
 
301
- #: lite/admin/class-email-subscribers-admin.php:1334
302
  msgid "Last 30 days"
303
  msgstr ""
304
 
305
- #: lite/admin/class-email-subscribers-admin.php:1343
306
- #: lite/includes/class-es-common.php:188
307
  #: lite/includes/classes/class-es-contacts-table.php:332
308
  #: lite/includes/classes/class-es-import-subscribers.php:837
309
  #: lite/includes/classes/class-es-import-subscribers.php:1185
@@ -311,50 +311,50 @@ msgstr ""
311
  msgid "Subscribed"
312
  msgstr ""
313
 
314
- #: lite/admin/class-email-subscribers-admin.php:1351
315
- #: lite/includes/class-es-common.php:190
316
  #: lite/includes/classes/class-es-contacts-table.php:340
317
  #: lite/includes/classes/class-es-import-subscribers.php:838
318
  #: lite/includes/classes/class-es-import-subscribers.php:1186
319
  #: lite/includes/classes/class-es-lists-table.php:572
 
320
  msgid "Unsubscribed"
321
  msgstr ""
322
 
323
- #: lite/admin/class-email-subscribers-admin.php:1359
324
  #: lite/includes/pro-features.php:1155
325
- #: pro/classes/class-es-pro-reports-data.php:243
326
  msgid "Avg Open Rate"
327
  msgstr ""
328
 
329
- #: lite/admin/class-email-subscribers-admin.php:1367
330
  #: lite/admin/partials/dashboard.php:193
331
  msgid "Messages Sent"
332
  msgstr ""
333
 
334
- #: lite/admin/class-email-subscribers-admin.php:1378
335
  msgid "Last Campaign"
336
  msgstr ""
337
 
338
- #: lite/admin/class-email-subscribers-admin.php:1414
339
  msgid "Sent to"
340
  msgstr ""
341
 
342
- #: lite/admin/class-email-subscribers-admin.php:1426
343
  #: lite/admin/partials/dashboard.php:177
344
  #: lite/includes/pro-features.php:1235
345
  #: lite/includes/pro-features.php:1273
346
- #: pro/classes/class-es-pro-reports-data.php:296
347
- #: pro/classes/class-es-pro-reports-data.php:419
348
- #: pro/classes/class-es-pro-reports-data.php:652
349
  #: pro/partials/es-dashboard.php:88
350
  msgid "Opens"
351
  msgstr ""
352
 
353
- #: lite/admin/class-email-subscribers-admin.php:1440
354
  msgid "No campaigns sent yet"
355
  msgstr ""
356
 
357
- #: lite/admin/class-email-subscribers-admin.php:1448
358
  msgid "Latest Blog Posts from Icegram"
359
  msgstr ""
360
 
@@ -403,6 +403,7 @@ msgstr ""
403
  #: lite/admin/class-ig-es-campaign-rules.php:248
404
  #: lite/admin/class-ig-es-campaign-rules.php:419
405
  #: lite/admin/class-ig-es-campaign-rules.php:566
 
406
  msgid "and"
407
  msgstr ""
408
 
@@ -457,7 +458,7 @@ msgid "is in List"
457
  msgstr ""
458
 
459
  #: lite/admin/class-ig-es-campaign-rules.php:604
460
- #: lite/includes/classes/class-es-admin-settings.php:209
461
  #: lite/includes/classes/class-es-campaign-report.php:189
462
  #: lite/includes/classes/class-es-contacts-table.php:788
463
  #: lite/includes/classes/class-es-contacts-table.php:1069
@@ -472,8 +473,8 @@ msgstr ""
472
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
473
  #: lite/public/partials/class-es-shortcode.php:169
474
  #: pro/classes/class-es-pro-campaign-rules.php:35
475
- #: pro/pro-class-email-subscribers.php:829
476
- #: pro/pro-class-email-subscribers.php:2031
477
  #: pro/workflows/actions/class-es-action-send-email.php:29
478
  msgid "Email"
479
  msgstr ""
@@ -482,7 +483,7 @@ msgstr ""
482
  #: lite/includes/pro-features.php:1232
483
  #: lite/includes/pro-features.php:1482
484
  #: pro/classes/class-es-pro-campaign-rules.php:38
485
- #: pro/classes/class-es-pro-reports-data.php:293
486
  msgid "Country"
487
  msgstr ""
488
 
@@ -764,7 +765,6 @@ msgstr ""
764
 
765
  #: lite/admin/partials/dashboard.php:201
766
  #: lite/includes/pro-features.php:1171
767
- #: pro/classes/class-es-pro-reports-data.php:259
768
  msgid "Avg Click Rate"
769
  msgstr ""
770
 
@@ -773,9 +773,9 @@ msgid "Jump to: "
773
  msgstr ""
774
 
775
  #: lite/admin/partials/dashboard.php:242
776
- #: lite/includes/class-email-subscribers-activator.php:43
777
- #: lite/includes/class-email-subscribers-activator.php:44
778
  #: lite/includes/class-email-subscribers-activator.php:49
 
 
779
  msgid "Templates"
780
  msgstr ""
781
 
@@ -851,27 +851,27 @@ msgstr ""
851
  #: lite/includes/classes/class-es-import-subscribers.php:1180
852
  #: lite/includes/classes/class-es-reports-table.php:271
853
  #: lite/includes/workflows/class-es-workflows-table.php:338
854
- #: pro/classes/class-es-pro-sequence-report.php:297
855
  msgid "Status"
856
  msgstr ""
857
 
858
  #: lite/admin/partials/help.php:211
859
- #: lite/includes/class-es-common.php:385
860
- #: lite/includes/class-es-common.php:1669
861
- #: lite/includes/class-es-common.php:2089
862
  #: lite/includes/classes/class-es-campaigns-table.php:314
863
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
864
- #: pro/classes/class-es-pro-reports-data.php:187
865
- #: pro/classes/class-es-pro-sequence-report.php:235
866
  msgid "Active"
867
  msgstr ""
868
 
869
  #: lite/admin/partials/help.php:213
870
- #: lite/includes/class-es-common.php:386
871
- #: lite/includes/class-es-common.php:2094
872
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
873
- #: pro/classes/class-es-pro-reports-data.php:192
874
- #: pro/classes/class-es-pro-sequence-report.php:235
875
  msgid "Inactive"
876
  msgstr ""
877
 
@@ -1104,40 +1104,40 @@ msgstr ""
1104
  msgid " Understood, continue for now →"
1105
  msgstr ""
1106
 
1107
- #: lite/includes/class-email-subscribers-activator.php:45
1108
- #: lite/includes/class-email-subscribers-activator.php:46
1109
  msgid "Add New Template"
1110
  msgstr ""
1111
 
1112
- #: lite/includes/class-email-subscribers-activator.php:47
1113
  msgid "Edit Templates"
1114
  msgstr ""
1115
 
1116
- #: lite/includes/class-email-subscribers-activator.php:48
1117
  msgid "New Templates"
1118
  msgstr ""
1119
 
1120
- #: lite/includes/class-email-subscribers-activator.php:50
1121
  msgid "View Templates"
1122
  msgstr ""
1123
 
1124
- #: lite/includes/class-email-subscribers-activator.php:51
1125
  msgid "Search Templates"
1126
  msgstr ""
1127
 
1128
- #: lite/includes/class-email-subscribers-activator.php:52
1129
  msgid "No Templates found"
1130
  msgstr ""
1131
 
1132
- #: lite/includes/class-email-subscribers-activator.php:53
1133
  msgid "No Templates found in Trash"
1134
  msgstr ""
1135
 
1136
- #: lite/includes/class-email-subscribers-activator.php:56
1137
  msgid "Thumbnail (For Visual Representation only)"
1138
  msgstr ""
1139
 
1140
- #: lite/includes/class-email-subscribers-activator.php:57
1141
  msgid "Set thumbnail"
1142
  msgstr ""
1143
 
@@ -1174,7 +1174,7 @@ msgstr ""
1174
  msgid "Value was set using constant %1$s"
1175
  msgstr ""
1176
 
1177
- #: lite/includes/class-es-common.php:189
1178
  #: lite/includes/classes/class-es-contacts-table.php:348
1179
  #: lite/includes/classes/class-es-import-subscribers.php:839
1180
  #: lite/includes/classes/class-es-import-subscribers.php:1187
@@ -1182,111 +1182,146 @@ msgstr ""
1182
  msgid "Unconfirmed"
1183
  msgstr ""
1184
 
1185
- #: lite/includes/class-es-common.php:213
1186
  #: lite/includes/classes/class-es-import-subscribers.php:236
1187
  msgid "Select Status"
1188
  msgstr ""
1189
 
1190
- #: lite/includes/class-es-common.php:347
1191
  msgid "Select Template"
1192
  msgstr ""
1193
 
1194
- #: lite/includes/class-es-common.php:454
1195
  msgid "Select Categories"
1196
  msgstr ""
1197
 
1198
- #: lite/includes/class-es-common.php:467
1199
  msgid "All Categories (Also include all categories which will create later)"
1200
  msgstr ""
1201
 
1202
- #: lite/includes/class-es-common.php:471
1203
  msgid "None (Don't include post from any category)"
1204
  msgstr ""
1205
 
1206
- #: lite/includes/class-es-common.php:504
1207
  msgid "No Custom Post Types Available"
1208
  msgstr ""
1209
 
1210
- #: lite/includes/class-es-common.php:520
1211
  msgid "Single Opt-In"
1212
  msgstr ""
1213
 
1214
- #: lite/includes/class-es-common.php:521
1215
  msgid "Double Opt-In"
1216
  msgstr ""
1217
 
1218
- #: lite/includes/class-es-common.php:536
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1219
  msgid "Full Size"
1220
  msgstr ""
1221
 
1222
- #: lite/includes/class-es-common.php:537
1223
  msgid "Medium Size"
1224
  msgstr ""
1225
 
1226
- #: lite/includes/class-es-common.php:538
1227
  #: lite/includes/classes/class-es-templates-table.php:263
1228
  msgid "Thumbnail"
1229
  msgstr ""
1230
 
1231
- #: lite/includes/class-es-common.php:1454
1232
  msgid "Top 10 Tips on How to Build an Email List"
1233
  msgstr ""
1234
 
1235
- #: lite/includes/class-es-common.php:1455
1236
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1237
  msgstr ""
1238
 
1239
- #: lite/includes/class-es-common.php:1456
1240
  msgid "Balance Email Marketing and Social Media Marketing"
1241
  msgstr ""
1242
 
1243
- #: lite/includes/class-es-common.php:1457
1244
  msgid "Use social proof to grow blog traffic through email"
1245
  msgstr ""
1246
 
1247
- #: lite/includes/class-es-common.php:1458
1248
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1249
  msgstr ""
1250
 
1251
- #: lite/includes/class-es-common.php:1464
1252
  #: lite/includes/pro-features.php:144
1253
  msgid "Email Subscribers PRO"
1254
  msgstr ""
1255
 
1256
- #: lite/includes/class-es-common.php:1464
1257
  msgid "Lifetime"
1258
  msgstr ""
1259
 
1260
- #: lite/includes/class-es-common.php:1465
1261
  msgid "<b>Email Subscribers Secret Club</b>"
1262
  msgstr ""
1263
 
1264
- #: lite/includes/class-es-common.php:1465
1265
  #: lite/includes/feedback.php:124
1266
  msgid "Join Now"
1267
  msgstr ""
1268
 
1269
- #: lite/includes/class-es-common.php:1637
1270
  msgid "All Types"
1271
  msgstr ""
1272
 
1273
- #: lite/includes/class-es-common.php:1665
1274
  #: lite/includes/classes/class-es-campaigns-table.php:568
1275
  msgid "Draft"
1276
  msgstr ""
1277
 
1278
- #: lite/includes/class-es-common.php:1666
1279
- #: lite/includes/class-es-common.php:2082
1280
  #: lite/includes/classes/class-es-campaign-report.php:237
1281
  #: lite/includes/classes/class-es-campaigns-table.php:549
1282
  #: lite/includes/classes/class-es-campaigns-table.php:587
1283
  #: lite/includes/classes/class-es-reports-table.php:197
1284
  #: lite/includes/classes/class-es-reports-table.php:557
1285
- #: pro/classes/class-es-pro-reports-data.php:180
1286
  msgid "Sending"
1287
  msgstr ""
1288
 
1289
- #: lite/includes/class-es-common.php:1667
1290
  #: lite/includes/classes/class-es-campaigns-table.php:315
1291
  #: lite/includes/classes/class-es-campaigns-table.php:542
1292
  #: lite/includes/classes/class-es-campaigns-table.php:578
@@ -1295,44 +1330,44 @@ msgstr ""
1295
  msgid "Scheduled"
1296
  msgstr ""
1297
 
1298
- #: lite/includes/class-es-common.php:1668
1299
- #: lite/includes/class-es-common.php:2066
1300
  #: lite/includes/classes/class-es-campaign-report.php:221
1301
  #: lite/includes/classes/class-es-campaigns-table.php:556
1302
  #: lite/includes/classes/class-es-campaigns-table.php:605
1303
  #: lite/includes/classes/class-es-reports-table.php:191
1304
  #: lite/includes/pro-features.php:1116
1305
  #: lite/includes/pro-features.php:1163
1306
- #: pro/classes/class-es-pro-reports-data.php:164
1307
- #: pro/classes/class-es-pro-reports-data.php:251
1308
  msgid "Sent"
1309
  msgstr ""
1310
 
1311
- #: lite/includes/class-es-common.php:1693
1312
  #: lite/includes/classes/class-es-campaigns-table.php:690
1313
  #: lite/includes/classes/class-es-contacts-table.php:1138
1314
  msgid "All Statuses"
1315
  msgstr ""
1316
 
1317
- #: lite/includes/class-es-common.php:1902
1318
  msgid "Upgrade"
1319
  msgstr ""
1320
 
1321
- #: lite/includes/class-es-common.php:1936
1322
  #: lite/includes/classes/class-es-reports-table.php:559
1323
- #: pro/classes/class-es-pro-reports-data.php:853
1324
  msgid "All Status"
1325
  msgstr ""
1326
 
1327
- #: lite/includes/class-es-common.php:2074
1328
  #: lite/includes/classes/class-es-campaign-report.php:229
1329
  #: lite/includes/classes/class-es-reports-table.php:556
1330
- #: pro/classes/class-es-pro-reports-data.php:172
1331
  #: pro/partials/es-dashboard.php:60
1332
  msgid "In Queue"
1333
  msgstr ""
1334
 
1335
- #: lite/includes/class-es-install.php:829
1336
  #: lite/includes/upgrade/es-update-functions.php:750
1337
  msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
1338
  msgstr ""
@@ -1341,28 +1376,28 @@ msgstr ""
1341
  msgid "You do not have permission to update settings"
1342
  msgstr ""
1343
 
1344
- #: lite/includes/classes/class-es-admin-settings.php:141
1345
  msgid "General"
1346
  msgstr ""
1347
 
1348
- #: lite/includes/classes/class-es-admin-settings.php:145
1349
  msgid "Notifications"
1350
  msgstr ""
1351
 
1352
- #: lite/includes/classes/class-es-admin-settings.php:149
1353
  msgid "Email Sending"
1354
  msgstr ""
1355
 
1356
- #: lite/includes/classes/class-es-admin-settings.php:153
1357
  msgid "Security"
1358
  msgstr ""
1359
 
1360
- #: lite/includes/classes/class-es-admin-settings.php:196
1361
  msgid "Sender"
1362
  msgstr ""
1363
 
1364
- #: lite/includes/classes/class-es-admin-settings.php:200
1365
- #: lite/includes/classes/class-es-admin-settings.php:203
1366
  #: lite/includes/classes/class-es-campaigns-table.php:625
1367
  #: lite/includes/classes/class-es-contacts-table.php:1068
1368
  #: lite/includes/classes/class-es-forms-table.php:410
@@ -1372,365 +1407,366 @@ msgstr ""
1372
  msgid "Name"
1373
  msgstr ""
1374
 
1375
- #: lite/includes/classes/class-es-admin-settings.php:201
1376
  msgid "The \"from\" name people will see when they receive emails."
1377
  msgstr ""
1378
 
1379
- #: lite/includes/classes/class-es-admin-settings.php:210
1380
  msgid "The \"from\" email address for all emails."
1381
  msgstr ""
1382
 
1383
- #: lite/includes/classes/class-es-admin-settings.php:212
1384
  msgid "Email Address"
1385
  msgstr ""
1386
 
1387
- #: lite/includes/classes/class-es-admin-settings.php:220
1388
  msgid "Admin emails"
1389
  msgstr ""
1390
 
1391
- #: lite/includes/classes/class-es-admin-settings.php:221
1392
  msgid "Who should be notified about system events like \"someone subscribed\", \"campaign sent\" etc?"
1393
  msgstr ""
1394
 
1395
- #: lite/includes/classes/class-es-admin-settings.php:223
1396
  msgid "You can enter multiple email addresses - separate them with comma"
1397
  msgstr ""
1398
 
1399
- #: lite/includes/classes/class-es-admin-settings.php:229
1400
  msgid "Opt-in type"
1401
  msgstr ""
1402
 
1403
- #: lite/includes/classes/class-es-admin-settings.php:231
1404
  msgid "Single = confirm subscribers as they subscribe.<br> Double = send a confirmation email and require clicking on a link to confirm subscription."
1405
  msgstr ""
1406
 
1407
- #: lite/includes/classes/class-es-admin-settings.php:240
1408
  msgid "Image size"
1409
  msgstr ""
1410
 
1411
  #. translators: %s: Keyword
1412
- #: lite/includes/classes/class-es-admin-settings.php:245
1413
  msgid "%s keyword will use this image size. Use full size only if your template design needs it. Thumbnail should work well otherwise."
1414
  msgstr ""
1415
 
1416
- #: lite/includes/classes/class-es-admin-settings.php:252
1417
  msgid "Track opens"
1418
  msgstr ""
1419
 
1420
- #: lite/includes/classes/class-es-admin-settings.php:253
1421
  msgid "Do you want to track when people view your emails? (We recommend keeping it enabled)"
1422
  msgstr ""
1423
 
1424
- #: lite/includes/classes/class-es-admin-settings.php:265
1425
  msgid "Subscription success message"
1426
  msgstr ""
1427
 
1428
- #: lite/includes/classes/class-es-admin-settings.php:266
1429
  msgid "This message will show when a visitor successfully subscribes using the form."
1430
  msgstr ""
1431
 
1432
- #: lite/includes/classes/class-es-admin-settings.php:277
1433
  msgid "Unsubscribe text in email footer:"
1434
  msgstr ""
1435
 
1436
- #: lite/includes/classes/class-es-admin-settings.php:278
1437
  msgid "All emails will include this text in the footer so people can unsubscribe if they want."
1438
  msgstr ""
1439
 
1440
  #. translators: %s: List of Keywords
1441
- #: lite/includes/classes/class-es-admin-settings.php:280
1442
  msgid "Use %s keyword to add unsubscribe link."
1443
  msgstr ""
1444
 
1445
- #: lite/includes/classes/class-es-admin-settings.php:285
1446
  msgid "Double opt-in subscription messages:"
1447
  msgstr ""
1448
 
1449
- #: lite/includes/classes/class-es-admin-settings.php:286
1450
  msgid "Page and messages to show when people click on the link in a subscription confirmation email."
1451
  msgstr ""
1452
 
1453
- #: lite/includes/classes/class-es-admin-settings.php:293
1454
  msgid "You have been subscribed successfully!"
1455
  msgstr ""
1456
 
1457
- #: lite/includes/classes/class-es-admin-settings.php:295
1458
  msgid "Message on successful subscription"
1459
  msgstr ""
1460
 
1461
- #: lite/includes/classes/class-es-admin-settings.php:296
1462
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1463
  msgstr ""
1464
 
1465
- #: lite/includes/classes/class-es-admin-settings.php:304
1466
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1467
  msgstr ""
1468
 
1469
- #: lite/includes/classes/class-es-admin-settings.php:306
1470
  msgid "Message when subscription fails"
1471
  msgstr ""
1472
 
1473
- #: lite/includes/classes/class-es-admin-settings.php:307
1474
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1475
  msgstr ""
1476
 
1477
- #: lite/includes/classes/class-es-admin-settings.php:315
1478
  msgid "Unsubscribe messages"
1479
  msgstr ""
1480
 
1481
- #: lite/includes/classes/class-es-admin-settings.php:316
1482
  msgid "Page and messages to show when people click on the unsubscribe link in an email's footer."
1483
  msgstr ""
1484
 
1485
- #: lite/includes/classes/class-es-admin-settings.php:324
1486
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1487
  msgstr ""
1488
 
1489
- #: lite/includes/classes/class-es-admin-settings.php:326
1490
  msgid "Message on unsubscribe success"
1491
  msgstr ""
1492
 
1493
- #: lite/includes/classes/class-es-admin-settings.php:327
1494
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1495
  msgstr ""
1496
 
1497
- #: lite/includes/classes/class-es-admin-settings.php:335
1498
  msgid "Oops.. There was some technical error. Please try again later or contact us."
1499
  msgstr ""
1500
 
1501
- #: lite/includes/classes/class-es-admin-settings.php:337
1502
  msgid "Message when unsubscribe fails"
1503
  msgstr ""
1504
 
1505
- #: lite/includes/classes/class-es-admin-settings.php:338
1506
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1507
  msgstr ""
1508
 
1509
- #: lite/includes/classes/class-es-admin-settings.php:346
1510
  msgid "Share Icegram"
1511
  msgstr ""
1512
 
1513
- #: lite/includes/classes/class-es-admin-settings.php:355
1514
  msgid "Delete plugin data on uninstall"
1515
  msgstr ""
1516
 
1517
- #: lite/includes/classes/class-es-admin-settings.php:356
1518
  msgid "Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin."
1519
  msgstr ""
1520
 
1521
- #: lite/includes/classes/class-es-admin-settings.php:369
1522
  msgid "Welcome email"
1523
  msgstr ""
1524
 
1525
- #: lite/includes/classes/class-es-admin-settings.php:370
1526
  msgid "Send this text as a welcome email when new people subscribe."
1527
  msgstr ""
1528
 
1529
- #: lite/includes/classes/class-es-admin-settings.php:375
 
1530
  msgid "Enable?"
1531
  msgstr ""
1532
 
1533
- #: lite/includes/classes/class-es-admin-settings.php:387
1534
- #: lite/includes/classes/class-es-admin-settings.php:417
1535
- #: lite/includes/classes/class-es-admin-settings.php:451
1536
- #: lite/includes/classes/class-es-admin-settings.php:489
1537
  #: lite/includes/classes/class-es-newsletters.php:355
1538
  #: lite/includes/classes/class-es-reports-table.php:269
1539
- #: pro/classes/class-es-pro-sequence-report.php:295
1540
  msgid "Subject"
1541
  msgstr ""
1542
 
1543
- #: lite/includes/classes/class-es-admin-settings.php:397
1544
- #: lite/includes/classes/class-es-admin-settings.php:428
1545
- #: lite/includes/classes/class-es-admin-settings.php:459
1546
- #: lite/includes/classes/class-es-admin-settings.php:500
1547
  #: lite/includes/classes/class-es-newsletters.php:260
1548
  #: pro/pro-class-sequences.php:405
1549
  msgid "Content"
1550
  msgstr ""
1551
 
1552
  #. translators: %s: List of Keywords
1553
- #: lite/includes/classes/class-es-admin-settings.php:399
1554
  msgid "Available keywords: %s"
1555
  msgstr ""
1556
 
1557
- #: lite/includes/classes/class-es-admin-settings.php:406
1558
  msgid "Double opt-in confirmation email"
1559
  msgstr ""
1560
 
1561
- #: lite/includes/classes/class-es-admin-settings.php:407
1562
  msgid "Use this text as confirmation email when opt-in type is set to \"Double opt-in\". Make sure to include {{SUBSCRIBE-LINK}} keyword, otherwise they won't be able to confirm their subscription."
1563
  msgstr ""
1564
 
1565
  #. translators: %s: List of Keywords
1566
- #: lite/includes/classes/class-es-admin-settings.php:430
1567
  msgid "Available keywords: %s "
1568
  msgstr ""
1569
 
1570
- #: lite/includes/classes/class-es-admin-settings.php:438
1571
  msgid "New subscription notification to admin"
1572
  msgstr ""
1573
 
1574
- #: lite/includes/classes/class-es-admin-settings.php:439
1575
  msgid "Notify admin(s) everytime a new contact signups."
1576
  msgstr ""
1577
 
1578
- #: lite/includes/classes/class-es-admin-settings.php:444
1579
- #: lite/includes/classes/class-es-admin-settings.php:476
1580
  msgid "Notify?"
1581
  msgstr ""
1582
 
1583
- #: lite/includes/classes/class-es-admin-settings.php:453
1584
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1585
  msgstr ""
1586
 
1587
- #: lite/includes/classes/class-es-admin-settings.php:454
1588
  msgid "New email subscription"
1589
  msgstr ""
1590
 
1591
  #. translators: %s: List of Keywords
1592
- #: lite/includes/classes/class-es-admin-settings.php:462
1593
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1594
  msgstr ""
1595
 
1596
- #: lite/includes/classes/class-es-admin-settings.php:470
1597
  msgid "Campaign sent notification to admin"
1598
  msgstr ""
1599
 
1600
- #: lite/includes/classes/class-es-admin-settings.php:471
1601
  msgid "Notify admin(s) everytime a campaign is sent."
1602
  msgstr ""
1603
 
1604
- #: lite/includes/classes/class-es-admin-settings.php:487
1605
- #: lite/includes/classes/class-es-mailer.php:363
1606
  msgid "Campaign Sent!"
1607
  msgstr ""
1608
 
1609
  #. translators: %s: List of Keywords
1610
- #: lite/includes/classes/class-es-admin-settings.php:502
1611
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1612
  msgstr ""
1613
 
1614
- #: lite/includes/classes/class-es-admin-settings.php:514
1615
  msgid " We will take care of it. You don't need to visit this URL manually."
1616
  msgstr ""
1617
 
1618
  #. translators: %s: Link to Icegram documentation
1619
- #: lite/includes/classes/class-es-admin-settings.php:517
1620
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1621
  msgstr ""
1622
 
1623
- #: lite/includes/classes/class-es-admin-settings.php:520
1624
  msgid "How to configure Email Sending"
1625
  msgstr ""
1626
 
1627
- #: lite/includes/classes/class-es-admin-settings.php:532
1628
  msgid "Cron URL"
1629
  msgstr ""
1630
 
1631
- #: lite/includes/classes/class-es-admin-settings.php:541
1632
  msgid "Disable Wordpress Cron"
1633
  msgstr ""
1634
 
1635
- #: lite/includes/classes/class-es-admin-settings.php:542
1636
  msgid "Enable this option if you do not want Email Subscribers to use WP Cron to send emails."
1637
  msgstr ""
1638
 
1639
- #: lite/includes/classes/class-es-admin-settings.php:547
1640
  msgid "Send emails at most every"
1641
  msgstr ""
1642
 
1643
- #: lite/includes/classes/class-es-admin-settings.php:550
1644
  msgid "Optional if a real cron service is used"
1645
  msgstr ""
1646
 
1647
- #: lite/includes/classes/class-es-admin-settings.php:560
1648
  msgid "Maximum emails to send in an hour"
1649
  msgstr ""
1650
 
1651
- #: lite/includes/classes/class-es-admin-settings.php:561
1652
  msgid "Total emails your host can send in an hour."
1653
  msgstr ""
1654
 
1655
- #: lite/includes/classes/class-es-admin-settings.php:570
1656
  msgid "Maximum emails to send at once"
1657
  msgstr ""
1658
 
1659
- #: lite/includes/classes/class-es-admin-settings.php:571
1660
  msgid "Maximum emails you want to send on every cron request."
1661
  msgstr ""
1662
 
1663
- #: lite/includes/classes/class-es-admin-settings.php:582
1664
  msgid "Send test email"
1665
  msgstr ""
1666
 
1667
- #: lite/includes/classes/class-es-admin-settings.php:583
1668
  msgid "Enter email address to send test email."
1669
  msgstr ""
1670
 
1671
- #: lite/includes/classes/class-es-admin-settings.php:591
1672
  msgid "Select Mailer"
1673
  msgstr ""
1674
 
1675
- #: lite/includes/classes/class-es-admin-settings.php:603
1676
- #: lite/includes/classes/class-es-admin-settings.php:948
1677
  msgid "Pepipost API key"
1678
  msgstr ""
1679
 
1680
- #: lite/includes/classes/class-es-admin-settings.php:620
1681
  msgid "Select a mailer to send mail"
1682
  msgstr ""
1683
 
1684
- #: lite/includes/classes/class-es-admin-settings.php:630
1685
  msgid "Blocked domain(s)"
1686
  msgstr ""
1687
 
1688
- #: lite/includes/classes/class-es-admin-settings.php:632
1689
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1690
  msgstr ""
1691
 
1692
- #: lite/includes/classes/class-es-admin-settings.php:845
1693
  msgid "Save Settings"
1694
  msgstr ""
1695
 
1696
- #: lite/includes/classes/class-es-admin-settings.php:947
1697
  msgid "Signup for Pepipost"
1698
  msgstr ""
1699
 
1700
- #: lite/includes/classes/class-es-admin-settings.php:948
1701
  msgid "How to find"
1702
  msgstr ""
1703
 
1704
- #: lite/includes/classes/class-es-admin-settings.php:949
1705
  msgid "Why to choose Pepipost"
1706
  msgstr ""
1707
 
1708
- #: lite/includes/classes/class-es-admin-settings.php:973
1709
  msgid "Cron Info"
1710
  msgstr ""
1711
 
1712
- #: lite/includes/classes/class-es-admin-settings.php:1039
1713
  msgid "Event"
1714
  msgstr ""
1715
 
1716
- #: lite/includes/classes/class-es-admin-settings.php:1040
1717
  msgid "Interval"
1718
  msgstr ""
1719
 
1720
- #: lite/includes/classes/class-es-admin-settings.php:1041
1721
  msgid "Next Execution"
1722
  msgstr ""
1723
 
1724
  #. translators: %s: Next scheduled time
1725
- #: lite/includes/classes/class-es-admin-settings.php:1087
1726
  msgid "In %s"
1727
  msgstr ""
1728
 
1729
- #: lite/includes/classes/class-es-admin-settings.php:1122
1730
  msgid "Plugin usage tracking"
1731
  msgstr ""
1732
 
1733
- #: lite/includes/classes/class-es-admin-settings.php:1125
1734
  msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
1735
  msgstr ""
1736
 
@@ -1740,7 +1776,7 @@ msgstr ""
1740
  #: lite/includes/classes/class-es-campaigns-table.php:479
1741
  #: lite/includes/classes/class-es-reports-table.php:16
1742
  #: lite/includes/pro-features.php:1108
1743
- #: pro/classes/class-es-pro-reports-data.php:148
1744
  #: pro/classes/class-es-pro-sequence-report.php:20
1745
  msgid "Report"
1746
  msgstr ""
@@ -1767,8 +1803,8 @@ msgstr ""
1767
  #: lite/includes/classes/class-es-campaign-report.php:245
1768
  #: lite/includes/classes/class-es-contacts-table.php:356
1769
  #: lite/includes/pro-features.php:1147
1770
- #: pro/classes/class-es-pro-reports-data.php:235
1771
- #: pro/classes/class-es-pro-reports-data.php:850
1772
  msgid "Opened"
1773
  msgstr ""
1774
 
@@ -1870,7 +1906,7 @@ msgstr ""
1870
 
1871
  #: lite/includes/classes/class-es-campaigns-table.php:626
1872
  #: lite/includes/classes/class-es-reports-table.php:270
1873
- #: pro/classes/class-es-pro-sequence-report.php:296
1874
  msgid "Type"
1875
  msgstr ""
1876
 
@@ -2025,7 +2061,7 @@ msgstr ""
2025
 
2026
  #: lite/includes/classes/class-es-contacts-table.php:800
2027
  #: lite/includes/pro-features.php:957
2028
- #: pro/pro-class-email-subscribers.php:833
2029
  msgid "Enter email"
2030
  msgstr ""
2031
 
@@ -2234,7 +2270,7 @@ msgstr ""
2234
  #: lite/includes/classes/class-es-import-subscribers.php:658
2235
  #: lite/includes/classes/class-es-import-subscribers.php:1045
2236
  #: lite/includes/classes/class-es-import-subscribers.php:1178
2237
- #: pro/pro-class-email-subscribers.php:2032
2238
  msgid "First Name"
2239
  msgstr ""
2240
 
@@ -2243,7 +2279,7 @@ msgstr ""
2243
  #: lite/includes/classes/class-es-import-subscribers.php:659
2244
  #: lite/includes/classes/class-es-import-subscribers.php:1050
2245
  #: lite/includes/classes/class-es-import-subscribers.php:1179
2246
- #: pro/pro-class-email-subscribers.php:2033
2247
  msgid "Last Name"
2248
  msgstr ""
2249
 
@@ -2826,30 +2862,30 @@ msgstr ""
2826
  msgid "No lists avaliable."
2827
  msgstr ""
2828
 
2829
- #: lite/includes/classes/class-es-mailer.php:305
2830
  msgid "Thanks!"
2831
  msgstr ""
2832
 
2833
  #. translators: %s: Email address
2834
- #: lite/includes/classes/class-es-mailer.php:526
2835
  msgid "Test email to %s"
2836
  msgstr ""
2837
 
2838
- #: lite/includes/classes/class-es-mailer.php:543
2839
  msgid "Congrats, test email was sent successfully!"
2840
  msgstr ""
2841
 
2842
- #: lite/includes/classes/class-es-mailer.php:544
2843
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
2844
  msgstr ""
2845
 
2846
  #. translators: 1: <a> 2: </a>
2847
- #: lite/includes/classes/class-es-mailer.php:549
2848
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
2849
  msgstr ""
2850
 
2851
  #. translators: 1. Subscriber email 2. Blog name
2852
- #: lite/includes/classes/class-es-mailer.php:1755
2853
  msgid "Unsubscribe %1$s from %2$s"
2854
  msgstr ""
2855
 
@@ -2932,7 +2968,7 @@ msgstr ""
2932
  #: lite/includes/classes/class-es-newsletters.php:417
2933
  #: lite/includes/classes/class-es-newsletters.php:445
2934
  #: lite/includes/classes/class-es-reports-table.php:253
2935
- #: pro/classes/class-es-pro-sequence-report.php:269
2936
  msgid "Preview"
2937
  msgstr ""
2938
 
@@ -3073,14 +3109,14 @@ msgstr ""
3073
  msgid "Save Campaign"
3074
  msgstr ""
3075
 
3076
- #: lite/includes/classes/class-es-reports-data.php:326
3077
  #: lite/includes/classes/class-es-reports-table.php:159
3078
  #: lite/public/class-email-subscribers-public.php:475
3079
- #: pro/classes/class-es-pro-reports-data.php:69
3080
  msgid "Post Notification"
3081
  msgstr ""
3082
 
3083
- #: lite/includes/classes/class-es-reports-data.php:328
3084
  #: pro/pro-class-post-digest.php:28
3085
  msgid "Post Digest"
3086
  msgstr ""
@@ -3100,7 +3136,7 @@ msgid "No Reports avaliable."
3100
  msgstr ""
3101
 
3102
  #: lite/includes/classes/class-es-reports-table.php:251
3103
- #: pro/classes/class-es-pro-sequence-report.php:268
3104
  msgid "View"
3105
  msgstr ""
3106
 
@@ -3181,7 +3217,7 @@ msgstr ""
3181
 
3182
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3183
  #: lite/includes/classes/class-es-templates-table.php:300
3184
- #: pro/pro-class-email-subscribers.php:1440
3185
  msgid "Duplicate"
3186
  msgstr ""
3187
 
@@ -3427,12 +3463,12 @@ msgid "Access Control"
3427
  msgstr ""
3428
 
3429
  #: lite/includes/pro-features.php:243
3430
- #: pro/pro-class-email-subscribers.php:880
3431
  msgid "Track clicks"
3432
  msgstr ""
3433
 
3434
  #: lite/includes/pro-features.php:244
3435
- #: pro/pro-class-email-subscribers.php:881
3436
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3437
  msgstr ""
3438
 
@@ -3523,7 +3559,7 @@ msgid "Prevent bot signups even further. Set default captcha option for new subs
3523
  msgstr ""
3524
 
3525
  #: lite/includes/pro-features.php:381
3526
- #: pro/pro-class-email-subscribers.php:889
3527
  msgid "Track IP address"
3528
  msgstr ""
3529
 
@@ -3781,7 +3817,7 @@ msgid "Reduce the possibility to land in spam with PRO"
3781
  msgstr ""
3782
 
3783
  #: lite/includes/pro-features.php:984
3784
- #: pro/pro-class-email-subscribers.php:717
3785
  msgid "Link tracking"
3786
  msgstr ""
3787
 
@@ -3790,30 +3826,30 @@ msgid "Get spam score"
3790
  msgstr ""
3791
 
3792
  #: lite/includes/pro-features.php:1033
3793
- #: pro/pro-class-email-subscribers.php:761
3794
  msgid "Send options"
3795
  msgstr ""
3796
 
3797
  #: lite/includes/pro-features.php:1036
3798
- #: pro/pro-class-email-subscribers.php:764
3799
  msgid "Schedule for later"
3800
  msgstr ""
3801
 
3802
  #: lite/includes/pro-features.php:1043
3803
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
3804
  #: lite/includes/workflows/fields/class-es-date.php:31
3805
- #: pro/pro-class-email-subscribers.php:777
3806
  msgid "Date"
3807
  msgstr ""
3808
 
3809
  #: lite/includes/pro-features.php:1052
3810
  #: lite/includes/workflows/fields/class-es-time.php:64
3811
- #: pro/pro-class-email-subscribers.php:788
3812
  msgid "Time"
3813
  msgstr ""
3814
 
3815
  #: lite/includes/pro-features.php:1062
3816
- #: pro/pro-class-email-subscribers.php:799
3817
  msgid "Local Time: "
3818
  msgstr ""
3819
 
@@ -3827,12 +3863,12 @@ msgid "Want to track some very useful statistics of your campaigns and improve y
3827
  msgstr ""
3828
 
3829
  #: lite/includes/pro-features.php:1122
3830
- #: pro/classes/class-es-pro-reports-data.php:197
3831
  msgid "Type: "
3832
  msgstr ""
3833
 
3834
  #: lite/includes/pro-features.php:1125
3835
- #: pro/classes/class-es-pro-reports-data.php:200
3836
  msgid "From: "
3837
  msgstr ""
3838
 
@@ -3845,7 +3881,7 @@ msgid "Test, Main "
3845
  msgstr ""
3846
 
3847
  #: lite/includes/pro-features.php:1131
3848
- #: pro/classes/class-es-pro-reports-data.php:218
3849
  msgid "Date: "
3850
  msgstr ""
3851
 
@@ -3854,7 +3890,7 @@ msgid "July 1, 2020 10:00 AM"
3854
  msgstr ""
3855
 
3856
  #: lite/includes/pro-features.php:1139
3857
- #: pro/classes/class-es-pro-reports-data.php:227
3858
  msgid "Statistics"
3859
  msgstr ""
3860
 
@@ -3872,8 +3908,8 @@ msgstr ""
3872
 
3873
  #: lite/includes/pro-features.php:1270
3874
  #: lite/includes/pro-features.php:1485
3875
- #: pro/classes/class-es-pro-reports-data.php:416
3876
- #: pro/classes/class-es-pro-reports-data.php:897
3877
  msgid "Mail Client"
3878
  msgstr ""
3879
 
@@ -3894,17 +3930,17 @@ msgid "Link Activity"
3894
  msgstr ""
3895
 
3896
  #: lite/includes/pro-features.php:1335
3897
- #: pro/classes/class-es-pro-reports-data.php:521
3898
  msgid "Link (URL)"
3899
  msgstr ""
3900
 
3901
  #: lite/includes/pro-features.php:1337
3902
- #: pro/classes/class-es-pro-reports-data.php:523
3903
  msgid "Unique Clicks"
3904
  msgstr ""
3905
 
3906
  #: lite/includes/pro-features.php:1339
3907
- #: pro/classes/class-es-pro-reports-data.php:525
3908
  msgid "Total Clicks"
3909
  msgstr ""
3910
 
@@ -3913,37 +3949,37 @@ msgid "Last 10 Open Activity"
3913
  msgstr ""
3914
 
3915
  #: lite/includes/pro-features.php:1484
3916
- #: pro/classes/class-es-pro-reports-data.php:896
3917
  msgid "Device"
3918
  msgstr ""
3919
 
3920
  #: lite/includes/pro-features.php:1486
3921
- #: pro/classes/class-es-pro-reports-data.php:898
3922
  msgid "OS"
3923
  msgstr ""
3924
 
3925
  #: lite/includes/pro-features.php:1513
3926
- #: pro/classes/class-es-pro-reports-data.php:920
3927
  msgid "Desktop"
3928
  msgstr ""
3929
 
3930
  #: lite/includes/pro-features.php:1522
3931
- #: pro/classes/class-es-pro-reports-data.php:928
3932
  msgid "Tablet"
3933
  msgstr ""
3934
 
3935
  #: lite/includes/pro-features.php:1531
3936
- #: pro/classes/class-es-pro-reports-data.php:936
3937
  msgid "Mobile"
3938
  msgstr ""
3939
 
3940
  #: lite/includes/pro-features.php:1590
3941
- #: pro/pro-class-email-subscribers.php:1641
3942
  msgid "Add Attachments"
3943
  msgstr ""
3944
 
3945
  #: lite/includes/pro-features.php:1620
3946
- #: pro/pro-class-email-subscribers.php:1726
3947
  msgid "Import existing WordPress users"
3948
  msgstr ""
3949
 
@@ -4508,7 +4544,7 @@ msgid "Total Emails In Queue"
4508
  msgstr ""
4509
 
4510
  #: lite/public/partials/cron-message.php:43
4511
- #: pro/pro-class-email-subscribers.php:807
4512
  msgid "Send Now"
4513
  msgstr ""
4514
 
@@ -4544,96 +4580,105 @@ msgstr ""
4544
  msgid "is not in List"
4545
  msgstr ""
4546
 
4547
- #: pro/classes/class-es-pro-reports-data.php:204
4548
  msgid "Recipient(s): "
4549
  msgstr ""
4550
 
4551
- #: pro/classes/class-es-pro-reports-data.php:279
 
 
 
 
 
4552
  msgid "Open and Click activity"
4553
  msgstr ""
4554
 
4555
- #: pro/classes/class-es-pro-reports-data.php:287
4556
  msgid "Country info"
4557
  msgstr ""
4558
 
4559
- #: pro/classes/class-es-pro-reports-data.php:370
4560
- #: pro/classes/class-es-pro-reports-data.php:432
4561
  msgid "Others"
4562
  msgstr ""
4563
 
4564
- #: pro/classes/class-es-pro-reports-data.php:399
4565
  msgid "No country data found."
4566
  msgstr ""
4567
 
4568
- #: pro/classes/class-es-pro-reports-data.php:411
4569
  msgid "Mail Client info"
4570
  msgstr ""
4571
 
4572
- #: pro/classes/class-es-pro-reports-data.php:457
4573
  msgid "No mail client data found."
4574
  msgstr ""
4575
 
4576
- #: pro/classes/class-es-pro-reports-data.php:471
4577
  msgid "Device info"
4578
  msgstr ""
4579
 
4580
- #: pro/classes/class-es-pro-reports-data.php:474
4581
  msgid "No device data found"
4582
  msgstr ""
4583
 
4584
- #: pro/classes/class-es-pro-reports-data.php:478
4585
  msgid "Browser info"
4586
  msgstr ""
4587
 
4588
- #: pro/classes/class-es-pro-reports-data.php:481
4589
  msgid "No browser data found"
4590
  msgstr ""
4591
 
4592
- #: pro/classes/class-es-pro-reports-data.php:485
4593
  msgid "OS info"
4594
  msgstr ""
4595
 
4596
- #: pro/classes/class-es-pro-reports-data.php:488
4597
  msgid "No OS data found"
4598
  msgstr ""
4599
 
4600
- #: pro/classes/class-es-pro-reports-data.php:514
4601
  msgid "Link activity"
4602
  msgstr ""
4603
 
4604
- #: pro/classes/class-es-pro-reports-data.php:600
4605
  msgid "Show Less"
4606
  msgstr ""
4607
 
4608
- #: pro/classes/class-es-pro-reports-data.php:604
4609
  msgid "Show More"
4610
  msgstr ""
4611
 
4612
- #: pro/classes/class-es-pro-reports-data.php:657
4613
  #: pro/partials/es-dashboard.php:100
4614
  msgid "Clicks"
4615
  msgstr ""
4616
 
4617
- #: pro/classes/class-es-pro-reports-data.php:839
4618
  msgid "Filter Report"
4619
  msgstr ""
4620
 
4621
- #: pro/classes/class-es-pro-reports-data.php:851
4622
  msgid "Not Opened"
4623
  msgstr ""
4624
 
4625
- #: pro/classes/class-es-pro-sequence-report.php:197
4626
  msgid "No Reports available."
4627
  msgstr ""
4628
 
4629
- #: pro/classes/class-es-pro-sequence-report.php:216
4630
  msgid "Sequence Message"
4631
  msgstr ""
4632
 
4633
- #: pro/classes/class-es-pro-sequence-report.php:298
4634
  msgid "Total Contacts"
4635
  msgstr ""
4636
 
 
 
 
 
4637
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
4638
  msgid "Your emails are not relevant to me"
4639
  msgstr ""
@@ -4802,208 +4847,216 @@ msgstr ""
4802
  msgid "Your cart could not be restored, it may have expired."
4803
  msgstr ""
4804
 
4805
- #: pro/pro-class-email-subscribers.php:378
4806
  #: pro/pro-class-post-digest.php:25
4807
  msgid "Sequence"
4808
  msgstr ""
4809
 
4810
- #: pro/pro-class-email-subscribers.php:496
4811
  msgid "Please enter an email address."
4812
  msgstr ""
4813
 
4814
- #: pro/pro-class-email-subscribers.php:498
4815
  msgid "Add Attachment"
4816
  msgstr ""
4817
 
4818
  #. translators: %s: Attachmen max file size.
4819
- #: pro/pro-class-email-subscribers.php:500
4820
  msgid "Please attach a file having size lower than %s."
4821
  msgstr ""
4822
 
4823
- #: pro/pro-class-email-subscribers.php:501
4824
  msgid "Are you sure you want to delete this?"
4825
  msgstr ""
4826
 
4827
- #: pro/pro-class-email-subscribers.php:502
4828
- #: pro/pro-class-email-subscribers.php:1917
4829
  msgid "Checking your orders..."
4830
  msgstr ""
4831
 
4832
- #: pro/pro-class-email-subscribers.php:626
4833
  msgid "Clean My List"
4834
  msgstr ""
4835
 
4836
- #: pro/pro-class-email-subscribers.php:627
4837
  msgid "List cleanup is in progress..."
4838
  msgstr ""
4839
 
4840
- #: pro/pro-class-email-subscribers.php:628
4841
  msgid "List cleanup completed successfully."
4842
  msgstr ""
4843
 
4844
- #: pro/pro-class-email-subscribers.php:645
4845
  msgid "Email status"
4846
  msgstr ""
4847
 
4848
- #: pro/pro-class-email-subscribers.php:646
4849
  msgid "Last opened at"
4850
  msgstr ""
4851
 
4852
- #: pro/pro-class-email-subscribers.php:649
4853
  msgid "IP"
4854
  msgstr ""
4855
 
4856
- #: pro/pro-class-email-subscribers.php:845
4857
  msgid "Select page"
4858
  msgstr ""
4859
 
4860
- #: pro/pro-class-email-subscribers.php:858
4861
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
4862
  msgstr ""
4863
 
4864
- #: pro/pro-class-email-subscribers.php:871
4865
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
4866
  msgstr ""
4867
 
4868
- #: pro/pro-class-email-subscribers.php:915
4869
  msgid "Access Key ID"
4870
  msgstr ""
4871
 
4872
- #: pro/pro-class-email-subscribers.php:928
4873
  msgid "Secret Access Key"
4874
  msgstr ""
4875
 
4876
- #: pro/pro-class-email-subscribers.php:942
4877
  msgid "Closest Region"
4878
  msgstr ""
4879
 
4880
- #: pro/pro-class-email-subscribers.php:944
4881
  msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
4882
  msgstr ""
4883
 
4884
- #: pro/pro-class-email-subscribers.php:971
4885
  msgid "Private API Key"
4886
  msgstr ""
4887
 
4888
- #: pro/pro-class-email-subscribers.php:985
4889
  msgid "Domain Name"
4890
  msgstr ""
4891
 
4892
- #: pro/pro-class-email-subscribers.php:996
4893
- #: pro/pro-class-email-subscribers.php:1071
4894
  msgid "United States"
4895
  msgstr ""
4896
 
4897
- #: pro/pro-class-email-subscribers.php:997
4898
- #: pro/pro-class-email-subscribers.php:1072
4899
  msgid "Europe"
4900
  msgstr ""
4901
 
4902
- #: pro/pro-class-email-subscribers.php:1003
4903
- #: pro/pro-class-email-subscribers.php:1078
4904
  msgid "Region"
4905
  msgstr ""
4906
 
4907
- #: pro/pro-class-email-subscribers.php:1007
4908
  msgid "mailgun.com"
4909
  msgstr ""
4910
 
4911
- #: pro/pro-class-email-subscribers.php:1033
4912
- #: pro/pro-class-email-subscribers.php:1060
4913
  msgid "API Key"
4914
  msgstr ""
4915
 
4916
- #: pro/pro-class-email-subscribers.php:1080
4917
  msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
4918
  msgstr ""
4919
 
4920
- #: pro/pro-class-email-subscribers.php:1105
4921
  msgid "API token"
4922
  msgstr ""
4923
 
4924
- #: pro/pro-class-email-subscribers.php:1175
4925
- msgid "Clicked"
 
 
 
 
 
 
 
 
4926
  msgstr ""
4927
 
4928
- #: pro/pro-class-email-subscribers.php:1461
4929
  msgid "You are not allowed to duplicate campaign."
4930
  msgstr ""
4931
 
4932
- #: pro/pro-class-email-subscribers.php:1476
4933
  msgid "Campaign duplicated !"
4934
  msgstr ""
4935
 
4936
- #: pro/pro-class-email-subscribers.php:1745
4937
  msgid "Import WordPress users with following roles"
4938
  msgstr ""
4939
 
4940
- #: pro/pro-class-email-subscribers.php:1798
4941
- #: pro/pro-class-email-subscribers.php:1924
4942
  msgid "Proceed "
4943
  msgstr ""
4944
 
4945
- #: pro/pro-class-email-subscribers.php:1834
4946
  msgid "Import from WooCommerce orders"
4947
  msgstr ""
4948
 
4949
- #: pro/pro-class-email-subscribers.php:1859
4950
  msgid "Select order statuses"
4951
  msgstr ""
4952
 
4953
- #: pro/pro-class-email-subscribers.php:1907
4954
  msgid "Orders should contain these products"
4955
  msgstr ""
4956
 
4957
- #: pro/pro-class-email-subscribers.php:1912
4958
  msgid "Search products..."
4959
  msgstr ""
4960
 
4961
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
4962
- #: pro/pro-class-email-subscribers.php:2140
4963
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
4964
  msgstr ""
4965
 
4966
- #: pro/pro-class-email-subscribers.php:2151
4967
  msgid "We can't find any matching orders in your store."
4968
  msgstr ""
4969
 
4970
- #: pro/pro-class-email-subscribers.php:2164
4971
  msgid "Total Opened"
4972
  msgstr ""
4973
 
4974
- #: pro/pro-class-email-subscribers.php:2214
4975
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
4976
  msgstr ""
4977
 
4978
- #: pro/pro-class-email-subscribers.php:2242
4979
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
4980
  msgstr ""
4981
 
4982
- #: pro/pro-class-email-subscribers.php:2271
4983
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
4984
  msgstr ""
4985
 
4986
- #: pro/pro-class-email-subscribers.php:2298
4987
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
4988
  msgstr ""
4989
 
4990
- #: pro/pro-class-email-subscribers.php:2325
4991
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
4992
  msgstr ""
4993
 
4994
- #: pro/pro-class-email-subscribers.php:2344
4995
  msgid "Send confirmation email"
4996
  msgstr ""
4997
 
4998
- #: pro/pro-class-email-subscribers.php:2359
4999
  msgid "Confirmation emails queued successfully and will be sent shortly."
5000
  msgstr ""
5001
 
5002
- #: pro/pro-class-email-subscribers.php:2367
5003
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5004
  msgstr ""
5005
 
5006
- #: pro/pro-class-email-subscribers.php:2370
5007
  msgid "Failed to queue confirmation emails. Please try again later."
5008
  msgstr ""
5009
 
@@ -5047,34 +5100,6 @@ msgstr ""
5047
  msgid "Last"
5048
  msgstr ""
5049
 
5050
- #: pro/pro-class-post-digest.php:148
5051
- msgid "Sunday"
5052
- msgstr ""
5053
-
5054
- #: pro/pro-class-post-digest.php:149
5055
- msgid "Monday"
5056
- msgstr ""
5057
-
5058
- #: pro/pro-class-post-digest.php:150
5059
- msgid "Tuesday"
5060
- msgstr ""
5061
-
5062
- #: pro/pro-class-post-digest.php:151
5063
- msgid "Wednesday"
5064
- msgstr ""
5065
-
5066
- #: pro/pro-class-post-digest.php:152
5067
- msgid "Thursday"
5068
- msgstr ""
5069
-
5070
- #: pro/pro-class-post-digest.php:153
5071
- msgid "Friday"
5072
- msgstr ""
5073
-
5074
- #: pro/pro-class-post-digest.php:154
5075
- msgid "Saturday"
5076
- msgstr ""
5077
-
5078
  #: pro/pro-class-sequences.php:21
5079
  msgid "Create Sequence"
5080
  msgstr ""
@@ -5149,6 +5174,70 @@ msgstr ""
5149
  msgid " after subscription"
5150
  msgstr ""
5151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5152
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
5153
  msgid "Remove from list"
5154
  msgstr ""
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 4.8.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-09-08T08:22:53+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
68
  msgstr ""
69
 
70
  #: lite/admin/class-email-subscribers-admin.php:172
71
+ #: pro/pro-class-email-subscribers.php:504
72
  msgid "Please add email body."
73
  msgstr ""
74
 
231
  #: lite/admin/class-email-subscribers-admin.php:317
232
  #: lite/includes/classes/class-es-campaigns-table.php:362
233
  #: lite/includes/classes/class-es-newsletters.php:254
234
+ #: lite/includes/classes/class-es-reports-data.php:353
235
  #: lite/includes/classes/class-es-reports-table.php:163
236
  #: lite/includes/classes/class-es-templates-table.php:282
237
  #: lite/includes/pro-features.php:1123
238
  #: lite/public/class-email-subscribers-public.php:472
239
+ #: pro/classes/class-es-pro-reports-data.php:77
240
  msgid "Broadcast"
241
  msgstr ""
242
 
271
 
272
  #: lite/admin/class-email-subscribers-admin.php:338
273
  #: lite/admin/partials/dashboard.php:246
274
+ #: lite/includes/classes/class-es-admin-settings.php:131
275
  msgid "Settings"
276
  msgstr ""
277
 
289
  msgstr ""
290
 
291
  #: lite/admin/class-email-subscribers-admin.php:1295
292
+ #: lite/includes/class-email-subscribers-activator.php:61
293
  #: lite/includes/class-email-subscribers.php:1544
294
  #: lite/includes/classes/class-es-form-widget.php:11
295
  #: lite/includes/classes/class-es-old-widget.php:13
298
  msgid "Email Subscribers"
299
  msgstr ""
300
 
301
+ #: lite/admin/class-email-subscribers-admin.php:1337
302
  msgid "Last 30 days"
303
  msgstr ""
304
 
305
+ #: lite/admin/class-email-subscribers-admin.php:1346
306
+ #: lite/includes/class-es-common.php:190
307
  #: lite/includes/classes/class-es-contacts-table.php:332
308
  #: lite/includes/classes/class-es-import-subscribers.php:837
309
  #: lite/includes/classes/class-es-import-subscribers.php:1185
311
  msgid "Subscribed"
312
  msgstr ""
313
 
314
+ #: lite/admin/class-email-subscribers-admin.php:1354
315
+ #: lite/includes/class-es-common.php:192
316
  #: lite/includes/classes/class-es-contacts-table.php:340
317
  #: lite/includes/classes/class-es-import-subscribers.php:838
318
  #: lite/includes/classes/class-es-import-subscribers.php:1186
319
  #: lite/includes/classes/class-es-lists-table.php:572
320
+ #: pro/classes/class-es-pro-reports-data.php:283
321
  msgid "Unsubscribed"
322
  msgstr ""
323
 
324
+ #: lite/admin/class-email-subscribers-admin.php:1362
325
  #: lite/includes/pro-features.php:1155
 
326
  msgid "Avg Open Rate"
327
  msgstr ""
328
 
329
+ #: lite/admin/class-email-subscribers-admin.php:1370
330
  #: lite/admin/partials/dashboard.php:193
331
  msgid "Messages Sent"
332
  msgstr ""
333
 
334
+ #: lite/admin/class-email-subscribers-admin.php:1381
335
  msgid "Last Campaign"
336
  msgstr ""
337
 
338
+ #: lite/admin/class-email-subscribers-admin.php:1417
339
  msgid "Sent to"
340
  msgstr ""
341
 
342
+ #: lite/admin/class-email-subscribers-admin.php:1429
343
  #: lite/admin/partials/dashboard.php:177
344
  #: lite/includes/pro-features.php:1235
345
  #: lite/includes/pro-features.php:1273
346
+ #: pro/classes/class-es-pro-reports-data.php:321
347
+ #: pro/classes/class-es-pro-reports-data.php:444
348
+ #: pro/classes/class-es-pro-reports-data.php:677
349
  #: pro/partials/es-dashboard.php:88
350
  msgid "Opens"
351
  msgstr ""
352
 
353
+ #: lite/admin/class-email-subscribers-admin.php:1443
354
  msgid "No campaigns sent yet"
355
  msgstr ""
356
 
357
+ #: lite/admin/class-email-subscribers-admin.php:1451
358
  msgid "Latest Blog Posts from Icegram"
359
  msgstr ""
360
 
403
  #: lite/admin/class-ig-es-campaign-rules.php:248
404
  #: lite/admin/class-ig-es-campaign-rules.php:419
405
  #: lite/admin/class-ig-es-campaign-rules.php:566
406
+ #: pro/templates/email/es-admin-subscription-summary.php:167
407
  msgid "and"
408
  msgstr ""
409
 
458
  msgstr ""
459
 
460
  #: lite/admin/class-ig-es-campaign-rules.php:604
461
+ #: lite/includes/classes/class-es-admin-settings.php:211
462
  #: lite/includes/classes/class-es-campaign-report.php:189
463
  #: lite/includes/classes/class-es-contacts-table.php:788
464
  #: lite/includes/classes/class-es-contacts-table.php:1069
473
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
474
  #: lite/public/partials/class-es-shortcode.php:169
475
  #: pro/classes/class-es-pro-campaign-rules.php:35
476
+ #: pro/pro-class-email-subscribers.php:836
477
+ #: pro/pro-class-email-subscribers.php:2071
478
  #: pro/workflows/actions/class-es-action-send-email.php:29
479
  msgid "Email"
480
  msgstr ""
483
  #: lite/includes/pro-features.php:1232
484
  #: lite/includes/pro-features.php:1482
485
  #: pro/classes/class-es-pro-campaign-rules.php:38
486
+ #: pro/classes/class-es-pro-reports-data.php:318
487
  msgid "Country"
488
  msgstr ""
489
 
765
 
766
  #: lite/admin/partials/dashboard.php:201
767
  #: lite/includes/pro-features.php:1171
 
768
  msgid "Avg Click Rate"
769
  msgstr ""
770
 
773
  msgstr ""
774
 
775
  #: lite/admin/partials/dashboard.php:242
 
 
776
  #: lite/includes/class-email-subscribers-activator.php:49
777
+ #: lite/includes/class-email-subscribers-activator.php:50
778
+ #: lite/includes/class-email-subscribers-activator.php:55
779
  msgid "Templates"
780
  msgstr ""
781
 
851
  #: lite/includes/classes/class-es-import-subscribers.php:1180
852
  #: lite/includes/classes/class-es-reports-table.php:271
853
  #: lite/includes/workflows/class-es-workflows-table.php:338
854
+ #: pro/classes/class-es-pro-sequence-report.php:301
855
  msgid "Status"
856
  msgstr ""
857
 
858
  #: lite/admin/partials/help.php:211
859
+ #: lite/includes/class-es-common.php:390
860
+ #: lite/includes/class-es-common.php:1746
861
+ #: lite/includes/class-es-common.php:2176
862
  #: lite/includes/classes/class-es-campaigns-table.php:314
863
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
864
+ #: pro/classes/class-es-pro-reports-data.php:193
865
+ #: pro/classes/class-es-pro-sequence-report.php:239
866
  msgid "Active"
867
  msgstr ""
868
 
869
  #: lite/admin/partials/help.php:213
870
+ #: lite/includes/class-es-common.php:391
871
+ #: lite/includes/class-es-common.php:2181
872
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
873
+ #: pro/classes/class-es-pro-reports-data.php:198
874
+ #: pro/classes/class-es-pro-sequence-report.php:239
875
  msgid "Inactive"
876
  msgstr ""
877
 
1104
  msgid " Understood, continue for now →"
1105
  msgstr ""
1106
 
1107
+ #: lite/includes/class-email-subscribers-activator.php:51
1108
+ #: lite/includes/class-email-subscribers-activator.php:52
1109
  msgid "Add New Template"
1110
  msgstr ""
1111
 
1112
+ #: lite/includes/class-email-subscribers-activator.php:53
1113
  msgid "Edit Templates"
1114
  msgstr ""
1115
 
1116
+ #: lite/includes/class-email-subscribers-activator.php:54
1117
  msgid "New Templates"
1118
  msgstr ""
1119
 
1120
+ #: lite/includes/class-email-subscribers-activator.php:56
1121
  msgid "View Templates"
1122
  msgstr ""
1123
 
1124
+ #: lite/includes/class-email-subscribers-activator.php:57
1125
  msgid "Search Templates"
1126
  msgstr ""
1127
 
1128
+ #: lite/includes/class-email-subscribers-activator.php:58
1129
  msgid "No Templates found"
1130
  msgstr ""
1131
 
1132
+ #: lite/includes/class-email-subscribers-activator.php:59
1133
  msgid "No Templates found in Trash"
1134
  msgstr ""
1135
 
1136
+ #: lite/includes/class-email-subscribers-activator.php:62
1137
  msgid "Thumbnail (For Visual Representation only)"
1138
  msgstr ""
1139
 
1140
+ #: lite/includes/class-email-subscribers-activator.php:63
1141
  msgid "Set thumbnail"
1142
  msgstr ""
1143
 
1174
  msgid "Value was set using constant %1$s"
1175
  msgstr ""
1176
 
1177
+ #: lite/includes/class-es-common.php:191
1178
  #: lite/includes/classes/class-es-contacts-table.php:348
1179
  #: lite/includes/classes/class-es-import-subscribers.php:839
1180
  #: lite/includes/classes/class-es-import-subscribers.php:1187
1182
  msgid "Unconfirmed"
1183
  msgstr ""
1184
 
1185
+ #: lite/includes/class-es-common.php:215
1186
  #: lite/includes/classes/class-es-import-subscribers.php:236
1187
  msgid "Select Status"
1188
  msgstr ""
1189
 
1190
+ #: lite/includes/class-es-common.php:349
1191
  msgid "Select Template"
1192
  msgstr ""
1193
 
1194
+ #: lite/includes/class-es-common.php:459
1195
  msgid "Select Categories"
1196
  msgstr ""
1197
 
1198
+ #: lite/includes/class-es-common.php:472
1199
  msgid "All Categories (Also include all categories which will create later)"
1200
  msgstr ""
1201
 
1202
+ #: lite/includes/class-es-common.php:476
1203
  msgid "None (Don't include post from any category)"
1204
  msgstr ""
1205
 
1206
+ #: lite/includes/class-es-common.php:509
1207
  msgid "No Custom Post Types Available"
1208
  msgstr ""
1209
 
1210
+ #: lite/includes/class-es-common.php:525
1211
  msgid "Single Opt-In"
1212
  msgstr ""
1213
 
1214
+ #: lite/includes/class-es-common.php:526
1215
  msgid "Double Opt-In"
1216
  msgstr ""
1217
 
1218
+ #: lite/includes/class-es-common.php:541
1219
+ #: pro/pro-class-post-digest.php:149
1220
+ msgid "Monday"
1221
+ msgstr ""
1222
+
1223
+ #: lite/includes/class-es-common.php:542
1224
+ #: pro/pro-class-post-digest.php:150
1225
+ msgid "Tuesday"
1226
+ msgstr ""
1227
+
1228
+ #: lite/includes/class-es-common.php:543
1229
+ #: pro/pro-class-post-digest.php:151
1230
+ msgid "Wednesday"
1231
+ msgstr ""
1232
+
1233
+ #: lite/includes/class-es-common.php:544
1234
+ #: pro/pro-class-post-digest.php:152
1235
+ msgid "Thursday"
1236
+ msgstr ""
1237
+
1238
+ #: lite/includes/class-es-common.php:545
1239
+ #: pro/pro-class-post-digest.php:153
1240
+ msgid "Friday"
1241
+ msgstr ""
1242
+
1243
+ #: lite/includes/class-es-common.php:546
1244
+ #: pro/pro-class-post-digest.php:154
1245
+ msgid "Saturday"
1246
+ msgstr ""
1247
+
1248
+ #: lite/includes/class-es-common.php:547
1249
+ #: pro/pro-class-post-digest.php:148
1250
+ msgid "Sunday"
1251
+ msgstr ""
1252
+
1253
+ #: lite/includes/class-es-common.php:584
1254
  msgid "Full Size"
1255
  msgstr ""
1256
 
1257
+ #: lite/includes/class-es-common.php:585
1258
  msgid "Medium Size"
1259
  msgstr ""
1260
 
1261
+ #: lite/includes/class-es-common.php:586
1262
  #: lite/includes/classes/class-es-templates-table.php:263
1263
  msgid "Thumbnail"
1264
  msgstr ""
1265
 
1266
+ #: lite/includes/class-es-common.php:1506
1267
  msgid "Top 10 Tips on How to Build an Email List"
1268
  msgstr ""
1269
 
1270
+ #: lite/includes/class-es-common.php:1510
1271
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1272
  msgstr ""
1273
 
1274
+ #: lite/includes/class-es-common.php:1514
1275
  msgid "Balance Email Marketing and Social Media Marketing"
1276
  msgstr ""
1277
 
1278
+ #: lite/includes/class-es-common.php:1518
1279
  msgid "Use social proof to grow blog traffic through email"
1280
  msgstr ""
1281
 
1282
+ #: lite/includes/class-es-common.php:1522
1283
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1284
  msgstr ""
1285
 
1286
+ #: lite/includes/class-es-common.php:1531
1287
  #: lite/includes/pro-features.php:144
1288
  msgid "Email Subscribers PRO"
1289
  msgstr ""
1290
 
1291
+ #: lite/includes/class-es-common.php:1533
1292
  msgid "Lifetime"
1293
  msgstr ""
1294
 
1295
+ #: lite/includes/class-es-common.php:1537
1296
  msgid "<b>Email Subscribers Secret Club</b>"
1297
  msgstr ""
1298
 
1299
+ #: lite/includes/class-es-common.php:1539
1300
  #: lite/includes/feedback.php:124
1301
  msgid "Join Now"
1302
  msgstr ""
1303
 
1304
+ #: lite/includes/class-es-common.php:1714
1305
  msgid "All Types"
1306
  msgstr ""
1307
 
1308
+ #: lite/includes/class-es-common.php:1742
1309
  #: lite/includes/classes/class-es-campaigns-table.php:568
1310
  msgid "Draft"
1311
  msgstr ""
1312
 
1313
+ #: lite/includes/class-es-common.php:1743
1314
+ #: lite/includes/class-es-common.php:2167
1315
  #: lite/includes/classes/class-es-campaign-report.php:237
1316
  #: lite/includes/classes/class-es-campaigns-table.php:549
1317
  #: lite/includes/classes/class-es-campaigns-table.php:587
1318
  #: lite/includes/classes/class-es-reports-table.php:197
1319
  #: lite/includes/classes/class-es-reports-table.php:557
1320
+ #: pro/classes/class-es-pro-reports-data.php:186
1321
  msgid "Sending"
1322
  msgstr ""
1323
 
1324
+ #: lite/includes/class-es-common.php:1744
1325
  #: lite/includes/classes/class-es-campaigns-table.php:315
1326
  #: lite/includes/classes/class-es-campaigns-table.php:542
1327
  #: lite/includes/classes/class-es-campaigns-table.php:578
1330
  msgid "Scheduled"
1331
  msgstr ""
1332
 
1333
+ #: lite/includes/class-es-common.php:1745
1334
+ #: lite/includes/class-es-common.php:2147
1335
  #: lite/includes/classes/class-es-campaign-report.php:221
1336
  #: lite/includes/classes/class-es-campaigns-table.php:556
1337
  #: lite/includes/classes/class-es-campaigns-table.php:605
1338
  #: lite/includes/classes/class-es-reports-table.php:191
1339
  #: lite/includes/pro-features.php:1116
1340
  #: lite/includes/pro-features.php:1163
1341
+ #: pro/classes/class-es-pro-reports-data.php:170
1342
+ #: pro/classes/class-es-pro-reports-data.php:270
1343
  msgid "Sent"
1344
  msgstr ""
1345
 
1346
+ #: lite/includes/class-es-common.php:1770
1347
  #: lite/includes/classes/class-es-campaigns-table.php:690
1348
  #: lite/includes/classes/class-es-contacts-table.php:1138
1349
  msgid "All Statuses"
1350
  msgstr ""
1351
 
1352
+ #: lite/includes/class-es-common.php:1982
1353
  msgid "Upgrade"
1354
  msgstr ""
1355
 
1356
+ #: lite/includes/class-es-common.php:2016
1357
  #: lite/includes/classes/class-es-reports-table.php:559
1358
+ #: pro/classes/class-es-pro-reports-data.php:878
1359
  msgid "All Status"
1360
  msgstr ""
1361
 
1362
+ #: lite/includes/class-es-common.php:2157
1363
  #: lite/includes/classes/class-es-campaign-report.php:229
1364
  #: lite/includes/classes/class-es-reports-table.php:556
1365
+ #: pro/classes/class-es-pro-reports-data.php:178
1366
  #: pro/partials/es-dashboard.php:60
1367
  msgid "In Queue"
1368
  msgstr ""
1369
 
1370
+ #: lite/includes/class-es-install.php:832
1371
  #: lite/includes/upgrade/es-update-functions.php:750
1372
  msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
1373
  msgstr ""
1376
  msgid "You do not have permission to update settings"
1377
  msgstr ""
1378
 
1379
+ #: lite/includes/classes/class-es-admin-settings.php:143
1380
  msgid "General"
1381
  msgstr ""
1382
 
1383
+ #: lite/includes/classes/class-es-admin-settings.php:147
1384
  msgid "Notifications"
1385
  msgstr ""
1386
 
1387
+ #: lite/includes/classes/class-es-admin-settings.php:151
1388
  msgid "Email Sending"
1389
  msgstr ""
1390
 
1391
+ #: lite/includes/classes/class-es-admin-settings.php:155
1392
  msgid "Security"
1393
  msgstr ""
1394
 
1395
+ #: lite/includes/classes/class-es-admin-settings.php:198
1396
  msgid "Sender"
1397
  msgstr ""
1398
 
1399
+ #: lite/includes/classes/class-es-admin-settings.php:202
1400
+ #: lite/includes/classes/class-es-admin-settings.php:205
1401
  #: lite/includes/classes/class-es-campaigns-table.php:625
1402
  #: lite/includes/classes/class-es-contacts-table.php:1068
1403
  #: lite/includes/classes/class-es-forms-table.php:410
1407
  msgid "Name"
1408
  msgstr ""
1409
 
1410
+ #: lite/includes/classes/class-es-admin-settings.php:203
1411
  msgid "The \"from\" name people will see when they receive emails."
1412
  msgstr ""
1413
 
1414
+ #: lite/includes/classes/class-es-admin-settings.php:212
1415
  msgid "The \"from\" email address for all emails."
1416
  msgstr ""
1417
 
1418
+ #: lite/includes/classes/class-es-admin-settings.php:214
1419
  msgid "Email Address"
1420
  msgstr ""
1421
 
1422
+ #: lite/includes/classes/class-es-admin-settings.php:222
1423
  msgid "Admin emails"
1424
  msgstr ""
1425
 
1426
+ #: lite/includes/classes/class-es-admin-settings.php:223
1427
  msgid "Who should be notified about system events like \"someone subscribed\", \"campaign sent\" etc?"
1428
  msgstr ""
1429
 
1430
+ #: lite/includes/classes/class-es-admin-settings.php:225
1431
  msgid "You can enter multiple email addresses - separate them with comma"
1432
  msgstr ""
1433
 
1434
+ #: lite/includes/classes/class-es-admin-settings.php:231
1435
  msgid "Opt-in type"
1436
  msgstr ""
1437
 
1438
+ #: lite/includes/classes/class-es-admin-settings.php:233
1439
  msgid "Single = confirm subscribers as they subscribe.<br> Double = send a confirmation email and require clicking on a link to confirm subscription."
1440
  msgstr ""
1441
 
1442
+ #: lite/includes/classes/class-es-admin-settings.php:242
1443
  msgid "Image size"
1444
  msgstr ""
1445
 
1446
  #. translators: %s: Keyword
1447
+ #: lite/includes/classes/class-es-admin-settings.php:247
1448
  msgid "%s keyword will use this image size. Use full size only if your template design needs it. Thumbnail should work well otherwise."
1449
  msgstr ""
1450
 
1451
+ #: lite/includes/classes/class-es-admin-settings.php:254
1452
  msgid "Track opens"
1453
  msgstr ""
1454
 
1455
+ #: lite/includes/classes/class-es-admin-settings.php:255
1456
  msgid "Do you want to track when people view your emails? (We recommend keeping it enabled)"
1457
  msgstr ""
1458
 
1459
+ #: lite/includes/classes/class-es-admin-settings.php:267
1460
  msgid "Subscription success message"
1461
  msgstr ""
1462
 
1463
+ #: lite/includes/classes/class-es-admin-settings.php:268
1464
  msgid "This message will show when a visitor successfully subscribes using the form."
1465
  msgstr ""
1466
 
1467
+ #: lite/includes/classes/class-es-admin-settings.php:279
1468
  msgid "Unsubscribe text in email footer:"
1469
  msgstr ""
1470
 
1471
+ #: lite/includes/classes/class-es-admin-settings.php:280
1472
  msgid "All emails will include this text in the footer so people can unsubscribe if they want."
1473
  msgstr ""
1474
 
1475
  #. translators: %s: List of Keywords
1476
+ #: lite/includes/classes/class-es-admin-settings.php:282
1477
  msgid "Use %s keyword to add unsubscribe link."
1478
  msgstr ""
1479
 
1480
+ #: lite/includes/classes/class-es-admin-settings.php:287
1481
  msgid "Double opt-in subscription messages:"
1482
  msgstr ""
1483
 
1484
+ #: lite/includes/classes/class-es-admin-settings.php:288
1485
  msgid "Page and messages to show when people click on the link in a subscription confirmation email."
1486
  msgstr ""
1487
 
1488
+ #: lite/includes/classes/class-es-admin-settings.php:295
1489
  msgid "You have been subscribed successfully!"
1490
  msgstr ""
1491
 
1492
+ #: lite/includes/classes/class-es-admin-settings.php:297
1493
  msgid "Message on successful subscription"
1494
  msgstr ""
1495
 
1496
+ #: lite/includes/classes/class-es-admin-settings.php:298
1497
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1498
  msgstr ""
1499
 
1500
+ #: lite/includes/classes/class-es-admin-settings.php:306
1501
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1502
  msgstr ""
1503
 
1504
+ #: lite/includes/classes/class-es-admin-settings.php:308
1505
  msgid "Message when subscription fails"
1506
  msgstr ""
1507
 
1508
+ #: lite/includes/classes/class-es-admin-settings.php:309
1509
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1510
  msgstr ""
1511
 
1512
+ #: lite/includes/classes/class-es-admin-settings.php:317
1513
  msgid "Unsubscribe messages"
1514
  msgstr ""
1515
 
1516
+ #: lite/includes/classes/class-es-admin-settings.php:318
1517
  msgid "Page and messages to show when people click on the unsubscribe link in an email's footer."
1518
  msgstr ""
1519
 
1520
+ #: lite/includes/classes/class-es-admin-settings.php:326
1521
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1522
  msgstr ""
1523
 
1524
+ #: lite/includes/classes/class-es-admin-settings.php:328
1525
  msgid "Message on unsubscribe success"
1526
  msgstr ""
1527
 
1528
+ #: lite/includes/classes/class-es-admin-settings.php:329
1529
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1530
  msgstr ""
1531
 
1532
+ #: lite/includes/classes/class-es-admin-settings.php:337
1533
  msgid "Oops.. There was some technical error. Please try again later or contact us."
1534
  msgstr ""
1535
 
1536
+ #: lite/includes/classes/class-es-admin-settings.php:339
1537
  msgid "Message when unsubscribe fails"
1538
  msgstr ""
1539
 
1540
+ #: lite/includes/classes/class-es-admin-settings.php:340
1541
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1542
  msgstr ""
1543
 
1544
+ #: lite/includes/classes/class-es-admin-settings.php:348
1545
  msgid "Share Icegram"
1546
  msgstr ""
1547
 
1548
+ #: lite/includes/classes/class-es-admin-settings.php:357
1549
  msgid "Delete plugin data on uninstall"
1550
  msgstr ""
1551
 
1552
+ #: lite/includes/classes/class-es-admin-settings.php:358
1553
  msgid "Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin."
1554
  msgstr ""
1555
 
1556
+ #: lite/includes/classes/class-es-admin-settings.php:371
1557
  msgid "Welcome email"
1558
  msgstr ""
1559
 
1560
+ #: lite/includes/classes/class-es-admin-settings.php:372
1561
  msgid "Send this text as a welcome email when new people subscribe."
1562
  msgstr ""
1563
 
1564
+ #: lite/includes/classes/class-es-admin-settings.php:377
1565
+ #: pro/pro-class-email-subscribers.php:1137
1566
  msgid "Enable?"
1567
  msgstr ""
1568
 
1569
+ #: lite/includes/classes/class-es-admin-settings.php:389
1570
+ #: lite/includes/classes/class-es-admin-settings.php:419
1571
+ #: lite/includes/classes/class-es-admin-settings.php:453
1572
+ #: lite/includes/classes/class-es-admin-settings.php:491
1573
  #: lite/includes/classes/class-es-newsletters.php:355
1574
  #: lite/includes/classes/class-es-reports-table.php:269
1575
+ #: pro/classes/class-es-pro-sequence-report.php:299
1576
  msgid "Subject"
1577
  msgstr ""
1578
 
1579
+ #: lite/includes/classes/class-es-admin-settings.php:399
1580
+ #: lite/includes/classes/class-es-admin-settings.php:430
1581
+ #: lite/includes/classes/class-es-admin-settings.php:461
1582
+ #: lite/includes/classes/class-es-admin-settings.php:502
1583
  #: lite/includes/classes/class-es-newsletters.php:260
1584
  #: pro/pro-class-sequences.php:405
1585
  msgid "Content"
1586
  msgstr ""
1587
 
1588
  #. translators: %s: List of Keywords
1589
+ #: lite/includes/classes/class-es-admin-settings.php:401
1590
  msgid "Available keywords: %s"
1591
  msgstr ""
1592
 
1593
+ #: lite/includes/classes/class-es-admin-settings.php:408
1594
  msgid "Double opt-in confirmation email"
1595
  msgstr ""
1596
 
1597
+ #: lite/includes/classes/class-es-admin-settings.php:409
1598
  msgid "Use this text as confirmation email when opt-in type is set to \"Double opt-in\". Make sure to include {{SUBSCRIBE-LINK}} keyword, otherwise they won't be able to confirm their subscription."
1599
  msgstr ""
1600
 
1601
  #. translators: %s: List of Keywords
1602
+ #: lite/includes/classes/class-es-admin-settings.php:432
1603
  msgid "Available keywords: %s "
1604
  msgstr ""
1605
 
1606
+ #: lite/includes/classes/class-es-admin-settings.php:440
1607
  msgid "New subscription notification to admin"
1608
  msgstr ""
1609
 
1610
+ #: lite/includes/classes/class-es-admin-settings.php:441
1611
  msgid "Notify admin(s) everytime a new contact signups."
1612
  msgstr ""
1613
 
1614
+ #: lite/includes/classes/class-es-admin-settings.php:446
1615
+ #: lite/includes/classes/class-es-admin-settings.php:478
1616
  msgid "Notify?"
1617
  msgstr ""
1618
 
1619
+ #: lite/includes/classes/class-es-admin-settings.php:455
1620
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1621
  msgstr ""
1622
 
1623
+ #: lite/includes/classes/class-es-admin-settings.php:456
1624
  msgid "New email subscription"
1625
  msgstr ""
1626
 
1627
  #. translators: %s: List of Keywords
1628
+ #: lite/includes/classes/class-es-admin-settings.php:464
1629
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1630
  msgstr ""
1631
 
1632
+ #: lite/includes/classes/class-es-admin-settings.php:472
1633
  msgid "Campaign sent notification to admin"
1634
  msgstr ""
1635
 
1636
+ #: lite/includes/classes/class-es-admin-settings.php:473
1637
  msgid "Notify admin(s) everytime a campaign is sent."
1638
  msgstr ""
1639
 
1640
+ #: lite/includes/classes/class-es-admin-settings.php:489
1641
+ #: lite/includes/classes/class-es-mailer.php:355
1642
  msgid "Campaign Sent!"
1643
  msgstr ""
1644
 
1645
  #. translators: %s: List of Keywords
1646
+ #: lite/includes/classes/class-es-admin-settings.php:504
1647
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1648
  msgstr ""
1649
 
1650
+ #: lite/includes/classes/class-es-admin-settings.php:516
1651
  msgid " We will take care of it. You don't need to visit this URL manually."
1652
  msgstr ""
1653
 
1654
  #. translators: %s: Link to Icegram documentation
1655
+ #: lite/includes/classes/class-es-admin-settings.php:519
1656
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1657
  msgstr ""
1658
 
1659
+ #: lite/includes/classes/class-es-admin-settings.php:522
1660
  msgid "How to configure Email Sending"
1661
  msgstr ""
1662
 
1663
+ #: lite/includes/classes/class-es-admin-settings.php:534
1664
  msgid "Cron URL"
1665
  msgstr ""
1666
 
1667
+ #: lite/includes/classes/class-es-admin-settings.php:543
1668
  msgid "Disable Wordpress Cron"
1669
  msgstr ""
1670
 
1671
+ #: lite/includes/classes/class-es-admin-settings.php:544
1672
  msgid "Enable this option if you do not want Email Subscribers to use WP Cron to send emails."
1673
  msgstr ""
1674
 
1675
+ #: lite/includes/classes/class-es-admin-settings.php:549
1676
  msgid "Send emails at most every"
1677
  msgstr ""
1678
 
1679
+ #: lite/includes/classes/class-es-admin-settings.php:552
1680
  msgid "Optional if a real cron service is used"
1681
  msgstr ""
1682
 
1683
+ #: lite/includes/classes/class-es-admin-settings.php:562
1684
  msgid "Maximum emails to send in an hour"
1685
  msgstr ""
1686
 
1687
+ #: lite/includes/classes/class-es-admin-settings.php:563
1688
  msgid "Total emails your host can send in an hour."
1689
  msgstr ""
1690
 
1691
+ #: lite/includes/classes/class-es-admin-settings.php:572
1692
  msgid "Maximum emails to send at once"
1693
  msgstr ""
1694
 
1695
+ #: lite/includes/classes/class-es-admin-settings.php:573
1696
  msgid "Maximum emails you want to send on every cron request."
1697
  msgstr ""
1698
 
1699
+ #: lite/includes/classes/class-es-admin-settings.php:584
1700
  msgid "Send test email"
1701
  msgstr ""
1702
 
1703
+ #: lite/includes/classes/class-es-admin-settings.php:585
1704
  msgid "Enter email address to send test email."
1705
  msgstr ""
1706
 
1707
+ #: lite/includes/classes/class-es-admin-settings.php:593
1708
  msgid "Select Mailer"
1709
  msgstr ""
1710
 
1711
+ #: lite/includes/classes/class-es-admin-settings.php:605
1712
+ #: lite/includes/classes/class-es-admin-settings.php:950
1713
  msgid "Pepipost API key"
1714
  msgstr ""
1715
 
1716
+ #: lite/includes/classes/class-es-admin-settings.php:622
1717
  msgid "Select a mailer to send mail"
1718
  msgstr ""
1719
 
1720
+ #: lite/includes/classes/class-es-admin-settings.php:632
1721
  msgid "Blocked domain(s)"
1722
  msgstr ""
1723
 
1724
+ #: lite/includes/classes/class-es-admin-settings.php:634
1725
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1726
  msgstr ""
1727
 
1728
+ #: lite/includes/classes/class-es-admin-settings.php:847
1729
  msgid "Save Settings"
1730
  msgstr ""
1731
 
1732
+ #: lite/includes/classes/class-es-admin-settings.php:949
1733
  msgid "Signup for Pepipost"
1734
  msgstr ""
1735
 
1736
+ #: lite/includes/classes/class-es-admin-settings.php:950
1737
  msgid "How to find"
1738
  msgstr ""
1739
 
1740
+ #: lite/includes/classes/class-es-admin-settings.php:951
1741
  msgid "Why to choose Pepipost"
1742
  msgstr ""
1743
 
1744
+ #: lite/includes/classes/class-es-admin-settings.php:975
1745
  msgid "Cron Info"
1746
  msgstr ""
1747
 
1748
+ #: lite/includes/classes/class-es-admin-settings.php:1042
1749
  msgid "Event"
1750
  msgstr ""
1751
 
1752
+ #: lite/includes/classes/class-es-admin-settings.php:1043
1753
  msgid "Interval"
1754
  msgstr ""
1755
 
1756
+ #: lite/includes/classes/class-es-admin-settings.php:1044
1757
  msgid "Next Execution"
1758
  msgstr ""
1759
 
1760
  #. translators: %s: Next scheduled time
1761
+ #: lite/includes/classes/class-es-admin-settings.php:1090
1762
  msgid "In %s"
1763
  msgstr ""
1764
 
1765
+ #: lite/includes/classes/class-es-admin-settings.php:1125
1766
  msgid "Plugin usage tracking"
1767
  msgstr ""
1768
 
1769
+ #: lite/includes/classes/class-es-admin-settings.php:1128
1770
  msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
1771
  msgstr ""
1772
 
1776
  #: lite/includes/classes/class-es-campaigns-table.php:479
1777
  #: lite/includes/classes/class-es-reports-table.php:16
1778
  #: lite/includes/pro-features.php:1108
1779
+ #: pro/classes/class-es-pro-reports-data.php:154
1780
  #: pro/classes/class-es-pro-sequence-report.php:20
1781
  msgid "Report"
1782
  msgstr ""
1803
  #: lite/includes/classes/class-es-campaign-report.php:245
1804
  #: lite/includes/classes/class-es-contacts-table.php:356
1805
  #: lite/includes/pro-features.php:1147
1806
+ #: pro/classes/class-es-pro-reports-data.php:247
1807
+ #: pro/classes/class-es-pro-reports-data.php:875
1808
  msgid "Opened"
1809
  msgstr ""
1810
 
1906
 
1907
  #: lite/includes/classes/class-es-campaigns-table.php:626
1908
  #: lite/includes/classes/class-es-reports-table.php:270
1909
+ #: pro/classes/class-es-pro-sequence-report.php:300
1910
  msgid "Type"
1911
  msgstr ""
1912
 
2061
 
2062
  #: lite/includes/classes/class-es-contacts-table.php:800
2063
  #: lite/includes/pro-features.php:957
2064
+ #: pro/pro-class-email-subscribers.php:840
2065
  msgid "Enter email"
2066
  msgstr ""
2067
 
2270
  #: lite/includes/classes/class-es-import-subscribers.php:658
2271
  #: lite/includes/classes/class-es-import-subscribers.php:1045
2272
  #: lite/includes/classes/class-es-import-subscribers.php:1178
2273
+ #: pro/pro-class-email-subscribers.php:2072
2274
  msgid "First Name"
2275
  msgstr ""
2276
 
2279
  #: lite/includes/classes/class-es-import-subscribers.php:659
2280
  #: lite/includes/classes/class-es-import-subscribers.php:1050
2281
  #: lite/includes/classes/class-es-import-subscribers.php:1179
2282
+ #: pro/pro-class-email-subscribers.php:2073
2283
  msgid "Last Name"
2284
  msgstr ""
2285
 
2862
  msgid "No lists avaliable."
2863
  msgstr ""
2864
 
2865
+ #: lite/includes/classes/class-es-mailer.php:297
2866
  msgid "Thanks!"
2867
  msgstr ""
2868
 
2869
  #. translators: %s: Email address
2870
+ #: lite/includes/classes/class-es-mailer.php:518
2871
  msgid "Test email to %s"
2872
  msgstr ""
2873
 
2874
+ #: lite/includes/classes/class-es-mailer.php:535
2875
  msgid "Congrats, test email was sent successfully!"
2876
  msgstr ""
2877
 
2878
+ #: lite/includes/classes/class-es-mailer.php:536
2879
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
2880
  msgstr ""
2881
 
2882
  #. translators: 1: <a> 2: </a>
2883
+ #: lite/includes/classes/class-es-mailer.php:541
2884
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
2885
  msgstr ""
2886
 
2887
  #. translators: 1. Subscriber email 2. Blog name
2888
+ #: lite/includes/classes/class-es-mailer.php:1728
2889
  msgid "Unsubscribe %1$s from %2$s"
2890
  msgstr ""
2891
 
2968
  #: lite/includes/classes/class-es-newsletters.php:417
2969
  #: lite/includes/classes/class-es-newsletters.php:445
2970
  #: lite/includes/classes/class-es-reports-table.php:253
2971
+ #: pro/classes/class-es-pro-sequence-report.php:273
2972
  msgid "Preview"
2973
  msgstr ""
2974
 
3109
  msgid "Save Campaign"
3110
  msgstr ""
3111
 
3112
+ #: lite/includes/classes/class-es-reports-data.php:355
3113
  #: lite/includes/classes/class-es-reports-table.php:159
3114
  #: lite/public/class-email-subscribers-public.php:475
3115
+ #: pro/classes/class-es-pro-reports-data.php:73
3116
  msgid "Post Notification"
3117
  msgstr ""
3118
 
3119
+ #: lite/includes/classes/class-es-reports-data.php:357
3120
  #: pro/pro-class-post-digest.php:28
3121
  msgid "Post Digest"
3122
  msgstr ""
3136
  msgstr ""
3137
 
3138
  #: lite/includes/classes/class-es-reports-table.php:251
3139
+ #: pro/classes/class-es-pro-sequence-report.php:272
3140
  msgid "View"
3141
  msgstr ""
3142
 
3217
 
3218
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3219
  #: lite/includes/classes/class-es-templates-table.php:300
3220
+ #: pro/pro-class-email-subscribers.php:1480
3221
  msgid "Duplicate"
3222
  msgstr ""
3223
 
3463
  msgstr ""
3464
 
3465
  #: lite/includes/pro-features.php:243
3466
+ #: pro/pro-class-email-subscribers.php:887
3467
  msgid "Track clicks"
3468
  msgstr ""
3469
 
3470
  #: lite/includes/pro-features.php:244
3471
+ #: pro/pro-class-email-subscribers.php:888
3472
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3473
  msgstr ""
3474
 
3559
  msgstr ""
3560
 
3561
  #: lite/includes/pro-features.php:381
3562
+ #: pro/pro-class-email-subscribers.php:896
3563
  msgid "Track IP address"
3564
  msgstr ""
3565
 
3817
  msgstr ""
3818
 
3819
  #: lite/includes/pro-features.php:984
3820
+ #: pro/pro-class-email-subscribers.php:724
3821
  msgid "Link tracking"
3822
  msgstr ""
3823
 
3826
  msgstr ""
3827
 
3828
  #: lite/includes/pro-features.php:1033
3829
+ #: pro/pro-class-email-subscribers.php:768
3830
  msgid "Send options"
3831
  msgstr ""
3832
 
3833
  #: lite/includes/pro-features.php:1036
3834
+ #: pro/pro-class-email-subscribers.php:771
3835
  msgid "Schedule for later"
3836
  msgstr ""
3837
 
3838
  #: lite/includes/pro-features.php:1043
3839
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
3840
  #: lite/includes/workflows/fields/class-es-date.php:31
3841
+ #: pro/pro-class-email-subscribers.php:784
3842
  msgid "Date"
3843
  msgstr ""
3844
 
3845
  #: lite/includes/pro-features.php:1052
3846
  #: lite/includes/workflows/fields/class-es-time.php:64
3847
+ #: pro/pro-class-email-subscribers.php:795
3848
  msgid "Time"
3849
  msgstr ""
3850
 
3851
  #: lite/includes/pro-features.php:1062
3852
+ #: pro/pro-class-email-subscribers.php:806
3853
  msgid "Local Time: "
3854
  msgstr ""
3855
 
3863
  msgstr ""
3864
 
3865
  #: lite/includes/pro-features.php:1122
3866
+ #: pro/classes/class-es-pro-reports-data.php:203
3867
  msgid "Type: "
3868
  msgstr ""
3869
 
3870
  #: lite/includes/pro-features.php:1125
3871
+ #: pro/classes/class-es-pro-reports-data.php:206
3872
  msgid "From: "
3873
  msgstr ""
3874
 
3881
  msgstr ""
3882
 
3883
  #: lite/includes/pro-features.php:1131
3884
+ #: pro/classes/class-es-pro-reports-data.php:224
3885
  msgid "Date: "
3886
  msgstr ""
3887
 
3890
  msgstr ""
3891
 
3892
  #: lite/includes/pro-features.php:1139
3893
+ #: pro/classes/class-es-pro-reports-data.php:233
3894
  msgid "Statistics"
3895
  msgstr ""
3896
 
3908
 
3909
  #: lite/includes/pro-features.php:1270
3910
  #: lite/includes/pro-features.php:1485
3911
+ #: pro/classes/class-es-pro-reports-data.php:441
3912
+ #: pro/classes/class-es-pro-reports-data.php:922
3913
  msgid "Mail Client"
3914
  msgstr ""
3915
 
3930
  msgstr ""
3931
 
3932
  #: lite/includes/pro-features.php:1335
3933
+ #: pro/classes/class-es-pro-reports-data.php:546
3934
  msgid "Link (URL)"
3935
  msgstr ""
3936
 
3937
  #: lite/includes/pro-features.php:1337
3938
+ #: pro/classes/class-es-pro-reports-data.php:548
3939
  msgid "Unique Clicks"
3940
  msgstr ""
3941
 
3942
  #: lite/includes/pro-features.php:1339
3943
+ #: pro/classes/class-es-pro-reports-data.php:550
3944
  msgid "Total Clicks"
3945
  msgstr ""
3946
 
3949
  msgstr ""
3950
 
3951
  #: lite/includes/pro-features.php:1484
3952
+ #: pro/classes/class-es-pro-reports-data.php:921
3953
  msgid "Device"
3954
  msgstr ""
3955
 
3956
  #: lite/includes/pro-features.php:1486
3957
+ #: pro/classes/class-es-pro-reports-data.php:923
3958
  msgid "OS"
3959
  msgstr ""
3960
 
3961
  #: lite/includes/pro-features.php:1513
3962
+ #: pro/classes/class-es-pro-reports-data.php:945
3963
  msgid "Desktop"
3964
  msgstr ""
3965
 
3966
  #: lite/includes/pro-features.php:1522
3967
+ #: pro/classes/class-es-pro-reports-data.php:953
3968
  msgid "Tablet"
3969
  msgstr ""
3970
 
3971
  #: lite/includes/pro-features.php:1531
3972
+ #: pro/classes/class-es-pro-reports-data.php:961
3973
  msgid "Mobile"
3974
  msgstr ""
3975
 
3976
  #: lite/includes/pro-features.php:1590
3977
+ #: pro/pro-class-email-subscribers.php:1681
3978
  msgid "Add Attachments"
3979
  msgstr ""
3980
 
3981
  #: lite/includes/pro-features.php:1620
3982
+ #: pro/pro-class-email-subscribers.php:1766
3983
  msgid "Import existing WordPress users"
3984
  msgstr ""
3985
 
4544
  msgstr ""
4545
 
4546
  #: lite/public/partials/cron-message.php:43
4547
+ #: pro/pro-class-email-subscribers.php:814
4548
  msgid "Send Now"
4549
  msgstr ""
4550
 
4580
  msgid "is not in List"
4581
  msgstr ""
4582
 
4583
+ #: pro/classes/class-es-pro-reports-data.php:210
4584
  msgid "Recipient(s): "
4585
  msgstr ""
4586
 
4587
+ #: pro/classes/class-es-pro-reports-data.php:261
4588
+ #: pro/pro-class-email-subscribers.php:1215
4589
+ msgid "Clicked"
4590
+ msgstr ""
4591
+
4592
+ #: pro/classes/class-es-pro-reports-data.php:304
4593
  msgid "Open and Click activity"
4594
  msgstr ""
4595
 
4596
+ #: pro/classes/class-es-pro-reports-data.php:312
4597
  msgid "Country info"
4598
  msgstr ""
4599
 
4600
+ #: pro/classes/class-es-pro-reports-data.php:395
4601
+ #: pro/classes/class-es-pro-reports-data.php:457
4602
  msgid "Others"
4603
  msgstr ""
4604
 
4605
+ #: pro/classes/class-es-pro-reports-data.php:424
4606
  msgid "No country data found."
4607
  msgstr ""
4608
 
4609
+ #: pro/classes/class-es-pro-reports-data.php:436
4610
  msgid "Mail Client info"
4611
  msgstr ""
4612
 
4613
+ #: pro/classes/class-es-pro-reports-data.php:482
4614
  msgid "No mail client data found."
4615
  msgstr ""
4616
 
4617
+ #: pro/classes/class-es-pro-reports-data.php:496
4618
  msgid "Device info"
4619
  msgstr ""
4620
 
4621
+ #: pro/classes/class-es-pro-reports-data.php:499
4622
  msgid "No device data found"
4623
  msgstr ""
4624
 
4625
+ #: pro/classes/class-es-pro-reports-data.php:503
4626
  msgid "Browser info"
4627
  msgstr ""
4628
 
4629
+ #: pro/classes/class-es-pro-reports-data.php:506
4630
  msgid "No browser data found"
4631
  msgstr ""
4632
 
4633
+ #: pro/classes/class-es-pro-reports-data.php:510
4634
  msgid "OS info"
4635
  msgstr ""
4636
 
4637
+ #: pro/classes/class-es-pro-reports-data.php:513
4638
  msgid "No OS data found"
4639
  msgstr ""
4640
 
4641
+ #: pro/classes/class-es-pro-reports-data.php:539
4642
  msgid "Link activity"
4643
  msgstr ""
4644
 
4645
+ #: pro/classes/class-es-pro-reports-data.php:625
4646
  msgid "Show Less"
4647
  msgstr ""
4648
 
4649
+ #: pro/classes/class-es-pro-reports-data.php:629
4650
  msgid "Show More"
4651
  msgstr ""
4652
 
4653
+ #: pro/classes/class-es-pro-reports-data.php:682
4654
  #: pro/partials/es-dashboard.php:100
4655
  msgid "Clicks"
4656
  msgstr ""
4657
 
4658
+ #: pro/classes/class-es-pro-reports-data.php:864
4659
  msgid "Filter Report"
4660
  msgstr ""
4661
 
4662
+ #: pro/classes/class-es-pro-reports-data.php:876
4663
  msgid "Not Opened"
4664
  msgstr ""
4665
 
4666
+ #: pro/classes/class-es-pro-sequence-report.php:201
4667
  msgid "No Reports available."
4668
  msgstr ""
4669
 
4670
+ #: pro/classes/class-es-pro-sequence-report.php:220
4671
  msgid "Sequence Message"
4672
  msgstr ""
4673
 
4674
+ #: pro/classes/class-es-pro-sequence-report.php:302
4675
  msgid "Total Contacts"
4676
  msgstr ""
4677
 
4678
+ #: pro/classes/class-es-subscription-summary-automation.php:99
4679
+ msgid "Your site's weekly report"
4680
+ msgstr ""
4681
+
4682
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
4683
  msgid "Your emails are not relevant to me"
4684
  msgstr ""
4847
  msgid "Your cart could not be restored, it may have expired."
4848
  msgstr ""
4849
 
4850
+ #: pro/pro-class-email-subscribers.php:380
4851
  #: pro/pro-class-post-digest.php:25
4852
  msgid "Sequence"
4853
  msgstr ""
4854
 
4855
+ #: pro/pro-class-email-subscribers.php:503
4856
  msgid "Please enter an email address."
4857
  msgstr ""
4858
 
4859
+ #: pro/pro-class-email-subscribers.php:505
4860
  msgid "Add Attachment"
4861
  msgstr ""
4862
 
4863
  #. translators: %s: Attachmen max file size.
4864
+ #: pro/pro-class-email-subscribers.php:507
4865
  msgid "Please attach a file having size lower than %s."
4866
  msgstr ""
4867
 
4868
+ #: pro/pro-class-email-subscribers.php:508
4869
  msgid "Are you sure you want to delete this?"
4870
  msgstr ""
4871
 
4872
+ #: pro/pro-class-email-subscribers.php:509
4873
+ #: pro/pro-class-email-subscribers.php:1957
4874
  msgid "Checking your orders..."
4875
  msgstr ""
4876
 
4877
+ #: pro/pro-class-email-subscribers.php:633
4878
  msgid "Clean My List"
4879
  msgstr ""
4880
 
4881
+ #: pro/pro-class-email-subscribers.php:634
4882
  msgid "List cleanup is in progress..."
4883
  msgstr ""
4884
 
4885
+ #: pro/pro-class-email-subscribers.php:635
4886
  msgid "List cleanup completed successfully."
4887
  msgstr ""
4888
 
4889
+ #: pro/pro-class-email-subscribers.php:652
4890
  msgid "Email status"
4891
  msgstr ""
4892
 
4893
+ #: pro/pro-class-email-subscribers.php:653
4894
  msgid "Last opened at"
4895
  msgstr ""
4896
 
4897
+ #: pro/pro-class-email-subscribers.php:656
4898
  msgid "IP"
4899
  msgstr ""
4900
 
4901
+ #: pro/pro-class-email-subscribers.php:852
4902
  msgid "Select page"
4903
  msgstr ""
4904
 
4905
+ #: pro/pro-class-email-subscribers.php:865
4906
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
4907
  msgstr ""
4908
 
4909
+ #: pro/pro-class-email-subscribers.php:878
4910
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
4911
  msgstr ""
4912
 
4913
+ #: pro/pro-class-email-subscribers.php:922
4914
  msgid "Access Key ID"
4915
  msgstr ""
4916
 
4917
+ #: pro/pro-class-email-subscribers.php:935
4918
  msgid "Secret Access Key"
4919
  msgstr ""
4920
 
4921
+ #: pro/pro-class-email-subscribers.php:949
4922
  msgid "Closest Region"
4923
  msgstr ""
4924
 
4925
+ #: pro/pro-class-email-subscribers.php:951
4926
  msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
4927
  msgstr ""
4928
 
4929
+ #: pro/pro-class-email-subscribers.php:978
4930
  msgid "Private API Key"
4931
  msgstr ""
4932
 
4933
+ #: pro/pro-class-email-subscribers.php:992
4934
  msgid "Domain Name"
4935
  msgstr ""
4936
 
4937
+ #: pro/pro-class-email-subscribers.php:1003
4938
+ #: pro/pro-class-email-subscribers.php:1078
4939
  msgid "United States"
4940
  msgstr ""
4941
 
4942
+ #: pro/pro-class-email-subscribers.php:1004
4943
+ #: pro/pro-class-email-subscribers.php:1079
4944
  msgid "Europe"
4945
  msgstr ""
4946
 
4947
+ #: pro/pro-class-email-subscribers.php:1010
4948
+ #: pro/pro-class-email-subscribers.php:1085
4949
  msgid "Region"
4950
  msgstr ""
4951
 
4952
+ #: pro/pro-class-email-subscribers.php:1014
4953
  msgid "mailgun.com"
4954
  msgstr ""
4955
 
4956
+ #: pro/pro-class-email-subscribers.php:1040
4957
+ #: pro/pro-class-email-subscribers.php:1067
4958
  msgid "API Key"
4959
  msgstr ""
4960
 
4961
+ #: pro/pro-class-email-subscribers.php:1087
4962
  msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
4963
  msgstr ""
4964
 
4965
+ #: pro/pro-class-email-subscribers.php:1112
4966
  msgid "API token"
4967
  msgstr ""
4968
 
4969
+ #: pro/pro-class-email-subscribers.php:1132
4970
+ msgid "Weekly summary"
4971
+ msgstr ""
4972
+
4973
+ #: pro/pro-class-email-subscribers.php:1144
4974
+ msgid "When our automated weekly email should be sent out?"
4975
+ msgstr ""
4976
+
4977
+ #: pro/pro-class-email-subscribers.php:1153
4978
+ msgid "In which time we need to send our weekly summary?"
4979
  msgstr ""
4980
 
4981
+ #: pro/pro-class-email-subscribers.php:1501
4982
  msgid "You are not allowed to duplicate campaign."
4983
  msgstr ""
4984
 
4985
+ #: pro/pro-class-email-subscribers.php:1516
4986
  msgid "Campaign duplicated !"
4987
  msgstr ""
4988
 
4989
+ #: pro/pro-class-email-subscribers.php:1785
4990
  msgid "Import WordPress users with following roles"
4991
  msgstr ""
4992
 
4993
+ #: pro/pro-class-email-subscribers.php:1838
4994
+ #: pro/pro-class-email-subscribers.php:1964
4995
  msgid "Proceed "
4996
  msgstr ""
4997
 
4998
+ #: pro/pro-class-email-subscribers.php:1874
4999
  msgid "Import from WooCommerce orders"
5000
  msgstr ""
5001
 
5002
+ #: pro/pro-class-email-subscribers.php:1899
5003
  msgid "Select order statuses"
5004
  msgstr ""
5005
 
5006
+ #: pro/pro-class-email-subscribers.php:1947
5007
  msgid "Orders should contain these products"
5008
  msgstr ""
5009
 
5010
+ #: pro/pro-class-email-subscribers.php:1952
5011
  msgid "Search products..."
5012
  msgstr ""
5013
 
5014
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5015
+ #: pro/pro-class-email-subscribers.php:2180
5016
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5017
  msgstr ""
5018
 
5019
+ #: pro/pro-class-email-subscribers.php:2191
5020
  msgid "We can't find any matching orders in your store."
5021
  msgstr ""
5022
 
5023
+ #: pro/pro-class-email-subscribers.php:2204
5024
  msgid "Total Opened"
5025
  msgstr ""
5026
 
5027
+ #: pro/pro-class-email-subscribers.php:2254
5028
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5029
  msgstr ""
5030
 
5031
+ #: pro/pro-class-email-subscribers.php:2282
5032
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5033
  msgstr ""
5034
 
5035
+ #: pro/pro-class-email-subscribers.php:2311
5036
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5037
  msgstr ""
5038
 
5039
+ #: pro/pro-class-email-subscribers.php:2338
5040
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5041
  msgstr ""
5042
 
5043
+ #: pro/pro-class-email-subscribers.php:2365
5044
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5045
  msgstr ""
5046
 
5047
+ #: pro/pro-class-email-subscribers.php:2384
5048
  msgid "Send confirmation email"
5049
  msgstr ""
5050
 
5051
+ #: pro/pro-class-email-subscribers.php:2399
5052
  msgid "Confirmation emails queued successfully and will be sent shortly."
5053
  msgstr ""
5054
 
5055
+ #: pro/pro-class-email-subscribers.php:2407
5056
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5057
  msgstr ""
5058
 
5059
+ #: pro/pro-class-email-subscribers.php:2410
5060
  msgid "Failed to queue confirmation emails. Please try again later."
5061
  msgstr ""
5062
 
5100
  msgid "Last"
5101
  msgstr ""
5102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5103
  #: pro/pro-class-sequences.php:21
5104
  msgid "Create Sequence"
5105
  msgstr ""
5174
  msgid " after subscription"
5175
  msgstr ""
5176
 
5177
+ #: pro/templates/email/es-admin-subscription-summary.php:123
5178
+ msgid "Weekly Account Summary"
5179
+ msgstr ""
5180
+
5181
+ #: pro/templates/email/es-admin-subscription-summary.php:125
5182
+ msgid "Here are your weekly stats from"
5183
+ msgstr ""
5184
+
5185
+ #: pro/templates/email/es-admin-subscription-summary.php:126
5186
+ msgid "Email Subscribers and Newsletters."
5187
+ msgstr ""
5188
+
5189
+ #: pro/templates/email/es-admin-subscription-summary.php:133
5190
+ msgid "Contacts growth"
5191
+ msgstr ""
5192
+
5193
+ #: pro/templates/email/es-admin-subscription-summary.php:137
5194
+ msgid "Total subscribers"
5195
+ msgstr ""
5196
+
5197
+ #: pro/templates/email/es-admin-subscription-summary.php:141
5198
+ msgid "Total un-subscribers"
5199
+ msgstr ""
5200
+
5201
+ #: pro/templates/email/es-admin-subscription-summary.php:147
5202
+ msgid "Total sent emails"
5203
+ msgstr ""
5204
+
5205
+ #: pro/templates/email/es-admin-subscription-summary.php:151
5206
+ msgid "Total opened mails"
5207
+ msgstr ""
5208
+
5209
+ #: pro/templates/email/es-admin-subscription-summary.php:155
5210
+ msgid "Total clicked mails"
5211
+ msgstr ""
5212
+
5213
+ #: pro/templates/email/es-admin-subscription-summary.php:162
5214
+ msgid "View More Stats"
5215
+ msgstr ""
5216
+
5217
+ #: pro/templates/email/es-admin-subscription-summary.php:165
5218
+ msgid "Boost Your Stats"
5219
+ msgstr ""
5220
+
5221
+ #: pro/templates/email/es-admin-subscription-summary.php:166
5222
+ msgid "Visit our Guides & Tutorials to learn how to "
5223
+ msgstr ""
5224
+
5225
+ #: pro/templates/email/es-admin-subscription-summary.php:167
5226
+ msgid "grow your audience"
5227
+ msgstr ""
5228
+
5229
+ #: pro/templates/email/es-admin-subscription-summary.php:168
5230
+ msgid "maximize subscriber engagement."
5231
+ msgstr ""
5232
+
5233
+ #: pro/templates/email/es-admin-subscription-summary.php:168
5234
+ msgid "Then checkout your Dashboard to get a more complete view of your account health."
5235
+ msgstr ""
5236
+
5237
+ #: pro/templates/email/es-admin-subscription-summary.php:173
5238
+ msgid "Visit Dashboard"
5239
+ msgstr ""
5240
+
5241
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
5242
  msgid "Remove from list"
5243
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
6
  Requires at least: 3.9
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
- Stable tag: 4.7.9
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,16 +310,22 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 4.7.9 =
314
 
315
- * New: Added 'Total sent' column on the Reports page
316
- * Update: UX improvements
317
- * Fix: Incorrect sent and opened dates on campaign report on some setup
318
- * Fix: Campaign report migration issue from Email Subscribers 3.5.16
319
- * Fix: Duplicate sequence emails **[PRO]**
320
 
321
  == Changelog ==
322
 
 
 
 
 
 
 
 
323
  **4.7.9 (02.09.2021)**
324
 
325
  * New: Added 'Total sent' column on the Reports page
6
  Requires at least: 3.9
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
+ Stable tag: 4.8.0
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 4.8.0 =
314
 
315
+ * New: Weekly summary email **[PRO]**
316
+ * New: Campaign unsubscribe count **[PRO]**
317
+ * Fix: Long SQL query killed while sending to large number of emails on WP Engine host
318
+ * Fix: CSS conflict on WordPress admin dashboard page
 
319
 
320
  == Changelog ==
321
 
322
+ **4.8.0 (08.09.2021)**
323
+
324
+ * New: Weekly summary email **[PRO]**
325
+ * New: Campaign unsubscribe count **[PRO]**
326
+ * Fix: Long SQL query killed while sending to large number of emails on WP Engine host
327
+ * Fix: CSS conflict on WordPress admin dashboard page
328
+
329
  **4.7.9 (02.09.2021)**
330
 
331
  * New: Added 'Total sent' column on the Reports page